DedicatedCloudNodeArgs

data class DedicatedCloudNodeArgs(val availabilityZoneId: Output<String>? = null, val dedicatedCloudNodeName: Output<String>? = null, val id: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val nodesCount: Output<Int>? = null, val placementGroupId: Output<String>? = null, val purchaseId: Output<String>? = null, val resourceGroupName: Output<String>? = null, val sku: Output<SkuArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<DedicatedCloudNodeArgs>

Dedicated cloud node model Uses Azure REST API version 2019-04-01. In version 1.x of the Azure Native provider, it used API version 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

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}

Constructors

Link copied to clipboard
constructor(availabilityZoneId: Output<String>? = null, dedicatedCloudNodeName: Output<String>? = null, id: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, nodesCount: Output<Int>? = null, placementGroupId: Output<String>? = null, purchaseId: Output<String>? = null, resourceGroupName: Output<String>? = null, sku: Output<SkuArgs>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val availabilityZoneId: Output<String>? = null

Availability Zone id, e.g. "az1"

Link copied to clipboard
val dedicatedCloudNodeName: Output<String>? = null

dedicated cloud node name

Link copied to clipboard
val id: Output<String>? = null

SKU's id

Link copied to clipboard
val location: Output<String>? = null

Azure region

Link copied to clipboard
val name: Output<String>? = null

SKU's name

Link copied to clipboard
val nodesCount: Output<Int>? = null

count of nodes to create

Link copied to clipboard
val placementGroupId: Output<String>? = null

Placement Group id, e.g. "n1"

Link copied to clipboard
val purchaseId: Output<String>? = null

purchase id

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group

Link copied to clipboard
val sku: Output<SkuArgs>? = null

Dedicated Cloud Nodes SKU

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Dedicated Cloud Nodes tags

Functions

Link copied to clipboard
open override fun toJava(): DedicatedCloudNodeArgs