Package version:

Interface WebBasicAuthentication

A WebLinkedService that uses basic authentication to communicate with an HTTP endpoint.

interface WebBasicAuthentication {
    authenticationType: "Basic";
    password: SecretBaseUnion;
    url: any;
    username: any;
}

Hierarchy (view full)

Properties

authenticationType

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

password: SecretBaseUnion

The password for Basic authentication.

url: any

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

username: any

User name for Basic authentication. Type: string (or Expression with resultType string).