Class AzureBatchLinkedService
Azure Batch 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.AzureBatchLinkedService/AzureBatchLinkedServiceConverter))]
public class AzureBatchLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
AzureBatchLinkedService(Object, Object, Object, LinkedServiceReference)
Initializes a new instance of AzureBatchLinkedService.
Declaration
public AzureBatchLinkedService (object accountName, object batchUri, object poolName, Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName);
Parameters
|
System.Object
accountName
The Azure Batch account name. Type: string (or Expression with resultType string). |
|
System.Object
batchUri
The Azure Batch URI. Type: string (or Expression with resultType string). |
|
System.Object
poolName
The Azure Batch pool name. Type: string (or Expression with resultType string). |
|
LinkedServiceReference
linkedServiceName
The Azure Storage linked service reference. |
Exceptions
|
System.ArgumentNullException
|
Properties
AccessKey
The Azure Batch account access key. 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 AccessKey { get; set; }
Property Value
|
SecretBase
|
AccountName
The Azure Batch account name. Type: string (or Expression with resultType string).
Declaration
public object AccountName { get; set; }
Property Value
|
System.Object
|
BatchUri
The Azure Batch URI. Type: string (or Expression with resultType string).
Declaration
public object BatchUri { get; set; }
Property Value
|
System.Object
|
Credential
The credential reference containing authentication information.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.CredentialReference Credential { get; set; }
Property Value
|
CredentialReference
|
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
|
LinkedServiceName
The Azure Storage linked service reference.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference LinkedServiceName { get; set; }
Property Value
|
LinkedServiceReference
|
PoolName
The Azure Batch pool name. Type: string (or Expression with resultType string).
Declaration
public object PoolName { get; set; }
Property Value
|
System.Object
|