1. Packages
  2. Azure Native v2
  3. API Docs
  4. maps
  5. Account
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.maps.Account

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

An Azure resource which represents access to a suite of Maps REST APIs. Azure REST API version: 2021-02-01. Prior API version in Azure Native 1.x: 2018-05-01.

Other available API versions: 2018-05-01, 2021-12-01-preview, 2023-06-01, 2023-08-01-preview, 2023-12-01-preview, 2024-01-01-preview, 2024-07-01-preview.

Example Usage

Create Gen1 Account

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var account = new AzureNative.Maps.Account("account", new()
    {
        AccountName = "myMapsAccount",
        Kind = AzureNative.Maps.Kind.Gen1,
        Location = "global",
        Properties = new AzureNative.Maps.Inputs.MapsAccountPropertiesArgs
        {
            DisableLocalAuth = false,
        },
        ResourceGroupName = "myResourceGroup",
        Sku = new AzureNative.Maps.Inputs.SkuArgs
        {
            Name = AzureNative.Maps.Name.S0,
        },
        Tags = 
        {
            { "test", "true" },
        },
    });

});
Copy
package main

import (
	maps "github.com/pulumi/pulumi-azure-native-sdk/maps/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := maps.NewAccount(ctx, "account", &maps.AccountArgs{
			AccountName: pulumi.String("myMapsAccount"),
			Kind:        pulumi.String(maps.KindGen1),
			Location:    pulumi.String("global"),
			Properties: &maps.MapsAccountPropertiesArgs{
				DisableLocalAuth: pulumi.Bool(false),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Sku: &maps.SkuArgs{
				Name: pulumi.String(maps.NameS0),
			},
			Tags: pulumi.StringMap{
				"test": pulumi.String("true"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.maps.Account;
import com.pulumi.azurenative.maps.AccountArgs;
import com.pulumi.azurenative.maps.inputs.MapsAccountPropertiesArgs;
import com.pulumi.azurenative.maps.inputs.SkuArgs;
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 account = new Account("account", AccountArgs.builder()
            .accountName("myMapsAccount")
            .kind("Gen1")
            .location("global")
            .properties(MapsAccountPropertiesArgs.builder()
                .disableLocalAuth(false)
                .build())
            .resourceGroupName("myResourceGroup")
            .sku(SkuArgs.builder()
                .name("S0")
                .build())
            .tags(Map.of("test", "true"))
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const account = new azure_native.maps.Account("account", {
    accountName: "myMapsAccount",
    kind: azure_native.maps.Kind.Gen1,
    location: "global",
    properties: {
        disableLocalAuth: false,
    },
    resourceGroupName: "myResourceGroup",
    sku: {
        name: azure_native.maps.Name.S0,
    },
    tags: {
        test: "true",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

account = azure_native.maps.Account("account",
    account_name="myMapsAccount",
    kind=azure_native.maps.Kind.GEN1,
    location="global",
    properties={
        "disable_local_auth": False,
    },
    resource_group_name="myResourceGroup",
    sku={
        "name": azure_native.maps.Name.S0,
    },
    tags={
        "test": "true",
    })
Copy
resources:
  account:
    type: azure-native:maps:Account
    properties:
      accountName: myMapsAccount
      kind: Gen1
      location: global
      properties:
        disableLocalAuth: false
      resourceGroupName: myResourceGroup
      sku:
        name: S0
      tags:
        test: 'true'
Copy

Create Gen2 Account

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var account = new AzureNative.Maps.Account("account", new()
    {
        AccountName = "myMapsAccount",
        Kind = AzureNative.Maps.Kind.Gen2,
        Location = "global",
        Properties = new AzureNative.Maps.Inputs.MapsAccountPropertiesArgs
        {
            DisableLocalAuth = true,
        },
        ResourceGroupName = "myResourceGroup",
        Sku = new AzureNative.Maps.Inputs.SkuArgs
        {
            Name = AzureNative.Maps.Name.G2,
        },
        Tags = 
        {
            { "test", "true" },
        },
    });

});
Copy
package main

import (
	maps "github.com/pulumi/pulumi-azure-native-sdk/maps/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := maps.NewAccount(ctx, "account", &maps.AccountArgs{
			AccountName: pulumi.String("myMapsAccount"),
			Kind:        pulumi.String(maps.KindGen2),
			Location:    pulumi.String("global"),
			Properties: &maps.MapsAccountPropertiesArgs{
				DisableLocalAuth: pulumi.Bool(true),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Sku: &maps.SkuArgs{
				Name: pulumi.String(maps.NameG2),
			},
			Tags: pulumi.StringMap{
				"test": pulumi.String("true"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.maps.Account;
import com.pulumi.azurenative.maps.AccountArgs;
import com.pulumi.azurenative.maps.inputs.MapsAccountPropertiesArgs;
import com.pulumi.azurenative.maps.inputs.SkuArgs;
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 account = new Account("account", AccountArgs.builder()
            .accountName("myMapsAccount")
            .kind("Gen2")
            .location("global")
            .properties(MapsAccountPropertiesArgs.builder()
                .disableLocalAuth(true)
                .build())
            .resourceGroupName("myResourceGroup")
            .sku(SkuArgs.builder()
                .name("G2")
                .build())
            .tags(Map.of("test", "true"))
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const account = new azure_native.maps.Account("account", {
    accountName: "myMapsAccount",
    kind: azure_native.maps.Kind.Gen2,
    location: "global",
    properties: {
        disableLocalAuth: true,
    },
    resourceGroupName: "myResourceGroup",
    sku: {
        name: azure_native.maps.Name.G2,
    },
    tags: {
        test: "true",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

account = azure_native.maps.Account("account",
    account_name="myMapsAccount",
    kind=azure_native.maps.Kind.GEN2,
    location="global",
    properties={
        "disable_local_auth": True,
    },
    resource_group_name="myResourceGroup",
    sku={
        "name": azure_native.maps.Name.G2,
    },
    tags={
        "test": "true",
    })
Copy
resources:
  account:
    type: azure-native:maps:Account
    properties:
      accountName: myMapsAccount
      kind: Gen2
      location: global
      properties:
        disableLocalAuth: true
      resourceGroupName: myResourceGroup
      sku:
        name: G2
      tags:
        test: 'true'
Copy

Create Account Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@overload
def Account(resource_name: str,
            args: AccountArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Account(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            resource_group_name: Optional[str] = None,
            sku: Optional[SkuArgs] = None,
            account_name: Optional[str] = None,
            kind: Optional[Union[str, Kind]] = None,
            location: Optional[str] = None,
            properties: Optional[MapsAccountPropertiesArgs] = None,
            tags: Optional[Mapping[str, str]] = None)
func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: azure-native:maps:Account
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var exampleaccountResourceResourceFromMaps = new AzureNative.Maps.Account("exampleaccountResourceResourceFromMaps", new()
{
    ResourceGroupName = "string",
    Sku = 
    {
        { "name", "string" },
    },
    AccountName = "string",
    Kind = "string",
    Location = "string",
    Properties = 
    {
        { "disableLocalAuth", false },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := maps.NewAccount(ctx, "exampleaccountResourceResourceFromMaps", &maps.AccountArgs{
	ResourceGroupName: "string",
	Sku: map[string]interface{}{
		"name": "string",
	},
	AccountName: "string",
	Kind:        "string",
	Location:    "string",
	Properties: map[string]interface{}{
		"disableLocalAuth": false,
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var exampleaccountResourceResourceFromMaps = new com.pulumi.azurenative.maps.Account("exampleaccountResourceResourceFromMaps", com.pulumi.azurenative.maps.AccountArgs.builder()
    .resourceGroupName("string")
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .accountName("string")
    .kind("string")
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
exampleaccount_resource_resource_from_maps = azure_native.maps.Account("exampleaccountResourceResourceFromMaps",
    resource_group_name=string,
    sku={
        name: string,
    },
    account_name=string,
    kind=string,
    location=string,
    properties={
        disableLocalAuth: False,
    },
    tags={
        string: string,
    })
Copy
const exampleaccountResourceResourceFromMaps = new azure_native.maps.Account("exampleaccountResourceResourceFromMaps", {
    resourceGroupName: "string",
    sku: {
        name: "string",
    },
    accountName: "string",
    kind: "string",
    location: "string",
    properties: {
        disableLocalAuth: false,
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:maps:Account
properties:
    accountName: string
    kind: string
    location: string
    properties:
        disableLocalAuth: false
    resourceGroupName: string
    sku:
        name: string
    tags:
        string: string
Copy

Account Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Account resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Sku This property is required. Pulumi.AzureNative.Maps.Inputs.Sku
The SKU of this account.
AccountName Changes to this property will trigger replacement. string
The name of the Maps Account.
Kind string | Pulumi.AzureNative.Maps.Kind
Get or Set Kind property.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.Maps.Inputs.MapsAccountProperties
The map account properties.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Sku This property is required. SkuArgs
The SKU of this account.
AccountName Changes to this property will trigger replacement. string
The name of the Maps Account.
Kind string | Kind
Get or Set Kind property.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties MapsAccountPropertiesArgs
The map account properties.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
sku This property is required. Sku
The SKU of this account.
accountName Changes to this property will trigger replacement. String
The name of the Maps Account.
kind String | Kind
Get or Set Kind property.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties MapsAccountProperties
The map account properties.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
sku This property is required. Sku
The SKU of this account.
accountName Changes to this property will trigger replacement. string
The name of the Maps Account.
kind string | Kind
Get or Set Kind property.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties MapsAccountProperties
The map account properties.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
sku This property is required. SkuArgs
The SKU of this account.
account_name Changes to this property will trigger replacement. str
The name of the Maps Account.
kind str | Kind
Get or Set Kind property.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties MapsAccountPropertiesArgs
The map account properties.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
sku This property is required. Property Map
The SKU of this account.
accountName Changes to this property will trigger replacement. String
The name of the Maps Account.
kind String | "Gen1" | "Gen2"
Get or Set Kind property.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map
The map account properties.
tags Map<String>
Resource tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.Maps.Outputs.SystemDataResponse
The system meta data relating to this resource.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
The system meta data relating to this resource.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
The system meta data relating to this resource.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
The system meta data relating to this resource.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
The system meta data relating to this resource.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
The system meta data relating to this resource.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

Kind
, KindArgs

Gen1
Gen1
Gen2
Gen2
KindGen1
Gen1
KindGen2
Gen2
Gen1
Gen1
Gen2
Gen2
Gen1
Gen1
Gen2
Gen2
GEN1
Gen1
GEN2
Gen2
"Gen1"
Gen1
"Gen2"
Gen2

MapsAccountProperties
, MapsAccountPropertiesArgs

DisableLocalAuth bool
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
DisableLocalAuth bool
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
disableLocalAuth Boolean
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
disableLocalAuth boolean
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
disable_local_auth bool
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
disableLocalAuth Boolean
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.

MapsAccountPropertiesResponse
, MapsAccountPropertiesResponseArgs

ProvisioningState This property is required. string
the state of the provisioning.
UniqueId This property is required. string
A unique identifier for the maps account
DisableLocalAuth bool
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
ProvisioningState This property is required. string
the state of the provisioning.
UniqueId This property is required. string
A unique identifier for the maps account
DisableLocalAuth bool
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
provisioningState This property is required. String
the state of the provisioning.
uniqueId This property is required. String
A unique identifier for the maps account
disableLocalAuth Boolean
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
provisioningState This property is required. string
the state of the provisioning.
uniqueId This property is required. string
A unique identifier for the maps account
disableLocalAuth boolean
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
provisioning_state This property is required. str
the state of the provisioning.
unique_id This property is required. str
A unique identifier for the maps account
disable_local_auth bool
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.
provisioningState This property is required. String
the state of the provisioning.
uniqueId This property is required. String
A unique identifier for the maps account
disableLocalAuth Boolean
Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage.

Name
, NameArgs

S0
S0
S1
S1
G2
G2
NameS0
S0
NameS1
S1
NameG2
G2
S0
S0
S1
S1
G2
G2
S0
S0
S1
S1
G2
G2
S0
S0
S1
S1
G2
G2
"S0"
S0
"S1"
S1
"G2"
G2

Sku
, SkuArgs

Name This property is required. string | Pulumi.AzureNative.Maps.Name
The name of the SKU, in standard format (such as S0).
Name This property is required. string | Name
The name of the SKU, in standard format (such as S0).
name This property is required. String | Name
The name of the SKU, in standard format (such as S0).
name This property is required. string | Name
The name of the SKU, in standard format (such as S0).
name This property is required. str | Name
The name of the SKU, in standard format (such as S0).
name This property is required. String | "S0" | "S1" | "G2"
The name of the SKU, in standard format (such as S0).

SkuResponse
, SkuResponseArgs

Name This property is required. string
The name of the SKU, in standard format (such as S0).
Tier This property is required. string
Gets the sku tier. This is based on the SKU name.
Name This property is required. string
The name of the SKU, in standard format (such as S0).
Tier This property is required. string
Gets the sku tier. This is based on the SKU name.
name This property is required. String
The name of the SKU, in standard format (such as S0).
tier This property is required. String
Gets the sku tier. This is based on the SKU name.
name This property is required. string
The name of the SKU, in standard format (such as S0).
tier This property is required. string
Gets the sku tier. This is based on the SKU name.
name This property is required. str
The name of the SKU, in standard format (such as S0).
tier This property is required. str
Gets the sku tier. This is based on the SKU name.
name This property is required. String
The name of the SKU, in standard format (such as S0).
tier This property is required. String
Gets the sku tier. This is based on the SKU name.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:maps:Account myMapsAccount /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Maps/accounts/{accountName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi