azure-native.mixedreality.SpatialAnchorsAccount
Explore with Pulumi AI
SpatialAnchorsAccount Response. Azure REST API version: 2021-01-01. Prior API version in Azure Native 1.x: 2021-01-01.
Other available API versions: 2021-03-01-preview.
Example Usage
Create spatial anchor account
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var spatialAnchorsAccount = new AzureNative.MixedReality.SpatialAnchorsAccount("spatialAnchorsAccount", new()
    {
        AccountName = "MyAccount",
        Location = "eastus2euap",
        ResourceGroupName = "MyResourceGroup",
    });
});
package main
import (
	mixedreality "github.com/pulumi/pulumi-azure-native-sdk/mixedreality/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mixedreality.NewSpatialAnchorsAccount(ctx, "spatialAnchorsAccount", &mixedreality.SpatialAnchorsAccountArgs{
			AccountName:       pulumi.String("MyAccount"),
			Location:          pulumi.String("eastus2euap"),
			ResourceGroupName: pulumi.String("MyResourceGroup"),
		})
		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.mixedreality.SpatialAnchorsAccount;
import com.pulumi.azurenative.mixedreality.SpatialAnchorsAccountArgs;
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 spatialAnchorsAccount = new SpatialAnchorsAccount("spatialAnchorsAccount", SpatialAnchorsAccountArgs.builder()
            .accountName("MyAccount")
            .location("eastus2euap")
            .resourceGroupName("MyResourceGroup")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const spatialAnchorsAccount = new azure_native.mixedreality.SpatialAnchorsAccount("spatialAnchorsAccount", {
    accountName: "MyAccount",
    location: "eastus2euap",
    resourceGroupName: "MyResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
spatial_anchors_account = azure_native.mixedreality.SpatialAnchorsAccount("spatialAnchorsAccount",
    account_name="MyAccount",
    location="eastus2euap",
    resource_group_name="MyResourceGroup")
resources:
  spatialAnchorsAccount:
    type: azure-native:mixedreality:SpatialAnchorsAccount
    properties:
      accountName: MyAccount
      location: eastus2euap
      resourceGroupName: MyResourceGroup
Create SpatialAnchorsAccount Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SpatialAnchorsAccount(name: string, args: SpatialAnchorsAccountArgs, opts?: CustomResourceOptions);@overload
def SpatialAnchorsAccount(resource_name: str,
                          args: SpatialAnchorsAccountArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def SpatialAnchorsAccount(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          resource_group_name: Optional[str] = None,
                          account_name: Optional[str] = None,
                          identity: Optional[IdentityArgs] = None,
                          kind: Optional[SkuArgs] = None,
                          location: Optional[str] = None,
                          plan: Optional[IdentityArgs] = None,
                          sku: Optional[SkuArgs] = None,
                          storage_account_name: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)func NewSpatialAnchorsAccount(ctx *Context, name string, args SpatialAnchorsAccountArgs, opts ...ResourceOption) (*SpatialAnchorsAccount, error)public SpatialAnchorsAccount(string name, SpatialAnchorsAccountArgs args, CustomResourceOptions? opts = null)
public SpatialAnchorsAccount(String name, SpatialAnchorsAccountArgs args)
public SpatialAnchorsAccount(String name, SpatialAnchorsAccountArgs args, CustomResourceOptions options)
type: azure-native:mixedreality:SpatialAnchorsAccount
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 SpatialAnchorsAccountArgs
- 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 SpatialAnchorsAccountArgs
- 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 SpatialAnchorsAccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpatialAnchorsAccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpatialAnchorsAccountArgs
- 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 spatialAnchorsAccountResource = new AzureNative.MixedReality.SpatialAnchorsAccount("spatialAnchorsAccountResource", new()
{
    ResourceGroupName = "string",
    AccountName = "string",
    Identity = new AzureNative.MixedReality.Inputs.IdentityArgs
    {
        Type = AzureNative.MixedReality.ResourceIdentityType.SystemAssigned,
    },
    Kind = new AzureNative.MixedReality.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = 0,
        Family = "string",
        Size = "string",
        Tier = AzureNative.MixedReality.SkuTier.Free,
    },
    Location = "string",
    Plan = new AzureNative.MixedReality.Inputs.IdentityArgs
    {
        Type = AzureNative.MixedReality.ResourceIdentityType.SystemAssigned,
    },
    Sku = new AzureNative.MixedReality.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = 0,
        Family = "string",
        Size = "string",
        Tier = AzureNative.MixedReality.SkuTier.Free,
    },
    StorageAccountName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := mixedreality.NewSpatialAnchorsAccount(ctx, "spatialAnchorsAccountResource", &mixedreality.SpatialAnchorsAccountArgs{
	ResourceGroupName: pulumi.String("string"),
	AccountName:       pulumi.String("string"),
	Identity: &mixedreality.IdentityArgs{
		Type: mixedreality.ResourceIdentityTypeSystemAssigned,
	},
	Kind: &mixedreality.SkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Size:     pulumi.String("string"),
		Tier:     mixedreality.SkuTierFree,
	},
	Location: pulumi.String("string"),
	Plan: &mixedreality.IdentityArgs{
		Type: mixedreality.ResourceIdentityTypeSystemAssigned,
	},
	Sku: &mixedreality.SkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Size:     pulumi.String("string"),
		Tier:     mixedreality.SkuTierFree,
	},
	StorageAccountName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var spatialAnchorsAccountResource = new SpatialAnchorsAccount("spatialAnchorsAccountResource", SpatialAnchorsAccountArgs.builder()
    .resourceGroupName("string")
    .accountName("string")
    .identity(IdentityArgs.builder()
        .type("SystemAssigned")
        .build())
    .kind(SkuArgs.builder()
        .name("string")
        .capacity(0)
        .family("string")
        .size("string")
        .tier("Free")
        .build())
    .location("string")
    .plan(IdentityArgs.builder()
        .type("SystemAssigned")
        .build())
    .sku(SkuArgs.builder()
        .name("string")
        .capacity(0)
        .family("string")
        .size("string")
        .tier("Free")
        .build())
    .storageAccountName("string")
    .tags(Map.of("string", "string"))
    .build());
spatial_anchors_account_resource = azure_native.mixedreality.SpatialAnchorsAccount("spatialAnchorsAccountResource",
    resource_group_name="string",
    account_name="string",
    identity={
        "type": azure_native.mixedreality.ResourceIdentityType.SYSTEM_ASSIGNED,
    },
    kind={
        "name": "string",
        "capacity": 0,
        "family": "string",
        "size": "string",
        "tier": azure_native.mixedreality.SkuTier.FREE,
    },
    location="string",
    plan={
        "type": azure_native.mixedreality.ResourceIdentityType.SYSTEM_ASSIGNED,
    },
    sku={
        "name": "string",
        "capacity": 0,
        "family": "string",
        "size": "string",
        "tier": azure_native.mixedreality.SkuTier.FREE,
    },
    storage_account_name="string",
    tags={
        "string": "string",
    })
const spatialAnchorsAccountResource = new azure_native.mixedreality.SpatialAnchorsAccount("spatialAnchorsAccountResource", {
    resourceGroupName: "string",
    accountName: "string",
    identity: {
        type: azure_native.mixedreality.ResourceIdentityType.SystemAssigned,
    },
    kind: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: azure_native.mixedreality.SkuTier.Free,
    },
    location: "string",
    plan: {
        type: azure_native.mixedreality.ResourceIdentityType.SystemAssigned,
    },
    sku: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: azure_native.mixedreality.SkuTier.Free,
    },
    storageAccountName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:mixedreality:SpatialAnchorsAccount
properties:
    accountName: string
    identity:
        type: SystemAssigned
    kind:
        capacity: 0
        family: string
        name: string
        size: string
        tier: Free
    location: string
    plan:
        type: SystemAssigned
    resourceGroupName: string
    sku:
        capacity: 0
        family: string
        name: string
        size: string
        tier: Free
    storageAccountName: string
    tags:
        string: string
SpatialAnchorsAccount 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 SpatialAnchorsAccount resource accepts the following input properties:
- ResourceGroup stringName 
- Name of an Azure resource group.
- AccountName string
- Name of an Mixed Reality Account.
- Identity
Pulumi.Azure Native. Mixed Reality. Inputs. Identity 
- The identity associated with this account
- Kind
Pulumi.Azure Native. Mixed Reality. Inputs. Sku 
- The kind of account, if supported
- Location string
- The geo-location where the resource lives
- Plan
Pulumi.Azure Native. Mixed Reality. Inputs. Identity 
- The plan associated with this account
- Sku
Pulumi.Azure Native. Mixed Reality. Inputs. Sku 
- The sku associated with this account
- StorageAccount stringName 
- The name of the storage account associated with this accountId
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- Name of an Azure resource group.
- AccountName string
- Name of an Mixed Reality Account.
- Identity
IdentityArgs 
- The identity associated with this account
- Kind
SkuArgs 
- The kind of account, if supported
- Location string
- The geo-location where the resource lives
- Plan
IdentityArgs 
- The plan associated with this account
- Sku
SkuArgs 
- The sku associated with this account
- StorageAccount stringName 
- The name of the storage account associated with this accountId
- map[string]string
- Resource tags.
- resourceGroup StringName 
- Name of an Azure resource group.
- accountName String
- Name of an Mixed Reality Account.
- identity Identity
- The identity associated with this account
- kind Sku
- The kind of account, if supported
- location String
- The geo-location where the resource lives
- plan Identity
- The plan associated with this account
- sku Sku
- The sku associated with this account
- storageAccount StringName 
- The name of the storage account associated with this accountId
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- Name of an Azure resource group.
- accountName string
- Name of an Mixed Reality Account.
- identity Identity
- The identity associated with this account
- kind Sku
- The kind of account, if supported
- location string
- The geo-location where the resource lives
- plan Identity
- The plan associated with this account
- sku Sku
- The sku associated with this account
- storageAccount stringName 
- The name of the storage account associated with this accountId
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- Name of an Azure resource group.
- account_name str
- Name of an Mixed Reality Account.
- identity
IdentityArgs 
- The identity associated with this account
- kind
SkuArgs 
- The kind of account, if supported
- location str
- The geo-location where the resource lives
- plan
IdentityArgs 
- The plan associated with this account
- sku
SkuArgs 
- The sku associated with this account
- storage_account_ strname 
- The name of the storage account associated with this accountId
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- Name of an Azure resource group.
- accountName String
- Name of an Mixed Reality Account.
- identity Property Map
- The identity associated with this account
- kind Property Map
- The kind of account, if supported
- location String
- The geo-location where the resource lives
- plan Property Map
- The plan associated with this account
- sku Property Map
- The sku associated with this account
- storageAccount StringName 
- The name of the storage account associated with this accountId
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SpatialAnchorsAccount resource produces the following output properties:
- AccountDomain string
- Correspond domain name of certain Spatial Anchors Account
- AccountId string
- unique id of certain account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Mixed Reality. Outputs. System Data Response 
- System metadata for this account
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- AccountDomain string
- Correspond domain name of certain Spatial Anchors Account
- AccountId string
- unique id of certain account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- System metadata for this account
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- accountDomain String
- Correspond domain name of certain Spatial Anchors Account
- accountId String
- unique id of certain account.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- System metadata for this account
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- accountDomain string
- Correspond domain name of certain Spatial Anchors Account
- accountId string
- unique id of certain account.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- System metadata for this account
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- account_domain str
- Correspond domain name of certain Spatial Anchors Account
- account_id str
- unique id of certain account.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- System metadata for this account
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- accountDomain String
- Correspond domain name of certain Spatial Anchors Account
- accountId String
- unique id of certain account.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData Property Map
- System metadata for this account
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
Identity, IdentityArgs  
- Type
Pulumi.Azure Native. Mixed Reality. Resource Identity Type 
- The identity type.
- Type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
"SystemAssigned" 
- The identity type.
IdentityResponse, IdentityResponseArgs    
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
- principalId string
- The principal ID of resource identity.
- tenantId string
- The tenant ID of resource.
- type string
- The identity type.
- principal_id str
- The principal ID of resource identity.
- tenant_id str
- The tenant ID of resource.
- type str
- The identity type.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
ResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- ResourceIdentity Type System Assigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "SystemAssigned" 
- SystemAssigned
Sku, SkuArgs  
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Pulumi.Azure Native. Mixed Reality. Sku Tier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier "Free" | "Basic" | "Standard" | "Premium"
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuResponse, SkuResponseArgs    
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier str
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuTier, SkuTierArgs    
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- SkuTier Free 
- Free
- SkuTier Basic 
- Basic
- SkuTier Standard 
- Standard
- SkuTier Premium 
- Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- FREE
- Free
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:mixedreality:SpatialAnchorsAccount MyAccount /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{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