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

nsxt.PolicyMacDiscoveryProfile

Explore with Pulumi AI

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

    Create PolicyMacDiscoveryProfile Resource

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

    Constructor syntax

    new PolicyMacDiscoveryProfile(name: string, args: PolicyMacDiscoveryProfileArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyMacDiscoveryProfile(resource_name: str,
                                  args: PolicyMacDiscoveryProfileArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyMacDiscoveryProfile(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  display_name: Optional[str] = None,
                                  context: Optional[PolicyMacDiscoveryProfileContextArgs] = None,
                                  description: Optional[str] = None,
                                  mac_change_enabled: Optional[bool] = None,
                                  mac_learning_enabled: Optional[bool] = None,
                                  mac_limit: Optional[float] = None,
                                  mac_limit_policy: Optional[str] = None,
                                  nsx_id: Optional[str] = None,
                                  policy_mac_discovery_profile_id: Optional[str] = None,
                                  remote_overlay_mac_limit: Optional[float] = None,
                                  tags: Optional[Sequence[PolicyMacDiscoveryProfileTagArgs]] = None,
                                  unknown_unicast_flooding_enabled: Optional[bool] = None)
    func NewPolicyMacDiscoveryProfile(ctx *Context, name string, args PolicyMacDiscoveryProfileArgs, opts ...ResourceOption) (*PolicyMacDiscoveryProfile, error)
    public PolicyMacDiscoveryProfile(string name, PolicyMacDiscoveryProfileArgs args, CustomResourceOptions? opts = null)
    public PolicyMacDiscoveryProfile(String name, PolicyMacDiscoveryProfileArgs args)
    public PolicyMacDiscoveryProfile(String name, PolicyMacDiscoveryProfileArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyMacDiscoveryProfile
    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 PolicyMacDiscoveryProfileArgs
    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 PolicyMacDiscoveryProfileArgs
    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 PolicyMacDiscoveryProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyMacDiscoveryProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyMacDiscoveryProfileArgs
    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 policyMacDiscoveryProfileResource = new Nsxt.PolicyMacDiscoveryProfile("policyMacDiscoveryProfileResource", new()
    {
        DisplayName = "string",
        Context = new Nsxt.Inputs.PolicyMacDiscoveryProfileContextArgs
        {
            ProjectId = "string",
        },
        Description = "string",
        MacChangeEnabled = false,
        MacLearningEnabled = false,
        MacLimit = 0,
        MacLimitPolicy = "string",
        NsxId = "string",
        PolicyMacDiscoveryProfileId = "string",
        RemoteOverlayMacLimit = 0,
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyMacDiscoveryProfileTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
        UnknownUnicastFloodingEnabled = false,
    });
    
    example, err := nsxt.NewPolicyMacDiscoveryProfile(ctx, "policyMacDiscoveryProfileResource", &nsxt.PolicyMacDiscoveryProfileArgs{
    	DisplayName: pulumi.String("string"),
    	Context: &nsxt.PolicyMacDiscoveryProfileContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Description:                 pulumi.String("string"),
    	MacChangeEnabled:            pulumi.Bool(false),
    	MacLearningEnabled:          pulumi.Bool(false),
    	MacLimit:                    pulumi.Float64(0),
    	MacLimitPolicy:              pulumi.String("string"),
    	NsxId:                       pulumi.String("string"),
    	PolicyMacDiscoveryProfileId: pulumi.String("string"),
    	RemoteOverlayMacLimit:       pulumi.Float64(0),
    	Tags: nsxt.PolicyMacDiscoveryProfileTagArray{
    		&nsxt.PolicyMacDiscoveryProfileTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    	UnknownUnicastFloodingEnabled: pulumi.Bool(false),
    })
    
    var policyMacDiscoveryProfileResource = new PolicyMacDiscoveryProfile("policyMacDiscoveryProfileResource", PolicyMacDiscoveryProfileArgs.builder()
        .displayName("string")
        .context(PolicyMacDiscoveryProfileContextArgs.builder()
            .projectId("string")
            .build())
        .description("string")
        .macChangeEnabled(false)
        .macLearningEnabled(false)
        .macLimit(0)
        .macLimitPolicy("string")
        .nsxId("string")
        .policyMacDiscoveryProfileId("string")
        .remoteOverlayMacLimit(0)
        .tags(PolicyMacDiscoveryProfileTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .unknownUnicastFloodingEnabled(false)
        .build());
    
    policy_mac_discovery_profile_resource = nsxt.PolicyMacDiscoveryProfile("policyMacDiscoveryProfileResource",
        display_name="string",
        context={
            "project_id": "string",
        },
        description="string",
        mac_change_enabled=False,
        mac_learning_enabled=False,
        mac_limit=0,
        mac_limit_policy="string",
        nsx_id="string",
        policy_mac_discovery_profile_id="string",
        remote_overlay_mac_limit=0,
        tags=[{
            "scope": "string",
            "tag": "string",
        }],
        unknown_unicast_flooding_enabled=False)
    
    const policyMacDiscoveryProfileResource = new nsxt.PolicyMacDiscoveryProfile("policyMacDiscoveryProfileResource", {
        displayName: "string",
        context: {
            projectId: "string",
        },
        description: "string",
        macChangeEnabled: false,
        macLearningEnabled: false,
        macLimit: 0,
        macLimitPolicy: "string",
        nsxId: "string",
        policyMacDiscoveryProfileId: "string",
        remoteOverlayMacLimit: 0,
        tags: [{
            scope: "string",
            tag: "string",
        }],
        unknownUnicastFloodingEnabled: false,
    });
    
    type: nsxt:PolicyMacDiscoveryProfile
    properties:
        context:
            projectId: string
        description: string
        displayName: string
        macChangeEnabled: false
        macLearningEnabled: false
        macLimit: 0
        macLimitPolicy: string
        nsxId: string
        policyMacDiscoveryProfileId: string
        remoteOverlayMacLimit: 0
        tags:
            - scope: string
              tag: string
        unknownUnicastFloodingEnabled: false
    

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

    DisplayName string
    Display name of the resource.
    Context PolicyMacDiscoveryProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    MacChangeEnabled bool
    MAC address change feature.
    MacLearningEnabled bool
    MAC learning feature.
    MacLimit double
    The maximum number of MAC addresses that can be learned on this port.
    MacLimitPolicy string
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyMacDiscoveryProfileId string
    ID of the resource.
    RemoteOverlayMacLimit double
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    Tags List<PolicyMacDiscoveryProfileTag>
    A list of scope + tag pairs to associate with this resource.
    UnknownUnicastFloodingEnabled bool
    Allowing flooding for unlearned MAC for ingress traffic.
    DisplayName string
    Display name of the resource.
    Context PolicyMacDiscoveryProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    MacChangeEnabled bool
    MAC address change feature.
    MacLearningEnabled bool
    MAC learning feature.
    MacLimit float64
    The maximum number of MAC addresses that can be learned on this port.
    MacLimitPolicy string
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyMacDiscoveryProfileId string
    ID of the resource.
    RemoteOverlayMacLimit float64
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    Tags []PolicyMacDiscoveryProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    UnknownUnicastFloodingEnabled bool
    Allowing flooding for unlearned MAC for ingress traffic.
    displayName String
    Display name of the resource.
    context PolicyMacDiscoveryProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    macChangeEnabled Boolean
    MAC address change feature.
    macLearningEnabled Boolean
    MAC learning feature.
    macLimit Double
    The maximum number of MAC addresses that can be learned on this port.
    macLimitPolicy String
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyMacDiscoveryProfileId String
    ID of the resource.
    remoteOverlayMacLimit Double
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    tags List<PolicyMacDiscoveryProfileTag>
    A list of scope + tag pairs to associate with this resource.
    unknownUnicastFloodingEnabled Boolean
    Allowing flooding for unlearned MAC for ingress traffic.
    displayName string
    Display name of the resource.
    context PolicyMacDiscoveryProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    macChangeEnabled boolean
    MAC address change feature.
    macLearningEnabled boolean
    MAC learning feature.
    macLimit number
    The maximum number of MAC addresses that can be learned on this port.
    macLimitPolicy string
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyMacDiscoveryProfileId string
    ID of the resource.
    remoteOverlayMacLimit number
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    tags PolicyMacDiscoveryProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    unknownUnicastFloodingEnabled boolean
    Allowing flooding for unlearned MAC for ingress traffic.
    display_name str
    Display name of the resource.
    context PolicyMacDiscoveryProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    mac_change_enabled bool
    MAC address change feature.
    mac_learning_enabled bool
    MAC learning feature.
    mac_limit float
    The maximum number of MAC addresses that can be learned on this port.
    mac_limit_policy str
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_mac_discovery_profile_id str
    ID of the resource.
    remote_overlay_mac_limit float
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    tags Sequence[PolicyMacDiscoveryProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    unknown_unicast_flooding_enabled bool
    Allowing flooding for unlearned MAC for ingress traffic.
    displayName String
    Display name of the resource.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    macChangeEnabled Boolean
    MAC address change feature.
    macLearningEnabled Boolean
    MAC learning feature.
    macLimit Number
    The maximum number of MAC addresses that can be learned on this port.
    macLimitPolicy String
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyMacDiscoveryProfileId String
    ID of the resource.
    remoteOverlayMacLimit Number
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.
    unknownUnicastFloodingEnabled Boolean
    Allowing flooding for unlearned MAC for ingress traffic.

    Outputs

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

    Get an existing PolicyMacDiscoveryProfile 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?: PolicyMacDiscoveryProfileState, opts?: CustomResourceOptions): PolicyMacDiscoveryProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            context: Optional[PolicyMacDiscoveryProfileContextArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            mac_change_enabled: Optional[bool] = None,
            mac_learning_enabled: Optional[bool] = None,
            mac_limit: Optional[float] = None,
            mac_limit_policy: Optional[str] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_mac_discovery_profile_id: Optional[str] = None,
            remote_overlay_mac_limit: Optional[float] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyMacDiscoveryProfileTagArgs]] = None,
            unknown_unicast_flooding_enabled: Optional[bool] = None) -> PolicyMacDiscoveryProfile
    func GetPolicyMacDiscoveryProfile(ctx *Context, name string, id IDInput, state *PolicyMacDiscoveryProfileState, opts ...ResourceOption) (*PolicyMacDiscoveryProfile, error)
    public static PolicyMacDiscoveryProfile Get(string name, Input<string> id, PolicyMacDiscoveryProfileState? state, CustomResourceOptions? opts = null)
    public static PolicyMacDiscoveryProfile get(String name, Output<String> id, PolicyMacDiscoveryProfileState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyMacDiscoveryProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Context PolicyMacDiscoveryProfileContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    MacChangeEnabled bool
    MAC address change feature.
    MacLearningEnabled bool
    MAC learning feature.
    MacLimit double
    The maximum number of MAC addresses that can be learned on this port.
    MacLimitPolicy string
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    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.
    PolicyMacDiscoveryProfileId string
    ID of the resource.
    RemoteOverlayMacLimit double
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    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<PolicyMacDiscoveryProfileTag>
    A list of scope + tag pairs to associate with this resource.
    UnknownUnicastFloodingEnabled bool
    Allowing flooding for unlearned MAC for ingress traffic.
    Context PolicyMacDiscoveryProfileContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    MacChangeEnabled bool
    MAC address change feature.
    MacLearningEnabled bool
    MAC learning feature.
    MacLimit float64
    The maximum number of MAC addresses that can be learned on this port.
    MacLimitPolicy string
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    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.
    PolicyMacDiscoveryProfileId string
    ID of the resource.
    RemoteOverlayMacLimit float64
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []PolicyMacDiscoveryProfileTagArgs
    A list of scope + tag pairs to associate with this resource.
    UnknownUnicastFloodingEnabled bool
    Allowing flooding for unlearned MAC for ingress traffic.
    context PolicyMacDiscoveryProfileContext
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    macChangeEnabled Boolean
    MAC address change feature.
    macLearningEnabled Boolean
    MAC learning feature.
    macLimit Double
    The maximum number of MAC addresses that can be learned on this port.
    macLimitPolicy String
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    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.
    policyMacDiscoveryProfileId String
    ID of the resource.
    remoteOverlayMacLimit Double
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    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<PolicyMacDiscoveryProfileTag>
    A list of scope + tag pairs to associate with this resource.
    unknownUnicastFloodingEnabled Boolean
    Allowing flooding for unlearned MAC for ingress traffic.
    context PolicyMacDiscoveryProfileContext
    The context which the object belongs to
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    macChangeEnabled boolean
    MAC address change feature.
    macLearningEnabled boolean
    MAC learning feature.
    macLimit number
    The maximum number of MAC addresses that can be learned on this port.
    macLimitPolicy string
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    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.
    policyMacDiscoveryProfileId string
    ID of the resource.
    remoteOverlayMacLimit number
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags PolicyMacDiscoveryProfileTag[]
    A list of scope + tag pairs to associate with this resource.
    unknownUnicastFloodingEnabled boolean
    Allowing flooding for unlearned MAC for ingress traffic.
    context PolicyMacDiscoveryProfileContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    mac_change_enabled bool
    MAC address change feature.
    mac_learning_enabled bool
    MAC learning feature.
    mac_limit float
    The maximum number of MAC addresses that can be learned on this port.
    mac_limit_policy str
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    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_mac_discovery_profile_id str
    ID of the resource.
    remote_overlay_mac_limit float
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    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[PolicyMacDiscoveryProfileTagArgs]
    A list of scope + tag pairs to associate with this resource.
    unknown_unicast_flooding_enabled bool
    Allowing flooding for unlearned MAC for ingress traffic.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    macChangeEnabled Boolean
    MAC address change feature.
    macLearningEnabled Boolean
    MAC learning feature.
    macLimit Number
    The maximum number of MAC addresses that can be learned on this port.
    macLimitPolicy String
    The policy after MAC Limit is exceeded. Possible values are ALLOW and DROP, with default being ALLOW.
    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.
    policyMacDiscoveryProfileId String
    ID of the resource.
    remoteOverlayMacLimit Number
    The maximum number of MAC addresses learned on an overlay Logical Switch.
    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.
    unknownUnicastFloodingEnabled Boolean
    Allowing flooding for unlearned MAC for ingress traffic.

    Supporting Types

    PolicyMacDiscoveryProfileContext, PolicyMacDiscoveryProfileContextArgs

    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

    PolicyMacDiscoveryProfileTag, PolicyMacDiscoveryProfileTagArgs

    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