Creator

class Creator : KotlinCustomResource

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

Properties

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

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>

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

Link copied to clipboard
val name: Output<String>

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

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val storageUnits: Output<Int>

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

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

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

Link copied to clipboard
val urn: Output<String>