HttpLinkedService Class
Linked service for an HTTP source.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.datafactory.models._models_py3.LinkedServiceHttpLinkedService
Constructor
HttpLinkedService(*, url: MutableMapping[str, Any], additional_properties: Dict[str, MutableMapping[str, Any]] | None = None, version: str | None = None, connect_via: _models.IntegrationRuntimeReference | None = None, description: str | None = None, parameters: Dict[str, _models.ParameterSpecification] | None = None, annotations: List[MutableMapping[str, Any]] | None = None, authentication_type: str | _models.HttpAuthenticationType | None = None, user_name: MutableMapping[str, Any] | None = None, password: _models.SecretBase | None = None, auth_headers: MutableMapping[str, Any] | None = None, embedded_cert_data: MutableMapping[str, Any] | None = None, cert_thumbprint: MutableMapping[str, Any] | None = None, encrypted_credential: str | None = None, enable_server_certificate_validation: MutableMapping[str, Any] | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
additional_properties
|
Unmatched properties from the message are deserialized to this collection. |
version
|
Version of the linked service. |
connect_via
|
The integration runtime reference. |
description
|
Linked service description. |
parameters
|
Parameters for linked service. |
annotations
|
list[<xref:JSON>]
List of tags that can be used for describing the linked service. |
url
|
<xref:JSON>
The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string). Required. |
authentication_type
|
The authentication type to be used to connect to the HTTP server. Known values are: "Basic", "Anonymous", "Digest", "Windows", and "ClientCertificate". |
user_name
|
<xref:JSON>
User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string). |
password
|
Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication. |
auth_headers
|
<xref:JSON>
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type). |
embedded_cert_data
|
<xref:JSON>
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). |
cert_thumbprint
|
<xref:JSON>
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). |
encrypted_credential
|
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. |
enable_server_certificate_validation
|
<xref:JSON>
If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean). |
Variables
Name | Description |
---|---|
additional_properties
|
Unmatched properties from the message are deserialized to this collection. |
type
|
Type of linked service. Required. |
version
|
Version of the linked service. |
connect_via
|
The integration runtime reference. |
description
|
Linked service description. |
parameters
|
Parameters for linked service. |
annotations
|
list[<xref:JSON>]
List of tags that can be used for describing the linked service. |
url
|
<xref:JSON>
The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string). Required. |
authentication_type
|
The authentication type to be used to connect to the HTTP server. Known values are: "Basic", "Anonymous", "Digest", "Windows", and "ClientCertificate". |
user_name
|
<xref:JSON>
User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string). |
password
|
Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication. |
auth_headers
|
<xref:JSON>
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type). |
embedded_cert_data
|
<xref:JSON>
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). |
cert_thumbprint
|
<xref:JSON>
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). |
encrypted_credential
|
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. |
enable_server_certificate_validation
|
<xref:JSON>
If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean). |
Azure SDK for Python