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

72 lines (71 loc) 2.52 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get the detail of a linked workspace. * * Uses Azure REST API version 2020-05-15-preview. * * Other available API versions: 2020-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native machinelearningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getLinkedWorkspace(args: GetLinkedWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise<GetLinkedWorkspaceResult>; export interface GetLinkedWorkspaceArgs { /** * Friendly name of the linked workspace */ linkName: string; /** * Name of the resource group in which workspace is located. */ resourceGroupName: string; /** * Name of Azure Machine Learning workspace. */ workspaceName: string; } /** * Linked workspace. */ export interface GetLinkedWorkspaceResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * ResourceId of the link of the linked workspace. */ readonly id: string; /** * Friendly name of the linked workspace. */ readonly name: string; /** * LinkedWorkspace specific properties. */ readonly properties: outputs.machinelearningservices.LinkedWorkspacePropsResponse; /** * Resource type of linked workspace. */ readonly type: string; } /** * Get the detail of a linked workspace. * * Uses Azure REST API version 2020-05-15-preview. * * Other available API versions: 2020-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native machinelearningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getLinkedWorkspaceOutput(args: GetLinkedWorkspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLinkedWorkspaceResult>; export interface GetLinkedWorkspaceOutputArgs { /** * Friendly name of the linked workspace */ linkName: pulumi.Input<string>; /** * Name of the resource group in which workspace is located. */ resourceGroupName: pulumi.Input<string>; /** * Name of Azure Machine Learning workspace. */ workspaceName: pulumi.Input<string>; }