azure-native.vmwarecloudsimple.DedicatedCloudNode

Explore with Pulumi AI

Dedicated cloud node model API Version: 2019-04-01.

Example Usage

CreateDedicatedCloudNode

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var dedicatedCloudNode = new AzureNative.VMwareCloudSimple.DedicatedCloudNode("dedicatedCloudNode", new()
    {
        AvailabilityZoneId = "az1",
        DedicatedCloudNodeName = "myNode",
        Id = "general",
        Location = "westus",
        Name = "CS28-Node",
        NodesCount = 1,
        PlacementGroupId = "n1",
        PurchaseId = "56acbd46-3d36-4bbf-9b08-57c30fdf6932",
        ResourceGroupName = "myResourceGroup",
        Sku = new AzureNative.VMwareCloudSimple.Inputs.SkuArgs
        {
            Name = "VMware_CloudSimple_CS28",
        },
    });

});
package main

import (
	vmwarecloudsimple "github.com/pulumi/pulumi-azure-native/sdk/go/azure/vmwarecloudsimple"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vmwarecloudsimple.NewDedicatedCloudNode(ctx, "dedicatedCloudNode", &vmwarecloudsimple.DedicatedCloudNodeArgs{
			AvailabilityZoneId:     pulumi.String("az1"),
			DedicatedCloudNodeName: pulumi.String("myNode"),
			Id:                     pulumi.String("general"),
			Location:               pulumi.String("westus"),
			Name:                   pulumi.String("CS28-Node"),
			NodesCount:             pulumi.Int(1),
			PlacementGroupId:       pulumi.String("n1"),
			PurchaseId:             pulumi.String("56acbd46-3d36-4bbf-9b08-57c30fdf6932"),
			ResourceGroupName:      pulumi.String("myResourceGroup"),
			Sku: vmwarecloudsimple.SkuResponse{
				Name: pulumi.String("VMware_CloudSimple_CS28"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.vmwarecloudsimple.DedicatedCloudNode;
import com.pulumi.azurenative.vmwarecloudsimple.DedicatedCloudNodeArgs;
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 dedicatedCloudNode = new DedicatedCloudNode("dedicatedCloudNode", DedicatedCloudNodeArgs.builder()        
            .availabilityZoneId("az1")
            .dedicatedCloudNodeName("myNode")
            .id("general")
            .location("westus")
            .name("CS28-Node")
            .nodesCount(1)
            .placementGroupId("n1")
            .purchaseId("56acbd46-3d36-4bbf-9b08-57c30fdf6932")
            .resourceGroupName("myResourceGroup")
            .sku(Map.of("name", "VMware_CloudSimple_CS28"))
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

dedicated_cloud_node = azure_native.vmwarecloudsimple.DedicatedCloudNode("dedicatedCloudNode",
    availability_zone_id="az1",
    dedicated_cloud_node_name="myNode",
    id="general",
    location="westus",
    name="CS28-Node",
    nodes_count=1,
    placement_group_id="n1",
    purchase_id="56acbd46-3d36-4bbf-9b08-57c30fdf6932",
    resource_group_name="myResourceGroup",
    sku=azure_native.vmwarecloudsimple.SkuResponseArgs(
        name="VMware_CloudSimple_CS28",
    ))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const dedicatedCloudNode = new azure_native.vmwarecloudsimple.DedicatedCloudNode("dedicatedCloudNode", {
    availabilityZoneId: "az1",
    dedicatedCloudNodeName: "myNode",
    id: "general",
    location: "westus",
    name: "CS28-Node",
    nodesCount: 1,
    placementGroupId: "n1",
    purchaseId: "56acbd46-3d36-4bbf-9b08-57c30fdf6932",
    resourceGroupName: "myResourceGroup",
    sku: {
        name: "VMware_CloudSimple_CS28",
    },
});
resources:
  dedicatedCloudNode:
    type: azure-native:vmwarecloudsimple:DedicatedCloudNode
    properties:
      availabilityZoneId: az1
      dedicatedCloudNodeName: myNode
      id: general
      location: westus
      name: CS28-Node
      nodesCount: 1
      placementGroupId: n1
      purchaseId: 56acbd46-3d36-4bbf-9b08-57c30fdf6932
      resourceGroupName: myResourceGroup
      sku:
        name: VMware_CloudSimple_CS28

Create DedicatedCloudNode Resource

new DedicatedCloudNode(name: string, args: DedicatedCloudNodeArgs, opts?: CustomResourceOptions);
@overload
def DedicatedCloudNode(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       availability_zone_id: Optional[str] = None,
                       dedicated_cloud_node_name: Optional[str] = None,
                       id: Optional[str] = None,
                       location: Optional[str] = None,
                       name: Optional[str] = None,
                       nodes_count: Optional[int] = None,
                       placement_group_id: Optional[str] = None,
                       purchase_id: Optional[str] = None,
                       resource_group_name: Optional[str] = None,
                       sku: Optional[SkuArgs] = None,
                       tags: Optional[Mapping[str, str]] = None)
@overload
def DedicatedCloudNode(resource_name: str,
                       args: DedicatedCloudNodeArgs,
                       opts: Optional[ResourceOptions] = None)
func NewDedicatedCloudNode(ctx *Context, name string, args DedicatedCloudNodeArgs, opts ...ResourceOption) (*DedicatedCloudNode, error)
public DedicatedCloudNode(string name, DedicatedCloudNodeArgs args, CustomResourceOptions? opts = null)
public DedicatedCloudNode(String name, DedicatedCloudNodeArgs args)
public DedicatedCloudNode(String name, DedicatedCloudNodeArgs args, CustomResourceOptions options)
type: azure-native:vmwarecloudsimple:DedicatedCloudNode
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args DedicatedCloudNodeArgs
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 DedicatedCloudNodeArgs
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 DedicatedCloudNodeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DedicatedCloudNodeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DedicatedCloudNodeArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

DedicatedCloudNode 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 DedicatedCloudNode resource accepts the following input properties:

AvailabilityZoneId string

Availability Zone id, e.g. "az1"

Id string

SKU's id

Name string

SKU's name

NodesCount int

count of nodes to create

PlacementGroupId string

Placement Group id, e.g. "n1"

PurchaseId string

purchase id

ResourceGroupName string

The name of the resource group

DedicatedCloudNodeName string

dedicated cloud node name

Location string

Azure region

Sku Pulumi.AzureNative.VMwareCloudSimple.Inputs.SkuArgs

Dedicated Cloud Nodes SKU

Tags Dictionary<string, string>

Dedicated Cloud Nodes tags

AvailabilityZoneId string

Availability Zone id, e.g. "az1"

Id string

SKU's id

Name string

SKU's name

NodesCount int

count of nodes to create

PlacementGroupId string

Placement Group id, e.g. "n1"

PurchaseId string

purchase id

ResourceGroupName string

The name of the resource group

DedicatedCloudNodeName string

dedicated cloud node name

Location string

Azure region

Sku SkuArgs

Dedicated Cloud Nodes SKU

Tags map[string]string

Dedicated Cloud Nodes tags

availabilityZoneId String

Availability Zone id, e.g. "az1"

id String

SKU's id

name String

SKU's name

nodesCount Integer

count of nodes to create

placementGroupId String

Placement Group id, e.g. "n1"

purchaseId String

purchase id

resourceGroupName String

The name of the resource group

dedicatedCloudNodeName String

dedicated cloud node name

location String

Azure region

sku SkuArgs

Dedicated Cloud Nodes SKU

tags Map<String,String>

Dedicated Cloud Nodes tags

availabilityZoneId string

Availability Zone id, e.g. "az1"

id string

SKU's id

name string

SKU's name

nodesCount number

count of nodes to create

placementGroupId string

Placement Group id, e.g. "n1"

purchaseId string

purchase id

resourceGroupName string

The name of the resource group

dedicatedCloudNodeName string

dedicated cloud node name

location string

Azure region

sku SkuArgs

Dedicated Cloud Nodes SKU

tags {[key: string]: string}

Dedicated Cloud Nodes tags

availability_zone_id str

Availability Zone id, e.g. "az1"

id str

SKU's id

name str

SKU's name

nodes_count int

count of nodes to create

placement_group_id str

Placement Group id, e.g. "n1"

purchase_id str

purchase id

resource_group_name str

The name of the resource group

dedicated_cloud_node_name str

dedicated cloud node name

location str

Azure region

sku SkuArgs

Dedicated Cloud Nodes SKU

tags Mapping[str, str]

Dedicated Cloud Nodes tags

availabilityZoneId String

Availability Zone id, e.g. "az1"

id String

SKU's id

name String

SKU's name

nodesCount Number

count of nodes to create

placementGroupId String

Placement Group id, e.g. "n1"

purchaseId String

purchase id

resourceGroupName String

The name of the resource group

dedicatedCloudNodeName String

dedicated cloud node name

location String

Azure region

sku Property Map

Dedicated Cloud Nodes SKU

tags Map<String>

Dedicated Cloud Nodes tags

Outputs

All input properties are implicitly available as output properties. Additionally, the DedicatedCloudNode resource produces the following output properties:

AvailabilityZoneName string

Availability Zone name, e.g. "Availability Zone 1"

CloudRackName string

VMWare Cloud Rack Name

Created string

date time the resource was created

Id string

The provider-assigned unique ID for this managed resource.

PlacementGroupName string

Placement Name, e.g. "Placement Group 1"

PrivateCloudId string

Private Cloud Id

PrivateCloudName string

Resource Pool Name

ProvisioningState string

The provisioning status of the resource

Status string

Node status, indicates is private cloud set up on this node or not

Type string

{resourceProviderNamespace}/{resourceType}

VmwareClusterName string

VMWare Cluster Name

AvailabilityZoneName string

Availability Zone name, e.g. "Availability Zone 1"

CloudRackName string

VMWare Cloud Rack Name

Created string

date time the resource was created

Id string

The provider-assigned unique ID for this managed resource.

PlacementGroupName string

Placement Name, e.g. "Placement Group 1"

PrivateCloudId string

Private Cloud Id

PrivateCloudName string

Resource Pool Name

ProvisioningState string

The provisioning status of the resource

Status string

Node status, indicates is private cloud set up on this node or not

Type string

{resourceProviderNamespace}/{resourceType}

VmwareClusterName string

VMWare Cluster Name

availabilityZoneName String

Availability Zone name, e.g. "Availability Zone 1"

cloudRackName String

VMWare Cloud Rack Name

created String

date time the resource was created

id String

The provider-assigned unique ID for this managed resource.

placementGroupName String

Placement Name, e.g. "Placement Group 1"

privateCloudId String

Private Cloud Id

privateCloudName String

Resource Pool Name

provisioningState String

The provisioning status of the resource

status String

Node status, indicates is private cloud set up on this node or not

type String

{resourceProviderNamespace}/{resourceType}

vmwareClusterName String

VMWare Cluster Name

availabilityZoneName string

Availability Zone name, e.g. "Availability Zone 1"

cloudRackName string

VMWare Cloud Rack Name

created string

date time the resource was created

id string

The provider-assigned unique ID for this managed resource.

placementGroupName string

Placement Name, e.g. "Placement Group 1"

privateCloudId string

Private Cloud Id

privateCloudName string

Resource Pool Name

provisioningState string

The provisioning status of the resource

status string

Node status, indicates is private cloud set up on this node or not

type string

{resourceProviderNamespace}/{resourceType}

vmwareClusterName string

VMWare Cluster Name

availability_zone_name str

Availability Zone name, e.g. "Availability Zone 1"

cloud_rack_name str

VMWare Cloud Rack Name

created str

date time the resource was created

id str

The provider-assigned unique ID for this managed resource.

placement_group_name str

Placement Name, e.g. "Placement Group 1"

private_cloud_id str

Private Cloud Id

private_cloud_name str

Resource Pool Name

provisioning_state str

The provisioning status of the resource

status str

Node status, indicates is private cloud set up on this node or not

type str

{resourceProviderNamespace}/{resourceType}

vmware_cluster_name str

VMWare Cluster Name

availabilityZoneName String

Availability Zone name, e.g. "Availability Zone 1"

cloudRackName String

VMWare Cloud Rack Name

created String

date time the resource was created

id String

The provider-assigned unique ID for this managed resource.

placementGroupName String

Placement Name, e.g. "Placement Group 1"

privateCloudId String

Private Cloud Id

privateCloudName String

Resource Pool Name

provisioningState String

The provisioning status of the resource

status String

Node status, indicates is private cloud set up on this node or not

type String

{resourceProviderNamespace}/{resourceType}

vmwareClusterName String

VMWare Cluster Name

Supporting Types

Sku

Name string

The name of the SKU for VMWare CloudSimple Node

Capacity string

The capacity of the SKU

Description string

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

Family string

If the service has different generations of hardware, for the same SKU, then that can be captured here

Tier string

The tier of the SKU

Name string

The name of the SKU for VMWare CloudSimple Node

Capacity string

The capacity of the SKU

Description string

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

Family string

If the service has different generations of hardware, for the same SKU, then that can be captured here

Tier string

The tier of the SKU

name String

The name of the SKU for VMWare CloudSimple Node

capacity String

The capacity of the SKU

description String

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family String

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier String

The tier of the SKU

name string

The name of the SKU for VMWare CloudSimple Node

capacity string

The capacity of the SKU

description string

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family string

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier string

The tier of the SKU

name str

The name of the SKU for VMWare CloudSimple Node

capacity str

The capacity of the SKU

description str

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family str

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier str

The tier of the SKU

name String

The name of the SKU for VMWare CloudSimple Node

capacity String

The capacity of the SKU

description String

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family String

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier String

The tier of the SKU

SkuResponse

Name string

The name of the SKU for VMWare CloudSimple Node

Capacity string

The capacity of the SKU

Description string

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

Family string

If the service has different generations of hardware, for the same SKU, then that can be captured here

Tier string

The tier of the SKU

Name string

The name of the SKU for VMWare CloudSimple Node

Capacity string

The capacity of the SKU

Description string

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

Family string

If the service has different generations of hardware, for the same SKU, then that can be captured here

Tier string

The tier of the SKU

name String

The name of the SKU for VMWare CloudSimple Node

capacity String

The capacity of the SKU

description String

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family String

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier String

The tier of the SKU

name string

The name of the SKU for VMWare CloudSimple Node

capacity string

The capacity of the SKU

description string

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family string

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier string

The tier of the SKU

name str

The name of the SKU for VMWare CloudSimple Node

capacity str

The capacity of the SKU

description str

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family str

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier str

The tier of the SKU

name String

The name of the SKU for VMWare CloudSimple Node

capacity String

The capacity of the SKU

description String

dedicatedCloudNode example: 8 x Ten-Core Intel® Xeon® Processor E5-2640 v4 2.40GHz 25MB Cache (90W); 12 x 64GB PC4-19200 2400MHz DDR4 ECC Registered DIMM, ...

family String

If the service has different generations of hardware, for the same SKU, then that can be captured here

tier String

The tier of the SKU

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:vmwarecloudsimple:DedicatedCloudNode myNode /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.VMwareCloudSimple/dedicatedCloudNodes/myNode 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0