Package version:

Interface AzureMLLinkedService

Azure ML Studio Web Service linked service.

interface AzureMLLinkedService {
    annotations?: any[];
    apiKey: SecretBaseUnion;
    authentication?: any;
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    mlEndpoint: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    servicePrincipalId?: any;
    servicePrincipalKey?: SecretBaseUnion;
    tenant?: any;
    type: "AzureML";
    updateResourceEndpoint?: any;
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

List of tags that can be used for describing the linked service.

The API key for accessing the Azure ML model endpoint.

authentication?: any

Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).

The integration runtime reference.

description?: string

Linked service description.

encryptedCredential?: string

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

mlEndpoint: any

The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for linked service.

servicePrincipalId?: any

The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).

servicePrincipalKey?: SecretBaseUnion

The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.

tenant?: any

The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).

type

Polymorphic discriminator, which specifies the different types this object can be

updateResourceEndpoint?: any

The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).

version?: string

Version of the linked service.