@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.46 kB
TypeScript
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>;
}