Class AzureMLServiceLinkedService
Azure ML Service linked service.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.AzureMLServiceLinkedService/AzureMLServiceLinkedServiceConverter))]
public class AzureMLServiceLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
AzureMLServiceLinkedService(Object, Object, Object)
Initializes a new instance of AzureMLServiceLinkedService.
Declaration
public AzureMLServiceLinkedService (object subscriptionId, object resourceGroupName, object mlWorkspaceName);
Parameters
|
System.Object
subscriptionId
Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string). |
|
System.Object
resourceGroupName
Azure ML Service workspace resource group name. Type: string (or Expression with resultType string). |
|
System.Object
mlWorkspaceName
Azure ML Service workspace name. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
Authentication
Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
Declaration
public object Authentication { get; set; }
Property Value
|
System.Object
|
EncryptedCredential
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
Declaration
public object EncryptedCredential { get; set; }
Property Value
|
System.Object
|
MlWorkspaceName
Azure ML Service workspace name. Type: string (or Expression with resultType string).
Declaration
public object MlWorkspaceName { get; set; }
Property Value
|
System.Object
|
ResourceGroupName
Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
Declaration
public object ResourceGroupName { get; set; }
Property Value
|
System.Object
|
ServicePrincipalId
The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
Declaration
public object ServicePrincipalId { get; set; }
Property Value
|
System.Object
|
ServicePrincipalKey
The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SecretBase ServicePrincipalKey { get; set; }
Property Value
|
SecretBase
|
SubscriptionId
Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
Declaration
public object SubscriptionId { get; set; }
Property Value
|
System.Object
|
Tenant
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
Declaration
public object Tenant { get; set; }
Property Value
|
System.Object
|