1. Packages
  2. Nsxt Provider
  3. API Docs
  4. FirewallSection
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

nsxt.FirewallSection

Explore with Pulumi AI

Create FirewallSection Resource

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

Constructor syntax

new FirewallSection(name: string, args: FirewallSectionArgs, opts?: CustomResourceOptions);
@overload
def FirewallSection(resource_name: str,
                    args: FirewallSectionArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def FirewallSection(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    section_type: Optional[str] = None,
                    stateful: Optional[bool] = None,
                    applied_tos: Optional[Sequence[FirewallSectionAppliedToArgs]] = None,
                    description: Optional[str] = None,
                    display_name: Optional[str] = None,
                    firewall_section_id: Optional[str] = None,
                    insert_before: Optional[str] = None,
                    rules: Optional[Sequence[FirewallSectionRuleArgs]] = None,
                    tags: Optional[Sequence[FirewallSectionTagArgs]] = None)
func NewFirewallSection(ctx *Context, name string, args FirewallSectionArgs, opts ...ResourceOption) (*FirewallSection, error)
public FirewallSection(string name, FirewallSectionArgs args, CustomResourceOptions? opts = null)
public FirewallSection(String name, FirewallSectionArgs args)
public FirewallSection(String name, FirewallSectionArgs args, CustomResourceOptions options)
type: nsxt:FirewallSection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. FirewallSectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. FirewallSectionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. FirewallSectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. FirewallSectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. FirewallSectionArgs
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 firewallSectionResource = new Nsxt.FirewallSection("firewallSectionResource", new()
{
    SectionType = "string",
    Stateful = false,
    AppliedTos = new[]
    {
        new Nsxt.Inputs.FirewallSectionAppliedToArgs
        {
            IsValid = false,
            TargetDisplayName = "string",
            TargetId = "string",
            TargetType = "string",
        },
    },
    Description = "string",
    DisplayName = "string",
    FirewallSectionId = "string",
    InsertBefore = "string",
    Rules = new[]
    {
        new Nsxt.Inputs.FirewallSectionRuleArgs
        {
            Action = "string",
            AppliedTos = new[]
            {
                new Nsxt.Inputs.FirewallSectionRuleAppliedToArgs
                {
                    IsValid = false,
                    TargetDisplayName = "string",
                    TargetId = "string",
                    TargetType = "string",
                },
            },
            Description = "string",
            Destinations = new[]
            {
                new Nsxt.Inputs.FirewallSectionRuleDestinationArgs
                {
                    IsValid = false,
                    TargetDisplayName = "string",
                    TargetId = "string",
                    TargetType = "string",
                },
            },
            DestinationsExcluded = false,
            Direction = "string",
            Disabled = false,
            DisplayName = "string",
            Id = "string",
            IpProtocol = "string",
            Logged = false,
            Notes = "string",
            Revision = 0,
            RuleTag = "string",
            Services = new[]
            {
                new Nsxt.Inputs.FirewallSectionRuleServiceArgs
                {
                    IsValid = false,
                    TargetDisplayName = "string",
                    TargetId = "string",
                    TargetType = "string",
                },
            },
            Sources = new[]
            {
                new Nsxt.Inputs.FirewallSectionRuleSourceArgs
                {
                    IsValid = false,
                    TargetDisplayName = "string",
                    TargetId = "string",
                    TargetType = "string",
                },
            },
            SourcesExcluded = false,
        },
    },
    Tags = new[]
    {
        new Nsxt.Inputs.FirewallSectionTagArgs
        {
            Scope = "string",
            Tag = "string",
        },
    },
});
Copy
example, err := nsxt.NewFirewallSection(ctx, "firewallSectionResource", &nsxt.FirewallSectionArgs{
SectionType: pulumi.String("string"),
Stateful: pulumi.Bool(false),
AppliedTos: .FirewallSectionAppliedToArray{
&.FirewallSectionAppliedToArgs{
IsValid: pulumi.Bool(false),
TargetDisplayName: pulumi.String("string"),
TargetId: pulumi.String("string"),
TargetType: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FirewallSectionId: pulumi.String("string"),
InsertBefore: pulumi.String("string"),
Rules: .FirewallSectionRuleArray{
&.FirewallSectionRuleArgs{
Action: pulumi.String("string"),
AppliedTos: .FirewallSectionRuleAppliedToArray{
&.FirewallSectionRuleAppliedToArgs{
IsValid: pulumi.Bool(false),
TargetDisplayName: pulumi.String("string"),
TargetId: pulumi.String("string"),
TargetType: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Destinations: .FirewallSectionRuleDestinationArray{
&.FirewallSectionRuleDestinationArgs{
IsValid: pulumi.Bool(false),
TargetDisplayName: pulumi.String("string"),
TargetId: pulumi.String("string"),
TargetType: pulumi.String("string"),
},
},
DestinationsExcluded: pulumi.Bool(false),
Direction: pulumi.String("string"),
Disabled: pulumi.Bool(false),
DisplayName: pulumi.String("string"),
Id: pulumi.String("string"),
IpProtocol: pulumi.String("string"),
Logged: pulumi.Bool(false),
Notes: pulumi.String("string"),
Revision: pulumi.Float64(0),
RuleTag: pulumi.String("string"),
Services: .FirewallSectionRuleServiceArray{
&.FirewallSectionRuleServiceArgs{
IsValid: pulumi.Bool(false),
TargetDisplayName: pulumi.String("string"),
TargetId: pulumi.String("string"),
TargetType: pulumi.String("string"),
},
},
Sources: .FirewallSectionRuleSourceArray{
&.FirewallSectionRuleSourceArgs{
IsValid: pulumi.Bool(false),
TargetDisplayName: pulumi.String("string"),
TargetId: pulumi.String("string"),
TargetType: pulumi.String("string"),
},
},
SourcesExcluded: pulumi.Bool(false),
},
},
Tags: .FirewallSectionTagArray{
&.FirewallSectionTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
Copy
var firewallSectionResource = new FirewallSection("firewallSectionResource", FirewallSectionArgs.builder()
    .sectionType("string")
    .stateful(false)
    .appliedTos(FirewallSectionAppliedToArgs.builder()
        .isValid(false)
        .targetDisplayName("string")
        .targetId("string")
        .targetType("string")
        .build())
    .description("string")
    .displayName("string")
    .firewallSectionId("string")
    .insertBefore("string")
    .rules(FirewallSectionRuleArgs.builder()
        .action("string")
        .appliedTos(FirewallSectionRuleAppliedToArgs.builder()
            .isValid(false)
            .targetDisplayName("string")
            .targetId("string")
            .targetType("string")
            .build())
        .description("string")
        .destinations(FirewallSectionRuleDestinationArgs.builder()
            .isValid(false)
            .targetDisplayName("string")
            .targetId("string")
            .targetType("string")
            .build())
        .destinationsExcluded(false)
        .direction("string")
        .disabled(false)
        .displayName("string")
        .id("string")
        .ipProtocol("string")
        .logged(false)
        .notes("string")
        .revision(0)
        .ruleTag("string")
        .services(FirewallSectionRuleServiceArgs.builder()
            .isValid(false)
            .targetDisplayName("string")
            .targetId("string")
            .targetType("string")
            .build())
        .sources(FirewallSectionRuleSourceArgs.builder()
            .isValid(false)
            .targetDisplayName("string")
            .targetId("string")
            .targetType("string")
            .build())
        .sourcesExcluded(false)
        .build())
    .tags(FirewallSectionTagArgs.builder()
        .scope("string")
        .tag("string")
        .build())
    .build());
Copy
firewall_section_resource = nsxt.FirewallSection("firewallSectionResource",
    section_type="string",
    stateful=False,
    applied_tos=[{
        "is_valid": False,
        "target_display_name": "string",
        "target_id": "string",
        "target_type": "string",
    }],
    description="string",
    display_name="string",
    firewall_section_id="string",
    insert_before="string",
    rules=[{
        "action": "string",
        "applied_tos": [{
            "is_valid": False,
            "target_display_name": "string",
            "target_id": "string",
            "target_type": "string",
        }],
        "description": "string",
        "destinations": [{
            "is_valid": False,
            "target_display_name": "string",
            "target_id": "string",
            "target_type": "string",
        }],
        "destinations_excluded": False,
        "direction": "string",
        "disabled": False,
        "display_name": "string",
        "id": "string",
        "ip_protocol": "string",
        "logged": False,
        "notes": "string",
        "revision": 0,
        "rule_tag": "string",
        "services": [{
            "is_valid": False,
            "target_display_name": "string",
            "target_id": "string",
            "target_type": "string",
        }],
        "sources": [{
            "is_valid": False,
            "target_display_name": "string",
            "target_id": "string",
            "target_type": "string",
        }],
        "sources_excluded": False,
    }],
    tags=[{
        "scope": "string",
        "tag": "string",
    }])
Copy
const firewallSectionResource = new nsxt.FirewallSection("firewallSectionResource", {
    sectionType: "string",
    stateful: false,
    appliedTos: [{
        isValid: false,
        targetDisplayName: "string",
        targetId: "string",
        targetType: "string",
    }],
    description: "string",
    displayName: "string",
    firewallSectionId: "string",
    insertBefore: "string",
    rules: [{
        action: "string",
        appliedTos: [{
            isValid: false,
            targetDisplayName: "string",
            targetId: "string",
            targetType: "string",
        }],
        description: "string",
        destinations: [{
            isValid: false,
            targetDisplayName: "string",
            targetId: "string",
            targetType: "string",
        }],
        destinationsExcluded: false,
        direction: "string",
        disabled: false,
        displayName: "string",
        id: "string",
        ipProtocol: "string",
        logged: false,
        notes: "string",
        revision: 0,
        ruleTag: "string",
        services: [{
            isValid: false,
            targetDisplayName: "string",
            targetId: "string",
            targetType: "string",
        }],
        sources: [{
            isValid: false,
            targetDisplayName: "string",
            targetId: "string",
            targetType: "string",
        }],
        sourcesExcluded: false,
    }],
    tags: [{
        scope: "string",
        tag: "string",
    }],
});
Copy
type: nsxt:FirewallSection
properties:
    appliedTos:
        - isValid: false
          targetDisplayName: string
          targetId: string
          targetType: string
    description: string
    displayName: string
    firewallSectionId: string
    insertBefore: string
    rules:
        - action: string
          appliedTos:
            - isValid: false
              targetDisplayName: string
              targetId: string
              targetType: string
          description: string
          destinations:
            - isValid: false
              targetDisplayName: string
              targetId: string
              targetType: string
          destinationsExcluded: false
          direction: string
          disabled: false
          displayName: string
          id: string
          ipProtocol: string
          logged: false
          notes: string
          revision: 0
          ruleTag: string
          services:
            - isValid: false
              targetDisplayName: string
              targetId: string
              targetType: string
          sources:
            - isValid: false
              targetDisplayName: string
              targetId: string
              targetType: string
          sourcesExcluded: false
    sectionType: string
    stateful: false
    tags:
        - scope: string
          tag: string
Copy

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

SectionType This property is required. string
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
Stateful This property is required. bool
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
AppliedTos List<FirewallSectionAppliedTo>
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
Description string
Description of this firewall section.
DisplayName string
The display name of this firewall section. Defaults to ID if not set.
FirewallSectionId string
ID of the firewall section.
InsertBefore string
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
Rules List<FirewallSectionRule>
A list of rules to be applied in this section. each rule has the following arguments:
Tags List<FirewallSectionTag>
A list of scope + tag pairs to associate with this firewall section.
SectionType This property is required. string
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
Stateful This property is required. bool
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
AppliedTos []FirewallSectionAppliedToArgs
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
Description string
Description of this firewall section.
DisplayName string
The display name of this firewall section. Defaults to ID if not set.
FirewallSectionId string
ID of the firewall section.
InsertBefore string
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
Rules []FirewallSectionRuleArgs
A list of rules to be applied in this section. each rule has the following arguments:
Tags []FirewallSectionTagArgs
A list of scope + tag pairs to associate with this firewall section.
sectionType This property is required. String
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful This property is required. Boolean
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
appliedTos List<FirewallSectionAppliedTo>
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description String
Description of this firewall section.
displayName String
The display name of this firewall section. Defaults to ID if not set.
firewallSectionId String
ID of the firewall section.
insertBefore String
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
rules List<FirewallSectionRule>
A list of rules to be applied in this section. each rule has the following arguments:
tags List<FirewallSectionTag>
A list of scope + tag pairs to associate with this firewall section.
sectionType This property is required. string
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful This property is required. boolean
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
appliedTos FirewallSectionAppliedTo[]
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description string
Description of this firewall section.
displayName string
The display name of this firewall section. Defaults to ID if not set.
firewallSectionId string
ID of the firewall section.
insertBefore string
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
rules FirewallSectionRule[]
A list of rules to be applied in this section. each rule has the following arguments:
tags FirewallSectionTag[]
A list of scope + tag pairs to associate with this firewall section.
section_type This property is required. str
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful This property is required. bool
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
applied_tos Sequence[FirewallSectionAppliedToArgs]
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description str
Description of this firewall section.
display_name str
The display name of this firewall section. Defaults to ID if not set.
firewall_section_id str
ID of the firewall section.
insert_before str
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
rules Sequence[FirewallSectionRuleArgs]
A list of rules to be applied in this section. each rule has the following arguments:
tags Sequence[FirewallSectionTagArgs]
A list of scope + tag pairs to associate with this firewall section.
sectionType This property is required. String
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful This property is required. Boolean
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
appliedTos List<Property Map>
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description String
Description of this firewall section.
displayName String
The display name of this firewall section. Defaults to ID if not set.
firewallSectionId String
ID of the firewall section.
insertBefore String
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
rules List<Property Map>
A list of rules to be applied in this section. each rule has the following arguments:
tags List<Property Map>
A list of scope + tag pairs to associate with this firewall section.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
IsDefault bool
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
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.
IsDefault bool
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
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.
isDefault Boolean
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
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.
isDefault boolean
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
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.
is_default bool
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
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.
isDefault Boolean
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
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 FirewallSection Resource

Get an existing FirewallSection 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?: FirewallSectionState, opts?: CustomResourceOptions): FirewallSection
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        applied_tos: Optional[Sequence[FirewallSectionAppliedToArgs]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        firewall_section_id: Optional[str] = None,
        insert_before: Optional[str] = None,
        is_default: Optional[bool] = None,
        revision: Optional[float] = None,
        rules: Optional[Sequence[FirewallSectionRuleArgs]] = None,
        section_type: Optional[str] = None,
        stateful: Optional[bool] = None,
        tags: Optional[Sequence[FirewallSectionTagArgs]] = None) -> FirewallSection
func GetFirewallSection(ctx *Context, name string, id IDInput, state *FirewallSectionState, opts ...ResourceOption) (*FirewallSection, error)
public static FirewallSection Get(string name, Input<string> id, FirewallSectionState? state, CustomResourceOptions? opts = null)
public static FirewallSection get(String name, Output<String> id, FirewallSectionState state, CustomResourceOptions options)
resources:  _:    type: nsxt:FirewallSection    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AppliedTos List<FirewallSectionAppliedTo>
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
Description string
Description of this firewall section.
DisplayName string
The display name of this firewall section. Defaults to ID if not set.
FirewallSectionId string
ID of the firewall section.
InsertBefore string
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
IsDefault bool
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Rules List<FirewallSectionRule>
A list of rules to be applied in this section. each rule has the following arguments:
SectionType string
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
Stateful bool
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
Tags List<FirewallSectionTag>
A list of scope + tag pairs to associate with this firewall section.
AppliedTos []FirewallSectionAppliedToArgs
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
Description string
Description of this firewall section.
DisplayName string
The display name of this firewall section. Defaults to ID if not set.
FirewallSectionId string
ID of the firewall section.
InsertBefore string
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
IsDefault bool
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Rules []FirewallSectionRuleArgs
A list of rules to be applied in this section. each rule has the following arguments:
SectionType string
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
Stateful bool
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
Tags []FirewallSectionTagArgs
A list of scope + tag pairs to associate with this firewall section.
appliedTos List<FirewallSectionAppliedTo>
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description String
Description of this firewall section.
displayName String
The display name of this firewall section. Defaults to ID if not set.
firewallSectionId String
ID of the firewall section.
insertBefore String
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
isDefault Boolean
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
rules List<FirewallSectionRule>
A list of rules to be applied in this section. each rule has the following arguments:
sectionType String
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful Boolean
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
tags List<FirewallSectionTag>
A list of scope + tag pairs to associate with this firewall section.
appliedTos FirewallSectionAppliedTo[]
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description string
Description of this firewall section.
displayName string
The display name of this firewall section. Defaults to ID if not set.
firewallSectionId string
ID of the firewall section.
insertBefore string
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
isDefault boolean
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
rules FirewallSectionRule[]
A list of rules to be applied in this section. each rule has the following arguments:
sectionType string
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful boolean
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
tags FirewallSectionTag[]
A list of scope + tag pairs to associate with this firewall section.
applied_tos Sequence[FirewallSectionAppliedToArgs]
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description str
Description of this firewall section.
display_name str
The display name of this firewall section. Defaults to ID if not set.
firewall_section_id str
ID of the firewall section.
insert_before str
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
is_default bool
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
rules Sequence[FirewallSectionRuleArgs]
A list of rules to be applied in this section. each rule has the following arguments:
section_type str
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful bool
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
tags Sequence[FirewallSectionTagArgs]
A list of scope + tag pairs to associate with this firewall section.
appliedTos List<Property Map>
List of objects where the rules in this section will be enforced. This will take precedence over rule level applied_to. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouter"]
description String
Description of this firewall section.
displayName String
The display name of this firewall section. Defaults to ID if not set.
firewallSectionId String
ID of the firewall section.
insertBefore String
Firewall section id that should come immediately after this one. It is user responsibility to use this attribute in consistent manner (for example, if same value would be set in two separate sections, the outcome would depend on order of creation). Changing this attribute would force recreation of the firewall section.
isDefault Boolean
A boolean flag which reflects whether a firewall section is default section or not. Each Layer 3 and Layer 2 section will have at least and at most one default section.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
rules List<Property Map>
A list of rules to be applied in this section. each rule has the following arguments:
sectionType String
Type of the rules which a section can contain. Either LAYER2 or LAYER3. Only homogeneous sections are supported.
stateful Boolean
Stateful or Stateless nature of firewall section is enforced on all rules inside the section. Layer3 sections can be stateful or stateless. Layer2 sections can only be stateless.
tags List<Property Map>
A list of scope + tag pairs to associate with this firewall section.

Supporting Types

FirewallSectionAppliedTo
, FirewallSectionAppliedToArgs

IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource
isValid boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName string
Display name of the NSX resource
targetId string
Identifier of the NSX resource
targetType string
Type of the NSX resource
is_valid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
target_display_name str
Display name of the NSX resource
target_id str
Identifier of the NSX resource
target_type str
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource

FirewallSectionRule
, FirewallSectionRuleArgs

Action This property is required. string
Action enforced on the packets which matches the firewall rule. [Allowed values: "ALLOW", "DROP", "REJECT"]
AppliedTos List<FirewallSectionRuleAppliedTo>
List of objects where rule will be enforced. The section level field overrides this one. Null will be treated as any. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouterPort"]
Description string
Description of this rule.
Destinations List<FirewallSectionRuleDestination>
List of the destinations. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
DestinationsExcluded bool
When this boolean flag is set to true, the rule destinations will be negated.
Direction string
Rule direction in case of stateless firewall rules. This will only considered if section level parameter is set to stateless. Default to IN_OUT if not specified. [Allowed values: "IN", "OUT", "IN_OUT"]
Disabled bool
Flag to disable rule. Disabled will only be persisted but never provisioned/realized.
DisplayName string
The display name of this rule. Defaults to ID if not set.
Id string
ID of the firewall section.
IpProtocol string
Type of IP packet that should be matched while enforcing the rule. [allowed values: "IPV4", "IPV6", "IPV4_IPV6"]
Logged bool
Flag to enable packet logging. Default is disabled.
Notes string
User notes specific to the rule.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
RuleTag string
User level field which will be printed in CLI and packet logs.
Services List<FirewallSectionRuleService>
List of the services. Null will be treated as any. [Allowed target types: "NSService", "NSServiceGroup"]
Sources List<FirewallSectionRuleSource>
List of sources. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
SourcesExcluded bool
When this boolean flag is set to true, the rule sources will be negated.
Action This property is required. string
Action enforced on the packets which matches the firewall rule. [Allowed values: "ALLOW", "DROP", "REJECT"]
AppliedTos []FirewallSectionRuleAppliedTo
List of objects where rule will be enforced. The section level field overrides this one. Null will be treated as any. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouterPort"]
Description string
Description of this rule.
Destinations []FirewallSectionRuleDestination
List of the destinations. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
DestinationsExcluded bool
When this boolean flag is set to true, the rule destinations will be negated.
Direction string
Rule direction in case of stateless firewall rules. This will only considered if section level parameter is set to stateless. Default to IN_OUT if not specified. [Allowed values: "IN", "OUT", "IN_OUT"]
Disabled bool
Flag to disable rule. Disabled will only be persisted but never provisioned/realized.
DisplayName string
The display name of this rule. Defaults to ID if not set.
Id string
ID of the firewall section.
IpProtocol string
Type of IP packet that should be matched while enforcing the rule. [allowed values: "IPV4", "IPV6", "IPV4_IPV6"]
Logged bool
Flag to enable packet logging. Default is disabled.
Notes string
User notes specific to the rule.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
RuleTag string
User level field which will be printed in CLI and packet logs.
Services []FirewallSectionRuleService
List of the services. Null will be treated as any. [Allowed target types: "NSService", "NSServiceGroup"]
Sources []FirewallSectionRuleSource
List of sources. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
SourcesExcluded bool
When this boolean flag is set to true, the rule sources will be negated.
action This property is required. String
Action enforced on the packets which matches the firewall rule. [Allowed values: "ALLOW", "DROP", "REJECT"]
appliedTos List<FirewallSectionRuleAppliedTo>
List of objects where rule will be enforced. The section level field overrides this one. Null will be treated as any. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouterPort"]
description String
Description of this rule.
destinations List<FirewallSectionRuleDestination>
List of the destinations. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
destinationsExcluded Boolean
When this boolean flag is set to true, the rule destinations will be negated.
direction String
Rule direction in case of stateless firewall rules. This will only considered if section level parameter is set to stateless. Default to IN_OUT if not specified. [Allowed values: "IN", "OUT", "IN_OUT"]
disabled Boolean
Flag to disable rule. Disabled will only be persisted but never provisioned/realized.
displayName String
The display name of this rule. Defaults to ID if not set.
id String
ID of the firewall section.
ipProtocol String
Type of IP packet that should be matched while enforcing the rule. [allowed values: "IPV4", "IPV6", "IPV4_IPV6"]
logged Boolean
Flag to enable packet logging. Default is disabled.
notes String
User notes specific to the rule.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
ruleTag String
User level field which will be printed in CLI and packet logs.
services List<FirewallSectionRuleService>
List of the services. Null will be treated as any. [Allowed target types: "NSService", "NSServiceGroup"]
sources List<FirewallSectionRuleSource>
List of sources. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
sourcesExcluded Boolean
When this boolean flag is set to true, the rule sources will be negated.
action This property is required. string
Action enforced on the packets which matches the firewall rule. [Allowed values: "ALLOW", "DROP", "REJECT"]
appliedTos FirewallSectionRuleAppliedTo[]
List of objects where rule will be enforced. The section level field overrides this one. Null will be treated as any. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouterPort"]
description string
Description of this rule.
destinations FirewallSectionRuleDestination[]
List of the destinations. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
destinationsExcluded boolean
When this boolean flag is set to true, the rule destinations will be negated.
direction string
Rule direction in case of stateless firewall rules. This will only considered if section level parameter is set to stateless. Default to IN_OUT if not specified. [Allowed values: "IN", "OUT", "IN_OUT"]
disabled boolean
Flag to disable rule. Disabled will only be persisted but never provisioned/realized.
displayName string
The display name of this rule. Defaults to ID if not set.
id string
ID of the firewall section.
ipProtocol string
Type of IP packet that should be matched while enforcing the rule. [allowed values: "IPV4", "IPV6", "IPV4_IPV6"]
logged boolean
Flag to enable packet logging. Default is disabled.
notes string
User notes specific to the rule.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
ruleTag string
User level field which will be printed in CLI and packet logs.
services FirewallSectionRuleService[]
List of the services. Null will be treated as any. [Allowed target types: "NSService", "NSServiceGroup"]
sources FirewallSectionRuleSource[]
List of sources. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
sourcesExcluded boolean
When this boolean flag is set to true, the rule sources will be negated.
action This property is required. str
Action enforced on the packets which matches the firewall rule. [Allowed values: "ALLOW", "DROP", "REJECT"]
applied_tos Sequence[FirewallSectionRuleAppliedTo]
List of objects where rule will be enforced. The section level field overrides this one. Null will be treated as any. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouterPort"]
description str
Description of this rule.
destinations Sequence[FirewallSectionRuleDestination]
List of the destinations. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
destinations_excluded bool
When this boolean flag is set to true, the rule destinations will be negated.
direction str
Rule direction in case of stateless firewall rules. This will only considered if section level parameter is set to stateless. Default to IN_OUT if not specified. [Allowed values: "IN", "OUT", "IN_OUT"]
disabled bool
Flag to disable rule. Disabled will only be persisted but never provisioned/realized.
display_name str
The display name of this rule. Defaults to ID if not set.
id str
ID of the firewall section.
ip_protocol str
Type of IP packet that should be matched while enforcing the rule. [allowed values: "IPV4", "IPV6", "IPV4_IPV6"]
logged bool
Flag to enable packet logging. Default is disabled.
notes str
User notes specific to the rule.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
rule_tag str
User level field which will be printed in CLI and packet logs.
services Sequence[FirewallSectionRuleService]
List of the services. Null will be treated as any. [Allowed target types: "NSService", "NSServiceGroup"]
sources Sequence[FirewallSectionRuleSource]
List of sources. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
sources_excluded bool
When this boolean flag is set to true, the rule sources will be negated.
action This property is required. String
Action enforced on the packets which matches the firewall rule. [Allowed values: "ALLOW", "DROP", "REJECT"]
appliedTos List<Property Map>
List of objects where rule will be enforced. The section level field overrides this one. Null will be treated as any. [Supported target types: "LogicalPort", "LogicalSwitch", "NSGroup", "LogicalRouterPort"]
description String
Description of this rule.
destinations List<Property Map>
List of the destinations. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
destinationsExcluded Boolean
When this boolean flag is set to true, the rule destinations will be negated.
direction String
Rule direction in case of stateless firewall rules. This will only considered if section level parameter is set to stateless. Default to IN_OUT if not specified. [Allowed values: "IN", "OUT", "IN_OUT"]
disabled Boolean
Flag to disable rule. Disabled will only be persisted but never provisioned/realized.
displayName String
The display name of this rule. Defaults to ID if not set.
id String
ID of the firewall section.
ipProtocol String
Type of IP packet that should be matched while enforcing the rule. [allowed values: "IPV4", "IPV6", "IPV4_IPV6"]
logged Boolean
Flag to enable packet logging. Default is disabled.
notes String
User notes specific to the rule.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
ruleTag String
User level field which will be printed in CLI and packet logs.
services List<Property Map>
List of the services. Null will be treated as any. [Allowed target types: "NSService", "NSServiceGroup"]
sources List<Property Map>
List of sources. Null will be treated as any. [Allowed target types: "IPSet", "LogicalPort", "LogicalSwitch", "NSGroup", "MACSet" (depending on the section type)]
sourcesExcluded Boolean
When this boolean flag is set to true, the rule sources will be negated.

FirewallSectionRuleAppliedTo
, FirewallSectionRuleAppliedToArgs

IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource
isValid boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName string
Display name of the NSX resource
targetId string
Identifier of the NSX resource
targetType string
Type of the NSX resource
is_valid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
target_display_name str
Display name of the NSX resource
target_id str
Identifier of the NSX resource
target_type str
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource

FirewallSectionRuleDestination
, FirewallSectionRuleDestinationArgs

IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource
isValid boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName string
Display name of the NSX resource
targetId string
Identifier of the NSX resource
targetType string
Type of the NSX resource
is_valid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
target_display_name str
Display name of the NSX resource
target_id str
Identifier of the NSX resource
target_type str
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource

FirewallSectionRuleService
, FirewallSectionRuleServiceArgs

IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource
isValid boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName string
Display name of the NSX resource
targetId string
Identifier of the NSX resource
targetType string
Type of the NSX resource
is_valid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
target_display_name str
Display name of the NSX resource
target_id str
Identifier of the NSX resource
target_type str
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource

FirewallSectionRuleSource
, FirewallSectionRuleSourceArgs

IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
IsValid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
TargetDisplayName string
Display name of the NSX resource
TargetId string
Identifier of the NSX resource
TargetType string
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource
isValid boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName string
Display name of the NSX resource
targetId string
Identifier of the NSX resource
targetType string
Type of the NSX resource
is_valid bool
A boolean flag which will be set to false if the referenced NSX resource has been deleted
target_display_name str
Display name of the NSX resource
target_id str
Identifier of the NSX resource
target_type str
Type of the NSX resource
isValid Boolean
A boolean flag which will be set to false if the referenced NSX resource has been deleted
targetDisplayName String
Display name of the NSX resource
targetId String
Identifier of the NSX resource
targetType String
Type of the NSX resource

FirewallSectionTag
, FirewallSectionTagArgs

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

Package Details

Repository
nsxt vmware/terraform-provider-nsxt
License
Notes
This Pulumi package is based on the nsxt Terraform Provider.