nsxt.PolicyDhcpV4StaticBinding
Explore with Pulumi AI
Create PolicyDhcpV4StaticBinding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyDhcpV4StaticBinding(name: string, args: PolicyDhcpV4StaticBindingArgs, opts?: CustomResourceOptions);
@overload
def PolicyDhcpV4StaticBinding(resource_name: str,
args: PolicyDhcpV4StaticBindingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyDhcpV4StaticBinding(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
segment_path: Optional[str] = None,
mac_address: Optional[str] = None,
ip_address: Optional[str] = None,
dhcp_option121s: Optional[Sequence[PolicyDhcpV4StaticBindingDhcpOption121Args]] = None,
gateway_address: Optional[str] = None,
hostname: Optional[str] = None,
context: Optional[PolicyDhcpV4StaticBindingContextArgs] = None,
lease_time: Optional[float] = None,
dhcp_generic_options: Optional[Sequence[PolicyDhcpV4StaticBindingDhcpGenericOptionArgs]] = None,
nsx_id: Optional[str] = None,
policy_dhcp_v4_static_binding_id: Optional[str] = None,
description: Optional[str] = None,
tags: Optional[Sequence[PolicyDhcpV4StaticBindingTagArgs]] = None)
func NewPolicyDhcpV4StaticBinding(ctx *Context, name string, args PolicyDhcpV4StaticBindingArgs, opts ...ResourceOption) (*PolicyDhcpV4StaticBinding, error)
public PolicyDhcpV4StaticBinding(string name, PolicyDhcpV4StaticBindingArgs args, CustomResourceOptions? opts = null)
public PolicyDhcpV4StaticBinding(String name, PolicyDhcpV4StaticBindingArgs args)
public PolicyDhcpV4StaticBinding(String name, PolicyDhcpV4StaticBindingArgs args, CustomResourceOptions options)
type: nsxt:PolicyDhcpV4StaticBinding
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 PolicyDhcpV4StaticBindingArgs
- 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 PolicyDhcpV4StaticBindingArgs
- 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 PolicyDhcpV4StaticBindingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyDhcpV4StaticBindingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyDhcpV4StaticBindingArgs
- 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 policyDhcpV4StaticBindingResource = new Nsxt.PolicyDhcpV4StaticBinding("policyDhcpV4StaticBindingResource", new()
{
DisplayName = "string",
SegmentPath = "string",
MacAddress = "string",
IpAddress = "string",
DhcpOption121s = new[]
{
new Nsxt.Inputs.PolicyDhcpV4StaticBindingDhcpOption121Args
{
Network = "string",
NextHop = "string",
},
},
GatewayAddress = "string",
Hostname = "string",
Context = new Nsxt.Inputs.PolicyDhcpV4StaticBindingContextArgs
{
ProjectId = "string",
},
LeaseTime = 0,
DhcpGenericOptions = new[]
{
new Nsxt.Inputs.PolicyDhcpV4StaticBindingDhcpGenericOptionArgs
{
Code = 0,
Values = new[]
{
"string",
},
},
},
NsxId = "string",
PolicyDhcpV4StaticBindingId = "string",
Description = "string",
Tags = new[]
{
new Nsxt.Inputs.PolicyDhcpV4StaticBindingTagArgs
{
Scope = "string",
Tag = "string",
},
},
});
example, err := nsxt.NewPolicyDhcpV4StaticBinding(ctx, "policyDhcpV4StaticBindingResource", &nsxt.PolicyDhcpV4StaticBindingArgs{
DisplayName: pulumi.String("string"),
SegmentPath: pulumi.String("string"),
MacAddress: pulumi.String("string"),
IpAddress: pulumi.String("string"),
DhcpOption121s: nsxt.PolicyDhcpV4StaticBindingDhcpOption121Array{
&nsxt.PolicyDhcpV4StaticBindingDhcpOption121Args{
Network: pulumi.String("string"),
NextHop: pulumi.String("string"),
},
},
GatewayAddress: pulumi.String("string"),
Hostname: pulumi.String("string"),
Context: &nsxt.PolicyDhcpV4StaticBindingContextArgs{
ProjectId: pulumi.String("string"),
},
LeaseTime: pulumi.Float64(0),
DhcpGenericOptions: nsxt.PolicyDhcpV4StaticBindingDhcpGenericOptionArray{
&nsxt.PolicyDhcpV4StaticBindingDhcpGenericOptionArgs{
Code: pulumi.Float64(0),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
NsxId: pulumi.String("string"),
PolicyDhcpV4StaticBindingId: pulumi.String("string"),
Description: pulumi.String("string"),
Tags: nsxt.PolicyDhcpV4StaticBindingTagArray{
&nsxt.PolicyDhcpV4StaticBindingTagArgs{
Scope: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
})
var policyDhcpV4StaticBindingResource = new PolicyDhcpV4StaticBinding("policyDhcpV4StaticBindingResource", PolicyDhcpV4StaticBindingArgs.builder()
.displayName("string")
.segmentPath("string")
.macAddress("string")
.ipAddress("string")
.dhcpOption121s(PolicyDhcpV4StaticBindingDhcpOption121Args.builder()
.network("string")
.nextHop("string")
.build())
.gatewayAddress("string")
.hostname("string")
.context(PolicyDhcpV4StaticBindingContextArgs.builder()
.projectId("string")
.build())
.leaseTime(0)
.dhcpGenericOptions(PolicyDhcpV4StaticBindingDhcpGenericOptionArgs.builder()
.code(0)
.values("string")
.build())
.nsxId("string")
.policyDhcpV4StaticBindingId("string")
.description("string")
.tags(PolicyDhcpV4StaticBindingTagArgs.builder()
.scope("string")
.tag("string")
.build())
.build());
policy_dhcp_v4_static_binding_resource = nsxt.PolicyDhcpV4StaticBinding("policyDhcpV4StaticBindingResource",
display_name="string",
segment_path="string",
mac_address="string",
ip_address="string",
dhcp_option121s=[{
"network": "string",
"next_hop": "string",
}],
gateway_address="string",
hostname="string",
context={
"project_id": "string",
},
lease_time=0,
dhcp_generic_options=[{
"code": 0,
"values": ["string"],
}],
nsx_id="string",
policy_dhcp_v4_static_binding_id="string",
description="string",
tags=[{
"scope": "string",
"tag": "string",
}])
const policyDhcpV4StaticBindingResource = new nsxt.PolicyDhcpV4StaticBinding("policyDhcpV4StaticBindingResource", {
displayName: "string",
segmentPath: "string",
macAddress: "string",
ipAddress: "string",
dhcpOption121s: [{
network: "string",
nextHop: "string",
}],
gatewayAddress: "string",
hostname: "string",
context: {
projectId: "string",
},
leaseTime: 0,
dhcpGenericOptions: [{
code: 0,
values: ["string"],
}],
nsxId: "string",
policyDhcpV4StaticBindingId: "string",
description: "string",
tags: [{
scope: "string",
tag: "string",
}],
});
type: nsxt:PolicyDhcpV4StaticBinding
properties:
context:
projectId: string
description: string
dhcpGenericOptions:
- code: 0
values:
- string
dhcpOption121s:
- network: string
nextHop: string
displayName: string
gatewayAddress: string
hostname: string
ipAddress: string
leaseTime: 0
macAddress: string
nsxId: string
policyDhcpV4StaticBindingId: string
segmentPath: string
tags:
- scope: string
tag: string
PolicyDhcpV4StaticBinding 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 PolicyDhcpV4StaticBinding resource accepts the following input properties:
- Display
Name string - Display name of the resource.
- Ip
Address string - The IPv4 address must belong to the subnet, if any, configured on Segment.
- Mac
Address string - MAC address of the host.
- Segment
Path string - Policy path for segment to configure this binding on.
- Context
Policy
Dhcp V4Static Binding Context - The context which the object belongs to
- Description string
- Description of the resource.
- Dhcp
Generic List<PolicyOptions Dhcp V4Static Binding Dhcp Generic Option> - Generic DHCP options.
- Dhcp
Option121s List<PolicyDhcp V4Static Binding Dhcp Option121> - DHCP classless static routes.
- Gateway
Address string - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- Hostname string
- Hostname to assign to the host.
- Lease
Time double - Lease time, in seconds. Defaults to 86400.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Dhcp stringV4Static Binding Id - ID of the resource.
- List<Policy
Dhcp V4Static Binding Tag> - A list of scope + tag pairs to associate with this resource.
- Display
Name string - Display name of the resource.
- Ip
Address string - The IPv4 address must belong to the subnet, if any, configured on Segment.
- Mac
Address string - MAC address of the host.
- Segment
Path string - Policy path for segment to configure this binding on.
- Context
Policy
Dhcp V4Static Binding Context Args - The context which the object belongs to
- Description string
- Description of the resource.
- Dhcp
Generic []PolicyOptions Dhcp V4Static Binding Dhcp Generic Option Args - Generic DHCP options.
- Dhcp
Option121s []PolicyDhcp V4Static Binding Dhcp Option121Args - DHCP classless static routes.
- Gateway
Address string - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- Hostname string
- Hostname to assign to the host.
- Lease
Time float64 - Lease time, in seconds. Defaults to 86400.
- Nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- Policy
Dhcp stringV4Static Binding Id - ID of the resource.
- []Policy
Dhcp V4Static Binding Tag Args - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- ip
Address String - The IPv4 address must belong to the subnet, if any, configured on Segment.
- mac
Address String - MAC address of the host.
- segment
Path String - Policy path for segment to configure this binding on.
- context
Policy
Dhcp V4Static Binding Context - The context which the object belongs to
- description String
- Description of the resource.
- dhcp
Generic List<PolicyOptions Dhcp V4Static Binding Dhcp Generic Option> - Generic DHCP options.
- dhcp
Option121s List<PolicyDhcp V4Static Binding Dhcp Option121> - DHCP classless static routes.
- gateway
Address String - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname String
- Hostname to assign to the host.
- lease
Time Double - Lease time, in seconds. Defaults to 86400.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Dhcp StringV4Static Binding Id - ID of the resource.
- List<Policy
Dhcp V4Static Binding Tag> - A list of scope + tag pairs to associate with this resource.
- display
Name string - Display name of the resource.
- ip
Address string - The IPv4 address must belong to the subnet, if any, configured on Segment.
- mac
Address string - MAC address of the host.
- segment
Path string - Policy path for segment to configure this binding on.
- context
Policy
Dhcp V4Static Binding Context - The context which the object belongs to
- description string
- Description of the resource.
- dhcp
Generic PolicyOptions Dhcp V4Static Binding Dhcp Generic Option[] - Generic DHCP options.
- dhcp
Option121s PolicyDhcp V4Static Binding Dhcp Option121[] - DHCP classless static routes.
- gateway
Address string - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname string
- Hostname to assign to the host.
- lease
Time number - Lease time, in seconds. Defaults to 86400.
- nsx
Id string - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Dhcp stringV4Static Binding Id - ID of the resource.
- Policy
Dhcp V4Static Binding Tag[] - A list of scope + tag pairs to associate with this resource.
- display_
name str - Display name of the resource.
- ip_
address str - The IPv4 address must belong to the subnet, if any, configured on Segment.
- mac_
address str - MAC address of the host.
- segment_
path str - Policy path for segment to configure this binding on.
- context
Policy
Dhcp V4Static Binding Context Args - The context which the object belongs to
- description str
- Description of the resource.
- dhcp_
generic_ Sequence[Policyoptions Dhcp V4Static Binding Dhcp Generic Option Args] - Generic DHCP options.
- dhcp_
option121s Sequence[PolicyDhcp V4Static Binding Dhcp Option121Args] - DHCP classless static routes.
- gateway_
address str - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname str
- Hostname to assign to the host.
- 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_ strv4_ static_ binding_ id - ID of the resource.
- Sequence[Policy
Dhcp V4Static Binding Tag Args] - A list of scope + tag pairs to associate with this resource.
- display
Name String - Display name of the resource.
- ip
Address String - The IPv4 address must belong to the subnet, if any, configured on Segment.
- mac
Address String - MAC address of the host.
- segment
Path 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.
- dhcp
Generic List<Property Map>Options - Generic DHCP options.
- dhcp
Option121s List<Property Map> - DHCP classless static routes.
- gateway
Address String - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname String
- Hostname to assign to the host.
- lease
Time Number - Lease time, in seconds. Defaults to 86400.
- nsx
Id String - The NSX ID of this resource. If set, this ID will be used to create the resource.
- policy
Dhcp StringV4Static Binding Id - ID of the resource.
- 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 PolicyDhcpV4StaticBinding resource produces the following output properties:
Look up Existing PolicyDhcpV4StaticBinding Resource
Get an existing PolicyDhcpV4StaticBinding 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?: PolicyDhcpV4StaticBindingState, opts?: CustomResourceOptions): PolicyDhcpV4StaticBinding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
context: Optional[PolicyDhcpV4StaticBindingContextArgs] = None,
description: Optional[str] = None,
dhcp_generic_options: Optional[Sequence[PolicyDhcpV4StaticBindingDhcpGenericOptionArgs]] = None,
dhcp_option121s: Optional[Sequence[PolicyDhcpV4StaticBindingDhcpOption121Args]] = None,
display_name: Optional[str] = None,
gateway_address: Optional[str] = None,
hostname: Optional[str] = None,
ip_address: Optional[str] = None,
lease_time: Optional[float] = None,
mac_address: Optional[str] = None,
nsx_id: Optional[str] = None,
path: Optional[str] = None,
policy_dhcp_v4_static_binding_id: Optional[str] = None,
revision: Optional[float] = None,
segment_path: Optional[str] = None,
tags: Optional[Sequence[PolicyDhcpV4StaticBindingTagArgs]] = None) -> PolicyDhcpV4StaticBinding
func GetPolicyDhcpV4StaticBinding(ctx *Context, name string, id IDInput, state *PolicyDhcpV4StaticBindingState, opts ...ResourceOption) (*PolicyDhcpV4StaticBinding, error)
public static PolicyDhcpV4StaticBinding Get(string name, Input<string> id, PolicyDhcpV4StaticBindingState? state, CustomResourceOptions? opts = null)
public static PolicyDhcpV4StaticBinding get(String name, Output<String> id, PolicyDhcpV4StaticBindingState state, CustomResourceOptions options)
resources: _: type: nsxt:PolicyDhcpV4StaticBinding 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.
- Context
Policy
Dhcp V4Static Binding Context - The context which the object belongs to
- Description string
- Description of the resource.
- Dhcp
Generic List<PolicyOptions Dhcp V4Static Binding Dhcp Generic Option> - Generic DHCP options.
- Dhcp
Option121s List<PolicyDhcp V4Static Binding Dhcp Option121> - DHCP classless static routes.
- Display
Name string - Display name of the resource.
- Gateway
Address string - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- Hostname string
- Hostname to assign to the host.
- Ip
Address string - The IPv4 address must belong to the subnet, if any, configured on Segment.
- Lease
Time double - Lease time, in seconds. Defaults to 86400.
- Mac
Address string - MAC address of the host.
- Nsx
Id 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.
- Policy
Dhcp stringV4Static Binding Id - ID of the resource.
- Revision double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Segment
Path string - Policy path for segment to configure this binding on.
- List<Policy
Dhcp V4Static Binding Tag> - A list of scope + tag pairs to associate with this resource.
- Context
Policy
Dhcp V4Static Binding Context Args - The context which the object belongs to
- Description string
- Description of the resource.
- Dhcp
Generic []PolicyOptions Dhcp V4Static Binding Dhcp Generic Option Args - Generic DHCP options.
- Dhcp
Option121s []PolicyDhcp V4Static Binding Dhcp Option121Args - DHCP classless static routes.
- Display
Name string - Display name of the resource.
- Gateway
Address string - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- Hostname string
- Hostname to assign to the host.
- Ip
Address string - The IPv4 address must belong to the subnet, if any, configured on Segment.
- Lease
Time float64 - Lease time, in seconds. Defaults to 86400.
- Mac
Address string - MAC address of the host.
- Nsx
Id 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.
- Policy
Dhcp stringV4Static Binding Id - ID of the resource.
- Revision float64
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- Segment
Path string - Policy path for segment to configure this binding on.
- []Policy
Dhcp V4Static Binding Tag Args - A list of scope + tag pairs to associate with this resource.
- context
Policy
Dhcp V4Static Binding Context - The context which the object belongs to
- description String
- Description of the resource.
- dhcp
Generic List<PolicyOptions Dhcp V4Static Binding Dhcp Generic Option> - Generic DHCP options.
- dhcp
Option121s List<PolicyDhcp V4Static Binding Dhcp Option121> - DHCP classless static routes.
- display
Name String - Display name of the resource.
- gateway
Address String - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname String
- Hostname to assign to the host.
- ip
Address String - The IPv4 address must belong to the subnet, if any, configured on Segment.
- lease
Time Double - Lease time, in seconds. Defaults to 86400.
- mac
Address String - MAC address of the host.
- nsx
Id 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.
- policy
Dhcp StringV4Static Binding Id - ID of the resource.
- revision Double
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- segment
Path String - Policy path for segment to configure this binding on.
- List<Policy
Dhcp V4Static Binding Tag> - A list of scope + tag pairs to associate with this resource.
- context
Policy
Dhcp V4Static Binding Context - The context which the object belongs to
- description string
- Description of the resource.
- dhcp
Generic PolicyOptions Dhcp V4Static Binding Dhcp Generic Option[] - Generic DHCP options.
- dhcp
Option121s PolicyDhcp V4Static Binding Dhcp Option121[] - DHCP classless static routes.
- display
Name string - Display name of the resource.
- gateway
Address string - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname string
- Hostname to assign to the host.
- ip
Address string - The IPv4 address must belong to the subnet, if any, configured on Segment.
- lease
Time number - Lease time, in seconds. Defaults to 86400.
- mac
Address string - MAC address of the host.
- nsx
Id 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.
- policy
Dhcp stringV4Static Binding Id - ID of the resource.
- revision number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- segment
Path string - Policy path for segment to configure this binding on.
- Policy
Dhcp V4Static Binding Tag[] - A list of scope + tag pairs to associate with this resource.
- context
Policy
Dhcp V4Static Binding Context Args - The context which the object belongs to
- description str
- Description of the resource.
- dhcp_
generic_ Sequence[Policyoptions Dhcp V4Static Binding Dhcp Generic Option Args] - Generic DHCP options.
- dhcp_
option121s Sequence[PolicyDhcp V4Static Binding Dhcp Option121Args] - DHCP classless static routes.
- display_
name str - Display name of the resource.
- gateway_
address str - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname str
- Hostname to assign to the host.
- ip_
address str - The IPv4 address must belong to the subnet, if any, configured on Segment.
- 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_ strv4_ static_ binding_ id - ID of the resource.
- 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.
- Sequence[Policy
Dhcp V4Static Binding Tag Args] - 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.
- dhcp
Generic List<Property Map>Options - Generic DHCP options.
- dhcp
Option121s List<Property Map> - DHCP classless static routes.
- display
Name String - Display name of the resource.
- gateway
Address String - Gateway IPv4 Address. When not specified, gateway address is auto-assigned from segment configuration.
- hostname String
- Hostname to assign to the host.
- ip
Address String - The IPv4 address must belong to the subnet, if any, configured on Segment.
- lease
Time Number - Lease time, in seconds. Defaults to 86400.
- mac
Address String - MAC address of the host.
- nsx
Id 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.
- policy
Dhcp StringV4Static Binding Id - ID of the resource.
- revision Number
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
- segment
Path String - Policy path for segment to configure this binding on.
- List<Property Map>
- A list of scope + tag pairs to associate with this resource.
Supporting Types
PolicyDhcpV4StaticBindingContext, PolicyDhcpV4StaticBindingContextArgs
- Project
Id string - The ID of the project which the object belongs to
- Project
Id string - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
- project
Id string - The ID of the project which the object belongs to
- project_
id str - The ID of the project which the object belongs to
- project
Id String - The ID of the project which the object belongs to
PolicyDhcpV4StaticBindingDhcpGenericOption, PolicyDhcpV4StaticBindingDhcpGenericOptionArgs
PolicyDhcpV4StaticBindingDhcpOption121, PolicyDhcpV4StaticBindingDhcpOption121Args
PolicyDhcpV4StaticBindingTag, PolicyDhcpV4StaticBindingTagArgs
Package Details
- Repository
- nsxt vmware/terraform-provider-nsxt
- License
- Notes
- This Pulumi package is based on the
nsxt
Terraform Provider.