DedicatedCloudServiceArgs

data class DedicatedCloudServiceArgs(val dedicatedCloudServiceName: Output<String>? = null, val gatewaySubnet: Output<String>? = null, val location: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<DedicatedCloudServiceArgs>

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

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}

Constructors

Link copied to clipboard
constructor(dedicatedCloudServiceName: Output<String>? = null, gatewaySubnet: Output<String>? = null, location: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

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

dedicated cloud Service name

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

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

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

Azure region

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

The name of the resource group

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

The list of tags

Functions

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