@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.07 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get the detail of a linked service.
*
* Uses Azure REST API version 2020-09-01-preview.
*/
export declare function getLinkedService(args: GetLinkedServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetLinkedServiceResult>;
export interface GetLinkedServiceArgs {
/**
* 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 service.
*/
export interface GetLinkedServiceResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* ResourceId of the link of the linked service.
*/
readonly id: string;
/**
* Identity for the resource.
*/
readonly identity?: outputs.machinelearningservices.IdentityResponse;
/**
* location of the linked service.
*/
readonly location?: string;
/**
* Friendly name of the linked service.
*/
readonly name: string;
/**
* LinkedService specific properties.
*/
readonly properties: outputs.machinelearningservices.LinkedServicePropsResponse;
/**
* Resource type of linked service.
*/
readonly type: string;
}
/**
* Get the detail of a linked service.
*
* Uses Azure REST API version 2020-09-01-preview.
*/
export declare function getLinkedServiceOutput(args: GetLinkedServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLinkedServiceResult>;
export interface GetLinkedServiceOutputArgs {
/**
* 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>;
}