1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyDistributedFloodProtectionProfile
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.PolicyDistributedFloodProtectionProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Create PolicyDistributedFloodProtectionProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PolicyDistributedFloodProtectionProfile(name: string, args: PolicyDistributedFloodProtectionProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyDistributedFloodProtectionProfile(resource_name: str,
                                                args: PolicyDistributedFloodProtectionProfileArgs,
                                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyDistributedFloodProtectionProfile(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                display_name: Optional[str] = None,
                                                context: Optional[PolicyDistributedFloodProtectionProfileContextArgs] = None,
                                                description: Optional[str] = None,
                                                enable_rst_spoofing: Optional[bool] = None,
                                                enable_syncache: Optional[bool] = None,
                                                icmp_active_flow_limit: Optional[float] = None,
                                                nsx_id: Optional[str] = None,
                                                other_active_conn_limit: Optional[float] = None,
                                                policy_distributed_flood_protection_profile_id: Optional[str] = None,
                                                tags: Optional[Sequence[PolicyDistributedFloodProtectionProfileTagArgs]] = None,
                                                tcp_half_open_conn_limit: Optional[float] = None,
                                                udp_active_flow_limit: Optional[float] = None)
    func NewPolicyDistributedFloodProtectionProfile(ctx *Context, name string, args PolicyDistributedFloodProtectionProfileArgs, opts ...ResourceOption) (*PolicyDistributedFloodProtectionProfile, error)
    public PolicyDistributedFloodProtectionProfile(string name, PolicyDistributedFloodProtectionProfileArgs args, CustomResourceOptions? opts = null)
    public PolicyDistributedFloodProtectionProfile(String name, PolicyDistributedFloodProtectionProfileArgs args)
    public PolicyDistributedFloodProtectionProfile(String name, PolicyDistributedFloodProtectionProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyDistributedFloodProtectionProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PolicyDistributedFloodProtectionProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PolicyDistributedFloodProtectionProfileArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PolicyDistributedFloodProtectionProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyDistributedFloodProtectionProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyDistributedFloodProtectionProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var policyDistributedFloodProtectionProfileResource = new Nsxt.PolicyDistributedFloodProtectionProfile("policyDistributedFloodProtectionProfileResource", new()
    {
        DisplayName = "string",
        Context = new Nsxt.Inputs.PolicyDistributedFloodProtectionProfileContextArgs
        {
            ProjectId = "string",
        },
        Description = "string",
        EnableRstSpoofing = false,
        EnableSyncache = false,
        IcmpActiveFlowLimit = 0,
        NsxId = "string",
        OtherActiveConnLimit = 0,
        PolicyDistributedFloodProtectionProfileId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyDistributedFloodProtectionProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        TcpHalfOpenConnLimit = 0,
        UdpActiveFlowLimit = 0,
    });
    
    example, err := nsxt.NewPolicyDistributedFloodProtectionProfile(ctx, "policyDistributedFloodProtectionProfileResource", &nsxt.PolicyDistributedFloodProtectionProfileArgs{
    	DisplayName: pulumi.String("string"),
    	Context: &nsxt.PolicyDistributedFloodProtectionProfileContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Description:          pulumi.String("string"),
    	EnableRstSpoofing:    pulumi.Bool(false),
    	EnableSyncache:       pulumi.Bool(false),
    	IcmpActiveFlowLimit:  pulumi.Float64(0),
    	NsxId:                pulumi.String("string"),
    	OtherActiveConnLimit: pulumi.Float64(0),
    	PolicyDistributedFloodProtectionProfileId: pulumi.String("string"),
    	Tags: nsxt.PolicyDistributedFloodProtectionProfileTagArray{
    		&nsxt.PolicyDistributedFloodProtectionProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	TcpHalfOpenConnLimit: pulumi.Float64(0),
    	UdpActiveFlowLimit:   pulumi.Float64(0),
    })
    
    var policyDistributedFloodProtectionProfileResource = new PolicyDistributedFloodProtectionProfile("policyDistributedFloodProtectionProfileResource", PolicyDistributedFloodProtectionProfileArgs.builder()
        .displayName("string")
        .context(PolicyDistributedFloodProtectionProfileContextArgs.builder()
            .projectId("string")
            .build())
        .description("string")
        .enableRstSpoofing(false)
        .enableSyncache(false)
        .icmpActiveFlowLimit(0)
        .nsxId("string")
        .otherActiveConnLimit(0)
        .policyDistributedFloodProtectionProfileId("string")
        .tags(PolicyDistributedFloodProtectionProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .tcpHalfOpenConnLimit(0)
        .udpActiveFlowLimit(0)
        .build());
    
    policy_distributed_flood_protection_profile_resource = nsxt.PolicyDistributedFloodProtectionProfile("policyDistributedFloodProtectionProfileResource",
        display_name="string",
        context={
            "project_id": "string",
        },
        description="string",
        enable_rst_spoofing=False,
        enable_syncache=False,
        icmp_active_flow_limit=0,
        nsx_id="string",
        other_active_conn_limit=0,
        policy_distributed_flood_protection_profile_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        tcp_half_open_conn_limit=0,
        udp_active_flow_limit=0)
    
    const policyDistributedFloodProtectionProfileResource = new nsxt.PolicyDistributedFloodProtectionProfile("policyDistributedFloodProtectionProfileResource", {
        displayName: "string",
        context: {
            projectId: "string",
        },
        description: "string",
        enableRstSpoofing: false,
        enableSyncache: false,
        icmpActiveFlowLimit: 0,
        nsxId: "string",
        otherActiveConnLimit: 0,
        policyDistributedFloodProtectionProfileId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
        tcpHalfOpenConnLimit: 0,
        udpActiveFlowLimit: 0,
    });
    
    type: nsxt:PolicyDistributedFloodProtectionProfile
    properties:
        context:
            projectId: string
        description: string
        displayName: string
        enableRstSpoofing: false
        enableSyncache: false
        icmpActiveFlowLimit: 0
        nsxId: string
        otherActiveConnLimit: 0
        policyDistributedFloodProtectionProfileId: string
        tags:
            - scope: string
              tag: string
        tcpHalfOpenConnLimit: 0
        udpActiveFlowLimit: 0
    

    PolicyDistributedFloodProtectionProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The PolicyDistributedFloodProtectionProfile resource accepts the following input properties:

    DisplayName string
    Display name of the resource.
    Context PolicyDistributedFloodProtectionProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    EnableRstSpoofing bool
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    EnableSyncache bool
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    IcmpActiveFlowLimit double
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    OtherActiveConnLimit double
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    PolicyDistributedFloodProtectionProfileId string
    Tags List<PolicyDistributedFloodProtectionProfileTag>
    A list of scope + tag pairs to associate with this resource.
    TcpHalfOpenConnLimit double
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    UdpActiveFlowLimit double
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    DisplayName string
    Display name of the resource.
    Context PolicyDistributedFloodProtectionProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    EnableRstSpoofing bool
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    EnableSyncache bool
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    IcmpActiveFlowLimit float64
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    OtherActiveConnLimit float64
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    PolicyDistributedFloodProtectionProfileId string
    Tags []PolicyDistributedFloodProtectionProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    TcpHalfOpenConnLimit float64
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    UdpActiveFlowLimit float64
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    displayName String
    Display name of the resource.
    context PolicyDistributedFloodProtectionProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    enableRstSpoofing Boolean
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enableSyncache Boolean
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmpActiveFlowLimit Double
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    otherActiveConnLimit Double
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    policyDistributedFloodProtectionProfileId String
    tags List<PolicyDistributedFloodProtectionProfileTag>
    A list of scope + tag pairs to associate with this resource.
    tcpHalfOpenConnLimit Double
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udpActiveFlowLimit Double
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    displayName string
    Display name of the resource.
    context PolicyDistributedFloodProtectionProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    enableRstSpoofing boolean
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enableSyncache boolean
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmpActiveFlowLimit number
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    otherActiveConnLimit number
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    policyDistributedFloodProtectionProfileId string
    tags PolicyDistributedFloodProtectionProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    tcpHalfOpenConnLimit number
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udpActiveFlowLimit number
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    display_name str
    Display name of the resource.
    context PolicyDistributedFloodProtectionProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    enable_rst_spoofing bool
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enable_syncache bool
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmp_active_flow_limit float
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    other_active_conn_limit float
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    policy_distributed_flood_protection_profile_id str
    tags Sequence[PolicyDistributedFloodProtectionProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    tcp_half_open_conn_limit float
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udp_active_flow_limit float
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    displayName String
    Display name of the resource.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    enableRstSpoofing Boolean
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enableSyncache Boolean
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmpActiveFlowLimit Number
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    otherActiveConnLimit Number
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    policyDistributedFloodProtectionProfileId String
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    tcpHalfOpenConnLimit Number
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udpActiveFlowLimit Number
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyDistributedFloodProtectionProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    The NSX path of the policy resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyDistributedFloodProtectionProfile Resource

    Get an existing PolicyDistributedFloodProtectionProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PolicyDistributedFloodProtectionProfileState, opts?: CustomResourceOptions): PolicyDistributedFloodProtectionProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            context: Optional[PolicyDistributedFloodProtectionProfileContextArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            enable_rst_spoofing: Optional[bool] = None,
            enable_syncache: Optional[bool] = None,
            icmp_active_flow_limit: Optional[float] = None,
            nsx_id: Optional[str] = None,
            other_active_conn_limit: Optional[float] = None,
            path: Optional[str] = None,
            policy_distributed_flood_protection_profile_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyDistributedFloodProtectionProfileTagArgs]] = None,
            tcp_half_open_conn_limit: Optional[float] = None,
            udp_active_flow_limit: Optional[float] = None) -> PolicyDistributedFloodProtectionProfile
    func GetPolicyDistributedFloodProtectionProfile(ctx *Context, name string, id IDInput, state *PolicyDistributedFloodProtectionProfileState, opts ...ResourceOption) (*PolicyDistributedFloodProtectionProfile, error)
    public static PolicyDistributedFloodProtectionProfile Get(string name, Input<string> id, PolicyDistributedFloodProtectionProfileState? state, CustomResourceOptions? opts = null)
    public static PolicyDistributedFloodProtectionProfile get(String name, Output<String> id, PolicyDistributedFloodProtectionProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyDistributedFloodProtectionProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Context PolicyDistributedFloodProtectionProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    EnableRstSpoofing bool
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    EnableSyncache bool
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    IcmpActiveFlowLimit double
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    OtherActiveConnLimit double
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    Path string
    The NSX path of the policy resource.
    PolicyDistributedFloodProtectionProfileId string
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<PolicyDistributedFloodProtectionProfileTag>
    A list of scope + tag pairs to associate with this resource.
    TcpHalfOpenConnLimit double
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    UdpActiveFlowLimit double
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    Context PolicyDistributedFloodProtectionProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    EnableRstSpoofing bool
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    EnableSyncache bool
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    IcmpActiveFlowLimit float64
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    OtherActiveConnLimit float64
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    Path string
    The NSX path of the policy resource.
    PolicyDistributedFloodProtectionProfileId string
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []PolicyDistributedFloodProtectionProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    TcpHalfOpenConnLimit float64
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    UdpActiveFlowLimit float64
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    context PolicyDistributedFloodProtectionProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enableRstSpoofing Boolean
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enableSyncache Boolean
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmpActiveFlowLimit Double
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    otherActiveConnLimit Double
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    path String
    The NSX path of the policy resource.
    policyDistributedFloodProtectionProfileId String
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<PolicyDistributedFloodProtectionProfileTag>
    A list of scope + tag pairs to associate with this resource.
    tcpHalfOpenConnLimit Double
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udpActiveFlowLimit Double
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    context PolicyDistributedFloodProtectionProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    enableRstSpoofing boolean
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enableSyncache boolean
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmpActiveFlowLimit number
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    otherActiveConnLimit number
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    path string
    The NSX path of the policy resource.
    policyDistributedFloodProtectionProfileId string
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags PolicyDistributedFloodProtectionProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    tcpHalfOpenConnLimit number
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udpActiveFlowLimit number
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    context PolicyDistributedFloodProtectionProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    enable_rst_spoofing bool
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enable_syncache bool
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmp_active_flow_limit float
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    other_active_conn_limit float
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    path str
    The NSX path of the policy resource.
    policy_distributed_flood_protection_profile_id str
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[PolicyDistributedFloodProtectionProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    tcp_half_open_conn_limit float
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udp_active_flow_limit float
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enableRstSpoofing Boolean
    Flag to indicate rst spoofing is enabled. If set to true, rst spoofing will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    enableSyncache Boolean
    Flag to indicate syncache is enabled. If set to true, sync cache will be enabled. Flag is used only for distributed firewall profiles. Default: false.
    icmpActiveFlowLimit Number
    Active ICMP connections limit. If this field is empty, firewall will not set a limit to active ICMP connections. Minimum: 1, Maximum: 1000000.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the policy resource.
    otherActiveConnLimit Number
    Timeout after first TN. If this field is empty, firewall will not set a limit to other active connections. besides UDP, ICMP and half open TCP connections. Minimum: 1, Maximum: 1000000.
    path String
    The NSX path of the policy resource.
    policyDistributedFloodProtectionProfileId String
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    tcpHalfOpenConnLimit Number
    Active half open TCP connections limit. If this field is empty, firewall will not set a limit to half open TCP connections. Minimum: 1, Maximum: 1000000.
    udpActiveFlowLimit Number
    Active UDP connections limit. If this field is empty, firewall will not set a limit to active UDP connections. Minimum: 1, Maximum: 1000000.

    Supporting Types

    PolicyDistributedFloodProtectionProfileContext, PolicyDistributedFloodProtectionProfileContextArgs

    ProjectId string
    The ID of the project which the object belongs to
    ProjectId string
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to
    projectId string
    The ID of the project which the object belongs to
    project_id str
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to

    PolicyDistributedFloodProtectionProfileTag, PolicyDistributedFloodProtectionProfileTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.
    scope string
    tag string
    A list of scope + tag pairs to associate with this resource.
    scope str
    tag str
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware