CreatorArgs

data class CreatorArgs(val location: Output<String>? = null, val mapsAccountId: Output<String>? = null, val name: Output<String>? = null, val storageUnits: Output<Int>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<CreatorArgs>

Manages an Azure Maps Creator.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.maps.Account;
import com.pulumi.azure.maps.AccountArgs;
import com.pulumi.azure.maps.Creator;
import com.pulumi.azure.maps.CreatorArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.skuName("G2")
.tags(Map.of("environment", "Test"))
.build());
var exampleCreator = new Creator("exampleCreator", CreatorArgs.builder()
.mapsAccountId(exampleAccount.id())
.location(exampleResourceGroup.location())
.storageUnits(1)
.tags(Map.of("environment", "Test"))
.build());
}
}

Import

An Azure Maps Creators can be imported using the resource id, e.g.

$ pulumi import azure:maps/creator:Creator example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Maps/accounts/account1/creators/creator1

Constructors

Link copied to clipboard
fun CreatorArgs(location: Output<String>? = null, mapsAccountId: Output<String>? = null, name: Output<String>? = null, storageUnits: Output<Int>? = null, tags: Output<Map<String, String>>? = null)

Functions

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

Properties

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

The Azure Region where the Azure Maps Creator should exist. Changing this forces a new resource to be created.

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

The ID of the Azure Maps Creator. Changing this forces a new resource to be created.

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

The name of the Azure Maps Creator. Changing this forces a new resource to be created.

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

The storage units to be allocated. Integer values from 1 to 100, inclusive.

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

A mapping of tags which should be assigned to the Azure Maps Creator.