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

nsxt.PolicyGatewayFloodProtectionProfile

Explore with Pulumi AI

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

    Create PolicyGatewayFloodProtectionProfile Resource

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

    Constructor syntax

    new PolicyGatewayFloodProtectionProfile(name: string, args: PolicyGatewayFloodProtectionProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyGatewayFloodProtectionProfile(resource_name: str,
                                            args: PolicyGatewayFloodProtectionProfileArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyGatewayFloodProtectionProfile(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            display_name: Optional[str] = None,
                                            context: Optional[PolicyGatewayFloodProtectionProfileContextArgs] = None,
                                            description: Optional[str] = None,
                                            icmp_active_flow_limit: Optional[float] = None,
                                            nat_active_conn_limit: Optional[float] = None,
                                            nsx_id: Optional[str] = None,
                                            other_active_conn_limit: Optional[float] = None,
                                            policy_gateway_flood_protection_profile_id: Optional[str] = None,
                                            tags: Optional[Sequence[PolicyGatewayFloodProtectionProfileTagArgs]] = None,
                                            tcp_half_open_conn_limit: Optional[float] = None,
                                            udp_active_flow_limit: Optional[float] = None)
    func NewPolicyGatewayFloodProtectionProfile(ctx *Context, name string, args PolicyGatewayFloodProtectionProfileArgs, opts ...ResourceOption) (*PolicyGatewayFloodProtectionProfile, error)
    public PolicyGatewayFloodProtectionProfile(string name, PolicyGatewayFloodProtectionProfileArgs args, CustomResourceOptions? opts = null)
    public PolicyGatewayFloodProtectionProfile(String name, PolicyGatewayFloodProtectionProfileArgs args)
    public PolicyGatewayFloodProtectionProfile(String name, PolicyGatewayFloodProtectionProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyGatewayFloodProtectionProfile
    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 PolicyGatewayFloodProtectionProfileArgs
    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 PolicyGatewayFloodProtectionProfileArgs
    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 PolicyGatewayFloodProtectionProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyGatewayFloodProtectionProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyGatewayFloodProtectionProfileArgs
    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 policyGatewayFloodProtectionProfileResource = new Nsxt.PolicyGatewayFloodProtectionProfile("policyGatewayFloodProtectionProfileResource", new()
    {
        DisplayName = "string",
        Context = new Nsxt.Inputs.PolicyGatewayFloodProtectionProfileContextArgs
        {
            ProjectId = "string",
        },
        Description = "string",
        IcmpActiveFlowLimit = 0,
        NatActiveConnLimit = 0,
        NsxId = "string",
        OtherActiveConnLimit = 0,
        PolicyGatewayFloodProtectionProfileId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyGatewayFloodProtectionProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        TcpHalfOpenConnLimit = 0,
        UdpActiveFlowLimit = 0,
    });
    
    example, err := nsxt.NewPolicyGatewayFloodProtectionProfile(ctx, "policyGatewayFloodProtectionProfileResource", &nsxt.PolicyGatewayFloodProtectionProfileArgs{
    	DisplayName: pulumi.String("string"),
    	Context: &nsxt.PolicyGatewayFloodProtectionProfileContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Description:                           pulumi.String("string"),
    	IcmpActiveFlowLimit:                   pulumi.Float64(0),
    	NatActiveConnLimit:                    pulumi.Float64(0),
    	NsxId:                                 pulumi.String("string"),
    	OtherActiveConnLimit:                  pulumi.Float64(0),
    	PolicyGatewayFloodProtectionProfileId: pulumi.String("string"),
    	Tags: nsxt.PolicyGatewayFloodProtectionProfileTagArray{
    		&nsxt.PolicyGatewayFloodProtectionProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	TcpHalfOpenConnLimit: pulumi.Float64(0),
    	UdpActiveFlowLimit:   pulumi.Float64(0),
    })
    
    var policyGatewayFloodProtectionProfileResource = new PolicyGatewayFloodProtectionProfile("policyGatewayFloodProtectionProfileResource", PolicyGatewayFloodProtectionProfileArgs.builder()
        .displayName("string")
        .context(PolicyGatewayFloodProtectionProfileContextArgs.builder()
            .projectId("string")
            .build())
        .description("string")
        .icmpActiveFlowLimit(0)
        .natActiveConnLimit(0)
        .nsxId("string")
        .otherActiveConnLimit(0)
        .policyGatewayFloodProtectionProfileId("string")
        .tags(PolicyGatewayFloodProtectionProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .tcpHalfOpenConnLimit(0)
        .udpActiveFlowLimit(0)
        .build());
    
    policy_gateway_flood_protection_profile_resource = nsxt.PolicyGatewayFloodProtectionProfile("policyGatewayFloodProtectionProfileResource",
        display_name="string",
        context={
            "project_id": "string",
        },
        description="string",
        icmp_active_flow_limit=0,
        nat_active_conn_limit=0,
        nsx_id="string",
        other_active_conn_limit=0,
        policy_gateway_flood_protection_profile_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        tcp_half_open_conn_limit=0,
        udp_active_flow_limit=0)
    
    const policyGatewayFloodProtectionProfileResource = new nsxt.PolicyGatewayFloodProtectionProfile("policyGatewayFloodProtectionProfileResource", {
        displayName: "string",
        context: {
            projectId: "string",
        },
        description: "string",
        icmpActiveFlowLimit: 0,
        natActiveConnLimit: 0,
        nsxId: "string",
        otherActiveConnLimit: 0,
        policyGatewayFloodProtectionProfileId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
        tcpHalfOpenConnLimit: 0,
        udpActiveFlowLimit: 0,
    });
    
    type: nsxt:PolicyGatewayFloodProtectionProfile
    properties:
        context:
            projectId: string
        description: string
        displayName: string
        icmpActiveFlowLimit: 0
        natActiveConnLimit: 0
        nsxId: string
        otherActiveConnLimit: 0
        policyGatewayFloodProtectionProfileId: string
        tags:
            - scope: string
              tag: string
        tcpHalfOpenConnLimit: 0
        udpActiveFlowLimit: 0
    

    PolicyGatewayFloodProtectionProfile 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 PolicyGatewayFloodProtectionProfile resource accepts the following input properties:

    DisplayName string
    Display name of the resource.
    Context PolicyGatewayFloodProtectionProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    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.
    NatActiveConnLimit double
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    PolicyGatewayFloodProtectionProfileId string
    Tags List<PolicyGatewayFloodProtectionProfileTag>
    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 PolicyGatewayFloodProtectionProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    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.
    NatActiveConnLimit float64
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    PolicyGatewayFloodProtectionProfileId string
    Tags []PolicyGatewayFloodProtectionProfileTagArgs
    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 PolicyGatewayFloodProtectionProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    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.
    natActiveConnLimit Double
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    policyGatewayFloodProtectionProfileId String
    tags List<PolicyGatewayFloodProtectionProfileTag>
    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 PolicyGatewayFloodProtectionProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    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.
    natActiveConnLimit number
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    policyGatewayFloodProtectionProfileId string
    tags PolicyGatewayFloodProtectionProfileTag[]
    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 PolicyGatewayFloodProtectionProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    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.
    nat_active_conn_limit float
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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_gateway_flood_protection_profile_id str
    tags Sequence[PolicyGatewayFloodProtectionProfileTagArgs]
    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.
    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.
    natActiveConnLimit Number
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    policyGatewayFloodProtectionProfileId 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 PolicyGatewayFloodProtectionProfile 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 PolicyGatewayFloodProtectionProfile Resource

    Get an existing PolicyGatewayFloodProtectionProfile 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?: PolicyGatewayFloodProtectionProfileState, opts?: CustomResourceOptions): PolicyGatewayFloodProtectionProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            context: Optional[PolicyGatewayFloodProtectionProfileContextArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            icmp_active_flow_limit: Optional[float] = None,
            nat_active_conn_limit: Optional[float] = None,
            nsx_id: Optional[str] = None,
            other_active_conn_limit: Optional[float] = None,
            path: Optional[str] = None,
            policy_gateway_flood_protection_profile_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyGatewayFloodProtectionProfileTagArgs]] = None,
            tcp_half_open_conn_limit: Optional[float] = None,
            udp_active_flow_limit: Optional[float] = None) -> PolicyGatewayFloodProtectionProfile
    func GetPolicyGatewayFloodProtectionProfile(ctx *Context, name string, id IDInput, state *PolicyGatewayFloodProtectionProfileState, opts ...ResourceOption) (*PolicyGatewayFloodProtectionProfile, error)
    public static PolicyGatewayFloodProtectionProfile Get(string name, Input<string> id, PolicyGatewayFloodProtectionProfileState? state, CustomResourceOptions? opts = null)
    public static PolicyGatewayFloodProtectionProfile get(String name, Output<String> id, PolicyGatewayFloodProtectionProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyGatewayFloodProtectionProfile    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 PolicyGatewayFloodProtectionProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    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.
    NatActiveConnLimit double
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    PolicyGatewayFloodProtectionProfileId 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<PolicyGatewayFloodProtectionProfileTag>
    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 PolicyGatewayFloodProtectionProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    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.
    NatActiveConnLimit float64
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    PolicyGatewayFloodProtectionProfileId 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 []PolicyGatewayFloodProtectionProfileTagArgs
    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 PolicyGatewayFloodProtectionProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    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.
    natActiveConnLimit Double
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    policyGatewayFloodProtectionProfileId 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<PolicyGatewayFloodProtectionProfileTag>
    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 PolicyGatewayFloodProtectionProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    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.
    natActiveConnLimit number
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    policyGatewayFloodProtectionProfileId 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 PolicyGatewayFloodProtectionProfileTag[]
    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 PolicyGatewayFloodProtectionProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    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.
    nat_active_conn_limit float
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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_gateway_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[PolicyGatewayFloodProtectionProfileTagArgs]
    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.
    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.
    natActiveConnLimit Number
    Maximum limit of active NAT connections. The maximum limit of active NAT connections. This limit only apply to EDGE components (such as, gateway). If this property is omitted, or set to null, then there is no limit on the specific component. Meanwhile there is an implicit limit which depends on the underlying hardware resource. Minimum: 1, Maximum: 4294967295, Default: 4294967295
    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.
    policyGatewayFloodProtectionProfileId 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

    PolicyGatewayFloodProtectionProfileContext, PolicyGatewayFloodProtectionProfileContextArgs

    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

    PolicyGatewayFloodProtectionProfileTag, PolicyGatewayFloodProtectionProfileTagArgs

    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