nutanix.ClustersDiscoverUnconfiguredNodesV2
Explore with Pulumi AI
Get the unconfigured node details such as node UUID, node position, node IP, foundation version and more.
Create ClustersDiscoverUnconfiguredNodesV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClustersDiscoverUnconfiguredNodesV2(name: string, args: ClustersDiscoverUnconfiguredNodesV2Args, opts?: CustomResourceOptions);
@overload
def ClustersDiscoverUnconfiguredNodesV2(resource_name: str,
args: ClustersDiscoverUnconfiguredNodesV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def ClustersDiscoverUnconfiguredNodesV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
ext_id: Optional[str] = None,
address_type: Optional[str] = None,
interface_filter_lists: Optional[Sequence[str]] = None,
ip_filter_lists: Optional[Sequence[ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs]] = None,
is_manual_discovery: Optional[bool] = None,
timeout: Optional[int] = None,
uuid_filter_lists: Optional[Sequence[str]] = None)
func NewClustersDiscoverUnconfiguredNodesV2(ctx *Context, name string, args ClustersDiscoverUnconfiguredNodesV2Args, opts ...ResourceOption) (*ClustersDiscoverUnconfiguredNodesV2, error)
public ClustersDiscoverUnconfiguredNodesV2(string name, ClustersDiscoverUnconfiguredNodesV2Args args, CustomResourceOptions? opts = null)
public ClustersDiscoverUnconfiguredNodesV2(String name, ClustersDiscoverUnconfiguredNodesV2Args args)
public ClustersDiscoverUnconfiguredNodesV2(String name, ClustersDiscoverUnconfiguredNodesV2Args args, CustomResourceOptions options)
type: nutanix:ClustersDiscoverUnconfiguredNodesV2
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 ClustersDiscoverUnconfiguredNodesV2Args
- 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 ClustersDiscoverUnconfiguredNodesV2Args
- 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 ClustersDiscoverUnconfiguredNodesV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClustersDiscoverUnconfiguredNodesV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClustersDiscoverUnconfiguredNodesV2Args
- 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 clustersDiscoverUnconfiguredNodesV2Resource = new Nutanix.ClustersDiscoverUnconfiguredNodesV2("clustersDiscoverUnconfiguredNodesV2Resource", new()
{
ExtId = "string",
AddressType = "string",
InterfaceFilterLists = new[]
{
"string",
},
IpFilterLists = new[]
{
new Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs
{
Ipv4s = new[]
{
new Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4Args
{
PrefixLength = 0,
Value = "string",
},
},
Ipv6s = new[]
{
new Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6Args
{
PrefixLength = 0,
Value = "string",
},
},
},
},
IsManualDiscovery = false,
Timeout = 0,
UuidFilterLists = new[]
{
"string",
},
});
example, err := nutanix.NewClustersDiscoverUnconfiguredNodesV2(ctx, "clustersDiscoverUnconfiguredNodesV2Resource", &nutanix.ClustersDiscoverUnconfiguredNodesV2Args{
ExtId: pulumi.String("string"),
AddressType: pulumi.String("string"),
InterfaceFilterLists: pulumi.StringArray{
pulumi.String("string"),
},
IpFilterLists: nutanix.ClustersDiscoverUnconfiguredNodesV2IpFilterListArray{
&nutanix.ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs{
Ipv4s: nutanix.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4Array{
&nutanix.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4Args{
PrefixLength: pulumi.Int(0),
Value: pulumi.String("string"),
},
},
Ipv6s: nutanix.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6Array{
&nutanix.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6Args{
PrefixLength: pulumi.Int(0),
Value: pulumi.String("string"),
},
},
},
},
IsManualDiscovery: pulumi.Bool(false),
Timeout: pulumi.Int(0),
UuidFilterLists: pulumi.StringArray{
pulumi.String("string"),
},
})
var clustersDiscoverUnconfiguredNodesV2Resource = new ClustersDiscoverUnconfiguredNodesV2("clustersDiscoverUnconfiguredNodesV2Resource", ClustersDiscoverUnconfiguredNodesV2Args.builder()
.extId("string")
.addressType("string")
.interfaceFilterLists("string")
.ipFilterLists(ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs.builder()
.ipv4s(ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4Args.builder()
.prefixLength(0)
.value("string")
.build())
.ipv6s(ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6Args.builder()
.prefixLength(0)
.value("string")
.build())
.build())
.isManualDiscovery(false)
.timeout(0)
.uuidFilterLists("string")
.build());
clusters_discover_unconfigured_nodes_v2_resource = nutanix.ClustersDiscoverUnconfiguredNodesV2("clustersDiscoverUnconfiguredNodesV2Resource",
ext_id="string",
address_type="string",
interface_filter_lists=["string"],
ip_filter_lists=[{
"ipv4s": [{
"prefix_length": 0,
"value": "string",
}],
"ipv6s": [{
"prefix_length": 0,
"value": "string",
}],
}],
is_manual_discovery=False,
timeout=0,
uuid_filter_lists=["string"])
const clustersDiscoverUnconfiguredNodesV2Resource = new nutanix.ClustersDiscoverUnconfiguredNodesV2("clustersDiscoverUnconfiguredNodesV2Resource", {
extId: "string",
addressType: "string",
interfaceFilterLists: ["string"],
ipFilterLists: [{
ipv4s: [{
prefixLength: 0,
value: "string",
}],
ipv6s: [{
prefixLength: 0,
value: "string",
}],
}],
isManualDiscovery: false,
timeout: 0,
uuidFilterLists: ["string"],
});
type: nutanix:ClustersDiscoverUnconfiguredNodesV2
properties:
addressType: string
extId: string
interfaceFilterLists:
- string
ipFilterLists:
- ipv4s:
- prefixLength: 0
value: string
ipv6s:
- prefixLength: 0
value: string
isManualDiscovery: false
timeout: 0
uuidFilterLists:
- string
ClustersDiscoverUnconfiguredNodesV2 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 ClustersDiscoverUnconfiguredNodesV2 resource accepts the following input properties:
- Ext
Id string - -(Required) Cluster UUID.
- Address
Type string - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- Interface
Filter List<string>Lists - (Optional) Interface name that is used for packet broadcasting.
- Ip
Filter List<PiersLists Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Ip Filter List> - (Optional) IP addresses of the unconfigured nodes.
- Is
Manual boolDiscovery - (Optional) Indicates if the discovery is manual or not.
- Timeout int
- (Optional) Timeout for the workflow in seconds.
- Uuid
Filter List<string>Lists - (Optional) Unconfigured node UUIDs.
- Ext
Id string - -(Required) Cluster UUID.
- Address
Type string - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- Interface
Filter []stringLists - (Optional) Interface name that is used for packet broadcasting.
- Ip
Filter []ClustersLists Discover Unconfigured Nodes V2Ip Filter List Args - (Optional) IP addresses of the unconfigured nodes.
- Is
Manual boolDiscovery - (Optional) Indicates if the discovery is manual or not.
- Timeout int
- (Optional) Timeout for the workflow in seconds.
- Uuid
Filter []stringLists - (Optional) Unconfigured node UUIDs.
- ext
Id String - -(Required) Cluster UUID.
- address
Type String - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- interface
Filter List<String>Lists - (Optional) Interface name that is used for packet broadcasting.
- ip
Filter List<ClustersLists Discover Unconfigured Nodes V2Ip Filter List> - (Optional) IP addresses of the unconfigured nodes.
- is
Manual BooleanDiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout Integer
- (Optional) Timeout for the workflow in seconds.
- uuid
Filter List<String>Lists - (Optional) Unconfigured node UUIDs.
- ext
Id string - -(Required) Cluster UUID.
- address
Type string - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- interface
Filter string[]Lists - (Optional) Interface name that is used for packet broadcasting.
- ip
Filter ClustersLists Discover Unconfigured Nodes V2Ip Filter List[] - (Optional) IP addresses of the unconfigured nodes.
- is
Manual booleanDiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout number
- (Optional) Timeout for the workflow in seconds.
- uuid
Filter string[]Lists - (Optional) Unconfigured node UUIDs.
- ext_
id str - -(Required) Cluster UUID.
- address_
type str - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- interface_
filter_ Sequence[str]lists - (Optional) Interface name that is used for packet broadcasting.
- ip_
filter_ Sequence[Clusterslists Discover Unconfigured Nodes V2Ip Filter List Args] - (Optional) IP addresses of the unconfigured nodes.
- is_
manual_ booldiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout int
- (Optional) Timeout for the workflow in seconds.
- uuid_
filter_ Sequence[str]lists - (Optional) Unconfigured node UUIDs.
- ext
Id String - -(Required) Cluster UUID.
- address
Type String - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- interface
Filter List<String>Lists - (Optional) Interface name that is used for packet broadcasting.
- ip
Filter List<Property Map>Lists - (Optional) IP addresses of the unconfigured nodes.
- is
Manual BooleanDiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout Number
- (Optional) Timeout for the workflow in seconds.
- uuid
Filter List<String>Lists - (Optional) Unconfigured node UUIDs.
Outputs
All input properties are implicitly available as output properties. Additionally, the ClustersDiscoverUnconfiguredNodesV2 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Unconfigured
Nodes List<PiersKarsenbarg. Nutanix. Outputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node>
- Id string
- The provider-assigned unique ID for this managed resource.
- Unconfigured
Nodes []ClustersDiscover Unconfigured Nodes V2Unconfigured Node
- id String
- The provider-assigned unique ID for this managed resource.
- unconfigured
Nodes List<ClustersDiscover Unconfigured Nodes V2Unconfigured Node>
- id string
- The provider-assigned unique ID for this managed resource.
- unconfigured
Nodes ClustersDiscover Unconfigured Nodes V2Unconfigured Node[]
- id str
- The provider-assigned unique ID for this managed resource.
- unconfigured_
nodes Sequence[ClustersDiscover Unconfigured Nodes V2Unconfigured Node]
- id String
- The provider-assigned unique ID for this managed resource.
- unconfigured
Nodes List<Property Map>
Look up Existing ClustersDiscoverUnconfiguredNodesV2 Resource
Get an existing ClustersDiscoverUnconfiguredNodesV2 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?: ClustersDiscoverUnconfiguredNodesV2State, opts?: CustomResourceOptions): ClustersDiscoverUnconfiguredNodesV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address_type: Optional[str] = None,
ext_id: Optional[str] = None,
interface_filter_lists: Optional[Sequence[str]] = None,
ip_filter_lists: Optional[Sequence[ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs]] = None,
is_manual_discovery: Optional[bool] = None,
timeout: Optional[int] = None,
unconfigured_nodes: Optional[Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeArgs]] = None,
uuid_filter_lists: Optional[Sequence[str]] = None) -> ClustersDiscoverUnconfiguredNodesV2
func GetClustersDiscoverUnconfiguredNodesV2(ctx *Context, name string, id IDInput, state *ClustersDiscoverUnconfiguredNodesV2State, opts ...ResourceOption) (*ClustersDiscoverUnconfiguredNodesV2, error)
public static ClustersDiscoverUnconfiguredNodesV2 Get(string name, Input<string> id, ClustersDiscoverUnconfiguredNodesV2State? state, CustomResourceOptions? opts = null)
public static ClustersDiscoverUnconfiguredNodesV2 get(String name, Output<String> id, ClustersDiscoverUnconfiguredNodesV2State state, CustomResourceOptions options)
resources: _: type: nutanix:ClustersDiscoverUnconfiguredNodesV2 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.
- Address
Type string - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- Ext
Id string - -(Required) Cluster UUID.
- Interface
Filter List<string>Lists - (Optional) Interface name that is used for packet broadcasting.
- Ip
Filter List<PiersLists Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Ip Filter List> - (Optional) IP addresses of the unconfigured nodes.
- Is
Manual boolDiscovery - (Optional) Indicates if the discovery is manual or not.
- Timeout int
- (Optional) Timeout for the workflow in seconds.
- Unconfigured
Nodes List<PiersKarsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node> - Uuid
Filter List<string>Lists - (Optional) Unconfigured node UUIDs.
- Address
Type string - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- Ext
Id string - -(Required) Cluster UUID.
- Interface
Filter []stringLists - (Optional) Interface name that is used for packet broadcasting.
- Ip
Filter []ClustersLists Discover Unconfigured Nodes V2Ip Filter List Args - (Optional) IP addresses of the unconfigured nodes.
- Is
Manual boolDiscovery - (Optional) Indicates if the discovery is manual or not.
- Timeout int
- (Optional) Timeout for the workflow in seconds.
- Unconfigured
Nodes []ClustersDiscover Unconfigured Nodes V2Unconfigured Node Args - Uuid
Filter []stringLists - (Optional) Unconfigured node UUIDs.
- address
Type String - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- ext
Id String - -(Required) Cluster UUID.
- interface
Filter List<String>Lists - (Optional) Interface name that is used for packet broadcasting.
- ip
Filter List<ClustersLists Discover Unconfigured Nodes V2Ip Filter List> - (Optional) IP addresses of the unconfigured nodes.
- is
Manual BooleanDiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout Integer
- (Optional) Timeout for the workflow in seconds.
- unconfigured
Nodes List<ClustersDiscover Unconfigured Nodes V2Unconfigured Node> - uuid
Filter List<String>Lists - (Optional) Unconfigured node UUIDs.
- address
Type string - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- ext
Id string - -(Required) Cluster UUID.
- interface
Filter string[]Lists - (Optional) Interface name that is used for packet broadcasting.
- ip
Filter ClustersLists Discover Unconfigured Nodes V2Ip Filter List[] - (Optional) IP addresses of the unconfigured nodes.
- is
Manual booleanDiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout number
- (Optional) Timeout for the workflow in seconds.
- unconfigured
Nodes ClustersDiscover Unconfigured Nodes V2Unconfigured Node[] - uuid
Filter string[]Lists - (Optional) Unconfigured node UUIDs.
- address_
type str - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- ext_
id str - -(Required) Cluster UUID.
- interface_
filter_ Sequence[str]lists - (Optional) Interface name that is used for packet broadcasting.
- ip_
filter_ Sequence[Clusterslists Discover Unconfigured Nodes V2Ip Filter List Args] - (Optional) IP addresses of the unconfigured nodes.
- is_
manual_ booldiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout int
- (Optional) Timeout for the workflow in seconds.
- unconfigured_
nodes Sequence[ClustersDiscover Unconfigured Nodes V2Unconfigured Node Args] - uuid_
filter_ Sequence[str]lists - (Optional) Unconfigured node UUIDs.
- address
Type String - (Optional) Address type. Valid values are:
- "IPV4" IPV4 address type.
- "IPV6" IPV6 address type.
- ext
Id String - -(Required) Cluster UUID.
- interface
Filter List<String>Lists - (Optional) Interface name that is used for packet broadcasting.
- ip
Filter List<Property Map>Lists - (Optional) IP addresses of the unconfigured nodes.
- is
Manual BooleanDiscovery - (Optional) Indicates if the discovery is manual or not.
- timeout Number
- (Optional) Timeout for the workflow in seconds.
- unconfigured
Nodes List<Property Map> - uuid
Filter List<String>Lists - (Optional) Unconfigured node UUIDs.
Supporting Types
ClustersDiscoverUnconfiguredNodesV2IpFilterList, ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Ip Filter List Ipv4> - -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Ip Filter List Ipv6> - -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv4 - -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv6 - -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv4> - -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv6> - -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv4[] - -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv6[] - -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv4] - -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Clusters
Discover Unconfigured Nodes V2Ip Filter List Ipv6] - -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4, ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4Args
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6, ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6Args
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeArgs
- Arch string
- Cluster arch type.
- Attributes
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Attribute> - Attributes of a node.
- Cluster
Id string - Cluster ID.
- Cpu
Types List<string> - CPU type.
- Current
Cvm stringVlan Tag - Current CVM VLAN tag.
- Current
Network stringInterface - Current network interface of a node.
- Cvm
Ips List<PiersKarsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip> - CVM IP.
- Foundation
Version string - Foundation version.
- Host
Type string - Host type.
- Hypervisor
Ips List<PiersKarsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip> - Hypervisor IP Address.
- Hypervisor
Type string - Hypervisor type.
- Hypervisor
Version string - Host version of the node.
- Interface
Ipv6 string - Interface IPV6 address.
- Ipmi
Ips List<PiersKarsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip> - IPMI IP Address.
- Is
Secure boolBooted - Secure boot status.
- Node
Position string - Position of a node in a rackable unit.
- Node
Uuid string - UUID of the host.
- Nos
Version string - NOS software version of a node.
- Rackable
Unit intMax Nodes - Maximum number of nodes in rackable-unit.
- Rackable
Unit stringModel - Rackable unit model type.
- Rackable
Unit stringSerial - Rackable unit serial name.
- Arch string
- Cluster arch type.
- Attributes
[]Clusters
Discover Unconfigured Nodes V2Unconfigured Node Attribute - Attributes of a node.
- Cluster
Id string - Cluster ID.
- Cpu
Types []string - CPU type.
- Current
Cvm stringVlan Tag - Current CVM VLAN tag.
- Current
Network stringInterface - Current network interface of a node.
- Cvm
Ips []ClustersDiscover Unconfigured Nodes V2Unconfigured Node Cvm Ip - CVM IP.
- Foundation
Version string - Foundation version.
- Host
Type string - Host type.
- Hypervisor
Ips []ClustersDiscover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip - Hypervisor IP Address.
- Hypervisor
Type string - Hypervisor type.
- Hypervisor
Version string - Host version of the node.
- Interface
Ipv6 string - Interface IPV6 address.
- Ipmi
Ips []ClustersDiscover Unconfigured Nodes V2Unconfigured Node Ipmi Ip - IPMI IP Address.
- Is
Secure boolBooted - Secure boot status.
- Node
Position string - Position of a node in a rackable unit.
- Node
Uuid string - UUID of the host.
- Nos
Version string - NOS software version of a node.
- Rackable
Unit intMax Nodes - Maximum number of nodes in rackable-unit.
- Rackable
Unit stringModel - Rackable unit model type.
- Rackable
Unit stringSerial - Rackable unit serial name.
- arch String
- Cluster arch type.
- attributes
List<Clusters
Discover Unconfigured Nodes V2Unconfigured Node Attribute> - Attributes of a node.
- cluster
Id String - Cluster ID.
- cpu
Types List<String> - CPU type.
- current
Cvm StringVlan Tag - Current CVM VLAN tag.
- current
Network StringInterface - Current network interface of a node.
- cvm
Ips List<ClustersDiscover Unconfigured Nodes V2Unconfigured Node Cvm Ip> - CVM IP.
- foundation
Version String - Foundation version.
- host
Type String - Host type.
- hypervisor
Ips List<ClustersDiscover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip> - Hypervisor IP Address.
- hypervisor
Type String - Hypervisor type.
- hypervisor
Version String - Host version of the node.
- interface
Ipv6 String - Interface IPV6 address.
- ipmi
Ips List<ClustersDiscover Unconfigured Nodes V2Unconfigured Node Ipmi Ip> - IPMI IP Address.
- is
Secure BooleanBooted - Secure boot status.
- node
Position String - Position of a node in a rackable unit.
- node
Uuid String - UUID of the host.
- nos
Version String - NOS software version of a node.
- rackable
Unit IntegerMax Nodes - Maximum number of nodes in rackable-unit.
- rackable
Unit StringModel - Rackable unit model type.
- rackable
Unit StringSerial - Rackable unit serial name.
- arch string
- Cluster arch type.
- attributes
Clusters
Discover Unconfigured Nodes V2Unconfigured Node Attribute[] - Attributes of a node.
- cluster
Id string - Cluster ID.
- cpu
Types string[] - CPU type.
- current
Cvm stringVlan Tag - Current CVM VLAN tag.
- current
Network stringInterface - Current network interface of a node.
- cvm
Ips ClustersDiscover Unconfigured Nodes V2Unconfigured Node Cvm Ip[] - CVM IP.
- foundation
Version string - Foundation version.
- host
Type string - Host type.
- hypervisor
Ips ClustersDiscover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip[] - Hypervisor IP Address.
- hypervisor
Type string - Hypervisor type.
- hypervisor
Version string - Host version of the node.
- interface
Ipv6 string - Interface IPV6 address.
- ipmi
Ips ClustersDiscover Unconfigured Nodes V2Unconfigured Node Ipmi Ip[] - IPMI IP Address.
- is
Secure booleanBooted - Secure boot status.
- node
Position string - Position of a node in a rackable unit.
- node
Uuid string - UUID of the host.
- nos
Version string - NOS software version of a node.
- rackable
Unit numberMax Nodes - Maximum number of nodes in rackable-unit.
- rackable
Unit stringModel - Rackable unit model type.
- rackable
Unit stringSerial - Rackable unit serial name.
- arch str
- Cluster arch type.
- attributes
Sequence[Clusters
Discover Unconfigured Nodes V2Unconfigured Node Attribute] - Attributes of a node.
- cluster_
id str - Cluster ID.
- cpu_
types Sequence[str] - CPU type.
- current_
cvm_ strvlan_ tag - Current CVM VLAN tag.
- current_
network_ strinterface - Current network interface of a node.
- cvm_
ips Sequence[ClustersDiscover Unconfigured Nodes V2Unconfigured Node Cvm Ip] - CVM IP.
- foundation_
version str - Foundation version.
- host_
type str - Host type.
- hypervisor_
ips Sequence[ClustersDiscover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip] - Hypervisor IP Address.
- hypervisor_
type str - Hypervisor type.
- hypervisor_
version str - Host version of the node.
- interface_
ipv6 str - Interface IPV6 address.
- ipmi_
ips Sequence[ClustersDiscover Unconfigured Nodes V2Unconfigured Node Ipmi Ip] - IPMI IP Address.
- is_
secure_ boolbooted - Secure boot status.
- node_
position str - Position of a node in a rackable unit.
- node_
uuid str - UUID of the host.
- nos_
version str - NOS software version of a node.
- rackable_
unit_ intmax_ nodes - Maximum number of nodes in rackable-unit.
- rackable_
unit_ strmodel - Rackable unit model type.
- rackable_
unit_ strserial - Rackable unit serial name.
- arch String
- Cluster arch type.
- attributes List<Property Map>
- Attributes of a node.
- cluster
Id String - Cluster ID.
- cpu
Types List<String> - CPU type.
- current
Cvm StringVlan Tag - Current CVM VLAN tag.
- current
Network StringInterface - Current network interface of a node.
- cvm
Ips List<Property Map> - CVM IP.
- foundation
Version String - Foundation version.
- host
Type String - Host type.
- hypervisor
Ips List<Property Map> - Hypervisor IP Address.
- hypervisor
Type String - Hypervisor type.
- hypervisor
Version String - Host version of the node.
- interface
Ipv6 String - Interface IPV6 address.
- ipmi
Ips List<Property Map> - IPMI IP Address.
- is
Secure BooleanBooted - Secure boot status.
- node
Position String - Position of a node in a rackable unit.
- node
Uuid String - UUID of the host.
- nos
Version String - NOS software version of a node.
- rackable
Unit NumberMax Nodes - Maximum number of nodes in rackable-unit.
- rackable
Unit StringModel - Rackable unit model type.
- rackable
Unit StringSerial - Rackable unit serial name.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttribute, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttributeArgs
- Default
Workload string - Default workload.
- Is
Model boolSupported - Indicates whether the model is supported or not.
- Is
Robo boolMixed Hypervisor - Indicates whether the hypervisor is robo mixed or not.
- Lcm
Family string - LCM family name.
- Should
Work boolWith1g Nic - Indicates if cvm interface can work with 1 GIG NIC or not.
- Default
Workload string - Default workload.
- Is
Model boolSupported - Indicates whether the model is supported or not.
- Is
Robo boolMixed Hypervisor - Indicates whether the hypervisor is robo mixed or not.
- Lcm
Family string - LCM family name.
- Should
Work boolWith1g Nic - Indicates if cvm interface can work with 1 GIG NIC or not.
- default
Workload String - Default workload.
- is
Model BooleanSupported - Indicates whether the model is supported or not.
- is
Robo BooleanMixed Hypervisor - Indicates whether the hypervisor is robo mixed or not.
- lcm
Family String - LCM family name.
- should
Work BooleanWith1g Nic - Indicates if cvm interface can work with 1 GIG NIC or not.
- default
Workload string - Default workload.
- is
Model booleanSupported - Indicates whether the model is supported or not.
- is
Robo booleanMixed Hypervisor - Indicates whether the hypervisor is robo mixed or not.
- lcm
Family string - LCM family name.
- should
Work booleanWith1g Nic - Indicates if cvm interface can work with 1 GIG NIC or not.
- default_
workload str - Default workload.
- is_
model_ boolsupported - Indicates whether the model is supported or not.
- is_
robo_ boolmixed_ hypervisor - Indicates whether the hypervisor is robo mixed or not.
- lcm_
family str - LCM family name.
- should_
work_ boolwith1g_ nic - Indicates if cvm interface can work with 1 GIG NIC or not.
- default
Workload String - Default workload.
- is
Model BooleanSupported - Indicates whether the model is supported or not.
- is
Robo BooleanMixed Hypervisor - Indicates whether the hypervisor is robo mixed or not.
- lcm
Family String - LCM family name.
- should
Work BooleanWith1g Nic - Indicates if cvm interface can work with 1 GIG NIC or not.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIp, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpArgs
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Clusters
Discover Unconfigured Nodes V2Unconfigured Node Cvm Ip Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv4, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv4Args
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv6, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv6Args
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIp, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpArgs
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Clusters
Discover Unconfigured Nodes V2Unconfigured Node Hypervisor Ip Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv4, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv4Args
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv6, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv6Args
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIp, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpArgs
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Clusters Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- Ipv4s
[]Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv4 - An unique address that identifies a device on the internet or a local network in IPv4 format.
- Ipv6s
[]Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv6 - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
List<Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv4> - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
List<Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv6> - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv4[] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv6[] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s
Sequence[Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv4] - An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s
Sequence[Clusters
Discover Unconfigured Nodes V2Unconfigured Node Ipmi Ip Ipv6] - An unique address that identifies a device on the internet or a local network in IPv6 format.
- ipv4s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv4 format.
- ipv6s List<Property Map>
- An unique address that identifies a device on the internet or a local network in IPv6 format.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv4, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv4Args
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv6, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv6Args
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- Value string
- -(Required) The IPv4/IPv6 address of the host.
- Prefix
Length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Integer - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value string
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value str
- -(Required) The IPv4/IPv6 address of the host.
- prefix_
length int - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
- value String
- -(Required) The IPv4/IPv6 address of the host.
- prefix
Length Number - -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.