Class HDInsightLinkedService
HDInsight 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.HDInsightLinkedService/HDInsightLinkedServiceConverter))]
public class HDInsightLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
HDInsightLinkedService(Object)
Initializes a new instance of HDInsightLinkedService.
Declaration
public HDInsightLinkedService (object clusterUri);
Parameters
|
System.Object
clusterUri
HDInsight cluster URI. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
ClusterUri
HDInsight cluster URI. Type: string (or Expression with resultType string).
Declaration
public object ClusterUri { 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
|
FileSystem
Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
Declaration
public object FileSystem { get; set; }
Property Value
|
System.Object
|
HcatalogLinkedServiceName
A reference to the Azure SQL linked service that points to the HCatalog database.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference HcatalogLinkedServiceName { get; set; }
Property Value
|
LinkedServiceReference
|
IsEspEnabled
Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
Declaration
public object IsEspEnabled { 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
|
Password
HDInsight cluster password. 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 Password { get; set; }
Property Value
|
SecretBase
|
UserName
HDInsight cluster user name. Type: string (or Expression with resultType string).
Declaration
public object UserName { get; set; }
Property Value
|
System.Object
|