azure-native.vmwarecloudsimple.DedicatedCloudNode
Explore with Pulumi AI
Dedicated cloud node model Azure REST API version: 2019-04-01. Prior API version in Azure Native 1.x: 2019-04-01.
Example Usage
CreateDedicatedCloudNode
using System.Collections.Generic;
using System.Linq;
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/vmwarecloudsimple/v2"
	"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.SkuArgs{
				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 com.pulumi.azurenative.vmwarecloudsimple.inputs.SkuArgs;
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(SkuArgs.builder()
                .name("VMware_CloudSimple_CS28")
                .build())
            .build());
    }
}
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",
    },
});
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={
        "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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DedicatedCloudNode(name: string, args: DedicatedCloudNodeArgs, opts?: CustomResourceOptions);@overload
def DedicatedCloudNode(resource_name: str,
                       args: DedicatedCloudNodeArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def DedicatedCloudNode(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       availability_zone_id: Optional[str] = None,
                       id: 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,
                       dedicated_cloud_node_name: Optional[str] = None,
                       location: Optional[str] = None,
                       sku: Optional[SkuArgs] = None,
                       tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var dedicatedCloudNodeResource = new AzureNative.VMwareCloudSimple.DedicatedCloudNode("dedicatedCloudNodeResource", new()
{
    AvailabilityZoneId = "string",
    Id = "string",
    Name = "string",
    NodesCount = 0,
    PlacementGroupId = "string",
    PurchaseId = "string",
    ResourceGroupName = "string",
    DedicatedCloudNodeName = "string",
    Location = "string",
    Sku = new AzureNative.VMwareCloudSimple.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = "string",
        Description = "string",
        Family = "string",
        Tier = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := vmwarecloudsimple.NewDedicatedCloudNode(ctx, "dedicatedCloudNodeResource", &vmwarecloudsimple.DedicatedCloudNodeArgs{
	AvailabilityZoneId:     pulumi.String("string"),
	Id:                     pulumi.String("string"),
	Name:                   pulumi.String("string"),
	NodesCount:             pulumi.Int(0),
	PlacementGroupId:       pulumi.String("string"),
	PurchaseId:             pulumi.String("string"),
	ResourceGroupName:      pulumi.String("string"),
	DedicatedCloudNodeName: pulumi.String("string"),
	Location:               pulumi.String("string"),
	Sku: &vmwarecloudsimple.SkuArgs{
		Name:        pulumi.String("string"),
		Capacity:    pulumi.String("string"),
		Description: pulumi.String("string"),
		Family:      pulumi.String("string"),
		Tier:        pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var dedicatedCloudNodeResource = new DedicatedCloudNode("dedicatedCloudNodeResource", DedicatedCloudNodeArgs.builder()
    .availabilityZoneId("string")
    .id("string")
    .name("string")
    .nodesCount(0)
    .placementGroupId("string")
    .purchaseId("string")
    .resourceGroupName("string")
    .dedicatedCloudNodeName("string")
    .location("string")
    .sku(SkuArgs.builder()
        .name("string")
        .capacity("string")
        .description("string")
        .family("string")
        .tier("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
dedicated_cloud_node_resource = azure_native.vmwarecloudsimple.DedicatedCloudNode("dedicatedCloudNodeResource",
    availability_zone_id="string",
    id="string",
    name="string",
    nodes_count=0,
    placement_group_id="string",
    purchase_id="string",
    resource_group_name="string",
    dedicated_cloud_node_name="string",
    location="string",
    sku={
        "name": "string",
        "capacity": "string",
        "description": "string",
        "family": "string",
        "tier": "string",
    },
    tags={
        "string": "string",
    })
const dedicatedCloudNodeResource = new azure_native.vmwarecloudsimple.DedicatedCloudNode("dedicatedCloudNodeResource", {
    availabilityZoneId: "string",
    id: "string",
    name: "string",
    nodesCount: 0,
    placementGroupId: "string",
    purchaseId: "string",
    resourceGroupName: "string",
    dedicatedCloudNodeName: "string",
    location: "string",
    sku: {
        name: "string",
        capacity: "string",
        description: "string",
        family: "string",
        tier: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:vmwarecloudsimple:DedicatedCloudNode
properties:
    availabilityZoneId: string
    dedicatedCloudNodeName: string
    id: string
    location: string
    name: string
    nodesCount: 0
    placementGroupId: string
    purchaseId: string
    resourceGroupName: string
    sku:
        capacity: string
        description: string
        family: string
        name: string
        tier: string
    tags:
        string: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DedicatedCloudNode resource accepts the following input properties:
- AvailabilityZone stringId 
- Availability Zone id, e.g. "az1"
- Id string
- SKU's id
- Name string
- SKU's name
- NodesCount int
- count of nodes to create
- PlacementGroup stringId 
- Placement Group id, e.g. "n1"
- PurchaseId string
- purchase id
- ResourceGroup stringName 
- The name of the resource group
- DedicatedCloud stringNode Name 
- dedicated cloud node name
- Location string
- Azure region
- Sku
Pulumi.Azure Native. VMware Cloud Simple. Inputs. Sku 
- Dedicated Cloud Nodes SKU
- Dictionary<string, string>
- Dedicated Cloud Nodes tags
- AvailabilityZone stringId 
- Availability Zone id, e.g. "az1"
- Id string
- SKU's id
- Name string
- SKU's name
- NodesCount int
- count of nodes to create
- PlacementGroup stringId 
- Placement Group id, e.g. "n1"
- PurchaseId string
- purchase id
- ResourceGroup stringName 
- The name of the resource group
- DedicatedCloud stringNode Name 
- dedicated cloud node name
- Location string
- Azure region
- Sku
SkuArgs 
- Dedicated Cloud Nodes SKU
- map[string]string
- Dedicated Cloud Nodes tags
- availabilityZone StringId 
- Availability Zone id, e.g. "az1"
- id String
- SKU's id
- name String
- SKU's name
- nodesCount Integer
- count of nodes to create
- placementGroup StringId 
- Placement Group id, e.g. "n1"
- purchaseId String
- purchase id
- resourceGroup StringName 
- The name of the resource group
- dedicatedCloud StringNode Name 
- dedicated cloud node name
- location String
- Azure region
- sku Sku
- Dedicated Cloud Nodes SKU
- Map<String,String>
- Dedicated Cloud Nodes tags
- availabilityZone stringId 
- Availability Zone id, e.g. "az1"
- id string
- SKU's id
- name string
- SKU's name
- nodesCount number
- count of nodes to create
- placementGroup stringId 
- Placement Group id, e.g. "n1"
- purchaseId string
- purchase id
- resourceGroup stringName 
- The name of the resource group
- dedicatedCloud stringNode Name 
- dedicated cloud node name
- location string
- Azure region
- sku Sku
- Dedicated Cloud Nodes SKU
- {[key: string]: string}
- Dedicated Cloud Nodes tags
- availability_zone_ strid 
- 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_ strid 
- Placement Group id, e.g. "n1"
- purchase_id str
- purchase id
- resource_group_ strname 
- The name of the resource group
- dedicated_cloud_ strnode_ name 
- dedicated cloud node name
- location str
- Azure region
- sku
SkuArgs 
- Dedicated Cloud Nodes SKU
- Mapping[str, str]
- Dedicated Cloud Nodes tags
- availabilityZone StringId 
- Availability Zone id, e.g. "az1"
- id String
- SKU's id
- name String
- SKU's name
- nodesCount Number
- count of nodes to create
- placementGroup StringId 
- Placement Group id, e.g. "n1"
- purchaseId String
- purchase id
- resourceGroup StringName 
- The name of the resource group
- dedicatedCloud StringNode Name 
- dedicated cloud node name
- location String
- Azure region
- sku Property Map
- Dedicated Cloud Nodes SKU
- 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:
- AvailabilityZone stringName 
- Availability Zone name, e.g. "Availability Zone 1"
- CloudRack stringName 
- VMWare Cloud Rack Name
- Created string
- date time the resource was created
- Id string
- The provider-assigned unique ID for this managed resource.
- PlacementGroup stringName 
- Placement Name, e.g. "Placement Group 1"
- PrivateCloud stringId 
- Private Cloud Id
- PrivateCloud stringName 
- 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}
- VmwareCluster stringName 
- VMWare Cluster Name
- AvailabilityZone stringName 
- Availability Zone name, e.g. "Availability Zone 1"
- CloudRack stringName 
- VMWare Cloud Rack Name
- Created string
- date time the resource was created
- Id string
- The provider-assigned unique ID for this managed resource.
- PlacementGroup stringName 
- Placement Name, e.g. "Placement Group 1"
- PrivateCloud stringId 
- Private Cloud Id
- PrivateCloud stringName 
- 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}
- VmwareCluster stringName 
- VMWare Cluster Name
- availabilityZone StringName 
- Availability Zone name, e.g. "Availability Zone 1"
- cloudRack StringName 
- VMWare Cloud Rack Name
- created String
- date time the resource was created
- id String
- The provider-assigned unique ID for this managed resource.
- placementGroup StringName 
- Placement Name, e.g. "Placement Group 1"
- privateCloud StringId 
- Private Cloud Id
- privateCloud StringName 
- 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}
- vmwareCluster StringName 
- VMWare Cluster Name
- availabilityZone stringName 
- Availability Zone name, e.g. "Availability Zone 1"
- cloudRack stringName 
- VMWare Cloud Rack Name
- created string
- date time the resource was created
- id string
- The provider-assigned unique ID for this managed resource.
- placementGroup stringName 
- Placement Name, e.g. "Placement Group 1"
- privateCloud stringId 
- Private Cloud Id
- privateCloud stringName 
- 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}
- vmwareCluster stringName 
- VMWare Cluster Name
- availability_zone_ strname 
- Availability Zone name, e.g. "Availability Zone 1"
- cloud_rack_ strname 
- 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_ strname 
- Placement Name, e.g. "Placement Group 1"
- private_cloud_ strid 
- Private Cloud Id
- private_cloud_ strname 
- 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_ strname 
- VMWare Cluster Name
- availabilityZone StringName 
- Availability Zone name, e.g. "Availability Zone 1"
- cloudRack StringName 
- VMWare Cloud Rack Name
- created String
- date time the resource was created
- id String
- The provider-assigned unique ID for this managed resource.
- placementGroup StringName 
- Placement Name, e.g. "Placement Group 1"
- privateCloud StringId 
- Private Cloud Id
- privateCloud StringName 
- 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}
- vmwareCluster StringName 
- VMWare Cluster Name
Supporting Types
Sku, SkuArgs  
- 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, SkuResponseArgs    
- 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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.VMwareCloudSimple/dedicatedCloudNodes/{dedicatedCloudNodeName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0