1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyParentGatewayPolicy
nsxt 3.11.0 published on Monday, Dec 15, 2025 by vmware
nsxt logo
nsxt 3.11.0 published on Monday, Dec 15, 2025 by vmware

    Create PolicyParentGatewayPolicy Resource

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

    Constructor syntax

    new PolicyParentGatewayPolicy(name: string, args: PolicyParentGatewayPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyParentGatewayPolicy(resource_name: str,
                                  args: PolicyParentGatewayPolicyArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyParentGatewayPolicy(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  display_name: Optional[str] = None,
                                  category: Optional[str] = None,
                                  locked: Optional[bool] = None,
                                  description: Optional[str] = None,
                                  context: Optional[PolicyParentGatewayPolicyContextArgs] = None,
                                  domain: Optional[str] = None,
                                  comments: Optional[str] = None,
                                  nsx_id: Optional[str] = None,
                                  policy_parent_gateway_policy_id: Optional[str] = None,
                                  sequence_number: Optional[float] = None,
                                  stateful: Optional[bool] = None,
                                  tags: Optional[Sequence[PolicyParentGatewayPolicyTagArgs]] = None,
                                  tcp_strict: Optional[bool] = None)
    func NewPolicyParentGatewayPolicy(ctx *Context, name string, args PolicyParentGatewayPolicyArgs, opts ...ResourceOption) (*PolicyParentGatewayPolicy, error)
    public PolicyParentGatewayPolicy(string name, PolicyParentGatewayPolicyArgs args, CustomResourceOptions? opts = null)
    public PolicyParentGatewayPolicy(String name, PolicyParentGatewayPolicyArgs args)
    public PolicyParentGatewayPolicy(String name, PolicyParentGatewayPolicyArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyParentGatewayPolicy
    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 PolicyParentGatewayPolicyArgs
    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 PolicyParentGatewayPolicyArgs
    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 PolicyParentGatewayPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyParentGatewayPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyParentGatewayPolicyArgs
    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 policyParentGatewayPolicyResource = new Nsxt.PolicyParentGatewayPolicy("policyParentGatewayPolicyResource", new()
    {
        DisplayName = "string",
        Category = "string",
        Locked = false,
        Description = "string",
        Context = new Nsxt.Inputs.PolicyParentGatewayPolicyContextArgs
        {
            ProjectId = "string",
        },
        Domain = "string",
        Comments = "string",
        NsxId = "string",
        PolicyParentGatewayPolicyId = "string",
        SequenceNumber = 0,
        Stateful = false,
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyParentGatewayPolicyTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        TcpStrict = false,
    });
    
    example, err := nsxt.NewPolicyParentGatewayPolicy(ctx, "policyParentGatewayPolicyResource", &nsxt.PolicyParentGatewayPolicyArgs{
    	DisplayName: pulumi.String("string"),
    	Category:    pulumi.String("string"),
    	Locked:      pulumi.Bool(false),
    	Description: pulumi.String("string"),
    	Context: &nsxt.PolicyParentGatewayPolicyContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Domain:                      pulumi.String("string"),
    	Comments:                    pulumi.String("string"),
    	NsxId:                       pulumi.String("string"),
    	PolicyParentGatewayPolicyId: pulumi.String("string"),
    	SequenceNumber:              pulumi.Float64(0),
    	Stateful:                    pulumi.Bool(false),
    	Tags: nsxt.PolicyParentGatewayPolicyTagArray{
    		&nsxt.PolicyParentGatewayPolicyTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	TcpStrict: pulumi.Bool(false),
    })
    
    var policyParentGatewayPolicyResource = new PolicyParentGatewayPolicy("policyParentGatewayPolicyResource", PolicyParentGatewayPolicyArgs.builder()
        .displayName("string")
        .category("string")
        .locked(false)
        .description("string")
        .context(PolicyParentGatewayPolicyContextArgs.builder()
            .projectId("string")
            .build())
        .domain("string")
        .comments("string")
        .nsxId("string")
        .policyParentGatewayPolicyId("string")
        .sequenceNumber(0.0)
        .stateful(false)
        .tags(PolicyParentGatewayPolicyTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .tcpStrict(false)
        .build());
    
    policy_parent_gateway_policy_resource = nsxt.PolicyParentGatewayPolicy("policyParentGatewayPolicyResource",
        display_name="string",
        category="string",
        locked=False,
        description="string",
        context={
            "project_id": "string",
        },
        domain="string",
        comments="string",
        nsx_id="string",
        policy_parent_gateway_policy_id="string",
        sequence_number=0,
        stateful=False,
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        tcp_strict=False)
    
    const policyParentGatewayPolicyResource = new nsxt.PolicyParentGatewayPolicy("policyParentGatewayPolicyResource", {
        displayName: "string",
        category: "string",
        locked: false,
        description: "string",
        context: {
            projectId: "string",
        },
        domain: "string",
        comments: "string",
        nsxId: "string",
        policyParentGatewayPolicyId: "string",
        sequenceNumber: 0,
        stateful: false,
        tags: [{
            scope: "string",
            tag: "string",
        }],
        tcpStrict: false,
    });
    
    type: nsxt:PolicyParentGatewayPolicy
    properties:
        category: string
        comments: string
        context:
            projectId: string
        description: string
        displayName: string
        domain: string
        locked: false
        nsxId: string
        policyParentGatewayPolicyId: string
        sequenceNumber: 0
        stateful: false
        tags:
            - scope: string
              tag: string
        tcpStrict: false
    

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

    Category string
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    DisplayName string
    Display name of the resource.
    Comments string
    Comments for this Gateway Policy including lock/unlock comments.
    Context PolicyParentGatewayPolicyContext
    The context which the object belongs to
    Description string
    Description of the resource.
    Domain string
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    Locked bool
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    PolicyParentGatewayPolicyId string
    ID of the Security Policy.
    SequenceNumber double
    An int value used to resolve conflicts between security policies across domains
    Stateful bool
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    Tags List<PolicyParentGatewayPolicyTag>
    A list of scope + tag pairs to associate with this Gateway Policy.
    TcpStrict bool
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    Category string
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    DisplayName string
    Display name of the resource.
    Comments string
    Comments for this Gateway Policy including lock/unlock comments.
    Context PolicyParentGatewayPolicyContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    Domain string
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    Locked bool
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    PolicyParentGatewayPolicyId string
    ID of the Security Policy.
    SequenceNumber float64
    An int value used to resolve conflicts between security policies across domains
    Stateful bool
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    Tags []PolicyParentGatewayPolicyTagArgs
    A list of scope + tag pairs to associate with this Gateway Policy.
    TcpStrict bool
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category String
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    displayName String
    Display name of the resource.
    comments String
    Comments for this Gateway Policy including lock/unlock comments.
    context PolicyParentGatewayPolicyContext
    The context which the object belongs to
    description String
    Description of the resource.
    domain String
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked Boolean
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    policyParentGatewayPolicyId String
    ID of the Security Policy.
    sequenceNumber Double
    An int value used to resolve conflicts between security policies across domains
    stateful Boolean
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags List<PolicyParentGatewayPolicyTag>
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcpStrict Boolean
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category string
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    displayName string
    Display name of the resource.
    comments string
    Comments for this Gateway Policy including lock/unlock comments.
    context PolicyParentGatewayPolicyContext
    The context which the object belongs to
    description string
    Description of the resource.
    domain string
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked boolean
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    policyParentGatewayPolicyId string
    ID of the Security Policy.
    sequenceNumber number
    An int value used to resolve conflicts between security policies across domains
    stateful boolean
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags PolicyParentGatewayPolicyTag[]
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcpStrict boolean
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category str
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    display_name str
    Display name of the resource.
    comments str
    Comments for this Gateway Policy including lock/unlock comments.
    context PolicyParentGatewayPolicyContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    domain str
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked bool
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    policy_parent_gateway_policy_id str
    ID of the Security Policy.
    sequence_number float
    An int value used to resolve conflicts between security policies across domains
    stateful bool
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags Sequence[PolicyParentGatewayPolicyTagArgs]
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcp_strict bool
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category String
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    displayName String
    Display name of the resource.
    comments String
    Comments for this Gateway Policy including lock/unlock comments.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    domain String
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked Boolean
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    policyParentGatewayPolicyId String
    ID of the Security Policy.
    sequenceNumber Number
    An int value used to resolve conflicts between security policies across domains
    stateful Boolean
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcpStrict Boolean
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyParentGatewayPolicy 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 PolicyParentGatewayPolicy Resource

    Get an existing PolicyParentGatewayPolicy 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?: PolicyParentGatewayPolicyState, opts?: CustomResourceOptions): PolicyParentGatewayPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            category: Optional[str] = None,
            comments: Optional[str] = None,
            context: Optional[PolicyParentGatewayPolicyContextArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            domain: Optional[str] = None,
            locked: Optional[bool] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_parent_gateway_policy_id: Optional[str] = None,
            revision: Optional[float] = None,
            sequence_number: Optional[float] = None,
            stateful: Optional[bool] = None,
            tags: Optional[Sequence[PolicyParentGatewayPolicyTagArgs]] = None,
            tcp_strict: Optional[bool] = None) -> PolicyParentGatewayPolicy
    func GetPolicyParentGatewayPolicy(ctx *Context, name string, id IDInput, state *PolicyParentGatewayPolicyState, opts ...ResourceOption) (*PolicyParentGatewayPolicy, error)
    public static PolicyParentGatewayPolicy Get(string name, Input<string> id, PolicyParentGatewayPolicyState? state, CustomResourceOptions? opts = null)
    public static PolicyParentGatewayPolicy get(String name, Output<String> id, PolicyParentGatewayPolicyState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyParentGatewayPolicy    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:
    Category string
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    Comments string
    Comments for this Gateway Policy including lock/unlock comments.
    Context PolicyParentGatewayPolicyContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    Domain string
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    Locked bool
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    Path string
    The NSX path of the policy resource.
    PolicyParentGatewayPolicyId string
    ID of the Security Policy.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SequenceNumber double
    An int value used to resolve conflicts between security policies across domains
    Stateful bool
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    Tags List<PolicyParentGatewayPolicyTag>
    A list of scope + tag pairs to associate with this Gateway Policy.
    TcpStrict bool
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    Category string
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    Comments string
    Comments for this Gateway Policy including lock/unlock comments.
    Context PolicyParentGatewayPolicyContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    Domain string
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    Locked bool
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    Path string
    The NSX path of the policy resource.
    PolicyParentGatewayPolicyId string
    ID of the Security Policy.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SequenceNumber float64
    An int value used to resolve conflicts between security policies across domains
    Stateful bool
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    Tags []PolicyParentGatewayPolicyTagArgs
    A list of scope + tag pairs to associate with this Gateway Policy.
    TcpStrict bool
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category String
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    comments String
    Comments for this Gateway Policy including lock/unlock comments.
    context PolicyParentGatewayPolicyContext
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    domain String
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked Boolean
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    path String
    The NSX path of the policy resource.
    policyParentGatewayPolicyId String
    ID of the Security Policy.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sequenceNumber Double
    An int value used to resolve conflicts between security policies across domains
    stateful Boolean
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags List<PolicyParentGatewayPolicyTag>
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcpStrict Boolean
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category string
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    comments string
    Comments for this Gateway Policy including lock/unlock comments.
    context PolicyParentGatewayPolicyContext
    The context which the object belongs to
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    domain string
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked boolean
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    path string
    The NSX path of the policy resource.
    policyParentGatewayPolicyId string
    ID of the Security Policy.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sequenceNumber number
    An int value used to resolve conflicts between security policies across domains
    stateful boolean
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags PolicyParentGatewayPolicyTag[]
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcpStrict boolean
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category str
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    comments str
    Comments for this Gateway Policy including lock/unlock comments.
    context PolicyParentGatewayPolicyContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    domain str
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked bool
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    path str
    The NSX path of the policy resource.
    policy_parent_gateway_policy_id str
    ID of the Security Policy.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sequence_number float
    An int value used to resolve conflicts between security policies across domains
    stateful bool
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags Sequence[PolicyParentGatewayPolicyTagArgs]
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcp_strict bool
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.
    category String
    The category to use for priority of this Gateway Policy. For local manager must be one of: Emergency, SystemRules, SharedPreRules, LocalGatewayRules, AutoServiceRules and Default. For global manager must be SharedPreRules or LocalGatewayRules.
    comments String
    Comments for this Gateway Policy including lock/unlock comments.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    domain String
    The domain to use for the Gateway Policy. This domain must already exist. For VMware Cloud on AWS use cgw.
    locked Boolean
    A boolean value indicating if the policy is locked. If locked, no other users can update the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the Gateway Policy resource.
    path String
    The NSX path of the policy resource.
    policyParentGatewayPolicyId String
    ID of the Security Policy.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    sequenceNumber Number
    An int value used to resolve conflicts between security policies across domains
    stateful Boolean
    A boolean value to indicate if this Policy is stateful. When it is stateful, the state of the network connects are tracked and a stateful packet inspection is performed.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this Gateway Policy.
    tcpStrict Boolean
    A boolean value to enable/disable a 3 way TCP handshake is done before the data packets are sent.

    Supporting Types

    PolicyParentGatewayPolicyContext, PolicyParentGatewayPolicyContextArgs

    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

    PolicyParentGatewayPolicyTag, PolicyParentGatewayPolicyTagArgs

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

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.11.0 published on Monday, Dec 15, 2025 by vmware
      Meet Neo: Your AI Platform Teammate