@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.76 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* > [!NOTE]
* >
* > **Mixed Reality retirement**
* >
* > The Mixed Reality service is now deprecated and will be retired.
*
* Retrieve a Remote Rendering Account.
*
* Uses Azure REST API version 2021-03-01-preview.
*
* 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](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getRemoteRenderingAccount(args: GetRemoteRenderingAccountArgs, opts?: pulumi.InvokeOptions): Promise<GetRemoteRenderingAccountResult>;
export interface GetRemoteRenderingAccountArgs {
/**
* Name of an Mixed Reality Account.
*/
accountName: string;
/**
* Name of an Azure resource group.
*/
resourceGroupName: string;
}
/**
* RemoteRenderingAccount Response.
*/
export interface GetRemoteRenderingAccountResult {
/**
* Correspond domain name of certain Spatial Anchors Account
*/
readonly accountDomain: string;
/**
* unique id of certain account.
*/
readonly accountId: string;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The identity associated with this account
*/
readonly identity?: outputs.mixedreality.IdentityResponse;
/**
* The kind of account, if supported
*/
readonly kind?: outputs.mixedreality.SkuResponse;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The plan associated with this account
*/
readonly plan?: outputs.mixedreality.IdentityResponse;
/**
* The sku associated with this account
*/
readonly sku?: outputs.mixedreality.SkuResponse;
/**
* The name of the storage account associated with this accountId
*/
readonly storageAccountName?: string;
/**
* System metadata for this account
*/
readonly systemData: outputs.mixedreality.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* > [!NOTE]
* >
* > **Mixed Reality retirement**
* >
* > The Mixed Reality service is now deprecated and will be retired.
*
* Retrieve a Remote Rendering Account.
*
* Uses Azure REST API version 2021-03-01-preview.
*
* 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](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getRemoteRenderingAccountOutput(args: GetRemoteRenderingAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRemoteRenderingAccountResult>;
export interface GetRemoteRenderingAccountOutputArgs {
/**
* Name of an Mixed Reality Account.
*/
accountName: pulumi.Input<string>;
/**
* Name of an Azure resource group.
*/
resourceGroupName: pulumi.Input<string>;
}