Account

class Account : KotlinCustomResource

Manages an Azure Maps Account.

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 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("S1")
.localAuthenticationEnabled(true)
.tags(Map.of("environment", "Test"))
.build());
}
}

Import

A Maps Account can be imported using the resource id, e.g.

$ pulumi import azure:maps/account:Account example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Maps/accounts/my-maps-account

Properties

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

Is local authentication enabled for this Azure Maps Account? When false, all authentication to the Azure Maps data-plane REST API is disabled, except Azure AD authentication. Defaults to true.

Link copied to clipboard
val name: Output<String>

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

Link copied to clipboard

The primary key used to authenticate and authorize access to the Maps REST APIs.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The name of the Resource Group in which the Azure Maps Account should exist. Changing this forces a new resource to be created.

Link copied to clipboard

The secondary key used to authenticate and authorize access to the Maps REST APIs.

Link copied to clipboard
val skuName: Output<String>

The SKU of the Azure Maps Account. Possible values are S0, S1 and G2. Changing this forces a new resource to be created.

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

A mapping of tags to assign to the Azure Maps Account.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val xMsClientId: Output<String>

A unique identifier for the Maps Account.