1. Packages
  2. Azure Native
  3. API Docs
  4. mixedreality
  5. RemoteRenderingAccount
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

azure-native.mixedreality.RemoteRenderingAccount

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

    RemoteRenderingAccount 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 remote rendering account

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var remoteRenderingAccount = new AzureNative.MixedReality.RemoteRenderingAccount("remoteRenderingAccount", new()
        {
            AccountName = "MyAccount",
            Identity = new AzureNative.MixedReality.Inputs.IdentityArgs
            {
                Type = AzureNative.MixedReality.ResourceIdentityType.SystemAssigned,
            },
            Location = "eastus2euap",
            ResourceGroupName = "MyResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"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.NewRemoteRenderingAccount(ctx, "remoteRenderingAccount", &mixedreality.RemoteRenderingAccountArgs{
    			AccountName: pulumi.String("MyAccount"),
    			Identity: &mixedreality.IdentityArgs{
    				Type: mixedreality.ResourceIdentityTypeSystemAssigned,
    			},
    			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.RemoteRenderingAccount;
    import com.pulumi.azurenative.mixedreality.RemoteRenderingAccountArgs;
    import com.pulumi.azurenative.mixedreality.inputs.IdentityArgs;
    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 remoteRenderingAccount = new RemoteRenderingAccount("remoteRenderingAccount", RemoteRenderingAccountArgs.builder()        
                .accountName("MyAccount")
                .identity(IdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .location("eastus2euap")
                .resourceGroupName("MyResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    remote_rendering_account = azure_native.mixedreality.RemoteRenderingAccount("remoteRenderingAccount",
        account_name="MyAccount",
        identity=azure_native.mixedreality.IdentityArgs(
            type=azure_native.mixedreality.ResourceIdentityType.SYSTEM_ASSIGNED,
        ),
        location="eastus2euap",
        resource_group_name="MyResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const remoteRenderingAccount = new azure_native.mixedreality.RemoteRenderingAccount("remoteRenderingAccount", {
        accountName: "MyAccount",
        identity: {
            type: azure_native.mixedreality.ResourceIdentityType.SystemAssigned,
        },
        location: "eastus2euap",
        resourceGroupName: "MyResourceGroup",
    });
    
    resources:
      remoteRenderingAccount:
        type: azure-native:mixedreality:RemoteRenderingAccount
        properties:
          accountName: MyAccount
          identity:
            type: SystemAssigned
          location: eastus2euap
          resourceGroupName: MyResourceGroup
    

    Create RemoteRenderingAccount Resource

    new RemoteRenderingAccount(name: string, args: RemoteRenderingAccountArgs, opts?: CustomResourceOptions);
    @overload
    def RemoteRenderingAccount(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               account_name: Optional[str] = None,
                               identity: Optional[IdentityArgs] = None,
                               kind: Optional[SkuArgs] = None,
                               location: Optional[str] = None,
                               plan: Optional[IdentityArgs] = None,
                               resource_group_name: Optional[str] = None,
                               sku: Optional[SkuArgs] = None,
                               storage_account_name: Optional[str] = None,
                               tags: Optional[Mapping[str, str]] = None)
    @overload
    def RemoteRenderingAccount(resource_name: str,
                               args: RemoteRenderingAccountArgs,
                               opts: Optional[ResourceOptions] = None)
    func NewRemoteRenderingAccount(ctx *Context, name string, args RemoteRenderingAccountArgs, opts ...ResourceOption) (*RemoteRenderingAccount, error)
    public RemoteRenderingAccount(string name, RemoteRenderingAccountArgs args, CustomResourceOptions? opts = null)
    public RemoteRenderingAccount(String name, RemoteRenderingAccountArgs args)
    public RemoteRenderingAccount(String name, RemoteRenderingAccountArgs args, CustomResourceOptions options)
    
    type: azure-native:mixedreality:RemoteRenderingAccount
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args RemoteRenderingAccountArgs
    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 RemoteRenderingAccountArgs
    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 RemoteRenderingAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RemoteRenderingAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RemoteRenderingAccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    RemoteRenderingAccount Resource Properties

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

    Inputs

    The RemoteRenderingAccount resource accepts the following input properties:

    ResourceGroupName string
    Name of an Azure resource group.
    AccountName string
    Name of an Mixed Reality Account.
    Identity Pulumi.AzureNative.MixedReality.Inputs.Identity
    The identity associated with this account
    Kind Pulumi.AzureNative.MixedReality.Inputs.Sku
    The kind of account, if supported
    Location string
    The geo-location where the resource lives
    Plan Pulumi.AzureNative.MixedReality.Inputs.Identity
    The plan associated with this account
    Sku Pulumi.AzureNative.MixedReality.Inputs.Sku
    The sku associated with this account
    StorageAccountName string
    The name of the storage account associated with this accountId
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    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
    StorageAccountName string
    The name of the storage account associated with this accountId
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    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
    storageAccountName String
    The name of the storage account associated with this accountId
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    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
    storageAccountName string
    The name of the storage account associated with this accountId
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    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_name str
    The name of the storage account associated with this accountId
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    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
    storageAccountName String
    The name of the storage account associated with this accountId
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RemoteRenderingAccount 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.AzureNative.MixedReality.Outputs.SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 ResourceIdentityType
    The identity type.
    type ResourceIdentityType
    The identity type.
    type ResourceIdentityType
    The identity type.
    type ResourceIdentityType
    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
    ResourceIdentityTypeSystemAssigned
    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.AzureNative.MixedReality.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 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
    SkuTierFree
    Free
    SkuTierBasic
    Basic
    SkuTierStandard
    Standard
    SkuTierPremium
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:mixedreality:RemoteRenderingAccount MyAccount /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi