1. Packages
  2. Nutanix
  3. API Docs
  4. ClustersDiscoverUnconfiguredNodesV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.ClustersDiscoverUnconfiguredNodesV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

    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:

    ExtId string
    -(Required) Cluster UUID.
    AddressType string
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    InterfaceFilterLists List<string>
    • (Optional) Interface name that is used for packet broadcasting.
    IpFilterLists List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2IpFilterList>
    • (Optional) IP addresses of the unconfigured nodes.
    IsManualDiscovery bool
    • (Optional) Indicates if the discovery is manual or not.
    Timeout int
    • (Optional) Timeout for the workflow in seconds.
    UuidFilterLists List<string>
    • (Optional) Unconfigured node UUIDs.
    ExtId string
    -(Required) Cluster UUID.
    AddressType string
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    InterfaceFilterLists []string
    • (Optional) Interface name that is used for packet broadcasting.
    IpFilterLists []ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs
    • (Optional) IP addresses of the unconfigured nodes.
    IsManualDiscovery bool
    • (Optional) Indicates if the discovery is manual or not.
    Timeout int
    • (Optional) Timeout for the workflow in seconds.
    UuidFilterLists []string
    • (Optional) Unconfigured node UUIDs.
    extId String
    -(Required) Cluster UUID.
    addressType String
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    interfaceFilterLists List<String>
    • (Optional) Interface name that is used for packet broadcasting.
    ipFilterLists List<ClustersDiscoverUnconfiguredNodesV2IpFilterList>
    • (Optional) IP addresses of the unconfigured nodes.
    isManualDiscovery Boolean
    • (Optional) Indicates if the discovery is manual or not.
    timeout Integer
    • (Optional) Timeout for the workflow in seconds.
    uuidFilterLists List<String>
    • (Optional) Unconfigured node UUIDs.
    extId string
    -(Required) Cluster UUID.
    addressType string
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    interfaceFilterLists string[]
    • (Optional) Interface name that is used for packet broadcasting.
    ipFilterLists ClustersDiscoverUnconfiguredNodesV2IpFilterList[]
    • (Optional) IP addresses of the unconfigured nodes.
    isManualDiscovery boolean
    • (Optional) Indicates if the discovery is manual or not.
    timeout number
    • (Optional) Timeout for the workflow in seconds.
    uuidFilterLists string[]
    • (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_lists Sequence[str]
    • (Optional) Interface name that is used for packet broadcasting.
    ip_filter_lists Sequence[ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs]
    • (Optional) IP addresses of the unconfigured nodes.
    is_manual_discovery bool
    • (Optional) Indicates if the discovery is manual or not.
    timeout int
    • (Optional) Timeout for the workflow in seconds.
    uuid_filter_lists Sequence[str]
    • (Optional) Unconfigured node UUIDs.
    extId String
    -(Required) Cluster UUID.
    addressType String
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    interfaceFilterLists List<String>
    • (Optional) Interface name that is used for packet broadcasting.
    ipFilterLists List<Property Map>
    • (Optional) IP addresses of the unconfigured nodes.
    isManualDiscovery Boolean
    • (Optional) Indicates if the discovery is manual or not.
    timeout Number
    • (Optional) Timeout for the workflow in seconds.
    uuidFilterLists List<String>
    • (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.
    UnconfiguredNodes []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode
    id String
    The provider-assigned unique ID for this managed resource.
    unconfiguredNodes List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode>
    id string
    The provider-assigned unique ID for this managed resource.
    unconfiguredNodes ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode[]
    id str
    The provider-assigned unique ID for this managed resource.
    unconfigured_nodes Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode]
    id String
    The provider-assigned unique ID for this managed resource.
    unconfiguredNodes 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.
    The following state arguments are supported:
    AddressType string
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    ExtId string
    -(Required) Cluster UUID.
    InterfaceFilterLists List<string>
    • (Optional) Interface name that is used for packet broadcasting.
    IpFilterLists List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2IpFilterList>
    • (Optional) IP addresses of the unconfigured nodes.
    IsManualDiscovery bool
    • (Optional) Indicates if the discovery is manual or not.
    Timeout int
    • (Optional) Timeout for the workflow in seconds.
    UnconfiguredNodes List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode>
    UuidFilterLists List<string>
    • (Optional) Unconfigured node UUIDs.
    AddressType string
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    ExtId string
    -(Required) Cluster UUID.
    InterfaceFilterLists []string
    • (Optional) Interface name that is used for packet broadcasting.
    IpFilterLists []ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs
    • (Optional) IP addresses of the unconfigured nodes.
    IsManualDiscovery bool
    • (Optional) Indicates if the discovery is manual or not.
    Timeout int
    • (Optional) Timeout for the workflow in seconds.
    UnconfiguredNodes []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeArgs
    UuidFilterLists []string
    • (Optional) Unconfigured node UUIDs.
    addressType String
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    extId String
    -(Required) Cluster UUID.
    interfaceFilterLists List<String>
    • (Optional) Interface name that is used for packet broadcasting.
    ipFilterLists List<ClustersDiscoverUnconfiguredNodesV2IpFilterList>
    • (Optional) IP addresses of the unconfigured nodes.
    isManualDiscovery Boolean
    • (Optional) Indicates if the discovery is manual or not.
    timeout Integer
    • (Optional) Timeout for the workflow in seconds.
    unconfiguredNodes List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode>
    uuidFilterLists List<String>
    • (Optional) Unconfigured node UUIDs.
    addressType string
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    extId string
    -(Required) Cluster UUID.
    interfaceFilterLists string[]
    • (Optional) Interface name that is used for packet broadcasting.
    ipFilterLists ClustersDiscoverUnconfiguredNodesV2IpFilterList[]
    • (Optional) IP addresses of the unconfigured nodes.
    isManualDiscovery boolean
    • (Optional) Indicates if the discovery is manual or not.
    timeout number
    • (Optional) Timeout for the workflow in seconds.
    unconfiguredNodes ClustersDiscoverUnconfiguredNodesV2UnconfiguredNode[]
    uuidFilterLists string[]
    • (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_lists Sequence[str]
    • (Optional) Interface name that is used for packet broadcasting.
    ip_filter_lists Sequence[ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs]
    • (Optional) IP addresses of the unconfigured nodes.
    is_manual_discovery bool
    • (Optional) Indicates if the discovery is manual or not.
    timeout int
    • (Optional) Timeout for the workflow in seconds.
    unconfigured_nodes Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeArgs]
    uuid_filter_lists Sequence[str]
    • (Optional) Unconfigured node UUIDs.
    addressType String
    • (Optional) Address type. Valid values are:
    • "IPV4" IPV4 address type.
    • "IPV6" IPV6 address type.
    extId String
    -(Required) Cluster UUID.
    interfaceFilterLists List<String>
    • (Optional) Interface name that is used for packet broadcasting.
    ipFilterLists List<Property Map>
    • (Optional) IP addresses of the unconfigured nodes.
    isManualDiscovery Boolean
    • (Optional) Indicates if the discovery is manual or not.
    timeout Number
    • (Optional) Timeout for the workflow in seconds.
    unconfiguredNodes List<Property Map>
    uuidFilterLists List<String>
    • (Optional) Unconfigured node UUIDs.

    Supporting Types

    ClustersDiscoverUnconfiguredNodesV2IpFilterList, ClustersDiscoverUnconfiguredNodesV2IpFilterListArgs

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4>
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6>
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4>
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6>
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4[]
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6[]
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv4]
    -(Optional) An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[ClustersDiscoverUnconfiguredNodesV2IpFilterListIpv6]
    -(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

    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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

    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttribute>
    Attributes of a node.
    ClusterId string
    Cluster ID.
    CpuTypes List<string>
    CPU type.
    CurrentCvmVlanTag string
    Current CVM VLAN tag.
    CurrentNetworkInterface string
    Current network interface of a node.
    CvmIps List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIp>
    CVM IP.
    FoundationVersion string
    Foundation version.
    HostType string
    Host type.
    HypervisorIps List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIp>
    Hypervisor IP Address.
    HypervisorType string
    Hypervisor type.
    HypervisorVersion string
    Host version of the node.
    InterfaceIpv6 string
    Interface IPV6 address.
    IpmiIps List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIp>
    IPMI IP Address.
    IsSecureBooted bool
    Secure boot status.
    NodePosition string
    Position of a node in a rackable unit.
    NodeUuid string
    UUID of the host.
    NosVersion string
    NOS software version of a node.
    RackableUnitMaxNodes int
    Maximum number of nodes in rackable-unit.
    RackableUnitModel string
    Rackable unit model type.
    RackableUnitSerial string
    Rackable unit serial name.
    Arch string
    Cluster arch type.
    Attributes []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttribute
    Attributes of a node.
    ClusterId string
    Cluster ID.
    CpuTypes []string
    CPU type.
    CurrentCvmVlanTag string
    Current CVM VLAN tag.
    CurrentNetworkInterface string
    Current network interface of a node.
    CvmIps []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIp
    CVM IP.
    FoundationVersion string
    Foundation version.
    HostType string
    Host type.
    HypervisorIps []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIp
    Hypervisor IP Address.
    HypervisorType string
    Hypervisor type.
    HypervisorVersion string
    Host version of the node.
    InterfaceIpv6 string
    Interface IPV6 address.
    IpmiIps []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIp
    IPMI IP Address.
    IsSecureBooted bool
    Secure boot status.
    NodePosition string
    Position of a node in a rackable unit.
    NodeUuid string
    UUID of the host.
    NosVersion string
    NOS software version of a node.
    RackableUnitMaxNodes int
    Maximum number of nodes in rackable-unit.
    RackableUnitModel string
    Rackable unit model type.
    RackableUnitSerial string
    Rackable unit serial name.
    arch String
    Cluster arch type.
    attributes List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttribute>
    Attributes of a node.
    clusterId String
    Cluster ID.
    cpuTypes List<String>
    CPU type.
    currentCvmVlanTag String
    Current CVM VLAN tag.
    currentNetworkInterface String
    Current network interface of a node.
    cvmIps List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIp>
    CVM IP.
    foundationVersion String
    Foundation version.
    hostType String
    Host type.
    hypervisorIps List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIp>
    Hypervisor IP Address.
    hypervisorType String
    Hypervisor type.
    hypervisorVersion String
    Host version of the node.
    interfaceIpv6 String
    Interface IPV6 address.
    ipmiIps List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIp>
    IPMI IP Address.
    isSecureBooted Boolean
    Secure boot status.
    nodePosition String
    Position of a node in a rackable unit.
    nodeUuid String
    UUID of the host.
    nosVersion String
    NOS software version of a node.
    rackableUnitMaxNodes Integer
    Maximum number of nodes in rackable-unit.
    rackableUnitModel String
    Rackable unit model type.
    rackableUnitSerial String
    Rackable unit serial name.
    arch string
    Cluster arch type.
    attributes ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttribute[]
    Attributes of a node.
    clusterId string
    Cluster ID.
    cpuTypes string[]
    CPU type.
    currentCvmVlanTag string
    Current CVM VLAN tag.
    currentNetworkInterface string
    Current network interface of a node.
    cvmIps ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIp[]
    CVM IP.
    foundationVersion string
    Foundation version.
    hostType string
    Host type.
    hypervisorIps ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIp[]
    Hypervisor IP Address.
    hypervisorType string
    Hypervisor type.
    hypervisorVersion string
    Host version of the node.
    interfaceIpv6 string
    Interface IPV6 address.
    ipmiIps ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIp[]
    IPMI IP Address.
    isSecureBooted boolean
    Secure boot status.
    nodePosition string
    Position of a node in a rackable unit.
    nodeUuid string
    UUID of the host.
    nosVersion string
    NOS software version of a node.
    rackableUnitMaxNodes number
    Maximum number of nodes in rackable-unit.
    rackableUnitModel string
    Rackable unit model type.
    rackableUnitSerial string
    Rackable unit serial name.
    arch str
    Cluster arch type.
    attributes Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttribute]
    Attributes of a node.
    cluster_id str
    Cluster ID.
    cpu_types Sequence[str]
    CPU type.
    current_cvm_vlan_tag str
    Current CVM VLAN tag.
    current_network_interface str
    Current network interface of a node.
    cvm_ips Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIp]
    CVM IP.
    foundation_version str
    Foundation version.
    host_type str
    Host type.
    hypervisor_ips Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIp]
    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[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIp]
    IPMI IP Address.
    is_secure_booted bool
    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_max_nodes int
    Maximum number of nodes in rackable-unit.
    rackable_unit_model str
    Rackable unit model type.
    rackable_unit_serial str
    Rackable unit serial name.
    arch String
    Cluster arch type.
    attributes List<Property Map>
    Attributes of a node.
    clusterId String
    Cluster ID.
    cpuTypes List<String>
    CPU type.
    currentCvmVlanTag String
    Current CVM VLAN tag.
    currentNetworkInterface String
    Current network interface of a node.
    cvmIps List<Property Map>
    CVM IP.
    foundationVersion String
    Foundation version.
    hostType String
    Host type.
    hypervisorIps List<Property Map>
    Hypervisor IP Address.
    hypervisorType String
    Hypervisor type.
    hypervisorVersion String
    Host version of the node.
    interfaceIpv6 String
    Interface IPV6 address.
    ipmiIps List<Property Map>
    IPMI IP Address.
    isSecureBooted Boolean
    Secure boot status.
    nodePosition String
    Position of a node in a rackable unit.
    nodeUuid String
    UUID of the host.
    nosVersion String
    NOS software version of a node.
    rackableUnitMaxNodes Number
    Maximum number of nodes in rackable-unit.
    rackableUnitModel String
    Rackable unit model type.
    rackableUnitSerial String
    Rackable unit serial name.

    ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttribute, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeAttributeArgs

    DefaultWorkload string
    Default workload.
    IsModelSupported bool
    Indicates whether the model is supported or not.
    IsRoboMixedHypervisor bool
    Indicates whether the hypervisor is robo mixed or not.
    LcmFamily string
    LCM family name.
    ShouldWorkWith1gNic bool
    Indicates if cvm interface can work with 1 GIG NIC or not.
    DefaultWorkload string
    Default workload.
    IsModelSupported bool
    Indicates whether the model is supported or not.
    IsRoboMixedHypervisor bool
    Indicates whether the hypervisor is robo mixed or not.
    LcmFamily string
    LCM family name.
    ShouldWorkWith1gNic bool
    Indicates if cvm interface can work with 1 GIG NIC or not.
    defaultWorkload String
    Default workload.
    isModelSupported Boolean
    Indicates whether the model is supported or not.
    isRoboMixedHypervisor Boolean
    Indicates whether the hypervisor is robo mixed or not.
    lcmFamily String
    LCM family name.
    shouldWorkWith1gNic Boolean
    Indicates if cvm interface can work with 1 GIG NIC or not.
    defaultWorkload string
    Default workload.
    isModelSupported boolean
    Indicates whether the model is supported or not.
    isRoboMixedHypervisor boolean
    Indicates whether the hypervisor is robo mixed or not.
    lcmFamily string
    LCM family name.
    shouldWorkWith1gNic boolean
    Indicates if cvm interface can work with 1 GIG NIC or not.
    default_workload str
    Default workload.
    is_model_supported bool
    Indicates whether the model is supported or not.
    is_robo_mixed_hypervisor bool
    Indicates whether the hypervisor is robo mixed or not.
    lcm_family str
    LCM family name.
    should_work_with1g_nic bool
    Indicates if cvm interface can work with 1 GIG NIC or not.
    defaultWorkload String
    Default workload.
    isModelSupported Boolean
    Indicates whether the model is supported or not.
    isRoboMixedHypervisor Boolean
    Indicates whether the hypervisor is robo mixed or not.
    lcmFamily String
    LCM family name.
    shouldWorkWith1gNic Boolean
    Indicates if cvm interface can work with 1 GIG NIC or not.

    ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIp, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpArgs

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv4>
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv6>
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv4
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv6
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv4>
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv6>
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv4[]
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv6[]
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv4]
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeCvmIpIpv6]
    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

    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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

    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv4>
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv6>
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv4
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv6
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv4>
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv6>
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv4[]
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv6[]
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv4]
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeHypervisorIpIpv6]
    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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength Number
    -(Optional) The prefix length of the network to which this host IPv4/IPv6 address belongs.

    ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIp, ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpArgs

    Ipv4s List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv4>
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s List<PiersKarsenbarg.Nutanix.Inputs.ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv6>
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    Ipv4s []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv4
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    Ipv6s []ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv6
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv4>
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s List<ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv6>
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv4[]
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv6[]
    An unique address that identifies a device on the internet or a local network in IPv6 format.
    ipv4s Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv4]
    An unique address that identifies a device on the internet or a local network in IPv4 format.
    ipv6s Sequence[ClustersDiscoverUnconfiguredNodesV2UnconfiguredNodeIpmiIpIpv6]
    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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    PrefixLength 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.
    PrefixLength 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.
    prefixLength 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.
    prefixLength 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.
    prefixLength 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.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg