1. Packages
  2. Azure Native
  3. API Docs
  4. maps
  5. Account
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.maps.Account

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    An Azure resource which represents access to a suite of Maps REST APIs.

    Uses Azure REST API version 2024-07-01-preview. In version 2.x of the Azure Native provider, it used API version 2021-02-01.

    Other available API versions: 2020-02-01-preview, 2021-02-01, 2021-07-01-preview, 2021-12-01-preview, 2023-06-01, 2023-08-01-preview, 2023-12-01-preview, 2024-01-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native maps [ApiVersion]. See the version guide for details.

    Example Usage

    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 = "eastus",
            Properties = new AzureNative.Maps.Inputs.MapsAccountPropertiesArgs
            {
                Cors = new AzureNative.Maps.Inputs.CorsRulesArgs
                {
                    CorsRules = new[]
                    {
                        new AzureNative.Maps.Inputs.CorsRuleArgs
                        {
                            AllowedOrigins = new[]
                            {
                                "http://www.contoso.com",
                                "http://www.fabrikam.com",
                            },
                        },
                    },
                },
                DisableLocalAuth = true,
                Locations = new[]
                {
                    new AzureNative.Maps.Inputs.MapsAccountPropertiesLocationsArgs
                    {
                        LocationName = "northeurope",
                    },
                },
            },
            ResourceGroupName = "myResourceGroup",
            Sku = new AzureNative.Maps.Inputs.SkuArgs
            {
                Name = AzureNative.Maps.Name.G2,
            },
            Tags = 
            {
                { "test", "true" },
            },
        });
    
    });
    
    package main
    
    import (
    	maps "github.com/pulumi/pulumi-azure-native-sdk/maps/v3"
    	"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("eastus"),
    			Properties: &maps.MapsAccountPropertiesArgs{
    				Cors: &maps.CorsRulesArgs{
    					CorsRules: maps.CorsRuleArray{
    						&maps.CorsRuleArgs{
    							AllowedOrigins: pulumi.StringArray{
    								pulumi.String("http://www.contoso.com"),
    								pulumi.String("http://www.fabrikam.com"),
    							},
    						},
    					},
    				},
    				DisableLocalAuth: pulumi.Bool(true),
    				Locations: maps.MapsAccountPropertiesLocationsArray{
    					&maps.MapsAccountPropertiesLocationsArgs{
    						LocationName: pulumi.String("northeurope"),
    					},
    				},
    			},
    			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
    	})
    }
    
    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.CorsRulesArgs;
    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("eastus")
                .properties(MapsAccountPropertiesArgs.builder()
                    .cors(CorsRulesArgs.builder()
                        .corsRules(CorsRuleArgs.builder()
                            .allowedOrigins(                        
                                "http://www.contoso.com",
                                "http://www.fabrikam.com")
                            .build())
                        .build())
                    .disableLocalAuth(true)
                    .locations(MapsAccountPropertiesLocationsArgs.builder()
                        .locationName("northeurope")
                        .build())
                    .build())
                .resourceGroupName("myResourceGroup")
                .sku(SkuArgs.builder()
                    .name("G2")
                    .build())
                .tags(Map.of("test", "true"))
                .build());
    
        }
    }
    
    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: "eastus",
        properties: {
            cors: {
                corsRules: [{
                    allowedOrigins: [
                        "http://www.contoso.com",
                        "http://www.fabrikam.com",
                    ],
                }],
            },
            disableLocalAuth: true,
            locations: [{
                locationName: "northeurope",
            }],
        },
        resourceGroupName: "myResourceGroup",
        sku: {
            name: azure_native.maps.Name.G2,
        },
        tags: {
            test: "true",
        },
    });
    
    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="eastus",
        properties={
            "cors": {
                "cors_rules": [{
                    "allowed_origins": [
                        "http://www.contoso.com",
                        "http://www.fabrikam.com",
                    ],
                }],
            },
            "disable_local_auth": True,
            "locations": [{
                "location_name": "northeurope",
            }],
        },
        resource_group_name="myResourceGroup",
        sku={
            "name": azure_native.maps.Name.G2,
        },
        tags={
            "test": "true",
        })
    
    resources:
      account:
        type: azure-native:maps:Account
        properties:
          accountName: myMapsAccount
          kind: Gen2
          location: eastus
          properties:
            cors:
              corsRules:
                - allowedOrigins:
                    - http://www.contoso.com
                    - http://www.fabrikam.com
            disableLocalAuth: true
            locations:
              - locationName: northeurope
          resourceGroupName: myResourceGroup
          sku:
            name: G2
          tags:
            test: 'true'
    

    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,
                identity: Optional[ManagedServiceIdentityArgs] = 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 string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args 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 = new AzureNative.Maps.Inputs.SkuArgs
        {
            Name = "string",
        },
        AccountName = "string",
        Identity = new AzureNative.Maps.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Kind = "string",
        Location = "string",
        Properties = new AzureNative.Maps.Inputs.MapsAccountPropertiesArgs
        {
            Cors = new AzureNative.Maps.Inputs.CorsRulesArgs
            {
                CorsRules = new[]
                {
                    new AzureNative.Maps.Inputs.CorsRuleArgs
                    {
                        AllowedOrigins = new[]
                        {
                            "string",
                        },
                    },
                },
            },
            DisableLocalAuth = false,
            Encryption = new AzureNative.Maps.Inputs.EncryptionArgs
            {
                CustomerManagedKeyEncryption = new AzureNative.Maps.Inputs.EncryptionCustomerManagedKeyEncryptionArgs
                {
                    KeyEncryptionKeyIdentity = new AzureNative.Maps.Inputs.EncryptionKeyEncryptionKeyIdentityArgs
                    {
                        DelegatedIdentityClientId = "string",
                        FederatedClientId = "string",
                        IdentityType = "string",
                        UserAssignedIdentityResourceId = "string",
                    },
                    KeyEncryptionKeyUrl = "string",
                },
                InfrastructureEncryption = "string",
            },
            LinkedResources = new[]
            {
                new AzureNative.Maps.Inputs.LinkedResourceArgs
                {
                    Id = "string",
                    UniqueName = "string",
                },
            },
            Locations = new[]
            {
                new AzureNative.Maps.Inputs.MapsAccountPropertiesLocationsArgs
                {
                    LocationName = "string",
                },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := maps.NewAccount(ctx, "exampleaccountResourceResourceFromMaps", &maps.AccountArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Sku: &maps.SkuArgs{
    		Name: pulumi.String("string"),
    	},
    	AccountName: pulumi.String("string"),
    	Identity: &maps.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Kind:     pulumi.String("string"),
    	Location: pulumi.String("string"),
    	Properties: &maps.MapsAccountPropertiesArgs{
    		Cors: &maps.CorsRulesArgs{
    			CorsRules: maps.CorsRuleArray{
    				&maps.CorsRuleArgs{
    					AllowedOrigins: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    		DisableLocalAuth: pulumi.Bool(false),
    		Encryption: &maps.EncryptionArgs{
    			CustomerManagedKeyEncryption: &maps.EncryptionCustomerManagedKeyEncryptionArgs{
    				KeyEncryptionKeyIdentity: &maps.EncryptionKeyEncryptionKeyIdentityArgs{
    					DelegatedIdentityClientId:      pulumi.String("string"),
    					FederatedClientId:              pulumi.String("string"),
    					IdentityType:                   pulumi.String("string"),
    					UserAssignedIdentityResourceId: pulumi.String("string"),
    				},
    				KeyEncryptionKeyUrl: pulumi.String("string"),
    			},
    			InfrastructureEncryption: pulumi.String("string"),
    		},
    		LinkedResources: maps.LinkedResourceArray{
    			&maps.LinkedResourceArgs{
    				Id:         pulumi.String("string"),
    				UniqueName: pulumi.String("string"),
    			},
    		},
    		Locations: maps.MapsAccountPropertiesLocationsArray{
    			&maps.MapsAccountPropertiesLocationsArgs{
    				LocationName: pulumi.String("string"),
    			},
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var exampleaccountResourceResourceFromMaps = new com.pulumi.azurenative.maps.Account("exampleaccountResourceResourceFromMaps", com.pulumi.azurenative.maps.AccountArgs.builder()
        .resourceGroupName("string")
        .sku(SkuArgs.builder()
            .name("string")
            .build())
        .accountName("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .kind("string")
        .location("string")
        .properties(MapsAccountPropertiesArgs.builder()
            .cors(CorsRulesArgs.builder()
                .corsRules(CorsRuleArgs.builder()
                    .allowedOrigins("string")
                    .build())
                .build())
            .disableLocalAuth(false)
            .encryption(EncryptionArgs.builder()
                .customerManagedKeyEncryption(EncryptionCustomerManagedKeyEncryptionArgs.builder()
                    .keyEncryptionKeyIdentity(EncryptionKeyEncryptionKeyIdentityArgs.builder()
                        .delegatedIdentityClientId("string")
                        .federatedClientId("string")
                        .identityType("string")
                        .userAssignedIdentityResourceId("string")
                        .build())
                    .keyEncryptionKeyUrl("string")
                    .build())
                .infrastructureEncryption("string")
                .build())
            .linkedResources(LinkedResourceArgs.builder()
                .id("string")
                .uniqueName("string")
                .build())
            .locations(MapsAccountPropertiesLocationsArgs.builder()
                .locationName("string")
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    exampleaccount_resource_resource_from_maps = azure_native.maps.Account("exampleaccountResourceResourceFromMaps",
        resource_group_name="string",
        sku={
            "name": "string",
        },
        account_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        kind="string",
        location="string",
        properties={
            "cors": {
                "cors_rules": [{
                    "allowed_origins": ["string"],
                }],
            },
            "disable_local_auth": False,
            "encryption": {
                "customer_managed_key_encryption": {
                    "key_encryption_key_identity": {
                        "delegated_identity_client_id": "string",
                        "federated_client_id": "string",
                        "identity_type": "string",
                        "user_assigned_identity_resource_id": "string",
                    },
                    "key_encryption_key_url": "string",
                },
                "infrastructure_encryption": "string",
            },
            "linked_resources": [{
                "id": "string",
                "unique_name": "string",
            }],
            "locations": [{
                "location_name": "string",
            }],
        },
        tags={
            "string": "string",
        })
    
    const exampleaccountResourceResourceFromMaps = new azure_native.maps.Account("exampleaccountResourceResourceFromMaps", {
        resourceGroupName: "string",
        sku: {
            name: "string",
        },
        accountName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        kind: "string",
        location: "string",
        properties: {
            cors: {
                corsRules: [{
                    allowedOrigins: ["string"],
                }],
            },
            disableLocalAuth: false,
            encryption: {
                customerManagedKeyEncryption: {
                    keyEncryptionKeyIdentity: {
                        delegatedIdentityClientId: "string",
                        federatedClientId: "string",
                        identityType: "string",
                        userAssignedIdentityResourceId: "string",
                    },
                    keyEncryptionKeyUrl: "string",
                },
                infrastructureEncryption: "string",
            },
            linkedResources: [{
                id: "string",
                uniqueName: "string",
            }],
            locations: [{
                locationName: "string",
            }],
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:maps:Account
    properties:
        accountName: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        kind: string
        location: string
        properties:
            cors:
                corsRules:
                    - allowedOrigins:
                        - string
            disableLocalAuth: false
            encryption:
                customerManagedKeyEncryption:
                    keyEncryptionKeyIdentity:
                        delegatedIdentityClientId: string
                        federatedClientId: string
                        identityType: string
                        userAssignedIdentityResourceId: string
                    keyEncryptionKeyUrl: string
                infrastructureEncryption: string
            linkedResources:
                - id: string
                  uniqueName: string
            locations:
                - locationName: string
        resourceGroupName: string
        sku:
            name: string
        tags:
            string: string
    

    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 string
    The name of the resource group. The name is case insensitive.
    Sku Pulumi.AzureNative.Maps.Inputs.Sku
    The SKU of this account.
    AccountName string
    The name of the Maps Account.
    Identity Pulumi.AzureNative.Maps.Inputs.ManagedServiceIdentity
    Managed service identity (system assigned and/or user assigned identities)
    Kind string | Pulumi.AzureNative.Maps.Kind
    Get or Set Kind property.
    Location 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 string
    The name of the resource group. The name is case insensitive.
    Sku SkuArgs
    The SKU of this account.
    AccountName string
    The name of the Maps Account.
    Identity ManagedServiceIdentityArgs
    Managed service identity (system assigned and/or user assigned identities)
    Kind string | Kind
    Get or Set Kind property.
    Location string
    The geo-location where the resource lives
    Properties MapsAccountPropertiesArgs
    The map account properties.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Sku
    The SKU of this account.
    accountName String
    The name of the Maps Account.
    identity ManagedServiceIdentity
    Managed service identity (system assigned and/or user assigned identities)
    kind String | Kind
    Get or Set Kind property.
    location String
    The geo-location where the resource lives
    properties MapsAccountProperties
    The map account properties.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku Sku
    The SKU of this account.
    accountName string
    The name of the Maps Account.
    identity ManagedServiceIdentity
    Managed service identity (system assigned and/or user assigned identities)
    kind string | Kind
    Get or Set Kind property.
    location string
    The geo-location where the resource lives
    properties MapsAccountProperties
    The map account properties.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku SkuArgs
    The SKU of this account.
    account_name str
    The name of the Maps Account.
    identity ManagedServiceIdentityArgs
    Managed service identity (system assigned and/or user assigned identities)
    kind str | Kind
    Get or Set Kind property.
    location str
    The geo-location where the resource lives
    properties MapsAccountPropertiesArgs
    The map account properties.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Property Map
    The SKU of this account.
    accountName String
    The name of the Maps Account.
    identity Property Map
    Managed service identity (system assigned and/or user assigned identities)
    kind String | "Gen2"
    Get or Set Kind property.
    location 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:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Maps.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    CorsRule, CorsRuleArgs

    AllowedOrigins List<string>
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    AllowedOrigins []string
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowedOrigins List<String>
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowedOrigins string[]
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowed_origins Sequence[str]
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowedOrigins List<String>
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains

    CorsRuleResponse, CorsRuleResponseArgs

    AllowedOrigins List<string>
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    AllowedOrigins []string
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowedOrigins List<String>
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowedOrigins string[]
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowed_origins Sequence[str]
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains
    allowedOrigins List<String>
    Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains

    CorsRules, CorsRulesArgs

    CorsRules List<Pulumi.AzureNative.Maps.Inputs.CorsRule>
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    CorsRules []CorsRule
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    corsRules List<CorsRule>
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    corsRules CorsRule[]
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    cors_rules Sequence[CorsRule]
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    corsRules List<Property Map>
    The list of CORS rules. You can include up to five CorsRule elements in the request.

    CorsRulesResponse, CorsRulesResponseArgs

    CorsRules List<Pulumi.AzureNative.Maps.Inputs.CorsRuleResponse>
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    CorsRules []CorsRuleResponse
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    corsRules List<CorsRuleResponse>
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    corsRules CorsRuleResponse[]
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    cors_rules Sequence[CorsRuleResponse]
    The list of CORS rules. You can include up to five CorsRule elements in the request.
    corsRules List<Property Map>
    The list of CORS rules. You can include up to five CorsRule elements in the request.

    Encryption, EncryptionArgs

    CustomerManagedKeyEncryption Pulumi.AzureNative.Maps.Inputs.EncryptionCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    InfrastructureEncryption string | Pulumi.AzureNative.Maps.InfrastructureEncryption
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    CustomerManagedKeyEncryption EncryptionCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    InfrastructureEncryption string | InfrastructureEncryption
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customerManagedKeyEncryption EncryptionCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    infrastructureEncryption String | InfrastructureEncryption
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customerManagedKeyEncryption EncryptionCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    infrastructureEncryption string | InfrastructureEncryption
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customer_managed_key_encryption EncryptionCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    infrastructure_encryption str | InfrastructureEncryption
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customerManagedKeyEncryption Property Map
    All Customer-managed key encryption properties for the resource.
    infrastructureEncryption String | "enabled" | "disabled"
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.

    EncryptionCustomerManagedKeyEncryption, EncryptionCustomerManagedKeyEncryptionArgs

    KeyEncryptionKeyIdentity Pulumi.AzureNative.Maps.Inputs.EncryptionKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    KeyEncryptionKeyIdentity EncryptionKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity EncryptionKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity EncryptionKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl string
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    key_encryption_key_identity EncryptionKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    key_encryption_key_url str
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity Property Map
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.

    EncryptionKeyEncryptionKeyIdentity, EncryptionKeyEncryptionKeyIdentityArgs

    DelegatedIdentityClientId string
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    DelegatedIdentityClientId string
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegatedIdentityClientId String
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegatedIdentityClientId string
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegated_identity_client_id str
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federated_client_id str
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identity_type str
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    user_assigned_identity_resource_id str
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegatedIdentityClientId String
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.

    EncryptionResponse, EncryptionResponseArgs

    CustomerManagedKeyEncryption Pulumi.AzureNative.Maps.Inputs.EncryptionResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    InfrastructureEncryption string
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    CustomerManagedKeyEncryption EncryptionResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    InfrastructureEncryption string
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customerManagedKeyEncryption EncryptionResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    infrastructureEncryption String
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customerManagedKeyEncryption EncryptionResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    infrastructureEncryption string
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customer_managed_key_encryption EncryptionResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource.
    infrastructure_encryption str
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.
    customerManagedKeyEncryption Property Map
    All Customer-managed key encryption properties for the resource.
    infrastructureEncryption String
    (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.

    EncryptionResponseCustomerManagedKeyEncryption, EncryptionResponseCustomerManagedKeyEncryptionArgs

    KeyEncryptionKeyIdentity Pulumi.AzureNative.Maps.Inputs.EncryptionResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    KeyEncryptionKeyIdentity EncryptionResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity EncryptionResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity EncryptionResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl string
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    key_encryption_key_identity EncryptionResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    key_encryption_key_url str
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
    keyEncryptionKeyIdentity Property Map
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    key encryption key Url, versioned or unversioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.

    EncryptionResponseKeyEncryptionKeyIdentity, EncryptionResponseKeyEncryptionKeyIdentityArgs

    DelegatedIdentityClientId string
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    DelegatedIdentityClientId string
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    FederatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    IdentityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegatedIdentityClientId String
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegatedIdentityClientId string
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federatedClientId string
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType string
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegated_identity_client_id str
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federated_client_id str
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identity_type str
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    user_assigned_identity_resource_id str
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
    delegatedIdentityClientId String
    delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only.
    federatedClientId String
    application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
    identityType String
    The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.

    InfrastructureEncryption, InfrastructureEncryptionArgs

    Enabled
    enabled
    Disabled
    disabled
    InfrastructureEncryptionEnabled
    enabled
    InfrastructureEncryptionDisabled
    disabled
    Enabled
    enabled
    Disabled
    disabled
    Enabled
    enabled
    Disabled
    disabled
    ENABLED
    enabled
    DISABLED
    disabled
    "enabled"
    enabled
    "disabled"
    disabled

    Kind, KindArgs

    Gen2
    Gen2
    KindGen2
    Gen2
    Gen2
    Gen2
    Gen2
    Gen2
    GEN2
    Gen2
    "Gen2"
    Gen2

    LinkedResource, LinkedResourceArgs

    Id string
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    UniqueName string
    A provided name which uniquely identifies the linked resource.
    Id string
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    UniqueName string
    A provided name which uniquely identifies the linked resource.
    id String
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    uniqueName String
    A provided name which uniquely identifies the linked resource.
    id string
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    uniqueName string
    A provided name which uniquely identifies the linked resource.
    id str
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    unique_name str
    A provided name which uniquely identifies the linked resource.
    id String
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    uniqueName String
    A provided name which uniquely identifies the linked resource.

    LinkedResourceResponse, LinkedResourceResponseArgs

    Id string
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    UniqueName string
    A provided name which uniquely identifies the linked resource.
    Id string
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    UniqueName string
    A provided name which uniquely identifies the linked resource.
    id String
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    uniqueName String
    A provided name which uniquely identifies the linked resource.
    id string
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    uniqueName string
    A provided name which uniquely identifies the linked resource.
    id str
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    unique_name str
    A provided name which uniquely identifies the linked resource.
    id String
    ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/accounts/{storageName}'.
    uniqueName String
    A provided name which uniquely identifies the linked resource.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.Maps.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Maps.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned

    MapsAccountProperties, MapsAccountPropertiesArgs

    Cors Pulumi.AzureNative.Maps.Inputs.CorsRules
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    DisableLocalAuth bool
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    Encryption Pulumi.AzureNative.Maps.Inputs.Encryption
    All encryption configuration for a resource.
    LinkedResources List<Pulumi.AzureNative.Maps.Inputs.LinkedResource>
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    Locations List<Pulumi.AzureNative.Maps.Inputs.MapsAccountPropertiesLocations>
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    Cors CorsRules
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    DisableLocalAuth bool
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    Encryption Encryption
    All encryption configuration for a resource.
    LinkedResources []LinkedResource
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    Locations []MapsAccountPropertiesLocations
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    cors CorsRules
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disableLocalAuth Boolean
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption Encryption
    All encryption configuration for a resource.
    linkedResources List<LinkedResource>
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations List<MapsAccountPropertiesLocations>
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    cors CorsRules
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disableLocalAuth boolean
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption Encryption
    All encryption configuration for a resource.
    linkedResources LinkedResource[]
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations MapsAccountPropertiesLocations[]
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    cors CorsRules
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disable_local_auth bool
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption Encryption
    All encryption configuration for a resource.
    linked_resources Sequence[LinkedResource]
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations Sequence[MapsAccountPropertiesLocations]
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    cors Property Map
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disableLocalAuth Boolean
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption Property Map
    All encryption configuration for a resource.
    linkedResources List<Property Map>
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations List<Property Map>
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.

    MapsAccountPropertiesLocations, MapsAccountPropertiesLocationsArgs

    LocationName string
    The location name.
    LocationName string
    The location name.
    locationName String
    The location name.
    locationName string
    The location name.
    location_name str
    The location name.
    locationName String
    The location name.

    MapsAccountPropertiesResponse, MapsAccountPropertiesResponseArgs

    ProvisioningState string
    The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states: Succeeded and Failed
    UniqueId string
    A unique identifier for the Maps Account
    Cors Pulumi.AzureNative.Maps.Inputs.CorsRulesResponse
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    DisableLocalAuth bool
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    Encryption Pulumi.AzureNative.Maps.Inputs.EncryptionResponse
    All encryption configuration for a resource.
    LinkedResources List<Pulumi.AzureNative.Maps.Inputs.LinkedResourceResponse>
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    Locations List<Pulumi.AzureNative.Maps.Inputs.MapsAccountPropertiesResponseLocations>
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    ProvisioningState string
    The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states: Succeeded and Failed
    UniqueId string
    A unique identifier for the Maps Account
    Cors CorsRulesResponse
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    DisableLocalAuth bool
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    Encryption EncryptionResponse
    All encryption configuration for a resource.
    LinkedResources []LinkedResourceResponse
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    Locations []MapsAccountPropertiesResponseLocations
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    provisioningState String
    The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states: Succeeded and Failed
    uniqueId String
    A unique identifier for the Maps Account
    cors CorsRulesResponse
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disableLocalAuth Boolean
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption EncryptionResponse
    All encryption configuration for a resource.
    linkedResources List<LinkedResourceResponse>
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations List<MapsAccountPropertiesResponseLocations>
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    provisioningState string
    The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states: Succeeded and Failed
    uniqueId string
    A unique identifier for the Maps Account
    cors CorsRulesResponse
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disableLocalAuth boolean
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption EncryptionResponse
    All encryption configuration for a resource.
    linkedResources LinkedResourceResponse[]
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations MapsAccountPropertiesResponseLocations[]
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    provisioning_state str
    The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states: Succeeded and Failed
    unique_id str
    A unique identifier for the Maps Account
    cors CorsRulesResponse
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disable_local_auth bool
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption EncryptionResponse
    All encryption configuration for a resource.
    linked_resources Sequence[LinkedResourceResponse]
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations Sequence[MapsAccountPropertiesResponseLocations]
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.
    provisioningState String
    The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states: Succeeded and Failed
    uniqueId String
    A unique identifier for the Maps Account
    cors Property Map
    Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
    disableLocalAuth Boolean
    Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.
    encryption Property Map
    All encryption configuration for a resource.
    linkedResources List<Property Map>
    The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).
    locations List<Property Map>
    List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.

    MapsAccountPropertiesResponseLocations, MapsAccountPropertiesResponseLocationsArgs

    LocationName string
    The location name.
    LocationName string
    The location name.
    locationName String
    The location name.
    locationName string
    The location name.
    location_name str
    The location name.
    locationName String
    The location name.

    Name, NameArgs

    G2
    G2
    NameG2
    G2
    G2
    G2
    G2
    G2
    G2
    G2
    "G2"
    G2

    Sku, SkuArgs

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

    SkuResponse, SkuResponseArgs

    Name string
    The name of the SKU, in standard format (such as G2).
    Tier string
    Gets the sku tier. This is based on the SKU name.
    Name string
    The name of the SKU, in standard format (such as G2).
    Tier string
    Gets the sku tier. This is based on the SKU name.
    name String
    The name of the SKU, in standard format (such as G2).
    tier String
    Gets the sku tier. This is based on the SKU name.
    name string
    The name of the SKU, in standard format (such as G2).
    tier string
    Gets the sku tier. This is based on the SKU name.
    name str
    The name of the SKU, in standard format (such as G2).
    tier str
    Gets the sku tier. This is based on the SKU name.
    name String
    The name of the SKU, in standard format (such as G2).
    tier 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.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi