DedicatedCloudNode

class DedicatedCloudNode : KotlinCustomResource

Dedicated cloud node model Uses Azure REST API version 2019-04-01. In version 2.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/v3"
"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}

Properties

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>

Azure region

Link copied to clipboard
val name: Output<String>

{dedicatedCloudNodeName}

Link copied to clipboard

Dedicated Cloud Nodes properties

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val sku: Output<SkuResponse>?

Dedicated Cloud Nodes SKU

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

Dedicated Cloud Nodes tags

Link copied to clipboard
val type: Output<String>

{resourceProviderNamespace}/{resourceType}

Link copied to clipboard
val urn: Output<String>