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

59 lines (58 loc) 1.63 kB
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>; }