nutanix.KarbonWorkerNodepool
Explore with Pulumi AI
Provides a resource to add/remove worker nodepool in an existing Nutanix Kubernetes Engine (NKE).
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const kworkerNp = new nutanix.KarbonWorkerNodepool("kworkerNp", {
ahvConfig: {
cpu: 4,
diskMib: 122880,
memoryMib: 8192,
networkUuid: "61213511-6383-4a38-9ac8-4a552c0e5865",
},
clusterName: "karbon",
numInstances: 1,
});
import pulumi
import pulumi_nutanix as nutanix
kworker_np = nutanix.KarbonWorkerNodepool("kworkerNp",
ahv_config={
"cpu": 4,
"disk_mib": 122880,
"memory_mib": 8192,
"network_uuid": "61213511-6383-4a38-9ac8-4a552c0e5865",
},
cluster_name="karbon",
num_instances=1)
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nutanix.NewKarbonWorkerNodepool(ctx, "kworkerNp", &nutanix.KarbonWorkerNodepoolArgs{
AhvConfig: &nutanix.KarbonWorkerNodepoolAhvConfigArgs{
Cpu: pulumi.Int(4),
DiskMib: pulumi.Int(122880),
MemoryMib: pulumi.Int(8192),
NetworkUuid: pulumi.String("61213511-6383-4a38-9ac8-4a552c0e5865"),
},
ClusterName: pulumi.String("karbon"),
NumInstances: pulumi.Int(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
var kworkerNp = new Nutanix.KarbonWorkerNodepool("kworkerNp", new()
{
AhvConfig = new Nutanix.Inputs.KarbonWorkerNodepoolAhvConfigArgs
{
Cpu = 4,
DiskMib = 122880,
MemoryMib = 8192,
NetworkUuid = "61213511-6383-4a38-9ac8-4a552c0e5865",
},
ClusterName = "karbon",
NumInstances = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.KarbonWorkerNodepool;
import com.pulumi.nutanix.KarbonWorkerNodepoolArgs;
import com.pulumi.nutanix.inputs.KarbonWorkerNodepoolAhvConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var kworkerNp = new KarbonWorkerNodepool("kworkerNp", KarbonWorkerNodepoolArgs.builder()
.ahvConfig(KarbonWorkerNodepoolAhvConfigArgs.builder()
.cpu(4)
.diskMib(122880)
.memoryMib(8192)
.networkUuid("61213511-6383-4a38-9ac8-4a552c0e5865")
.build())
.clusterName("karbon")
.numInstances(1)
.build());
}
}
resources:
kworkerNp:
type: nutanix:KarbonWorkerNodepool
properties:
ahvConfig:
cpu: 4
diskMib: 122880
memoryMib: 8192
networkUuid: 61213511-6383-4a38-9ac8-4a552c0e5865
clusterName: karbon
numInstances: 1
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const kworkerNp = new nutanix.KarbonWorkerNodepool("kworkerNp", {
ahvConfig: {
cpu: 4,
diskMib: 122880,
memoryMib: 8192,
networkUuid: "61213511-6383-4a38-9ac8-4a552c0e5865",
},
clusterName: "karbon",
labels: {
k1: "v1",
k2: "v2",
},
numInstances: 1,
});
import pulumi
import pulumi_nutanix as nutanix
kworker_np = nutanix.KarbonWorkerNodepool("kworkerNp",
ahv_config={
"cpu": 4,
"disk_mib": 122880,
"memory_mib": 8192,
"network_uuid": "61213511-6383-4a38-9ac8-4a552c0e5865",
},
cluster_name="karbon",
labels={
"k1": "v1",
"k2": "v2",
},
num_instances=1)
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nutanix.NewKarbonWorkerNodepool(ctx, "kworkerNp", &nutanix.KarbonWorkerNodepoolArgs{
AhvConfig: &nutanix.KarbonWorkerNodepoolAhvConfigArgs{
Cpu: pulumi.Int(4),
DiskMib: pulumi.Int(122880),
MemoryMib: pulumi.Int(8192),
NetworkUuid: pulumi.String("61213511-6383-4a38-9ac8-4a552c0e5865"),
},
ClusterName: pulumi.String("karbon"),
Labels: pulumi.StringMap{
"k1": pulumi.String("v1"),
"k2": pulumi.String("v2"),
},
NumInstances: pulumi.Int(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
var kworkerNp = new Nutanix.KarbonWorkerNodepool("kworkerNp", new()
{
AhvConfig = new Nutanix.Inputs.KarbonWorkerNodepoolAhvConfigArgs
{
Cpu = 4,
DiskMib = 122880,
MemoryMib = 8192,
NetworkUuid = "61213511-6383-4a38-9ac8-4a552c0e5865",
},
ClusterName = "karbon",
Labels =
{
{ "k1", "v1" },
{ "k2", "v2" },
},
NumInstances = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.KarbonWorkerNodepool;
import com.pulumi.nutanix.KarbonWorkerNodepoolArgs;
import com.pulumi.nutanix.inputs.KarbonWorkerNodepoolAhvConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var kworkerNp = new KarbonWorkerNodepool("kworkerNp", KarbonWorkerNodepoolArgs.builder()
.ahvConfig(KarbonWorkerNodepoolAhvConfigArgs.builder()
.cpu(4)
.diskMib(122880)
.memoryMib(8192)
.networkUuid("61213511-6383-4a38-9ac8-4a552c0e5865")
.build())
.clusterName("karbon")
.labels(Map.ofEntries(
Map.entry("k1", "v1"),
Map.entry("k2", "v2")
))
.numInstances(1)
.build());
}
}
resources:
kworkerNp:
type: nutanix:KarbonWorkerNodepool
properties:
ahvConfig:
cpu: 4
diskMib: 122880
memoryMib: 8192
networkUuid: 61213511-6383-4a38-9ac8-4a552c0e5865
clusterName: karbon
labels:
k1: v1
k2: v2
numInstances: 1
Create KarbonWorkerNodepool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KarbonWorkerNodepool(name: string, args: KarbonWorkerNodepoolArgs, opts?: CustomResourceOptions);
@overload
def KarbonWorkerNodepool(resource_name: str,
args: KarbonWorkerNodepoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KarbonWorkerNodepool(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_name: Optional[str] = None,
num_instances: Optional[int] = None,
ahv_config: Optional[KarbonWorkerNodepoolAhvConfigArgs] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
node_os_version: Optional[str] = None)
func NewKarbonWorkerNodepool(ctx *Context, name string, args KarbonWorkerNodepoolArgs, opts ...ResourceOption) (*KarbonWorkerNodepool, error)
public KarbonWorkerNodepool(string name, KarbonWorkerNodepoolArgs args, CustomResourceOptions? opts = null)
public KarbonWorkerNodepool(String name, KarbonWorkerNodepoolArgs args)
public KarbonWorkerNodepool(String name, KarbonWorkerNodepoolArgs args, CustomResourceOptions options)
type: nutanix:KarbonWorkerNodepool
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 KarbonWorkerNodepoolArgs
- 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 KarbonWorkerNodepoolArgs
- 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 KarbonWorkerNodepoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KarbonWorkerNodepoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KarbonWorkerNodepoolArgs
- 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 karbonWorkerNodepoolResource = new Nutanix.KarbonWorkerNodepool("karbonWorkerNodepoolResource", new()
{
ClusterName = "string",
NumInstances = 0,
AhvConfig = new Nutanix.Inputs.KarbonWorkerNodepoolAhvConfigArgs
{
NetworkUuid = "string",
Cpu = 0,
DiskMib = 0,
IscsiNetworkUuid = "string",
MemoryMib = 0,
PrismElementClusterUuid = "string",
},
Labels =
{
{ "string", "string" },
},
Name = "string",
NodeOsVersion = "string",
});
example, err := nutanix.NewKarbonWorkerNodepool(ctx, "karbonWorkerNodepoolResource", &nutanix.KarbonWorkerNodepoolArgs{
ClusterName: pulumi.String("string"),
NumInstances: pulumi.Int(0),
AhvConfig: &nutanix.KarbonWorkerNodepoolAhvConfigArgs{
NetworkUuid: pulumi.String("string"),
Cpu: pulumi.Int(0),
DiskMib: pulumi.Int(0),
IscsiNetworkUuid: pulumi.String("string"),
MemoryMib: pulumi.Int(0),
PrismElementClusterUuid: pulumi.String("string"),
},
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
NodeOsVersion: pulumi.String("string"),
})
var karbonWorkerNodepoolResource = new KarbonWorkerNodepool("karbonWorkerNodepoolResource", KarbonWorkerNodepoolArgs.builder()
.clusterName("string")
.numInstances(0)
.ahvConfig(KarbonWorkerNodepoolAhvConfigArgs.builder()
.networkUuid("string")
.cpu(0)
.diskMib(0)
.iscsiNetworkUuid("string")
.memoryMib(0)
.prismElementClusterUuid("string")
.build())
.labels(Map.of("string", "string"))
.name("string")
.nodeOsVersion("string")
.build());
karbon_worker_nodepool_resource = nutanix.KarbonWorkerNodepool("karbonWorkerNodepoolResource",
cluster_name="string",
num_instances=0,
ahv_config=nutanix.KarbonWorkerNodepoolAhvConfigArgs(
network_uuid="string",
cpu=0,
disk_mib=0,
iscsi_network_uuid="string",
memory_mib=0,
prism_element_cluster_uuid="string",
),
labels={
"string": "string",
},
name="string",
node_os_version="string")
const karbonWorkerNodepoolResource = new nutanix.KarbonWorkerNodepool("karbonWorkerNodepoolResource", {
clusterName: "string",
numInstances: 0,
ahvConfig: {
networkUuid: "string",
cpu: 0,
diskMib: 0,
iscsiNetworkUuid: "string",
memoryMib: 0,
prismElementClusterUuid: "string",
},
labels: {
string: "string",
},
name: "string",
nodeOsVersion: "string",
});
type: nutanix:KarbonWorkerNodepool
properties:
ahvConfig:
cpu: 0
diskMib: 0
iscsiNetworkUuid: string
memoryMib: 0
networkUuid: string
prismElementClusterUuid: string
clusterName: string
labels:
string: string
name: string
nodeOsVersion: string
numInstances: 0
KarbonWorkerNodepool Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The KarbonWorkerNodepool resource accepts the following input properties:
- Cluster
Name string - Kubernetes cluster name
- Num
Instances int - number of node instances
- Ahv
Config PiersKarsenbarg. Nutanix. Inputs. Karbon Worker Nodepool Ahv Config - VM configuration in AHV.
- Labels Dictionary<string, string>
- labels of node
- Name string
- unique worker nodepool name
- Node
Os stringVersion - The version of the node OS image
- Cluster
Name string - Kubernetes cluster name
- Num
Instances int - number of node instances
- Ahv
Config KarbonWorker Nodepool Ahv Config Args - VM configuration in AHV.
- Labels map[string]string
- labels of node
- Name string
- unique worker nodepool name
- Node
Os stringVersion - The version of the node OS image
- cluster
Name String - Kubernetes cluster name
- num
Instances Integer - number of node instances
- ahv
Config KarbonWorker Nodepool Ahv Config - VM configuration in AHV.
- labels Map<String,String>
- labels of node
- name String
- unique worker nodepool name
- node
Os StringVersion - The version of the node OS image
- cluster
Name string - Kubernetes cluster name
- num
Instances number - number of node instances
- ahv
Config KarbonWorker Nodepool Ahv Config - VM configuration in AHV.
- labels {[key: string]: string}
- labels of node
- name string
- unique worker nodepool name
- node
Os stringVersion - The version of the node OS image
- cluster_
name str - Kubernetes cluster name
- num_
instances int - number of node instances
- ahv_
config KarbonWorker Nodepool Ahv Config Args - VM configuration in AHV.
- labels Mapping[str, str]
- labels of node
- name str
- unique worker nodepool name
- node_
os_ strversion - The version of the node OS image
- cluster
Name String - Kubernetes cluster name
- num
Instances Number - number of node instances
- ahv
Config Property Map - VM configuration in AHV.
- labels Map<String>
- labels of node
- name String
- unique worker nodepool name
- node
Os StringVersion - The version of the node OS image
Outputs
All input properties are implicitly available as output properties. Additionally, the KarbonWorkerNodepool resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Nodes
List<Piers
Karsenbarg. Nutanix. Outputs. Karbon Worker Nodepool Node> - List of node details of pool.
- Id string
- The provider-assigned unique ID for this managed resource.
- Nodes
[]Karbon
Worker Nodepool Node - List of node details of pool.
- id String
- The provider-assigned unique ID for this managed resource.
- nodes
List<Karbon
Worker Nodepool Node> - List of node details of pool.
- id string
- The provider-assigned unique ID for this managed resource.
- nodes
Karbon
Worker Nodepool Node[] - List of node details of pool.
- id str
- The provider-assigned unique ID for this managed resource.
- nodes
Sequence[Karbon
Worker Nodepool Node] - List of node details of pool.
- id String
- The provider-assigned unique ID for this managed resource.
- nodes List<Property Map>
- List of node details of pool.
Look up Existing KarbonWorkerNodepool Resource
Get an existing KarbonWorkerNodepool 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?: KarbonWorkerNodepoolState, opts?: CustomResourceOptions): KarbonWorkerNodepool
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ahv_config: Optional[KarbonWorkerNodepoolAhvConfigArgs] = None,
cluster_name: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
node_os_version: Optional[str] = None,
nodes: Optional[Sequence[KarbonWorkerNodepoolNodeArgs]] = None,
num_instances: Optional[int] = None) -> KarbonWorkerNodepool
func GetKarbonWorkerNodepool(ctx *Context, name string, id IDInput, state *KarbonWorkerNodepoolState, opts ...ResourceOption) (*KarbonWorkerNodepool, error)
public static KarbonWorkerNodepool Get(string name, Input<string> id, KarbonWorkerNodepoolState? state, CustomResourceOptions? opts = null)
public static KarbonWorkerNodepool get(String name, Output<String> id, KarbonWorkerNodepoolState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Ahv
Config PiersKarsenbarg. Nutanix. Inputs. Karbon Worker Nodepool Ahv Config - VM configuration in AHV.
- Cluster
Name string - Kubernetes cluster name
- Labels Dictionary<string, string>
- labels of node
- Name string
- unique worker nodepool name
- Node
Os stringVersion - The version of the node OS image
- Nodes
List<Piers
Karsenbarg. Nutanix. Inputs. Karbon Worker Nodepool Node> - List of node details of pool.
- Num
Instances int - number of node instances
- Ahv
Config KarbonWorker Nodepool Ahv Config Args - VM configuration in AHV.
- Cluster
Name string - Kubernetes cluster name
- Labels map[string]string
- labels of node
- Name string
- unique worker nodepool name
- Node
Os stringVersion - The version of the node OS image
- Nodes
[]Karbon
Worker Nodepool Node Args - List of node details of pool.
- Num
Instances int - number of node instances
- ahv
Config KarbonWorker Nodepool Ahv Config - VM configuration in AHV.
- cluster
Name String - Kubernetes cluster name
- labels Map<String,String>
- labels of node
- name String
- unique worker nodepool name
- node
Os StringVersion - The version of the node OS image
- nodes
List<Karbon
Worker Nodepool Node> - List of node details of pool.
- num
Instances Integer - number of node instances
- ahv
Config KarbonWorker Nodepool Ahv Config - VM configuration in AHV.
- cluster
Name string - Kubernetes cluster name
- labels {[key: string]: string}
- labels of node
- name string
- unique worker nodepool name
- node
Os stringVersion - The version of the node OS image
- nodes
Karbon
Worker Nodepool Node[] - List of node details of pool.
- num
Instances number - number of node instances
- ahv_
config KarbonWorker Nodepool Ahv Config Args - VM configuration in AHV.
- cluster_
name str - Kubernetes cluster name
- labels Mapping[str, str]
- labels of node
- name str
- unique worker nodepool name
- node_
os_ strversion - The version of the node OS image
- nodes
Sequence[Karbon
Worker Nodepool Node Args] - List of node details of pool.
- num_
instances int - number of node instances
- ahv
Config Property Map - VM configuration in AHV.
- cluster
Name String - Kubernetes cluster name
- labels Map<String>
- labels of node
- name String
- unique worker nodepool name
- node
Os StringVersion - The version of the node OS image
- nodes List<Property Map>
- List of node details of pool.
- num
Instances Number - number of node instances
Supporting Types
KarbonWorkerNodepoolAhvConfig, KarbonWorkerNodepoolAhvConfigArgs
- Network
Uuid string - (Required) The UUID of the network for the VMs deployed with this resource configuration.
- Cpu int
- (Required) The number of VCPUs allocated for each VM on the PE cluster.
- Disk
Mib int - (Optional) Size of local storage for each VM on the PE cluster in MiB.
- Iscsi
Network stringUuid - VM network UUID for isolating iscsi data traffic.
- Memory
Mib int - (Optional) Memory allocated for each VM on the PE cluster in MiB.
- Prism
Element stringCluster Uuid - (Optional) The unique universal identifier (UUID) of the Prism Element
- Network
Uuid string - (Required) The UUID of the network for the VMs deployed with this resource configuration.
- Cpu int
- (Required) The number of VCPUs allocated for each VM on the PE cluster.
- Disk
Mib int - (Optional) Size of local storage for each VM on the PE cluster in MiB.
- Iscsi
Network stringUuid - VM network UUID for isolating iscsi data traffic.
- Memory
Mib int - (Optional) Memory allocated for each VM on the PE cluster in MiB.
- Prism
Element stringCluster Uuid - (Optional) The unique universal identifier (UUID) of the Prism Element
- network
Uuid String - (Required) The UUID of the network for the VMs deployed with this resource configuration.
- cpu Integer
- (Required) The number of VCPUs allocated for each VM on the PE cluster.
- disk
Mib Integer - (Optional) Size of local storage for each VM on the PE cluster in MiB.
- iscsi
Network StringUuid - VM network UUID for isolating iscsi data traffic.
- memory
Mib Integer - (Optional) Memory allocated for each VM on the PE cluster in MiB.
- prism
Element StringCluster Uuid - (Optional) The unique universal identifier (UUID) of the Prism Element
- network
Uuid string - (Required) The UUID of the network for the VMs deployed with this resource configuration.
- cpu number
- (Required) The number of VCPUs allocated for each VM on the PE cluster.
- disk
Mib number - (Optional) Size of local storage for each VM on the PE cluster in MiB.
- iscsi
Network stringUuid - VM network UUID for isolating iscsi data traffic.
- memory
Mib number - (Optional) Memory allocated for each VM on the PE cluster in MiB.
- prism
Element stringCluster Uuid - (Optional) The unique universal identifier (UUID) of the Prism Element
- network_
uuid str - (Required) The UUID of the network for the VMs deployed with this resource configuration.
- cpu int
- (Required) The number of VCPUs allocated for each VM on the PE cluster.
- disk_
mib int - (Optional) Size of local storage for each VM on the PE cluster in MiB.
- iscsi_
network_ struuid - VM network UUID for isolating iscsi data traffic.
- memory_
mib int - (Optional) Memory allocated for each VM on the PE cluster in MiB.
- prism_
element_ strcluster_ uuid - (Optional) The unique universal identifier (UUID) of the Prism Element
- network
Uuid String - (Required) The UUID of the network for the VMs deployed with this resource configuration.
- cpu Number
- (Required) The number of VCPUs allocated for each VM on the PE cluster.
- disk
Mib Number - (Optional) Size of local storage for each VM on the PE cluster in MiB.
- iscsi
Network StringUuid - VM network UUID for isolating iscsi data traffic.
- memory
Mib Number - (Optional) Memory allocated for each VM on the PE cluster in MiB.
- prism
Element StringCluster Uuid - (Optional) The unique universal identifier (UUID) of the Prism Element
KarbonWorkerNodepoolNode, KarbonWorkerNodepoolNodeArgs
- Hostname string
- hostname of node
- Ipv4Address string
- ipv4 address of node
- Hostname string
- hostname of node
- Ipv4Address string
- ipv4 address of node
- hostname String
- hostname of node
- ipv4Address String
- ipv4 address of node
- hostname string
- hostname of node
- ipv4Address string
- ipv4 address of node
- hostname str
- hostname of node
- ipv4_
address str - ipv4 address of node
- hostname String
- hostname of node
- ipv4Address String
- ipv4 address of node
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.