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

76 lines (75 loc) 2.07 kB
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>; }