@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.63 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* > [!NOTE]
* >
* > **Mixed Reality retirement**
* >
* > The Mixed Reality service is now deprecated and will be retired.
*
* List Both of the 2 Keys of an object anchors Account
*
* Uses Azure REST API version 2021-03-01-preview.
*/
export declare function listObjectAnchorsAccountKeys(args: ListObjectAnchorsAccountKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListObjectAnchorsAccountKeysResult>;
export interface ListObjectAnchorsAccountKeysArgs {
/**
* Name of an Mixed Reality Account.
*/
accountName: string;
/**
* Name of an Azure resource group.
*/
resourceGroupName: string;
}
/**
* Developer Keys of account
*/
export interface ListObjectAnchorsAccountKeysResult {
/**
* value of primary key.
*/
readonly primaryKey: string;
/**
* value of secondary key.
*/
readonly secondaryKey: string;
}
/**
* > [!NOTE]
* >
* > **Mixed Reality retirement**
* >
* > The Mixed Reality service is now deprecated and will be retired.
*
* List Both of the 2 Keys of an object anchors Account
*
* Uses Azure REST API version 2021-03-01-preview.
*/
export declare function listObjectAnchorsAccountKeysOutput(args: ListObjectAnchorsAccountKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListObjectAnchorsAccountKeysResult>;
export interface ListObjectAnchorsAccountKeysOutputArgs {
/**
* Name of an Mixed Reality Account.
*/
accountName: pulumi.Input<string>;
/**
* Name of an Azure resource group.
*/
resourceGroupName: pulumi.Input<string>;
}