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