nutanix.VmNetworkDeviceAssignIpV2
Explore with Pulumi AI
Create VmNetworkDeviceAssignIpV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VmNetworkDeviceAssignIpV2(name: string, args: VmNetworkDeviceAssignIpV2Args, opts?: CustomResourceOptions);
@overload
def VmNetworkDeviceAssignIpV2(resource_name: str,
args: VmNetworkDeviceAssignIpV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def VmNetworkDeviceAssignIpV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
ext_id: Optional[str] = None,
vm_ext_id: Optional[str] = None,
ip_addresses: Optional[Sequence[VmNetworkDeviceAssignIpV2IpAddressArgs]] = None)
func NewVmNetworkDeviceAssignIpV2(ctx *Context, name string, args VmNetworkDeviceAssignIpV2Args, opts ...ResourceOption) (*VmNetworkDeviceAssignIpV2, error)
public VmNetworkDeviceAssignIpV2(string name, VmNetworkDeviceAssignIpV2Args args, CustomResourceOptions? opts = null)
public VmNetworkDeviceAssignIpV2(String name, VmNetworkDeviceAssignIpV2Args args)
public VmNetworkDeviceAssignIpV2(String name, VmNetworkDeviceAssignIpV2Args args, CustomResourceOptions options)
type: nutanix:VmNetworkDeviceAssignIpV2
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 VmNetworkDeviceAssignIpV2Args
- 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 VmNetworkDeviceAssignIpV2Args
- 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 VmNetworkDeviceAssignIpV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VmNetworkDeviceAssignIpV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VmNetworkDeviceAssignIpV2Args
- 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 vmNetworkDeviceAssignIpV2Resource = new Nutanix.VmNetworkDeviceAssignIpV2("vmNetworkDeviceAssignIpV2Resource", new()
{
ExtId = "string",
VmExtId = "string",
IpAddresses = new[]
{
new Nutanix.Inputs.VmNetworkDeviceAssignIpV2IpAddressArgs
{
Value = "string",
PrefixLength = 0,
},
},
});
example, err := nutanix.NewVmNetworkDeviceAssignIpV2(ctx, "vmNetworkDeviceAssignIpV2Resource", &nutanix.VmNetworkDeviceAssignIpV2Args{
ExtId: pulumi.String("string"),
VmExtId: pulumi.String("string"),
IpAddresses: nutanix.VmNetworkDeviceAssignIpV2IpAddressArray{
&nutanix.VmNetworkDeviceAssignIpV2IpAddressArgs{
Value: pulumi.String("string"),
PrefixLength: pulumi.Int(0),
},
},
})
var vmNetworkDeviceAssignIpV2Resource = new VmNetworkDeviceAssignIpV2("vmNetworkDeviceAssignIpV2Resource", VmNetworkDeviceAssignIpV2Args.builder()
.extId("string")
.vmExtId("string")
.ipAddresses(VmNetworkDeviceAssignIpV2IpAddressArgs.builder()
.value("string")
.prefixLength(0)
.build())
.build());
vm_network_device_assign_ip_v2_resource = nutanix.VmNetworkDeviceAssignIpV2("vmNetworkDeviceAssignIpV2Resource",
ext_id="string",
vm_ext_id="string",
ip_addresses=[{
"value": "string",
"prefix_length": 0,
}])
const vmNetworkDeviceAssignIpV2Resource = new nutanix.VmNetworkDeviceAssignIpV2("vmNetworkDeviceAssignIpV2Resource", {
extId: "string",
vmExtId: "string",
ipAddresses: [{
value: "string",
prefixLength: 0,
}],
});
type: nutanix:VmNetworkDeviceAssignIpV2
properties:
extId: string
ipAddresses:
- prefixLength: 0
value: string
vmExtId: string
VmNetworkDeviceAssignIpV2 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 VmNetworkDeviceAssignIpV2 resource accepts the following input properties:
- ext
Id string - vm
Ext stringId - ip
Addresses VmNetwork Device Assign Ip V2Ip Address[]
- ext
Id String - vm
Ext StringId - ip
Addresses List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the VmNetworkDeviceAssignIpV2 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 VmNetworkDeviceAssignIpV2 Resource
Get an existing VmNetworkDeviceAssignIpV2 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?: VmNetworkDeviceAssignIpV2State, opts?: CustomResourceOptions): VmNetworkDeviceAssignIpV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ext_id: Optional[str] = None,
ip_addresses: Optional[Sequence[VmNetworkDeviceAssignIpV2IpAddressArgs]] = None,
vm_ext_id: Optional[str] = None) -> VmNetworkDeviceAssignIpV2
func GetVmNetworkDeviceAssignIpV2(ctx *Context, name string, id IDInput, state *VmNetworkDeviceAssignIpV2State, opts ...ResourceOption) (*VmNetworkDeviceAssignIpV2, error)
public static VmNetworkDeviceAssignIpV2 Get(string name, Input<string> id, VmNetworkDeviceAssignIpV2State? state, CustomResourceOptions? opts = null)
public static VmNetworkDeviceAssignIpV2 get(String name, Output<String> id, VmNetworkDeviceAssignIpV2State state, CustomResourceOptions options)
resources: _: type: nutanix:VmNetworkDeviceAssignIpV2 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.
- ext
Id string - ip
Addresses VmNetwork Device Assign Ip V2Ip Address[] - vm
Ext stringId
- ext
Id String - ip
Addresses List<Property Map> - vm
Ext StringId
Supporting Types
VmNetworkDeviceAssignIpV2IpAddress, VmNetworkDeviceAssignIpV2IpAddressArgs
- Value string
- Prefix
Length int
- Value string
- Prefix
Length int
- value String
- prefix
Length Integer
- value string
- prefix
Length number
- value str
- prefix_
length int
- value String
- prefix
Length Number
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.