WebClientCertificateAuthentication Class
A WebLinkedService that uses client certificate based authentication to communicate with an HTTP endpoint. This scheme follows mutual authentication; the server must also provide valid credentials to the client.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.datafactory.models._models_py3.WebLinkedServiceTypePropertiesWebClientCertificateAuthentication
Constructor
WebClientCertificateAuthentication(*, url: MutableMapping[str, Any], pfx: _models.SecretBase, password: _models.SecretBase, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
url
|
<xref:JSON>
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string). Required. |
pfx
|
Base64-encoded contents of a PFX file. Required. |
password
|
Password for the PFX file. Required. |
Variables
Name | Description |
---|---|
url
|
<xref:JSON>
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string). Required. |
authentication_type
|
Type of authentication used to connect to the web table source. Required. Known values are: "Basic", "Anonymous", and "ClientCertificate". |
pfx
|
Base64-encoded contents of a PFX file. Required. |
password
|
Password for the PFX file. Required. |
Azure SDK for Python