UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

107 lines (106 loc) 3.11 kB
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 an Object Anchors Account. * * Uses Azure REST API version 2021-03-01-preview. */ export declare function getObjectAnchorsAccount(args: GetObjectAnchorsAccountArgs, opts?: pulumi.InvokeOptions): Promise<GetObjectAnchorsAccountResult>; export interface GetObjectAnchorsAccountArgs { /** * Name of an Mixed Reality Account. */ accountName: string; /** * Name of an Azure resource group. */ resourceGroupName: string; } /** * ObjectAnchorsAccount Response. */ export interface GetObjectAnchorsAccountResult { /** * 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; readonly identity?: outputs.mixedreality.ObjectAnchorsAccountResponseIdentity; /** * 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; /** * The system metadata related to an object anchors 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 an Object Anchors Account. * * Uses Azure REST API version 2021-03-01-preview. */ export declare function getObjectAnchorsAccountOutput(args: GetObjectAnchorsAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetObjectAnchorsAccountResult>; export interface GetObjectAnchorsAccountOutputArgs { /** * Name of an Mixed Reality Account. */ accountName: pulumi.Input<string>; /** * Name of an Azure resource group. */ resourceGroupName: pulumi.Input<string>; }