azure-native.maps.Account
Explore with Pulumi AI
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Pulumi.
Azure Native. Maps. Inputs. Sku - The SKU of this account.
- Account
Name string - The name of the Maps Account.
- Identity
Pulumi.
Azure Native. Maps. Inputs. Managed Service Identity - Managed service identity (system assigned and/or user assigned identities)
- Kind
string | Pulumi.
Azure Native. Maps. Kind - Get or Set Kind property.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Maps. Inputs. Maps Account Properties - The map account properties.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Sku
Args - The SKU of this account.
- Account
Name string - The name of the Maps Account.
- Identity
Managed
Service Identity Args - 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
Maps
Account Properties Args - The map account properties.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The SKU of this account.
- account
Name String - The name of the Maps Account.
- identity
Managed
Service Identity - 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
Maps
Account Properties - The map account properties.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The SKU of this account.
- account
Name string - The name of the Maps Account.
- identity
Managed
Service Identity - 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
Maps
Account Properties - The map account properties.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sku
Sku
Args - The SKU of this account.
- account_
name str - The name of the Maps Account.
- identity
Managed
Service Identity Args - 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
Maps
Account Properties Args - The map account properties.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Property Map
- The SKU of this account.
- account
Name 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.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Maps. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - 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
- system
Data SystemData Response - 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 stringVersion - 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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
- system
Data 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
- Allowed
Origins List<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 []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 List<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 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
- allowed
Origins 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
- Allowed
Origins List<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 []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 List<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 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
- allowed
Origins 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
- Cors
Rules List<Pulumi.Azure Native. Maps. Inputs. Cors Rule> - The list of CORS rules. You can include up to five CorsRule elements in the request.
- Cors
Rules []CorsRule - The list of CORS rules. You can include up to five CorsRule elements in the request.
- cors
Rules List<CorsRule> - The list of CORS rules. You can include up to five CorsRule elements in the request.
- cors
Rules 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.
- cors
Rules List<Property Map> - The list of CORS rules. You can include up to five CorsRule elements in the request.
CorsRulesResponse, CorsRulesResponseArgs
- Cors
Rules List<Pulumi.Azure Native. Maps. Inputs. Cors Rule Response> - The list of CORS rules. You can include up to five CorsRule elements in the request.
- Cors
Rules []CorsRule Response - The list of CORS rules. You can include up to five CorsRule elements in the request.
- cors
Rules List<CorsRule Response> - The list of CORS rules. You can include up to five CorsRule elements in the request.
- cors
Rules CorsRule Response[] - The list of CORS rules. You can include up to five CorsRule elements in the request.
- cors_
rules Sequence[CorsRule Response] - The list of CORS rules. You can include up to five CorsRule elements in the request.
- cors
Rules List<Property Map> - The list of CORS rules. You can include up to five CorsRule elements in the request.
Encryption, EncryptionArgs
- Customer
Managed Pulumi.Key Encryption Azure Native. Maps. Inputs. Encryption Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- Infrastructure
Encryption string | Pulumi.Azure Native. Maps. Infrastructure Encryption - (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 EncryptionKey Encryption Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- Infrastructure
Encryption 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 EncryptionKey Encryption Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- infrastructure
Encryption 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 EncryptionKey Encryption Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- infrastructure
Encryption 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_ Encryptionkey_ encryption Customer Managed Key Encryption - 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.
- customer
Managed Property MapKey Encryption - All Customer-managed key encryption properties for the resource.
- infrastructure
Encryption 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
- Key
Encryption Pulumi.Key Identity Azure Native. Maps. Inputs. Encryption Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 EncryptionKey Identity Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 EncryptionKey Identity Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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 EncryptionKey Identity Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption stringKey Url - 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_ Encryptionkey_ identity Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key_
encryption_ strkey_ url - 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 Property MapKey Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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
- Delegated
Identity stringClient Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 stringClient Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 StringClient Id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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 stringClient Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned stringIdentity Resource Id - 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_ strclient_ id - 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_ strid - 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_ stridentity_ resource_ id - 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 StringClient Id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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
- Customer
Managed Pulumi.Key Encryption Azure Native. Maps. Inputs. Encryption Response Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- Infrastructure
Encryption 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 EncryptionKey Encryption Response Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- Infrastructure
Encryption 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 EncryptionKey Encryption Response Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- infrastructure
Encryption 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 EncryptionKey Encryption Response Customer Managed Key Encryption - All Customer-managed key encryption properties for the resource.
- infrastructure
Encryption 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_ Encryptionkey_ encryption Response Customer Managed Key Encryption - 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.
- customer
Managed Property MapKey Encryption - All Customer-managed key encryption properties for the resource.
- infrastructure
Encryption 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
- Key
Encryption Pulumi.Key Identity Azure Native. Maps. Inputs. Encryption Response Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 EncryptionKey Identity Response Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- Key
Encryption stringKey Url - 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 EncryptionKey Identity Response Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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 EncryptionKey Identity Response Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption stringKey Url - 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_ Encryptionkey_ identity Response Key Encryption Key Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key_
encryption_ strkey_ url - 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 Property MapKey Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption StringKey Url - 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
- Delegated
Identity stringClient Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 stringClient Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- Identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- User
Assigned stringIdentity Resource Id - 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 StringClient Id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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 stringClient Id - 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 stringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type string - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned stringIdentity Resource Id - 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_ strclient_ id - 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_ strid - 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_ stridentity_ resource_ id - 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 StringClient Id - 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 StringId - application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
- identity
Type String - The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
- user
Assigned StringIdentity Resource Id - 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
- Infrastructure
Encryption Enabled - enabled
- Infrastructure
Encryption Disabled - disabled
- Enabled
- enabled
- Disabled
- disabled
- Enabled
- enabled
- Disabled
- disabled
- ENABLED
- enabled
- DISABLED
- disabled
- "enabled"
- enabled
- "disabled"
- disabled
Kind, KindArgs
- Gen2
- Gen2
- Kind
Gen2 - 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}'.
- Unique
Name 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}'.
- Unique
Name 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}'.
- unique
Name 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}'.
- unique
Name 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}'.
- unique
Name 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}'.
- Unique
Name 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}'.
- Unique
Name 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}'.
- unique
Name 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}'.
- unique
Name 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}'.
- unique
Name String - A provided name which uniquely identifies the linked resource.
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Maps. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - 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" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Maps. Inputs. User Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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_ Mapping[str, Useridentities Assigned Identity Response] - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<Property Map>Identities - 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
MapsAccountProperties, MapsAccountPropertiesArgs
- Cors
Pulumi.
Azure Native. Maps. Inputs. Cors Rules - 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 boolAuth - 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.
Azure Native. Maps. Inputs. Encryption - All encryption configuration for a resource.
- Linked
Resources List<Pulumi.Azure Native. Maps. Inputs. Linked Resource> - 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.
Azure Native. Maps. Inputs. Maps Account Properties Locations> - 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
Cors
Rules - 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 boolAuth - 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 []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
[]Maps
Account Properties Locations - 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
Cors
Rules - 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 BooleanAuth - 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 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<Maps
Account Properties Locations> - 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
Cors
Rules - 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 booleanAuth - 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 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
Maps
Account Properties Locations[] - 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
Cors
Rules - 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_ boolauth - 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[Maps
Account Properties Locations] - 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.
- disable
Local BooleanAuth - 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.
- linked
Resources 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
- Location
Name string - The location name.
- Location
Name string - The location name.
- location
Name String - The location name.
- location
Name string - The location name.
- location_
name str - The location name.
- location
Name String - The location name.
MapsAccountPropertiesResponse, MapsAccountPropertiesResponseArgs
- Provisioning
State string - The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states:
Succeeded
andFailed
- Unique
Id string - A unique identifier for the Maps Account
- Cors
Pulumi.
Azure Native. Maps. Inputs. Cors Rules Response - 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 boolAuth - 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.
Azure Native. Maps. Inputs. Encryption Response - All encryption configuration for a resource.
- Linked
Resources List<Pulumi.Azure Native. Maps. Inputs. Linked Resource Response> - 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.
Azure Native. Maps. Inputs. Maps Account Properties Response Locations> - 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 string - The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states:
Succeeded
andFailed
- Unique
Id string - A unique identifier for the Maps Account
- Cors
Cors
Rules Response - 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 boolAuth - 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
Response - All encryption configuration for a resource.
- Linked
Resources []LinkedResource Response - 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
[]Maps
Account Properties Response Locations - 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 String - The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states:
Succeeded
andFailed
- unique
Id String - A unique identifier for the Maps Account
- cors
Cors
Rules Response - 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 BooleanAuth - 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
Response - All encryption configuration for a resource.
- linked
Resources List<LinkedResource Response> - 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<Maps
Account Properties Response Locations> - 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 string - The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states:
Succeeded
andFailed
- unique
Id string - A unique identifier for the Maps Account
- cors
Cors
Rules Response - 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 booleanAuth - 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
Response - All encryption configuration for a resource.
- linked
Resources LinkedResource Response[] - 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
Maps
Account Properties Response Locations[] - 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
andFailed
- unique_
id str - A unique identifier for the Maps Account
- cors
Cors
Rules Response - 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_ boolauth - 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
Response - All encryption configuration for a resource.
- linked_
resources Sequence[LinkedResource Response] - 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[Maps
Account Properties Response Locations] - 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 String - The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states:
Succeeded
andFailed
- unique
Id 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.
- disable
Local BooleanAuth - 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.
- linked
Resources 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
- Location
Name string - The location name.
- Location
Name string - The location name.
- location
Name String - The location name.
- location
Name string - The location name.
- location_
name str - The location name.
- location
Name String - The location name.
Name, NameArgs
- G2
- G2
- Name
G2 - G2
- G2
- G2
- G2
- G2
- G2
- G2
- "G2"
- G2
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Maps. Name - The name of the SKU, in standard format (such as G2).
SkuResponse, SkuResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id 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