RemoteRenderingAccount

class RemoteRenderingAccount : KotlinCustomResource

RemoteRenderingAccount Response. Uses Azure REST API version 2021-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2021-01-01. Other available API versions: 2021-01-01, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native mixedreality [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

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 (
mixedreality "github.com/pulumi/pulumi-azure-native-sdk/mixedreality/v3"
"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

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}

Properties

Link copied to clipboard
val accountDomain: Output<String>

Correspond domain name of certain Spatial Anchors Account

Link copied to clipboard
val accountId: Output<String>

unique id of certain account.

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The identity associated with this account

Link copied to clipboard
val kind: Output<SkuResponse>?

The kind of account, if supported

Link copied to clipboard
val location: Output<String>

The geo-location where the resource lives

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard
val plan: Output<IdentityResponse>?

The plan associated with this account

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val sku: Output<SkuResponse>?

The sku associated with this account

Link copied to clipboard

The name of the storage account associated with this accountId

Link copied to clipboard

System metadata for this account

Link copied to clipboard
val tags: Output<Map<String, String>>?

Resource tags.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>