1. Packages
  2. Vcd Provider
  3. API Docs
  4. NsxtEdgegatewayDhcpv6
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.NsxtEdgegatewayDhcpv6

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create NsxtEdgegatewayDhcpv6 Resource

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

    Constructor syntax

    new NsxtEdgegatewayDhcpv6(name: string, args: NsxtEdgegatewayDhcpv6Args, opts?: CustomResourceOptions);
    @overload
    def NsxtEdgegatewayDhcpv6(resource_name: str,
                              args: NsxtEdgegatewayDhcpv6Args,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def NsxtEdgegatewayDhcpv6(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              edge_gateway_id: Optional[str] = None,
                              mode: Optional[str] = None,
                              dns_servers: Optional[Sequence[str]] = None,
                              domain_names: Optional[Sequence[str]] = None,
                              nsxt_edgegateway_dhcpv6_id: Optional[str] = None,
                              org: Optional[str] = None)
    func NewNsxtEdgegatewayDhcpv6(ctx *Context, name string, args NsxtEdgegatewayDhcpv6Args, opts ...ResourceOption) (*NsxtEdgegatewayDhcpv6, error)
    public NsxtEdgegatewayDhcpv6(string name, NsxtEdgegatewayDhcpv6Args args, CustomResourceOptions? opts = null)
    public NsxtEdgegatewayDhcpv6(String name, NsxtEdgegatewayDhcpv6Args args)
    public NsxtEdgegatewayDhcpv6(String name, NsxtEdgegatewayDhcpv6Args args, CustomResourceOptions options)
    
    type: vcd:NsxtEdgegatewayDhcpv6
    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 NsxtEdgegatewayDhcpv6Args
    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 NsxtEdgegatewayDhcpv6Args
    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 NsxtEdgegatewayDhcpv6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NsxtEdgegatewayDhcpv6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NsxtEdgegatewayDhcpv6Args
    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 nsxtEdgegatewayDhcpv6Resource = new Vcd.NsxtEdgegatewayDhcpv6("nsxtEdgegatewayDhcpv6Resource", new()
    {
        EdgeGatewayId = "string",
        Mode = "string",
        DnsServers = new[]
        {
            "string",
        },
        DomainNames = new[]
        {
            "string",
        },
        NsxtEdgegatewayDhcpv6Id = "string",
        Org = "string",
    });
    
    example, err := vcd.NewNsxtEdgegatewayDhcpv6(ctx, "nsxtEdgegatewayDhcpv6Resource", &vcd.NsxtEdgegatewayDhcpv6Args{
    	EdgeGatewayId: pulumi.String("string"),
    	Mode:          pulumi.String("string"),
    	DnsServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DomainNames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	NsxtEdgegatewayDhcpv6Id: pulumi.String("string"),
    	Org:                     pulumi.String("string"),
    })
    
    var nsxtEdgegatewayDhcpv6Resource = new NsxtEdgegatewayDhcpv6("nsxtEdgegatewayDhcpv6Resource", NsxtEdgegatewayDhcpv6Args.builder()
        .edgeGatewayId("string")
        .mode("string")
        .dnsServers("string")
        .domainNames("string")
        .nsxtEdgegatewayDhcpv6Id("string")
        .org("string")
        .build());
    
    nsxt_edgegateway_dhcpv6_resource = vcd.NsxtEdgegatewayDhcpv6("nsxtEdgegatewayDhcpv6Resource",
        edge_gateway_id="string",
        mode="string",
        dns_servers=["string"],
        domain_names=["string"],
        nsxt_edgegateway_dhcpv6_id="string",
        org="string")
    
    const nsxtEdgegatewayDhcpv6Resource = new vcd.NsxtEdgegatewayDhcpv6("nsxtEdgegatewayDhcpv6Resource", {
        edgeGatewayId: "string",
        mode: "string",
        dnsServers: ["string"],
        domainNames: ["string"],
        nsxtEdgegatewayDhcpv6Id: "string",
        org: "string",
    });
    
    type: vcd:NsxtEdgegatewayDhcpv6
    properties:
        dnsServers:
            - string
        domainNames:
            - string
        edgeGatewayId: string
        mode: string
        nsxtEdgegatewayDhcpv6Id: string
        org: string
    

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

    EdgeGatewayId string
    NSX-T Edge Gateway ID
    Mode string
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    DnsServers List<string>
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    DomainNames List<string>
    Set of domain names (only applicable for DHCPv6 mode)
    NsxtEdgegatewayDhcpv6Id string
    Org string
    Org in which the NSX-T Edge Gateway is located
    EdgeGatewayId string
    NSX-T Edge Gateway ID
    Mode string
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    DnsServers []string
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    DomainNames []string
    Set of domain names (only applicable for DHCPv6 mode)
    NsxtEdgegatewayDhcpv6Id string
    Org string
    Org in which the NSX-T Edge Gateway is located
    edgeGatewayId String
    NSX-T Edge Gateway ID
    mode String
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    dnsServers List<String>
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domainNames List<String>
    Set of domain names (only applicable for DHCPv6 mode)
    nsxtEdgegatewayDhcpv6Id String
    org String
    Org in which the NSX-T Edge Gateway is located
    edgeGatewayId string
    NSX-T Edge Gateway ID
    mode string
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    dnsServers string[]
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domainNames string[]
    Set of domain names (only applicable for DHCPv6 mode)
    nsxtEdgegatewayDhcpv6Id string
    org string
    Org in which the NSX-T Edge Gateway is located
    edge_gateway_id str
    NSX-T Edge Gateway ID
    mode str
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    dns_servers Sequence[str]
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domain_names Sequence[str]
    Set of domain names (only applicable for DHCPv6 mode)
    nsxt_edgegateway_dhcpv6_id str
    org str
    Org in which the NSX-T Edge Gateway is located
    edgeGatewayId String
    NSX-T Edge Gateway ID
    mode String
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    dnsServers List<String>
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domainNames List<String>
    Set of domain names (only applicable for DHCPv6 mode)
    nsxtEdgegatewayDhcpv6Id String
    org String
    Org in which the NSX-T Edge Gateway is located

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NsxtEdgegatewayDhcpv6 Resource

    Get an existing NsxtEdgegatewayDhcpv6 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?: NsxtEdgegatewayDhcpv6State, opts?: CustomResourceOptions): NsxtEdgegatewayDhcpv6
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dns_servers: Optional[Sequence[str]] = None,
            domain_names: Optional[Sequence[str]] = None,
            edge_gateway_id: Optional[str] = None,
            mode: Optional[str] = None,
            nsxt_edgegateway_dhcpv6_id: Optional[str] = None,
            org: Optional[str] = None) -> NsxtEdgegatewayDhcpv6
    func GetNsxtEdgegatewayDhcpv6(ctx *Context, name string, id IDInput, state *NsxtEdgegatewayDhcpv6State, opts ...ResourceOption) (*NsxtEdgegatewayDhcpv6, error)
    public static NsxtEdgegatewayDhcpv6 Get(string name, Input<string> id, NsxtEdgegatewayDhcpv6State? state, CustomResourceOptions? opts = null)
    public static NsxtEdgegatewayDhcpv6 get(String name, Output<String> id, NsxtEdgegatewayDhcpv6State state, CustomResourceOptions options)
    resources:  _:    type: vcd:NsxtEdgegatewayDhcpv6    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:
    DnsServers List<string>
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    DomainNames List<string>
    Set of domain names (only applicable for DHCPv6 mode)
    EdgeGatewayId string
    NSX-T Edge Gateway ID
    Mode string
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    NsxtEdgegatewayDhcpv6Id string
    Org string
    Org in which the NSX-T Edge Gateway is located
    DnsServers []string
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    DomainNames []string
    Set of domain names (only applicable for DHCPv6 mode)
    EdgeGatewayId string
    NSX-T Edge Gateway ID
    Mode string
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    NsxtEdgegatewayDhcpv6Id string
    Org string
    Org in which the NSX-T Edge Gateway is located
    dnsServers List<String>
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domainNames List<String>
    Set of domain names (only applicable for DHCPv6 mode)
    edgeGatewayId String
    NSX-T Edge Gateway ID
    mode String
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    nsxtEdgegatewayDhcpv6Id String
    org String
    Org in which the NSX-T Edge Gateway is located
    dnsServers string[]
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domainNames string[]
    Set of domain names (only applicable for DHCPv6 mode)
    edgeGatewayId string
    NSX-T Edge Gateway ID
    mode string
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    nsxtEdgegatewayDhcpv6Id string
    org string
    Org in which the NSX-T Edge Gateway is located
    dns_servers Sequence[str]
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domain_names Sequence[str]
    Set of domain names (only applicable for DHCPv6 mode)
    edge_gateway_id str
    NSX-T Edge Gateway ID
    mode str
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    nsxt_edgegateway_dhcpv6_id str
    org str
    Org in which the NSX-T Edge Gateway is located
    dnsServers List<String>
    Set of IPv6 DNS servers (only applicable for DHCPv6 mode)
    domainNames List<String>
    Set of domain names (only applicable for DHCPv6 mode)
    edgeGatewayId String
    NSX-T Edge Gateway ID
    mode String
    One of SLAAC (Stateless Address Autoconfiguration), DHCPv6 (Dynamic Host Configuration Protocol) or DISABLED (to disable the service). Note: destroying the resource will also disable DHCPv6.
    nsxtEdgegatewayDhcpv6Id String
    org String
    Org in which the NSX-T Edge Gateway is located

    Package Details

    Repository
    vcd vmware/terraform-provider-vcd
    License
    Notes
    This Pulumi package is based on the vcd Terraform Provider.
    vcd logo
    vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware