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

nsxt.PolicySegmentSecurityProfile

Explore with Pulumi AI

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

    Create PolicySegmentSecurityProfile Resource

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

    Constructor syntax

    new PolicySegmentSecurityProfile(name: string, args: PolicySegmentSecurityProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicySegmentSecurityProfile(resource_name: str,
                                     args: PolicySegmentSecurityProfileInitArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicySegmentSecurityProfile(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     display_name: Optional[str] = None,
                                     dhcp_client_block_enabled: Optional[bool] = None,
                                     policy_segment_security_profile_id: Optional[str] = None,
                                     description: Optional[str] = None,
                                     bpdu_filter_allows: Optional[Sequence[str]] = None,
                                     dhcp_client_block_v6_enabled: Optional[bool] = None,
                                     dhcp_server_block_enabled: Optional[bool] = None,
                                     context: Optional[PolicySegmentSecurityProfileContextArgs] = None,
                                     non_ip_traffic_block_enabled: Optional[bool] = None,
                                     dhcp_server_block_v6_enabled: Optional[bool] = None,
                                     nsx_id: Optional[str] = None,
                                     bpdu_filter_enable: Optional[bool] = None,
                                     ra_guard_enabled: Optional[bool] = None,
                                     rate_limits: Optional[Sequence[PolicySegmentSecurityProfileRateLimitArgs]] = None,
                                     rate_limits_enabled: Optional[bool] = None,
                                     tags: Optional[Sequence[PolicySegmentSecurityProfileTagArgs]] = None)
    func NewPolicySegmentSecurityProfile(ctx *Context, name string, args PolicySegmentSecurityProfileArgs, opts ...ResourceOption) (*PolicySegmentSecurityProfile, error)
    public PolicySegmentSecurityProfile(string name, PolicySegmentSecurityProfileArgs args, CustomResourceOptions? opts = null)
    public PolicySegmentSecurityProfile(String name, PolicySegmentSecurityProfileArgs args)
    public PolicySegmentSecurityProfile(String name, PolicySegmentSecurityProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicySegmentSecurityProfile
    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 PolicySegmentSecurityProfileArgs
    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 PolicySegmentSecurityProfileInitArgs
    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 PolicySegmentSecurityProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicySegmentSecurityProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicySegmentSecurityProfileArgs
    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 policySegmentSecurityProfileResource = new Nsxt.PolicySegmentSecurityProfile("policySegmentSecurityProfileResource", new()
    {
        DisplayName = "string",
        DhcpClientBlockEnabled = false,
        PolicySegmentSecurityProfileId = "string",
        Description = "string",
        BpduFilterAllows = new[]
        {
            "string",
        },
        DhcpClientBlockV6Enabled = false,
        DhcpServerBlockEnabled = false,
        Context = new Nsxt.Inputs.PolicySegmentSecurityProfileContextArgs
        {
            ProjectId = "string",
        },
        NonIpTrafficBlockEnabled = false,
        DhcpServerBlockV6Enabled = false,
        NsxId = "string",
        BpduFilterEnable = false,
        RaGuardEnabled = false,
        RateLimits = new[]
        {
            new Nsxt.Inputs.PolicySegmentSecurityProfileRateLimitArgs
            {
                RxBroadcast = 0,
                RxMulticast = 0,
                TxBroadcast = 0,
                TxMulticast = 0,
            },
        },
        RateLimitsEnabled = false,
        Tags = new[]
        {
            new Nsxt.Inputs.PolicySegmentSecurityProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicySegmentSecurityProfile(ctx, "policySegmentSecurityProfileResource", &nsxt.PolicySegmentSecurityProfileArgs{
    	DisplayName:                    pulumi.String("string"),
    	DhcpClientBlockEnabled:         pulumi.Bool(false),
    	PolicySegmentSecurityProfileId: pulumi.String("string"),
    	Description:                    pulumi.String("string"),
    	BpduFilterAllows: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DhcpClientBlockV6Enabled: pulumi.Bool(false),
    	DhcpServerBlockEnabled:   pulumi.Bool(false),
    	Context: &nsxt.PolicySegmentSecurityProfileContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	NonIpTrafficBlockEnabled: pulumi.Bool(false),
    	DhcpServerBlockV6Enabled: pulumi.Bool(false),
    	NsxId:                    pulumi.String("string"),
    	BpduFilterEnable:         pulumi.Bool(false),
    	RaGuardEnabled:           pulumi.Bool(false),
    	RateLimits: nsxt.PolicySegmentSecurityProfileRateLimitArray{
    		&nsxt.PolicySegmentSecurityProfileRateLimitArgs{
    			RxBroadcast: pulumi.Float64(0),
    			RxMulticast: pulumi.Float64(0),
    			TxBroadcast: pulumi.Float64(0),
    			TxMulticast: pulumi.Float64(0),
    		},
    	},
    	RateLimitsEnabled: pulumi.Bool(false),
    	Tags: nsxt.PolicySegmentSecurityProfileTagArray{
    		&nsxt.PolicySegmentSecurityProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policySegmentSecurityProfileResource = new PolicySegmentSecurityProfile("policySegmentSecurityProfileResource", PolicySegmentSecurityProfileArgs.builder()
        .displayName("string")
        .dhcpClientBlockEnabled(false)
        .policySegmentSecurityProfileId("string")
        .description("string")
        .bpduFilterAllows("string")
        .dhcpClientBlockV6Enabled(false)
        .dhcpServerBlockEnabled(false)
        .context(PolicySegmentSecurityProfileContextArgs.builder()
            .projectId("string")
            .build())
        .nonIpTrafficBlockEnabled(false)
        .dhcpServerBlockV6Enabled(false)
        .nsxId("string")
        .bpduFilterEnable(false)
        .raGuardEnabled(false)
        .rateLimits(PolicySegmentSecurityProfileRateLimitArgs.builder()
            .rxBroadcast(0)
            .rxMulticast(0)
            .txBroadcast(0)
            .txMulticast(0)
            .build())
        .rateLimitsEnabled(false)
        .tags(PolicySegmentSecurityProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_segment_security_profile_resource = nsxt.PolicySegmentSecurityProfile("policySegmentSecurityProfileResource",
        display_name="string",
        dhcp_client_block_enabled=False,
        policy_segment_security_profile_id="string",
        description="string",
        bpdu_filter_allows=["string"],
        dhcp_client_block_v6_enabled=False,
        dhcp_server_block_enabled=False,
        context={
            "project_id": "string",
        },
        non_ip_traffic_block_enabled=False,
        dhcp_server_block_v6_enabled=False,
        nsx_id="string",
        bpdu_filter_enable=False,
        ra_guard_enabled=False,
        rate_limits=[{
            "rx_broadcast": 0,
            "rx_multicast": 0,
            "tx_broadcast": 0,
            "tx_multicast": 0,
        }],
        rate_limits_enabled=False,
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policySegmentSecurityProfileResource = new nsxt.PolicySegmentSecurityProfile("policySegmentSecurityProfileResource", {
        displayName: "string",
        dhcpClientBlockEnabled: false,
        policySegmentSecurityProfileId: "string",
        description: "string",
        bpduFilterAllows: ["string"],
        dhcpClientBlockV6Enabled: false,
        dhcpServerBlockEnabled: false,
        context: {
            projectId: "string",
        },
        nonIpTrafficBlockEnabled: false,
        dhcpServerBlockV6Enabled: false,
        nsxId: "string",
        bpduFilterEnable: false,
        raGuardEnabled: false,
        rateLimits: [{
            rxBroadcast: 0,
            rxMulticast: 0,
            txBroadcast: 0,
            txMulticast: 0,
        }],
        rateLimitsEnabled: false,
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicySegmentSecurityProfile
    properties:
        bpduFilterAllows:
            - string
        bpduFilterEnable: false
        context:
            projectId: string
        description: string
        dhcpClientBlockEnabled: false
        dhcpClientBlockV6Enabled: false
        dhcpServerBlockEnabled: false
        dhcpServerBlockV6Enabled: false
        displayName: string
        nonIpTrafficBlockEnabled: false
        nsxId: string
        policySegmentSecurityProfileId: string
        raGuardEnabled: false
        rateLimits:
            - rxBroadcast: 0
              rxMulticast: 0
              txBroadcast: 0
              txMulticast: 0
        rateLimitsEnabled: false
        tags:
            - scope: string
              tag: string
    

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

    DisplayName string
    Display name of the resource.
    BpduFilterAllows List<string>
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    BpduFilterEnable bool
    Indicates whether BPDU filter is enabled. Default is True.
    Context PolicySegmentSecurityProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DhcpClientBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is False.
    DhcpClientBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    DhcpServerBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is True.
    DhcpServerBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    NonIpTrafficBlockEnabled bool
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicySegmentSecurityProfileId string
    ID of the resource.
    RaGuardEnabled bool
    Enable or disable Router Advertisement Guard. Default is False
    RateLimits List<PolicySegmentSecurityProfileRateLimit>
    Rate limits.
    RateLimitsEnabled bool
    Enable or disable Rate Limits. Default is False.
    Tags List<PolicySegmentSecurityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    DisplayName string
    Display name of the resource.
    BpduFilterAllows []string
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    BpduFilterEnable bool
    Indicates whether BPDU filter is enabled. Default is True.
    Context PolicySegmentSecurityProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DhcpClientBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is False.
    DhcpClientBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    DhcpServerBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is True.
    DhcpServerBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    NonIpTrafficBlockEnabled bool
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicySegmentSecurityProfileId string
    ID of the resource.
    RaGuardEnabled bool
    Enable or disable Router Advertisement Guard. Default is False
    RateLimits []PolicySegmentSecurityProfileRateLimitArgs
    Rate limits.
    RateLimitsEnabled bool
    Enable or disable Rate Limits. Default is False.
    Tags []PolicySegmentSecurityProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    bpduFilterAllows List<String>
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpduFilterEnable Boolean
    Indicates whether BPDU filter is enabled. Default is True.
    context PolicySegmentSecurityProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    dhcpClientBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is False.
    dhcpClientBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcpServerBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is True.
    dhcpServerBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    nonIpTrafficBlockEnabled Boolean
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policySegmentSecurityProfileId String
    ID of the resource.
    raGuardEnabled Boolean
    Enable or disable Router Advertisement Guard. Default is False
    rateLimits List<PolicySegmentSecurityProfileRateLimit>
    Rate limits.
    rateLimitsEnabled Boolean
    Enable or disable Rate Limits. Default is False.
    tags List<PolicySegmentSecurityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    displayName string
    Display name of the resource.
    bpduFilterAllows string[]
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpduFilterEnable boolean
    Indicates whether BPDU filter is enabled. Default is True.
    context PolicySegmentSecurityProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    dhcpClientBlockEnabled boolean
    Filters DHCP server and/or client traffic. Default is False.
    dhcpClientBlockV6Enabled boolean
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcpServerBlockEnabled boolean
    Filters DHCP server and/or client traffic. Default is True.
    dhcpServerBlockV6Enabled boolean
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    nonIpTrafficBlockEnabled boolean
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policySegmentSecurityProfileId string
    ID of the resource.
    raGuardEnabled boolean
    Enable or disable Router Advertisement Guard. Default is False
    rateLimits PolicySegmentSecurityProfileRateLimit[]
    Rate limits.
    rateLimitsEnabled boolean
    Enable or disable Rate Limits. Default is False.
    tags PolicySegmentSecurityProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    display_name str
    Display name of the resource.
    bpdu_filter_allows Sequence[str]
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpdu_filter_enable bool
    Indicates whether BPDU filter is enabled. Default is True.
    context PolicySegmentSecurityProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    dhcp_client_block_enabled bool
    Filters DHCP server and/or client traffic. Default is False.
    dhcp_client_block_v6_enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcp_server_block_enabled bool
    Filters DHCP server and/or client traffic. Default is True.
    dhcp_server_block_v6_enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    non_ip_traffic_block_enabled bool
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_segment_security_profile_id str
    ID of the resource.
    ra_guard_enabled bool
    Enable or disable Router Advertisement Guard. Default is False
    rate_limits Sequence[PolicySegmentSecurityProfileRateLimitArgs]
    Rate limits.
    rate_limits_enabled bool
    Enable or disable Rate Limits. Default is False.
    tags Sequence[PolicySegmentSecurityProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    bpduFilterAllows List<String>
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpduFilterEnable Boolean
    Indicates whether BPDU filter is enabled. Default is True.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    dhcpClientBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is False.
    dhcpClientBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcpServerBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is True.
    dhcpServerBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    nonIpTrafficBlockEnabled Boolean
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policySegmentSecurityProfileId String
    ID of the resource.
    raGuardEnabled Boolean
    Enable or disable Router Advertisement Guard. Default is False
    rateLimits List<Property Map>
    Rate limits.
    rateLimitsEnabled Boolean
    Enable or disable Rate Limits. Default is False.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Outputs

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

    Get an existing PolicySegmentSecurityProfile 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?: PolicySegmentSecurityProfileState, opts?: CustomResourceOptions): PolicySegmentSecurityProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bpdu_filter_allows: Optional[Sequence[str]] = None,
            bpdu_filter_enable: Optional[bool] = None,
            context: Optional[PolicySegmentSecurityProfileContextArgs] = None,
            description: Optional[str] = None,
            dhcp_client_block_enabled: Optional[bool] = None,
            dhcp_client_block_v6_enabled: Optional[bool] = None,
            dhcp_server_block_enabled: Optional[bool] = None,
            dhcp_server_block_v6_enabled: Optional[bool] = None,
            display_name: Optional[str] = None,
            non_ip_traffic_block_enabled: Optional[bool] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_segment_security_profile_id: Optional[str] = None,
            ra_guard_enabled: Optional[bool] = None,
            rate_limits: Optional[Sequence[PolicySegmentSecurityProfileRateLimitArgs]] = None,
            rate_limits_enabled: Optional[bool] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicySegmentSecurityProfileTagArgs]] = None) -> PolicySegmentSecurityProfile
    func GetPolicySegmentSecurityProfile(ctx *Context, name string, id IDInput, state *PolicySegmentSecurityProfileState, opts ...ResourceOption) (*PolicySegmentSecurityProfile, error)
    public static PolicySegmentSecurityProfile Get(string name, Input<string> id, PolicySegmentSecurityProfileState? state, CustomResourceOptions? opts = null)
    public static PolicySegmentSecurityProfile get(String name, Output<String> id, PolicySegmentSecurityProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicySegmentSecurityProfile    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:
    BpduFilterAllows List<string>
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    BpduFilterEnable bool
    Indicates whether BPDU filter is enabled. Default is True.
    Context PolicySegmentSecurityProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DhcpClientBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is False.
    DhcpClientBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    DhcpServerBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is True.
    DhcpServerBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    DisplayName string
    Display name of the resource.
    NonIpTrafficBlockEnabled bool
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicySegmentSecurityProfileId string
    ID of the resource.
    RaGuardEnabled bool
    Enable or disable Router Advertisement Guard. Default is False
    RateLimits List<PolicySegmentSecurityProfileRateLimit>
    Rate limits.
    RateLimitsEnabled bool
    Enable or disable Rate Limits. Default is False.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<PolicySegmentSecurityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    BpduFilterAllows []string
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    BpduFilterEnable bool
    Indicates whether BPDU filter is enabled. Default is True.
    Context PolicySegmentSecurityProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DhcpClientBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is False.
    DhcpClientBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    DhcpServerBlockEnabled bool
    Filters DHCP server and/or client traffic. Default is True.
    DhcpServerBlockV6Enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    DisplayName string
    Display name of the resource.
    NonIpTrafficBlockEnabled bool
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the policy resource.
    PolicySegmentSecurityProfileId string
    ID of the resource.
    RaGuardEnabled bool
    Enable or disable Router Advertisement Guard. Default is False
    RateLimits []PolicySegmentSecurityProfileRateLimitArgs
    Rate limits.
    RateLimitsEnabled bool
    Enable or disable Rate Limits. Default is False.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []PolicySegmentSecurityProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    bpduFilterAllows List<String>
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpduFilterEnable Boolean
    Indicates whether BPDU filter is enabled. Default is True.
    context PolicySegmentSecurityProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    dhcpClientBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is False.
    dhcpClientBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcpServerBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is True.
    dhcpServerBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    displayName String
    Display name of the resource.
    nonIpTrafficBlockEnabled Boolean
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policySegmentSecurityProfileId String
    ID of the resource.
    raGuardEnabled Boolean
    Enable or disable Router Advertisement Guard. Default is False
    rateLimits List<PolicySegmentSecurityProfileRateLimit>
    Rate limits.
    rateLimitsEnabled Boolean
    Enable or disable Rate Limits. Default is False.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<PolicySegmentSecurityProfileTag>
    A list of scope + tag pairs to associate with this resource.
    bpduFilterAllows string[]
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpduFilterEnable boolean
    Indicates whether BPDU filter is enabled. Default is True.
    context PolicySegmentSecurityProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    dhcpClientBlockEnabled boolean
    Filters DHCP server and/or client traffic. Default is False.
    dhcpClientBlockV6Enabled boolean
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcpServerBlockEnabled boolean
    Filters DHCP server and/or client traffic. Default is True.
    dhcpServerBlockV6Enabled boolean
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    displayName string
    Display name of the resource.
    nonIpTrafficBlockEnabled boolean
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path string
    The NSX path of the policy resource.
    policySegmentSecurityProfileId string
    ID of the resource.
    raGuardEnabled boolean
    Enable or disable Router Advertisement Guard. Default is False
    rateLimits PolicySegmentSecurityProfileRateLimit[]
    Rate limits.
    rateLimitsEnabled boolean
    Enable or disable Rate Limits. Default is False.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags PolicySegmentSecurityProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    bpdu_filter_allows Sequence[str]
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpdu_filter_enable bool
    Indicates whether BPDU filter is enabled. Default is True.
    context PolicySegmentSecurityProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    dhcp_client_block_enabled bool
    Filters DHCP server and/or client traffic. Default is False.
    dhcp_client_block_v6_enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcp_server_block_enabled bool
    Filters DHCP server and/or client traffic. Default is True.
    dhcp_server_block_v6_enabled bool
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    display_name str
    Display name of the resource.
    non_ip_traffic_block_enabled bool
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path str
    The NSX path of the policy resource.
    policy_segment_security_profile_id str
    ID of the resource.
    ra_guard_enabled bool
    Enable or disable Router Advertisement Guard. Default is False
    rate_limits Sequence[PolicySegmentSecurityProfileRateLimitArgs]
    Rate limits.
    rate_limits_enabled bool
    Enable or disable Rate Limits. Default is False.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[PolicySegmentSecurityProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    bpduFilterAllows List<String>
    List of allowed MAC addresses to be excluded from BPDU filtering. List of allowed MACs - 01:80:c2:00:00:00, 01:80:c2:00:00:01, 01:80:c2:00:00:02, 01:80:c2:00:00:03, 01:80:c2:00:00:04, 01:80:c2:00:00:05, 01:80:c2:00:00:06, 01:80:c2:00:00:07, 01:80:c2:00:00:08, 01:80:c2:00:00:09, 01:80:c2:00:00:0a, 01:80:c2:00:00:0b, 01:80:c2:00:00:0c, 01:80:c2:00:00:0d, 01:80:c2:00:00:0e, 01:80:c2:00:00:0f, 00:e0:2b:00:00:00, 00:e0:2b:00:00:04, 00:e0:2b:00:00:06, 01:00:0c:00:00:00, 01:00:0c:cc:cc:cc, 01:00:0c:cc:cc:cd, 01:00:0c:cd:cd:cd, 01:00:0c:cc:cc:c0, 01:00:0c:cc:cc:c1, 01:00:0c:cc:cc:c2, 01:00:0c:cc:cc:c3, 01:00:0c:cc:cc:c4, 01:00:0c:cc:cc:c5, 01:00:0c:cc:cc:c6, 01:00:0c:cc:cc:c7.
    bpduFilterEnable Boolean
    Indicates whether BPDU filter is enabled. Default is True.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    dhcpClientBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is False.
    dhcpClientBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is False.
    dhcpServerBlockEnabled Boolean
    Filters DHCP server and/or client traffic. Default is True.
    dhcpServerBlockV6Enabled Boolean
    Filters DHCP server and/or client IPv6 traffic. Default is True.
    displayName String
    Display name of the resource.
    nonIpTrafficBlockEnabled Boolean
    A flag to block all traffic except IP/(G)ARP/BPDU. Default is False.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the policy resource.
    policySegmentSecurityProfileId String
    ID of the resource.
    raGuardEnabled Boolean
    Enable or disable Router Advertisement Guard. Default is False
    rateLimits List<Property Map>
    Rate limits.
    rateLimitsEnabled Boolean
    Enable or disable Rate Limits. Default is False.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Supporting Types

    PolicySegmentSecurityProfileContext, PolicySegmentSecurityProfileContextArgs

    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

    PolicySegmentSecurityProfileRateLimit, PolicySegmentSecurityProfileRateLimitArgs

    RxBroadcast double
    Incoming broadcast traffic limit in packets per second.
    RxMulticast double
    Incoming multicast traffic limit in packets per second.
    TxBroadcast double
    Outgoing broadcast traffic limit in packets per second.
    TxMulticast double
    Outgoing multicast traffic limit in packets per second.
    RxBroadcast float64
    Incoming broadcast traffic limit in packets per second.
    RxMulticast float64
    Incoming multicast traffic limit in packets per second.
    TxBroadcast float64
    Outgoing broadcast traffic limit in packets per second.
    TxMulticast float64
    Outgoing multicast traffic limit in packets per second.
    rxBroadcast Double
    Incoming broadcast traffic limit in packets per second.
    rxMulticast Double
    Incoming multicast traffic limit in packets per second.
    txBroadcast Double
    Outgoing broadcast traffic limit in packets per second.
    txMulticast Double
    Outgoing multicast traffic limit in packets per second.
    rxBroadcast number
    Incoming broadcast traffic limit in packets per second.
    rxMulticast number
    Incoming multicast traffic limit in packets per second.
    txBroadcast number
    Outgoing broadcast traffic limit in packets per second.
    txMulticast number
    Outgoing multicast traffic limit in packets per second.
    rx_broadcast float
    Incoming broadcast traffic limit in packets per second.
    rx_multicast float
    Incoming multicast traffic limit in packets per second.
    tx_broadcast float
    Outgoing broadcast traffic limit in packets per second.
    tx_multicast float
    Outgoing multicast traffic limit in packets per second.
    rxBroadcast Number
    Incoming broadcast traffic limit in packets per second.
    rxMulticast Number
    Incoming multicast traffic limit in packets per second.
    txBroadcast Number
    Outgoing broadcast traffic limit in packets per second.
    txMulticast Number
    Outgoing multicast traffic limit in packets per second.

    PolicySegmentSecurityProfileTag, PolicySegmentSecurityProfileTagArgs

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

    Package Details

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