DedicatedCloudService

class DedicatedCloudService : KotlinCustomResource

Dedicated cloud service 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

CreateDedicatedCloudService

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dedicatedCloudService = new AzureNative.VMwareCloudSimple.DedicatedCloudService("dedicatedCloudService", new()
{
DedicatedCloudServiceName = "myService",
GatewaySubnet = "10.0.0.0",
Location = "westus",
ResourceGroupName = "myResourceGroup",
});
});
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.NewDedicatedCloudService(ctx, "dedicatedCloudService", &vmwarecloudsimple.DedicatedCloudServiceArgs{
DedicatedCloudServiceName: pulumi.String("myService"),
GatewaySubnet: pulumi.String("10.0.0.0"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("myResourceGroup"),
})
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.DedicatedCloudService;
import com.pulumi.azurenative.vmwarecloudsimple.DedicatedCloudServiceArgs;
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 dedicatedCloudService = new DedicatedCloudService("dedicatedCloudService", DedicatedCloudServiceArgs.builder()
.dedicatedCloudServiceName("myService")
.gatewaySubnet("10.0.0.0")
.location("westus")
.resourceGroupName("myResourceGroup")
.build());
}
}

Import

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

$ pulumi import azure-native:vmwarecloudsimple:DedicatedCloudService myService /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.VMwareCloudSimple/dedicatedCloudServices/{dedicatedCloudServiceName}

Properties

Link copied to clipboard
val gatewaySubnet: Output<String>

gateway Subnet for the account. It will collect the subnet address and always treat it as /28

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

indicates whether account onboarded or not in a given region

Link copied to clipboard
val location: Output<String>

Azure region

Link copied to clipboard
val name: Output<String>

{dedicatedCloudServiceName}

Link copied to clipboard
val nodes: Output<Int>

total nodes purchased

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val serviceURL: Output<String>

link to a service management web portal

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

The list of tags

Link copied to clipboard
val type: Output<String>

{resourceProviderNamespace}/{resourceType}

Link copied to clipboard
val urn: Output<String>