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

47 lines (46 loc) 1.46 kB
import * as pulumi from "@pulumi/pulumi"; /** * List the authorization keys associated with this workspace. * * Uses Azure REST API version 2019-10-01. */ export declare function listWorkspaceKeys(args: ListWorkspaceKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListWorkspaceKeysResult>; export interface ListWorkspaceKeysArgs { /** * The name of the resource group to which the machine learning workspace belongs. */ resourceGroupName: string; /** * The name of the machine learning workspace. */ workspaceName: string; } /** * Workspace authorization keys for a workspace. */ export interface ListWorkspaceKeysResult { /** * Primary authorization key for this workspace. */ readonly primaryToken?: string; /** * Secondary authorization key for this workspace. */ readonly secondaryToken?: string; } /** * List the authorization keys associated with this workspace. * * Uses Azure REST API version 2019-10-01. */ export declare function listWorkspaceKeysOutput(args: ListWorkspaceKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWorkspaceKeysResult>; export interface ListWorkspaceKeysOutputArgs { /** * The name of the resource group to which the machine learning workspace belongs. */ resourceGroupName: pulumi.Input<string>; /** * The name of the machine learning workspace. */ workspaceName: pulumi.Input<string>; }