1. Packages
  2. Volcengine
  3. API Docs
  4. cloud_firewall
  5. CfwControlPolicies
Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine

volcengine.cloud_firewall.CfwControlPolicies

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine

    Use this data source to query detailed information of cfw control policies

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    
    const foo = volcengine.cloud_firewall.CfwControlPolicies({
        actions: ["deny"],
        direction: "in",
    });
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.cloud_firewall.cfw_control_policies(actions=["deny"],
        direction="in")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/cloud_firewall"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloud_firewall.CfwControlPolicies(ctx, &cloud_firewall.CfwControlPoliciesArgs{
    			Actions: []string{
    				"deny",
    			},
    			Direction: "in",
    		}, 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.Cloud_firewall.CfwControlPolicies.Invoke(new()
        {
            Actions = new[]
            {
                "deny",
            },
            Direction = "in",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.cloud_firewall.Cloud_firewallFunctions;
    import com.pulumi.volcengine.cloud_firewall.inputs.CfwControlPoliciesArgs;
    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 = Cloud_firewallFunctions.CfwControlPolicies(CfwControlPoliciesArgs.builder()
                .actions("deny")
                .direction("in")
                .build());
    
        }
    }
    
    variables:
      foo:
        fn::invoke:
          Function: volcengine:cloud_firewall:CfwControlPolicies
          Arguments:
            actions:
              - deny
            direction: in
    

    Using CfwControlPolicies

    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 cfwControlPolicies(args: CfwControlPoliciesArgs, opts?: InvokeOptions): Promise<CfwControlPoliciesResult>
    function cfwControlPoliciesOutput(args: CfwControlPoliciesOutputArgs, opts?: InvokeOptions): Output<CfwControlPoliciesResult>
    def cfw_control_policies(actions: Optional[Sequence[str]] = None,
                             description: Optional[str] = None,
                             destination: Optional[str] = None,
                             direction: Optional[str] = None,
                             output_file: Optional[str] = None,
                             protos: Optional[Sequence[str]] = None,
                             repeat_types: Optional[Sequence[str]] = None,
                             rule_id: Optional[str] = None,
                             source: Optional[str] = None,
                             statuses: Optional[Sequence[bool]] = None,
                             opts: Optional[InvokeOptions] = None) -> CfwControlPoliciesResult
    def cfw_control_policies_output(actions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                             description: Optional[pulumi.Input[str]] = None,
                             destination: Optional[pulumi.Input[str]] = None,
                             direction: Optional[pulumi.Input[str]] = None,
                             output_file: Optional[pulumi.Input[str]] = None,
                             protos: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                             repeat_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                             rule_id: Optional[pulumi.Input[str]] = None,
                             source: Optional[pulumi.Input[str]] = None,
                             statuses: Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[CfwControlPoliciesResult]
    func CfwControlPolicies(ctx *Context, args *CfwControlPoliciesArgs, opts ...InvokeOption) (*CfwControlPoliciesResult, error)
    func CfwControlPoliciesOutput(ctx *Context, args *CfwControlPoliciesOutputArgs, opts ...InvokeOption) CfwControlPoliciesResultOutput
    public static class CfwControlPolicies 
    {
        public static Task<CfwControlPoliciesResult> InvokeAsync(CfwControlPoliciesArgs args, InvokeOptions? opts = null)
        public static Output<CfwControlPoliciesResult> Invoke(CfwControlPoliciesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<CfwControlPoliciesResult> cfwControlPolicies(CfwControlPoliciesArgs args, InvokeOptions options)
    public static Output<CfwControlPoliciesResult> cfwControlPolicies(CfwControlPoliciesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: volcengine:cloud_firewall:CfwControlPolicies
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Direction string
    The direction of control policy. Valid values: in, out.
    Actions List<string>
    The action list of the control policy. Valid values: accept, deny, monitor.
    Description string
    The description of the control policy. This field support fuzzy query.
    Destination string
    The destination of the control policy. This field support fuzzy query.
    OutputFile string
    File name where to save data source results.
    Protos List<string>
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    RepeatTypes List<string>
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    RuleId string
    The rule id of the control policy. This field support fuzzy query.
    Source string
    The source of the control policy. This field support fuzzy query.
    Statuses List<bool>
    The enable status list of the control policy.
    Direction string
    The direction of control policy. Valid values: in, out.
    Actions []string
    The action list of the control policy. Valid values: accept, deny, monitor.
    Description string
    The description of the control policy. This field support fuzzy query.
    Destination string
    The destination of the control policy. This field support fuzzy query.
    OutputFile string
    File name where to save data source results.
    Protos []string
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    RepeatTypes []string
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    RuleId string
    The rule id of the control policy. This field support fuzzy query.
    Source string
    The source of the control policy. This field support fuzzy query.
    Statuses []bool
    The enable status list of the control policy.
    direction String
    The direction of control policy. Valid values: in, out.
    actions List<String>
    The action list of the control policy. Valid values: accept, deny, monitor.
    description String
    The description of the control policy. This field support fuzzy query.
    destination String
    The destination of the control policy. This field support fuzzy query.
    outputFile String
    File name where to save data source results.
    protos List<String>
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeatTypes List<String>
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    ruleId String
    The rule id of the control policy. This field support fuzzy query.
    source String
    The source of the control policy. This field support fuzzy query.
    statuses List<Boolean>
    The enable status list of the control policy.
    direction string
    The direction of control policy. Valid values: in, out.
    actions string[]
    The action list of the control policy. Valid values: accept, deny, monitor.
    description string
    The description of the control policy. This field support fuzzy query.
    destination string
    The destination of the control policy. This field support fuzzy query.
    outputFile string
    File name where to save data source results.
    protos string[]
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeatTypes string[]
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    ruleId string
    The rule id of the control policy. This field support fuzzy query.
    source string
    The source of the control policy. This field support fuzzy query.
    statuses boolean[]
    The enable status list of the control policy.
    direction str
    The direction of control policy. Valid values: in, out.
    actions Sequence[str]
    The action list of the control policy. Valid values: accept, deny, monitor.
    description str
    The description of the control policy. This field support fuzzy query.
    destination str
    The destination of the control policy. This field support fuzzy query.
    output_file str
    File name where to save data source results.
    protos Sequence[str]
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeat_types Sequence[str]
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    rule_id str
    The rule id of the control policy. This field support fuzzy query.
    source str
    The source of the control policy. This field support fuzzy query.
    statuses Sequence[bool]
    The enable status list of the control policy.
    direction String
    The direction of control policy. Valid values: in, out.
    actions List<String>
    The action list of the control policy. Valid values: accept, deny, monitor.
    description String
    The description of the control policy. This field support fuzzy query.
    destination String
    The destination of the control policy. This field support fuzzy query.
    outputFile String
    File name where to save data source results.
    protos List<String>
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeatTypes List<String>
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    ruleId String
    The rule id of the control policy. This field support fuzzy query.
    source String
    The source of the control policy. This field support fuzzy query.
    statuses List<Boolean>
    The enable status list of the control policy.

    CfwControlPolicies Result

    The following output properties are available:

    ControlPolicies List<CfwControlPoliciesControlPolicy>
    The collection of query.
    Direction string
    The direction of the control policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    Actions List<string>
    The action of the control policy.
    Description string
    The description of the control policy.
    Destination string
    The destination of the control policy.
    OutputFile string
    Protos List<string>
    The proto of the control policy.
    RepeatTypes List<string>
    The repeat type of the control policy.
    RuleId string
    The id of the control policy.
    Source string
    The source of the control policy.
    Statuses List<bool>
    Whether to enable the control policy.
    ControlPolicies []CfwControlPoliciesControlPolicy
    The collection of query.
    Direction string
    The direction of the control policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    Actions []string
    The action of the control policy.
    Description string
    The description of the control policy.
    Destination string
    The destination of the control policy.
    OutputFile string
    Protos []string
    The proto of the control policy.
    RepeatTypes []string
    The repeat type of the control policy.
    RuleId string
    The id of the control policy.
    Source string
    The source of the control policy.
    Statuses []bool
    Whether to enable the control policy.
    controlPolicies List<CfwControlPoliciesControlPolicy>
    The collection of query.
    direction String
    The direction of the control policy.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Integer
    The total count of query.
    actions List<String>
    The action of the control policy.
    description String
    The description of the control policy.
    destination String
    The destination of the control policy.
    outputFile String
    protos List<String>
    The proto of the control policy.
    repeatTypes List<String>
    The repeat type of the control policy.
    ruleId String
    The id of the control policy.
    source String
    The source of the control policy.
    statuses List<Boolean>
    Whether to enable the control policy.
    controlPolicies CfwControlPoliciesControlPolicy[]
    The collection of query.
    direction string
    The direction of the control policy.
    id string
    The provider-assigned unique ID for this managed resource.
    totalCount number
    The total count of query.
    actions string[]
    The action of the control policy.
    description string
    The description of the control policy.
    destination string
    The destination of the control policy.
    outputFile string
    protos string[]
    The proto of the control policy.
    repeatTypes string[]
    The repeat type of the control policy.
    ruleId string
    The id of the control policy.
    source string
    The source of the control policy.
    statuses boolean[]
    Whether to enable the control policy.
    control_policies Sequence[CfwControlPoliciesControlPolicy]
    The collection of query.
    direction str
    The direction of the control policy.
    id str
    The provider-assigned unique ID for this managed resource.
    total_count int
    The total count of query.
    actions Sequence[str]
    The action of the control policy.
    description str
    The description of the control policy.
    destination str
    The destination of the control policy.
    output_file str
    protos Sequence[str]
    The proto of the control policy.
    repeat_types Sequence[str]
    The repeat type of the control policy.
    rule_id str
    The id of the control policy.
    source str
    The source of the control policy.
    statuses Sequence[bool]
    Whether to enable the control policy.
    controlPolicies List<Property Map>
    The collection of query.
    direction String
    The direction of the control policy.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Number
    The total count of query.
    actions List<String>
    The action of the control policy.
    description String
    The description of the control policy.
    destination String
    The destination of the control policy.
    outputFile String
    protos List<String>
    The proto of the control policy.
    repeatTypes List<String>
    The repeat type of the control policy.
    ruleId String
    The id of the control policy.
    source String
    The source of the control policy.
    statuses List<Boolean>
    Whether to enable the control policy.

    Supporting Types

    CfwControlPoliciesControlPolicy

    AccountId string
    The account id of the control policy.
    Action string
    The action list of the control policy. Valid values: accept, deny, monitor.
    Description string
    The description of the control policy. This field support fuzzy query.
    DestPort string
    The dest port of the control policy.
    DestPortGroupType string
    The dest port group type of the control policy.
    DestPortLists List<string>
    The dest port list of the control policy.
    DestPortType string
    The dest port type of the control policy.
    Destination string
    The destination of the control policy. This field support fuzzy query.
    DestinationCidrLists List<string>
    The destination cidr list of the control policy.
    DestinationGroupType string
    The destination group type of the control policy.
    DestinationType string
    The destination type of the control policy.
    Direction string
    The direction of control policy. Valid values: in, out.
    EffectStatus int
    The effect status of the control policy. 1: Not yet effective, 2: Issued in progress, 3: Effective.
    EndTime int
    The end time of the control policy. Unix timestamp.
    HitCnt int
    The hit count of the control policy.
    Id string
    The id of the control policy.
    IsEffected bool
    Whether the control policy is effected.
    Prio int
    The priority of the control policy.
    Proto string
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    RepeatDays List<int>
    The repeat days of the control policy.
    RepeatEndTime string
    The repeat end time of the control policy.
    RepeatStartTime string
    The repeat start time of the control policy.
    RepeatType string
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    RuleId string
    The rule id of the control policy. This field support fuzzy query.
    Source string
    The source of the control policy. This field support fuzzy query.
    SourceCidrLists List<string>
    The source cidr list of the control policy.
    SourceGroupType string
    The source group type of the control policy.
    SourceType string
    The source type of the control policy.
    StartTime int
    The start time of the control policy. Unix timestamp.
    Status bool
    The enable status list of the control policy.
    UpdateTime int
    The update time of the control policy.
    UseCount int
    The use count of the control policy.
    AccountId string
    The account id of the control policy.
    Action string
    The action list of the control policy. Valid values: accept, deny, monitor.
    Description string
    The description of the control policy. This field support fuzzy query.
    DestPort string
    The dest port of the control policy.
    DestPortGroupType string
    The dest port group type of the control policy.
    DestPortLists []string
    The dest port list of the control policy.
    DestPortType string
    The dest port type of the control policy.
    Destination string
    The destination of the control policy. This field support fuzzy query.
    DestinationCidrLists []string
    The destination cidr list of the control policy.
    DestinationGroupType string
    The destination group type of the control policy.
    DestinationType string
    The destination type of the control policy.
    Direction string
    The direction of control policy. Valid values: in, out.
    EffectStatus int
    The effect status of the control policy. 1: Not yet effective, 2: Issued in progress, 3: Effective.
    EndTime int
    The end time of the control policy. Unix timestamp.
    HitCnt int
    The hit count of the control policy.
    Id string
    The id of the control policy.
    IsEffected bool
    Whether the control policy is effected.
    Prio int
    The priority of the control policy.
    Proto string
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    RepeatDays []int
    The repeat days of the control policy.
    RepeatEndTime string
    The repeat end time of the control policy.
    RepeatStartTime string
    The repeat start time of the control policy.
    RepeatType string
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    RuleId string
    The rule id of the control policy. This field support fuzzy query.
    Source string
    The source of the control policy. This field support fuzzy query.
    SourceCidrLists []string
    The source cidr list of the control policy.
    SourceGroupType string
    The source group type of the control policy.
    SourceType string
    The source type of the control policy.
    StartTime int
    The start time of the control policy. Unix timestamp.
    Status bool
    The enable status list of the control policy.
    UpdateTime int
    The update time of the control policy.
    UseCount int
    The use count of the control policy.
    accountId String
    The account id of the control policy.
    action String
    The action list of the control policy. Valid values: accept, deny, monitor.
    description String
    The description of the control policy. This field support fuzzy query.
    destPort String
    The dest port of the control policy.
    destPortGroupType String
    The dest port group type of the control policy.
    destPortLists List<String>
    The dest port list of the control policy.
    destPortType String
    The dest port type of the control policy.
    destination String
    The destination of the control policy. This field support fuzzy query.
    destinationCidrLists List<String>
    The destination cidr list of the control policy.
    destinationGroupType String
    The destination group type of the control policy.
    destinationType String
    The destination type of the control policy.
    direction String
    The direction of control policy. Valid values: in, out.
    effectStatus Integer
    The effect status of the control policy. 1: Not yet effective, 2: Issued in progress, 3: Effective.
    endTime Integer
    The end time of the control policy. Unix timestamp.
    hitCnt Integer
    The hit count of the control policy.
    id String
    The id of the control policy.
    isEffected Boolean
    Whether the control policy is effected.
    prio Integer
    The priority of the control policy.
    proto String
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeatDays List<Integer>
    The repeat days of the control policy.
    repeatEndTime String
    The repeat end time of the control policy.
    repeatStartTime String
    The repeat start time of the control policy.
    repeatType String
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    ruleId String
    The rule id of the control policy. This field support fuzzy query.
    source String
    The source of the control policy. This field support fuzzy query.
    sourceCidrLists List<String>
    The source cidr list of the control policy.
    sourceGroupType String
    The source group type of the control policy.
    sourceType String
    The source type of the control policy.
    startTime Integer
    The start time of the control policy. Unix timestamp.
    status Boolean
    The enable status list of the control policy.
    updateTime Integer
    The update time of the control policy.
    useCount Integer
    The use count of the control policy.
    accountId string
    The account id of the control policy.
    action string
    The action list of the control policy. Valid values: accept, deny, monitor.
    description string
    The description of the control policy. This field support fuzzy query.
    destPort string
    The dest port of the control policy.
    destPortGroupType string
    The dest port group type of the control policy.
    destPortLists string[]
    The dest port list of the control policy.
    destPortType string
    The dest port type of the control policy.
    destination string
    The destination of the control policy. This field support fuzzy query.
    destinationCidrLists string[]
    The destination cidr list of the control policy.
    destinationGroupType string
    The destination group type of the control policy.
    destinationType string
    The destination type of the control policy.
    direction string
    The direction of control policy. Valid values: in, out.
    effectStatus number
    The effect status of the control policy. 1: Not yet effective, 2: Issued in progress, 3: Effective.
    endTime number
    The end time of the control policy. Unix timestamp.
    hitCnt number
    The hit count of the control policy.
    id string
    The id of the control policy.
    isEffected boolean
    Whether the control policy is effected.
    prio number
    The priority of the control policy.
    proto string
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeatDays number[]
    The repeat days of the control policy.
    repeatEndTime string
    The repeat end time of the control policy.
    repeatStartTime string
    The repeat start time of the control policy.
    repeatType string
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    ruleId string
    The rule id of the control policy. This field support fuzzy query.
    source string
    The source of the control policy. This field support fuzzy query.
    sourceCidrLists string[]
    The source cidr list of the control policy.
    sourceGroupType string
    The source group type of the control policy.
    sourceType string
    The source type of the control policy.
    startTime number
    The start time of the control policy. Unix timestamp.
    status boolean
    The enable status list of the control policy.
    updateTime number
    The update time of the control policy.
    useCount number
    The use count of the control policy.
    account_id str
    The account id of the control policy.
    action str
    The action list of the control policy. Valid values: accept, deny, monitor.
    description str
    The description of the control policy. This field support fuzzy query.
    dest_port str
    The dest port of the control policy.
    dest_port_group_type str
    The dest port group type of the control policy.
    dest_port_lists Sequence[str]
    The dest port list of the control policy.
    dest_port_type str
    The dest port type of the control policy.
    destination str
    The destination of the control policy. This field support fuzzy query.
    destination_cidr_lists Sequence[str]
    The destination cidr list of the control policy.
    destination_group_type str
    The destination group type of the control policy.
    destination_type str
    The destination type of the control policy.
    direction str
    The direction of control policy. Valid values: in, out.
    effect_status int
    The effect status of the control policy. 1: Not yet effective, 2: Issued in progress, 3: Effective.
    end_time int
    The end time of the control policy. Unix timestamp.
    hit_cnt int
    The hit count of the control policy.
    id str
    The id of the control policy.
    is_effected bool
    Whether the control policy is effected.
    prio int
    The priority of the control policy.
    proto str
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeat_days Sequence[int]
    The repeat days of the control policy.
    repeat_end_time str
    The repeat end time of the control policy.
    repeat_start_time str
    The repeat start time of the control policy.
    repeat_type str
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    rule_id str
    The rule id of the control policy. This field support fuzzy query.
    source str
    The source of the control policy. This field support fuzzy query.
    source_cidr_lists Sequence[str]
    The source cidr list of the control policy.
    source_group_type str
    The source group type of the control policy.
    source_type str
    The source type of the control policy.
    start_time int
    The start time of the control policy. Unix timestamp.
    status bool
    The enable status list of the control policy.
    update_time int
    The update time of the control policy.
    use_count int
    The use count of the control policy.
    accountId String
    The account id of the control policy.
    action String
    The action list of the control policy. Valid values: accept, deny, monitor.
    description String
    The description of the control policy. This field support fuzzy query.
    destPort String
    The dest port of the control policy.
    destPortGroupType String
    The dest port group type of the control policy.
    destPortLists List<String>
    The dest port list of the control policy.
    destPortType String
    The dest port type of the control policy.
    destination String
    The destination of the control policy. This field support fuzzy query.
    destinationCidrLists List<String>
    The destination cidr list of the control policy.
    destinationGroupType String
    The destination group type of the control policy.
    destinationType String
    The destination type of the control policy.
    direction String
    The direction of control policy. Valid values: in, out.
    effectStatus Number
    The effect status of the control policy. 1: Not yet effective, 2: Issued in progress, 3: Effective.
    endTime Number
    The end time of the control policy. Unix timestamp.
    hitCnt Number
    The hit count of the control policy.
    id String
    The id of the control policy.
    isEffected Boolean
    Whether the control policy is effected.
    prio Number
    The priority of the control policy.
    proto String
    The proto list of the control policy. Valid values: TCP, ICMP, UDP, ANY. When the destination_type is domain, The proto must be TCP.
    repeatDays List<Number>
    The repeat days of the control policy.
    repeatEndTime String
    The repeat end time of the control policy.
    repeatStartTime String
    The repeat start time of the control policy.
    repeatType String
    The repeat type of the control policy. Valid values: Permanent, Once, Daily, Weekly, Monthly.
    ruleId String
    The rule id of the control policy. This field support fuzzy query.
    source String
    The source of the control policy. This field support fuzzy query.
    sourceCidrLists List<String>
    The source cidr list of the control policy.
    sourceGroupType String
    The source group type of the control policy.
    sourceType String
    The source type of the control policy.
    startTime Number
    The start time of the control policy. Unix timestamp.
    status Boolean
    The enable status list of the control policy.
    updateTime Number
    The update time of the control policy.
    useCount Number
    The use count of the control policy.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine