Package version:

Interface WebClientCertificateAuthentication

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.

interface WebClientCertificateAuthentication {
    authenticationType: "ClientCertificate";
    password: SecretBaseUnion;
    pfx: SecretBaseUnion;
    url: any;
}

Hierarchy (view full)

Properties

authenticationType

Polymorphic discriminator, which specifies the different types this object can be

password: SecretBaseUnion

Password for the PFX file.

Base64-encoded contents of a PFX file.

url: any

The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).