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

nsxt.PolicyDhcpV6StaticBinding

Explore with Pulumi AI

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

    Create PolicyDhcpV6StaticBinding Resource

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

    Constructor syntax

    new PolicyDhcpV6StaticBinding(name: string, args: PolicyDhcpV6StaticBindingArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyDhcpV6StaticBinding(resource_name: str,
                                  args: PolicyDhcpV6StaticBindingArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyDhcpV6StaticBinding(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  mac_address: Optional[str] = None,
                                  segment_path: Optional[str] = None,
                                  display_name: Optional[str] = None,
                                  lease_time: Optional[float] = None,
                                  domain_names: Optional[Sequence[str]] = None,
                                  ip_addresses: Optional[Sequence[str]] = None,
                                  context: Optional[PolicyDhcpV6StaticBindingContextArgs] = None,
                                  dns_nameservers: Optional[Sequence[str]] = None,
                                  nsx_id: Optional[str] = None,
                                  policy_dhcp_v6_static_binding_id: Optional[str] = None,
                                  preferred_time: Optional[float] = None,
                                  description: Optional[str] = None,
                                  sntp_servers: Optional[Sequence[str]] = None,
                                  tags: Optional[Sequence[PolicyDhcpV6StaticBindingTagArgs]] = None)
    func NewPolicyDhcpV6StaticBinding(ctx *Context, name string, args PolicyDhcpV6StaticBindingArgs, opts ...ResourceOption) (*PolicyDhcpV6StaticBinding, error)
    public PolicyDhcpV6StaticBinding(string name, PolicyDhcpV6StaticBindingArgs args, CustomResourceOptions? opts = null)
    public PolicyDhcpV6StaticBinding(String name, PolicyDhcpV6StaticBindingArgs args)
    public PolicyDhcpV6StaticBinding(String name, PolicyDhcpV6StaticBindingArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyDhcpV6StaticBinding
    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 PolicyDhcpV6StaticBindingArgs
    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 PolicyDhcpV6StaticBindingArgs
    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 PolicyDhcpV6StaticBindingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyDhcpV6StaticBindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyDhcpV6StaticBindingArgs
    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 policyDhcpV6StaticBindingResource = new Nsxt.PolicyDhcpV6StaticBinding("policyDhcpV6StaticBindingResource", new()
    {
        MacAddress = "string",
        SegmentPath = "string",
        DisplayName = "string",
        LeaseTime = 0,
        DomainNames = new[]
        {
            "string",
        },
        IpAddresses = new[]
        {
            "string",
        },
        Context = new Nsxt.Inputs.PolicyDhcpV6StaticBindingContextArgs
        {
            ProjectId = "string",
        },
        DnsNameservers = new[]
        {
            "string",
        },
        NsxId = "string",
        PolicyDhcpV6StaticBindingId = "string",
        PreferredTime = 0,
        Description = "string",
        SntpServers = new[]
        {
            "string",
        },
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyDhcpV6StaticBindingTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyDhcpV6StaticBinding(ctx, "policyDhcpV6StaticBindingResource", &nsxt.PolicyDhcpV6StaticBindingArgs{
    	MacAddress:  pulumi.String("string"),
    	SegmentPath: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	LeaseTime:   pulumi.Float64(0),
    	DomainNames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IpAddresses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Context: &nsxt.PolicyDhcpV6StaticBindingContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	DnsNameservers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	NsxId:                       pulumi.String("string"),
    	PolicyDhcpV6StaticBindingId: pulumi.String("string"),
    	PreferredTime:               pulumi.Float64(0),
    	Description:                 pulumi.String("string"),
    	SntpServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Tags: nsxt.PolicyDhcpV6StaticBindingTagArray{
    		&nsxt.PolicyDhcpV6StaticBindingTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policyDhcpV6StaticBindingResource = new PolicyDhcpV6StaticBinding("policyDhcpV6StaticBindingResource", PolicyDhcpV6StaticBindingArgs.builder()
        .macAddress("string")
        .segmentPath("string")
        .displayName("string")
        .leaseTime(0)
        .domainNames("string")
        .ipAddresses("string")
        .context(PolicyDhcpV6StaticBindingContextArgs.builder()
            .projectId("string")
            .build())
        .dnsNameservers("string")
        .nsxId("string")
        .policyDhcpV6StaticBindingId("string")
        .preferredTime(0)
        .description("string")
        .sntpServers("string")
        .tags(PolicyDhcpV6StaticBindingTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_dhcp_v6_static_binding_resource = nsxt.PolicyDhcpV6StaticBinding("policyDhcpV6StaticBindingResource",
        mac_address="string",
        segment_path="string",
        display_name="string",
        lease_time=0,
        domain_names=["string"],
        ip_addresses=["string"],
        context={
            "project_id": "string",
        },
        dns_nameservers=["string"],
        nsx_id="string",
        policy_dhcp_v6_static_binding_id="string",
        preferred_time=0,
        description="string",
        sntp_servers=["string"],
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyDhcpV6StaticBindingResource = new nsxt.PolicyDhcpV6StaticBinding("policyDhcpV6StaticBindingResource", {
        macAddress: "string",
        segmentPath: "string",
        displayName: "string",
        leaseTime: 0,
        domainNames: ["string"],
        ipAddresses: ["string"],
        context: {
            projectId: "string",
        },
        dnsNameservers: ["string"],
        nsxId: "string",
        policyDhcpV6StaticBindingId: "string",
        preferredTime: 0,
        description: "string",
        sntpServers: ["string"],
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyDhcpV6StaticBinding
    properties:
        context:
            projectId: string
        description: string
        displayName: string
        dnsNameservers:
            - string
        domainNames:
            - string
        ipAddresses:
            - string
        leaseTime: 0
        macAddress: string
        nsxId: string
        policyDhcpV6StaticBindingId: string
        preferredTime: 0
        segmentPath: string
        sntpServers:
            - string
        tags:
            - scope: string
              tag: string
    

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

    DisplayName string
    Display name of the resource.
    MacAddress string
    MAC address of the host.
    SegmentPath string
    Policy path for segment to configure this binding on.
    Context PolicyDhcpV6StaticBindingContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DnsNameservers List<string>
    List of DNS Nameservers.
    DomainNames List<string>
    List of Domain Names.
    IpAddresses List<string>
    List of IPv6 addresses.
    LeaseTime double
    Lease time, in seconds. Defaults to 86400.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyDhcpV6StaticBindingId string
    ID of the resource.
    PreferredTime double
    Preferred time, in seconds. Must not exceed lease_lime.
    SntpServers List<string>
    List of IPv6 Addresses for SNTP Servers.
    Tags List<PolicyDhcpV6StaticBindingTag>
    A list of scope + tag pairs to associate with this resource.
    DisplayName string
    Display name of the resource.
    MacAddress string
    MAC address of the host.
    SegmentPath string
    Policy path for segment to configure this binding on.
    Context PolicyDhcpV6StaticBindingContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DnsNameservers []string
    List of DNS Nameservers.
    DomainNames []string
    List of Domain Names.
    IpAddresses []string
    List of IPv6 addresses.
    LeaseTime float64
    Lease time, in seconds. Defaults to 86400.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyDhcpV6StaticBindingId string
    ID of the resource.
    PreferredTime float64
    Preferred time, in seconds. Must not exceed lease_lime.
    SntpServers []string
    List of IPv6 Addresses for SNTP Servers.
    Tags []PolicyDhcpV6StaticBindingTagArgs
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    macAddress String
    MAC address of the host.
    segmentPath String
    Policy path for segment to configure this binding on.
    context PolicyDhcpV6StaticBindingContext
    The context which the object belongs to
    description String
    Description of the resource.
    dnsNameservers List<String>
    List of DNS Nameservers.
    domainNames List<String>
    List of Domain Names.
    ipAddresses List<String>
    List of IPv6 addresses.
    leaseTime Double
    Lease time, in seconds. Defaults to 86400.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyDhcpV6StaticBindingId String
    ID of the resource.
    preferredTime Double
    Preferred time, in seconds. Must not exceed lease_lime.
    sntpServers List<String>
    List of IPv6 Addresses for SNTP Servers.
    tags List<PolicyDhcpV6StaticBindingTag>
    A list of scope + tag pairs to associate with this resource.
    displayName string
    Display name of the resource.
    macAddress string
    MAC address of the host.
    segmentPath string
    Policy path for segment to configure this binding on.
    context PolicyDhcpV6StaticBindingContext
    The context which the object belongs to
    description string
    Description of the resource.
    dnsNameservers string[]
    List of DNS Nameservers.
    domainNames string[]
    List of Domain Names.
    ipAddresses string[]
    List of IPv6 addresses.
    leaseTime number
    Lease time, in seconds. Defaults to 86400.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyDhcpV6StaticBindingId string
    ID of the resource.
    preferredTime number
    Preferred time, in seconds. Must not exceed lease_lime.
    sntpServers string[]
    List of IPv6 Addresses for SNTP Servers.
    tags PolicyDhcpV6StaticBindingTag[]
    A list of scope + tag pairs to associate with this resource.
    display_name str
    Display name of the resource.
    mac_address str
    MAC address of the host.
    segment_path str
    Policy path for segment to configure this binding on.
    context PolicyDhcpV6StaticBindingContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    dns_nameservers Sequence[str]
    List of DNS Nameservers.
    domain_names Sequence[str]
    List of Domain Names.
    ip_addresses Sequence[str]
    List of IPv6 addresses.
    lease_time float
    Lease time, in seconds. Defaults to 86400.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_dhcp_v6_static_binding_id str
    ID of the resource.
    preferred_time float
    Preferred time, in seconds. Must not exceed lease_lime.
    sntp_servers Sequence[str]
    List of IPv6 Addresses for SNTP Servers.
    tags Sequence[PolicyDhcpV6StaticBindingTagArgs]
    A list of scope + tag pairs to associate with this resource.
    displayName String
    Display name of the resource.
    macAddress String
    MAC address of the host.
    segmentPath String
    Policy path for segment to configure this binding on.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    dnsNameservers List<String>
    List of DNS Nameservers.
    domainNames List<String>
    List of Domain Names.
    ipAddresses List<String>
    List of IPv6 addresses.
    leaseTime Number
    Lease time, in seconds. Defaults to 86400.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyDhcpV6StaticBindingId String
    ID of the resource.
    preferredTime Number
    Preferred time, in seconds. Must not exceed lease_lime.
    sntpServers List<String>
    List of IPv6 Addresses for SNTP Servers.
    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 PolicyDhcpV6StaticBinding 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 PolicyDhcpV6StaticBinding Resource

    Get an existing PolicyDhcpV6StaticBinding 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?: PolicyDhcpV6StaticBindingState, opts?: CustomResourceOptions): PolicyDhcpV6StaticBinding
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            context: Optional[PolicyDhcpV6StaticBindingContextArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            dns_nameservers: Optional[Sequence[str]] = None,
            domain_names: Optional[Sequence[str]] = None,
            ip_addresses: Optional[Sequence[str]] = None,
            lease_time: Optional[float] = None,
            mac_address: Optional[str] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_dhcp_v6_static_binding_id: Optional[str] = None,
            preferred_time: Optional[float] = None,
            revision: Optional[float] = None,
            segment_path: Optional[str] = None,
            sntp_servers: Optional[Sequence[str]] = None,
            tags: Optional[Sequence[PolicyDhcpV6StaticBindingTagArgs]] = None) -> PolicyDhcpV6StaticBinding
    func GetPolicyDhcpV6StaticBinding(ctx *Context, name string, id IDInput, state *PolicyDhcpV6StaticBindingState, opts ...ResourceOption) (*PolicyDhcpV6StaticBinding, error)
    public static PolicyDhcpV6StaticBinding Get(string name, Input<string> id, PolicyDhcpV6StaticBindingState? state, CustomResourceOptions? opts = null)
    public static PolicyDhcpV6StaticBinding get(String name, Output<String> id, PolicyDhcpV6StaticBindingState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyDhcpV6StaticBinding    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 PolicyDhcpV6StaticBindingContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    DnsNameservers List<string>
    List of DNS Nameservers.
    DomainNames List<string>
    List of Domain Names.
    IpAddresses List<string>
    List of IPv6 addresses.
    LeaseTime double
    Lease time, in seconds. Defaults to 86400.
    MacAddress string
    MAC address of the host.
    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.
    PolicyDhcpV6StaticBindingId string
    ID of the resource.
    PreferredTime double
    Preferred time, in seconds. Must not exceed lease_lime.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SegmentPath string
    Policy path for segment to configure this binding on.
    SntpServers List<string>
    List of IPv6 Addresses for SNTP Servers.
    Tags List<PolicyDhcpV6StaticBindingTag>
    A list of scope + tag pairs to associate with this resource.
    Context PolicyDhcpV6StaticBindingContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    DnsNameservers []string
    List of DNS Nameservers.
    DomainNames []string
    List of Domain Names.
    IpAddresses []string
    List of IPv6 addresses.
    LeaseTime float64
    Lease time, in seconds. Defaults to 86400.
    MacAddress string
    MAC address of the host.
    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.
    PolicyDhcpV6StaticBindingId string
    ID of the resource.
    PreferredTime float64
    Preferred time, in seconds. Must not exceed lease_lime.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    SegmentPath string
    Policy path for segment to configure this binding on.
    SntpServers []string
    List of IPv6 Addresses for SNTP Servers.
    Tags []PolicyDhcpV6StaticBindingTagArgs
    A list of scope + tag pairs to associate with this resource.
    context PolicyDhcpV6StaticBindingContext
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    dnsNameservers List<String>
    List of DNS Nameservers.
    domainNames List<String>
    List of Domain Names.
    ipAddresses List<String>
    List of IPv6 addresses.
    leaseTime Double
    Lease time, in seconds. Defaults to 86400.
    macAddress String
    MAC address of the host.
    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.
    policyDhcpV6StaticBindingId String
    ID of the resource.
    preferredTime Double
    Preferred time, in seconds. Must not exceed lease_lime.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    segmentPath String
    Policy path for segment to configure this binding on.
    sntpServers List<String>
    List of IPv6 Addresses for SNTP Servers.
    tags List<PolicyDhcpV6StaticBindingTag>
    A list of scope + tag pairs to associate with this resource.
    context PolicyDhcpV6StaticBindingContext
    The context which the object belongs to
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    dnsNameservers string[]
    List of DNS Nameservers.
    domainNames string[]
    List of Domain Names.
    ipAddresses string[]
    List of IPv6 addresses.
    leaseTime number
    Lease time, in seconds. Defaults to 86400.
    macAddress string
    MAC address of the host.
    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.
    policyDhcpV6StaticBindingId string
    ID of the resource.
    preferredTime number
    Preferred time, in seconds. Must not exceed lease_lime.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    segmentPath string
    Policy path for segment to configure this binding on.
    sntpServers string[]
    List of IPv6 Addresses for SNTP Servers.
    tags PolicyDhcpV6StaticBindingTag[]
    A list of scope + tag pairs to associate with this resource.
    context PolicyDhcpV6StaticBindingContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    dns_nameservers Sequence[str]
    List of DNS Nameservers.
    domain_names Sequence[str]
    List of Domain Names.
    ip_addresses Sequence[str]
    List of IPv6 addresses.
    lease_time float
    Lease time, in seconds. Defaults to 86400.
    mac_address str
    MAC address of the host.
    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_dhcp_v6_static_binding_id str
    ID of the resource.
    preferred_time float
    Preferred time, in seconds. Must not exceed lease_lime.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    segment_path str
    Policy path for segment to configure this binding on.
    sntp_servers Sequence[str]
    List of IPv6 Addresses for SNTP Servers.
    tags Sequence[PolicyDhcpV6StaticBindingTagArgs]
    A list of scope + tag pairs to associate with this resource.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    dnsNameservers List<String>
    List of DNS Nameservers.
    domainNames List<String>
    List of Domain Names.
    ipAddresses List<String>
    List of IPv6 addresses.
    leaseTime Number
    Lease time, in seconds. Defaults to 86400.
    macAddress String
    MAC address of the host.
    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.
    policyDhcpV6StaticBindingId String
    ID of the resource.
    preferredTime Number
    Preferred time, in seconds. Must not exceed lease_lime.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    segmentPath String
    Policy path for segment to configure this binding on.
    sntpServers List<String>
    List of IPv6 Addresses for SNTP Servers.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Supporting Types

    PolicyDhcpV6StaticBindingContext, PolicyDhcpV6StaticBindingContextArgs

    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

    PolicyDhcpV6StaticBindingTag, PolicyDhcpV6StaticBindingTagArgs

    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