Class HttpLinkedService
Linked service for an HTTP source.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.HttpLinkedService/HttpLinkedServiceConverter))]
public class HttpLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
HttpLinkedService(Object)
Initializes a new instance of HttpLinkedService.
Declaration
public HttpLinkedService (object url);
Parameters
|
System.Object
url
The base URL of the HTTP endpoint, e.g. http://www.microsoft.com. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
AuthenticationType
The authentication type to be used to connect to the HTTP server.
Declaration
public Nullable<Azure.Analytics.Synapse.Artifacts.Models.HttpAuthenticationType> AuthenticationType { get; set; }
Property Value
|
System.Nullable<HttpAuthenticationType>
|
CertThumbprint
Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
Declaration
public object CertThumbprint { get; set; }
Property Value
|
System.Object
|
EmbeddedCertData
Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
Declaration
public object EmbeddedCertData { get; set; }
Property Value
|
System.Object
|
EnableServerCertificateValidation
If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
Declaration
public object EnableServerCertificateValidation { 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
|
Password
Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication. 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
|
Url
The base URL of the HTTP endpoint, e.g. http://www.microsoft.com. Type: string (or Expression with resultType string).
Declaration
public object Url { get; set; }
Property Value
|
System.Object
|
UserName
User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
Declaration
public object UserName { get; set; }
Property Value
|
System.Object
|