Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Use this data source to query detailed information of waf cc rules
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const foo = volcengine.waf.getCcRules({
ccTypes: [1],
host: "www.tf-test.com",
pathOrderBy: "ASC",
ruleName: "tf",
});
import pulumi
import pulumi_volcengine as volcengine
foo = volcengine.waf.get_cc_rules(cc_types=[1],
host="www.tf-test.com",
path_order_by="ASC",
rule_name="tf")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/waf"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := waf.GetCcRules(ctx, &waf.GetCcRulesArgs{
CcTypes: interface{}{
1,
},
Host: "www.tf-test.com",
PathOrderBy: "ASC",
RuleName: pulumi.StringRef("tf"),
}, nil);
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var foo = Volcengine.Waf.GetCcRules.Invoke(new()
{
CcTypes = new[]
{
1,
},
Host = "www.tf-test.com",
PathOrderBy = "ASC",
RuleName = "tf",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.waf.WafFunctions;
import com.pulumi.volcengine.waf.inputs.GetCcRulesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var foo = WafFunctions.getCcRules(GetCcRulesArgs.builder()
.ccTypes(1)
.host("www.tf-test.com")
.pathOrderBy("ASC")
.ruleName("tf")
.build());
}
}
variables:
foo:
fn::invoke:
Function: volcengine:waf:getCcRules
Arguments:
ccTypes:
- 1
host: www.tf-test.com
pathOrderBy: ASC
ruleName: tf
Using getCcRules
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getCcRules(args: GetCcRulesArgs, opts?: InvokeOptions): Promise<GetCcRulesResult>
function getCcRulesOutput(args: GetCcRulesOutputArgs, opts?: InvokeOptions): Output<GetCcRulesResult>def get_cc_rules(cc_types: Optional[Sequence[int]] = None,
host: Optional[str] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
path_order_by: Optional[str] = None,
rule_name: Optional[str] = None,
rule_tag: Optional[str] = None,
url: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCcRulesResult
def get_cc_rules_output(cc_types: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
host: Optional[pulumi.Input[str]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
path_order_by: Optional[pulumi.Input[str]] = None,
rule_name: Optional[pulumi.Input[str]] = None,
rule_tag: Optional[pulumi.Input[str]] = None,
url: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCcRulesResult]func GetCcRules(ctx *Context, args *GetCcRulesArgs, opts ...InvokeOption) (*GetCcRulesResult, error)
func GetCcRulesOutput(ctx *Context, args *GetCcRulesOutputArgs, opts ...InvokeOption) GetCcRulesResultOutput> Note: This function is named GetCcRules in the Go SDK.
public static class GetCcRules
{
public static Task<GetCcRulesResult> InvokeAsync(GetCcRulesArgs args, InvokeOptions? opts = null)
public static Output<GetCcRulesResult> Invoke(GetCcRulesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCcRulesResult> getCcRules(GetCcRulesArgs args, InvokeOptions options)
public static Output<GetCcRulesResult> getCcRules(GetCcRulesArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:waf/getCcRules:getCcRules
arguments:
# arguments dictionaryThe following arguments are supported:
- Host string
- Website domain names that require the setting of protection rules.
- Path
Order stringBy - The list shows the order.
- Cc
Types List<int> - The actions performed on subsequent requests after meeting the statistical conditions.
- Name
Regex string - A Name Regex of Resource.
- Output
File string - File name where to save data source results.
- Rule
Name string - Search by rule name in a fuzzy manner.
- Rule
Tag string - Search precisely according to the rule ID.
- Url string
- Fuzzy search by the requested path.
- Host string
- Website domain names that require the setting of protection rules.
- Path
Order stringBy - The list shows the order.
- Cc
Types []int - The actions performed on subsequent requests after meeting the statistical conditions.
- Name
Regex string - A Name Regex of Resource.
- Output
File string - File name where to save data source results.
- Rule
Name string - Search by rule name in a fuzzy manner.
- Rule
Tag string - Search precisely according to the rule ID.
- Url string
- Fuzzy search by the requested path.
- host String
- Website domain names that require the setting of protection rules.
- path
Order StringBy - The list shows the order.
- cc
Types List<Integer> - The actions performed on subsequent requests after meeting the statistical conditions.
- name
Regex String - A Name Regex of Resource.
- output
File String - File name where to save data source results.
- rule
Name String - Search by rule name in a fuzzy manner.
- rule
Tag String - Search precisely according to the rule ID.
- url String
- Fuzzy search by the requested path.
- host string
- Website domain names that require the setting of protection rules.
- path
Order stringBy - The list shows the order.
- cc
Types number[] - The actions performed on subsequent requests after meeting the statistical conditions.
- name
Regex string - A Name Regex of Resource.
- output
File string - File name where to save data source results.
- rule
Name string - Search by rule name in a fuzzy manner.
- rule
Tag string - Search precisely according to the rule ID.
- url string
- Fuzzy search by the requested path.
- host str
- Website domain names that require the setting of protection rules.
- path_
order_ strby - The list shows the order.
- cc_
types Sequence[int] - The actions performed on subsequent requests after meeting the statistical conditions.
- name_
regex str - A Name Regex of Resource.
- output_
file str - File name where to save data source results.
- rule_
name str - Search by rule name in a fuzzy manner.
- rule_
tag str - Search precisely according to the rule ID.
- url str
- Fuzzy search by the requested path.
- host String
- Website domain names that require the setting of protection rules.
- path
Order StringBy - The list shows the order.
- cc
Types List<Number> - The actions performed on subsequent requests after meeting the statistical conditions.
- name
Regex String - A Name Regex of Resource.
- output
File String - File name where to save data source results.
- rule
Name String - Search by rule name in a fuzzy manner.
- rule
Tag String - Search precisely according to the rule ID.
- url String
- Fuzzy search by the requested path.
getCcRules Result
The following output properties are available:
- Datas
List<Get
Cc Rules Data> - The collection of query.
- Host string
- Protected website domain names.
- Id string
- The provider-assigned unique ID for this managed resource.
- Path
Order stringBy - Total
Count int - The total count of query.
- Cc
Types List<int> - The actions performed on subsequent requests after meeting the statistical conditions.
- Name
Regex string - Output
File string - Rule
Name string - Rule
Tag string - Rule label, that is, the complete rule ID.
- Url string
- The requested path.
- Datas
[]Get
Cc Rules Data - The collection of query.
- Host string
- Protected website domain names.
- Id string
- The provider-assigned unique ID for this managed resource.
- Path
Order stringBy - Total
Count int - The total count of query.
- Cc
Types []int - The actions performed on subsequent requests after meeting the statistical conditions.
- Name
Regex string - Output
File string - Rule
Name string - Rule
Tag string - Rule label, that is, the complete rule ID.
- Url string
- The requested path.
- datas
List<Get
Cc Rules Data> - The collection of query.
- host String
- Protected website domain names.
- id String
- The provider-assigned unique ID for this managed resource.
- path
Order StringBy - total
Count Integer - The total count of query.
- cc
Types List<Integer> - The actions performed on subsequent requests after meeting the statistical conditions.
- name
Regex String - output
File String - rule
Name String - rule
Tag String - Rule label, that is, the complete rule ID.
- url String
- The requested path.
- datas
Get
Cc Rules Data[] - The collection of query.
- host string
- Protected website domain names.
- id string
- The provider-assigned unique ID for this managed resource.
- path
Order stringBy - total
Count number - The total count of query.
- cc
Types number[] - The actions performed on subsequent requests after meeting the statistical conditions.
- name
Regex string - output
File string - rule
Name string - rule
Tag string - Rule label, that is, the complete rule ID.
- url string
- The requested path.
- datas
Sequence[Get
Cc Rules Data] - The collection of query.
- host str
- Protected website domain names.
- id str
- The provider-assigned unique ID for this managed resource.
- path_
order_ strby - total_
count int - The total count of query.
- cc_
types Sequence[int] - The actions performed on subsequent requests after meeting the statistical conditions.
- name_
regex str - output_
file str - rule_
name str - rule_
tag str - Rule label, that is, the complete rule ID.
- url str
- The requested path.
- datas List<Property Map>
- The collection of query.
- host String
- Protected website domain names.
- id String
- The provider-assigned unique ID for this managed resource.
- path
Order StringBy - total
Count Number - The total count of query.
- cc
Types List<Number> - The actions performed on subsequent requests after meeting the statistical conditions.
- name
Regex String - output
File String - rule
Name String - rule
Tag String - Rule label, that is, the complete rule ID.
- url String
- The requested path.
Supporting Types
GetCcRulesData
- Enable
Count int - The total number of enabled rules within the rule group.
- Insert
Time string - The creation time of the rule group.
- Rule
Groups List<GetCc Rules Data Rule Group> - Details of the rule group.
- Total
Count int - The total count of query.
- Url string
- Fuzzy search by the requested path.
- Enable
Count int - The total number of enabled rules within the rule group.
- Insert
Time string - The creation time of the rule group.
- Rule
Groups []GetCc Rules Data Rule Group - Details of the rule group.
- Total
Count int - The total count of query.
- Url string
- Fuzzy search by the requested path.
- enable
Count Integer - The total number of enabled rules within the rule group.
- insert
Time String - The creation time of the rule group.
- rule
Groups List<GetCc Rules Data Rule Group> - Details of the rule group.
- total
Count Integer - The total count of query.
- url String
- Fuzzy search by the requested path.
- enable
Count number - The total number of enabled rules within the rule group.
- insert
Time string - The creation time of the rule group.
- rule
Groups GetCc Rules Data Rule Group[] - Details of the rule group.
- total
Count number - The total count of query.
- url string
- Fuzzy search by the requested path.
- enable_
count int - The total number of enabled rules within the rule group.
- insert_
time str - The creation time of the rule group.
- rule_
groups Sequence[GetCc Rules Data Rule Group] - Details of the rule group.
- total_
count int - The total count of query.
- url str
- Fuzzy search by the requested path.
- enable
Count Number - The total number of enabled rules within the rule group.
- insert
Time String - The creation time of the rule group.
- rule
Groups List<Property Map> - Details of the rule group.
- total
Count Number - The total count of query.
- url String
- Fuzzy search by the requested path.
GetCcRulesDataRuleGroup
- Group
Get
Cc Rules Data Rule Group Group - Rule group information.
- Rules
List<Get
Cc Rules Data Rule Group Rule> - Specific rule information within the rule group.
- Group
Get
Cc Rules Data Rule Group Group - Rule group information.
- Rules
[]Get
Cc Rules Data Rule Group Rule - Specific rule information within the rule group.
- group
Get
Cc Rules Data Rule Group Group - Rule group information.
- rules
List<Get
Cc Rules Data Rule Group Rule> - Specific rule information within the rule group.
- group
Get
Cc Rules Data Rule Group Group - Rule group information.
- rules
Get
Cc Rules Data Rule Group Rule[] - Specific rule information within the rule group.
- group
Get
Cc Rules Data Rule Group Group - Rule group information.
- rules
Sequence[Get
Cc Rules Data Rule Group Rule] - Specific rule information within the rule group.
- group Property Map
- Rule group information.
- rules List<Property Map>
- Specific rule information within the rule group.
GetCcRulesDataRuleGroupGroup
- Accurate
Group intPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- Accurate
Rules List<GetCc Rules Data Rule Group Group Accurate Rule> - Request characteristic information of the rule group.
- Id int
- The ID of Rule group.
- Logic int
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- Accurate
Group intPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- Accurate
Rules []GetCc Rules Data Rule Group Group Accurate Rule - Request characteristic information of the rule group.
- Id int
- The ID of Rule group.
- Logic int
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate
Group IntegerPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate
Rules List<GetCc Rules Data Rule Group Group Accurate Rule> - Request characteristic information of the rule group.
- id Integer
- The ID of Rule group.
- logic Integer
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate
Group numberPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate
Rules GetCc Rules Data Rule Group Group Accurate Rule[] - Request characteristic information of the rule group.
- id number
- The ID of Rule group.
- logic number
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate_
group_ intpriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate_
rules Sequence[GetCc Rules Data Rule Group Group Accurate Rule] - Request characteristic information of the rule group.
- id int
- The ID of Rule group.
- logic int
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate
Group NumberPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate
Rules List<Property Map> - Request characteristic information of the rule group.
- id Number
- The ID of Rule group.
- logic Number
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
GetCcRulesDataRuleGroupGroupAccurateRule
- Http
Obj string - Custom object.
- Obj
Type int - matching field.
- Opretar int
- The logical operator for the condition.
- Property int
- Operate the properties of the http object.
- Value
String string - The value to be matched.
- Http
Obj string - Custom object.
- Obj
Type int - matching field.
- Opretar int
- The logical operator for the condition.
- Property int
- Operate the properties of the http object.
- Value
String string - The value to be matched.
- http
Obj String - Custom object.
- obj
Type Integer - matching field.
- opretar Integer
- The logical operator for the condition.
- property Integer
- Operate the properties of the http object.
- value
String String - The value to be matched.
- http
Obj string - Custom object.
- obj
Type number - matching field.
- opretar number
- The logical operator for the condition.
- property number
- Operate the properties of the http object.
- value
String string - The value to be matched.
- http_
obj str - Custom object.
- obj_
type int - matching field.
- opretar int
- The logical operator for the condition.
- property int
- Operate the properties of the http object.
- value_
string str - The value to be matched.
- http
Obj String - Custom object.
- obj
Type Number - matching field.
- opretar Number
- The logical operator for the condition.
- property Number
- Operate the properties of the http object.
- value
String String - The value to be matched.
GetCcRulesDataRuleGroupRule
- Accurate
Group GetCc Rules Data Rule Group Rule Accurate Group - Advanced conditions.
- Accurate
Group intPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- Cc
Type int - The actions performed on subsequent requests after meeting the statistical conditions.
- Count
Time int - The statistical period of the strategy.
- Cron
Confs List<GetCc Rules Data Rule Group Rule Cron Conf> - Details of the periodic loop configuration.
- Cron
Enable int - Whether to set the cycle to take effect.
- Effect
Time int - Limit the duration, that is, the effective duration of the action.
- Enable int
- Whether the rule is enabled.
- Exemption
Time int - Strategy exemption time.
- Field string
- statistical object.
- Host string
- Website domain names that require the setting of protection rules.
- Id int
- The ID of Rule group.
- Name string
- The Name of Rule group.
- Path
Threshold int - The threshold of the number of requests for path access.
- Rule
Priority int - Rule execution priority.
- Rule
Tag string - Search precisely according to the rule ID.
- Single
Threshold int - The threshold of the number of visits to each statistical object.
- Update
Time string - Rule update time.
- Url string
- Fuzzy search by the requested path.
- Accurate
Group GetCc Rules Data Rule Group Rule Accurate Group - Advanced conditions.
- Accurate
Group intPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- Cc
Type int - The actions performed on subsequent requests after meeting the statistical conditions.
- Count
Time int - The statistical period of the strategy.
- Cron
Confs []GetCc Rules Data Rule Group Rule Cron Conf - Details of the periodic loop configuration.
- Cron
Enable int - Whether to set the cycle to take effect.
- Effect
Time int - Limit the duration, that is, the effective duration of the action.
- Enable int
- Whether the rule is enabled.
- Exemption
Time int - Strategy exemption time.
- Field string
- statistical object.
- Host string
- Website domain names that require the setting of protection rules.
- Id int
- The ID of Rule group.
- Name string
- The Name of Rule group.
- Path
Threshold int - The threshold of the number of requests for path access.
- Rule
Priority int - Rule execution priority.
- Rule
Tag string - Search precisely according to the rule ID.
- Single
Threshold int - The threshold of the number of visits to each statistical object.
- Update
Time string - Rule update time.
- Url string
- Fuzzy search by the requested path.
- accurate
Group GetCc Rules Data Rule Group Rule Accurate Group - Advanced conditions.
- accurate
Group IntegerPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- cc
Type Integer - The actions performed on subsequent requests after meeting the statistical conditions.
- count
Time Integer - The statistical period of the strategy.
- cron
Confs List<GetCc Rules Data Rule Group Rule Cron Conf> - Details of the periodic loop configuration.
- cron
Enable Integer - Whether to set the cycle to take effect.
- effect
Time Integer - Limit the duration, that is, the effective duration of the action.
- enable Integer
- Whether the rule is enabled.
- exemption
Time Integer - Strategy exemption time.
- field String
- statistical object.
- host String
- Website domain names that require the setting of protection rules.
- id Integer
- The ID of Rule group.
- name String
- The Name of Rule group.
- path
Threshold Integer - The threshold of the number of requests for path access.
- rule
Priority Integer - Rule execution priority.
- rule
Tag String - Search precisely according to the rule ID.
- single
Threshold Integer - The threshold of the number of visits to each statistical object.
- update
Time String - Rule update time.
- url String
- Fuzzy search by the requested path.
- accurate
Group GetCc Rules Data Rule Group Rule Accurate Group - Advanced conditions.
- accurate
Group numberPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- cc
Type number - The actions performed on subsequent requests after meeting the statistical conditions.
- count
Time number - The statistical period of the strategy.
- cron
Confs GetCc Rules Data Rule Group Rule Cron Conf[] - Details of the periodic loop configuration.
- cron
Enable number - Whether to set the cycle to take effect.
- effect
Time number - Limit the duration, that is, the effective duration of the action.
- enable number
- Whether the rule is enabled.
- exemption
Time number - Strategy exemption time.
- field string
- statistical object.
- host string
- Website domain names that require the setting of protection rules.
- id number
- The ID of Rule group.
- name string
- The Name of Rule group.
- path
Threshold number - The threshold of the number of requests for path access.
- rule
Priority number - Rule execution priority.
- rule
Tag string - Search precisely according to the rule ID.
- single
Threshold number - The threshold of the number of visits to each statistical object.
- update
Time string - Rule update time.
- url string
- Fuzzy search by the requested path.
- accurate_
group GetCc Rules Data Rule Group Rule Accurate Group - Advanced conditions.
- accurate_
group_ intpriority - After the rule creation is completed, the priority of the automatically generated rule group.
- cc_
type int - The actions performed on subsequent requests after meeting the statistical conditions.
- count_
time int - The statistical period of the strategy.
- cron_
confs Sequence[GetCc Rules Data Rule Group Rule Cron Conf] - Details of the periodic loop configuration.
- cron_
enable int - Whether to set the cycle to take effect.
- effect_
time int - Limit the duration, that is, the effective duration of the action.
- enable int
- Whether the rule is enabled.
- exemption_
time int - Strategy exemption time.
- field str
- statistical object.
- host str
- Website domain names that require the setting of protection rules.
- id int
- The ID of Rule group.
- name str
- The Name of Rule group.
- path_
threshold int - The threshold of the number of requests for path access.
- rule_
priority int - Rule execution priority.
- rule_
tag str - Search precisely according to the rule ID.
- single_
threshold int - The threshold of the number of visits to each statistical object.
- update_
time str - Rule update time.
- url str
- Fuzzy search by the requested path.
- accurate
Group Property Map - Advanced conditions.
- accurate
Group NumberPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- cc
Type Number - The actions performed on subsequent requests after meeting the statistical conditions.
- count
Time Number - The statistical period of the strategy.
- cron
Confs List<Property Map> - Details of the periodic loop configuration.
- cron
Enable Number - Whether to set the cycle to take effect.
- effect
Time Number - Limit the duration, that is, the effective duration of the action.
- enable Number
- Whether the rule is enabled.
- exemption
Time Number - Strategy exemption time.
- field String
- statistical object.
- host String
- Website domain names that require the setting of protection rules.
- id Number
- The ID of Rule group.
- name String
- The Name of Rule group.
- path
Threshold Number - The threshold of the number of requests for path access.
- rule
Priority Number - Rule execution priority.
- rule
Tag String - Search precisely according to the rule ID.
- single
Threshold Number - The threshold of the number of visits to each statistical object.
- update
Time String - Rule update time.
- url String
- Fuzzy search by the requested path.
GetCcRulesDataRuleGroupRuleAccurateGroup
- Accurate
Group intPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- Accurate
Rules List<GetCc Rules Data Rule Group Rule Accurate Group Accurate Rule> - Request characteristic information of the rule group.
- Id int
- The ID of Rule group.
- Logic int
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- Accurate
Group intPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- Accurate
Rules []GetCc Rules Data Rule Group Rule Accurate Group Accurate Rule - Request characteristic information of the rule group.
- Id int
- The ID of Rule group.
- Logic int
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate
Group IntegerPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate
Rules List<GetCc Rules Data Rule Group Rule Accurate Group Accurate Rule> - Request characteristic information of the rule group.
- id Integer
- The ID of Rule group.
- logic Integer
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate
Group numberPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate
Rules GetCc Rules Data Rule Group Rule Accurate Group Accurate Rule[] - Request characteristic information of the rule group.
- id number
- The ID of Rule group.
- logic number
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate_
group_ intpriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate_
rules Sequence[GetCc Rules Data Rule Group Rule Accurate Group Accurate Rule] - Request characteristic information of the rule group.
- id int
- The ID of Rule group.
- logic int
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
- accurate
Group NumberPriority - After the rule creation is completed, the priority of the automatically generated rule group.
- accurate
Rules List<Property Map> - Request characteristic information of the rule group.
- id Number
- The ID of Rule group.
- logic Number
- In the rule group, the high-level conditional operation relationships corresponding to each rule.
GetCcRulesDataRuleGroupRuleAccurateGroupAccurateRule
- Http
Obj string - Custom object.
- Obj
Type int - matching field.
- Opretar int
- The logical operator for the condition.
- Property int
- Operate the properties of the http object.
- Value
String string - The value to be matched.
- Http
Obj string - Custom object.
- Obj
Type int - matching field.
- Opretar int
- The logical operator for the condition.
- Property int
- Operate the properties of the http object.
- Value
String string - The value to be matched.
- http
Obj String - Custom object.
- obj
Type Integer - matching field.
- opretar Integer
- The logical operator for the condition.
- property Integer
- Operate the properties of the http object.
- value
String String - The value to be matched.
- http
Obj string - Custom object.
- obj
Type number - matching field.
- opretar number
- The logical operator for the condition.
- property number
- Operate the properties of the http object.
- value
String string - The value to be matched.
- http_
obj str - Custom object.
- obj_
type int - matching field.
- opretar int
- The logical operator for the condition.
- property int
- Operate the properties of the http object.
- value_
string str - The value to be matched.
- http
Obj String - Custom object.
- obj
Type Number - matching field.
- opretar Number
- The logical operator for the condition.
- property Number
- Operate the properties of the http object.
- value
String String - The value to be matched.
GetCcRulesDataRuleGroupRuleCronConf
- Crontab string
- The weekly cycle days and cycle time periods.
- Path
Threshold int - The threshold of the number of requests for path access.
- Single
Threshold int - The threshold of the number of visits to each statistical object.
- Crontab string
- The weekly cycle days and cycle time periods.
- Path
Threshold int - The threshold of the number of requests for path access.
- Single
Threshold int - The threshold of the number of visits to each statistical object.
- crontab String
- The weekly cycle days and cycle time periods.
- path
Threshold Integer - The threshold of the number of requests for path access.
- single
Threshold Integer - The threshold of the number of visits to each statistical object.
- crontab string
- The weekly cycle days and cycle time periods.
- path
Threshold number - The threshold of the number of requests for path access.
- single
Threshold number - The threshold of the number of visits to each statistical object.
- crontab str
- The weekly cycle days and cycle time periods.
- path_
threshold int - The threshold of the number of requests for path access.
- single_
threshold int - The threshold of the number of visits to each statistical object.
- crontab String
- The weekly cycle days and cycle time periods.
- path
Threshold Number - The threshold of the number of requests for path access.
- single
Threshold Number - The threshold of the number of visits to each statistical object.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengineTerraform Provider.
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
