Package version:

Interface WebActivityAuthentication

Web activity authentication properties.

interface WebActivityAuthentication {
    credential?: CredentialReference;
    password?: SecretBaseUnion;
    pfx?: SecretBaseUnion;
    resource?: any;
    type?: string;
    username?: any;
    userTenant?: any;
}

Properties

credential?: CredentialReference

The credential reference containing authentication information.

password?: SecretBaseUnion

Password for the PFX file or basic authentication / Secret when used for ServicePrincipal

Base64-encoded contents of a PFX file or Certificate when used for ServicePrincipal

resource?: any

Resource for which Azure Auth token will be requested when using MSI Authentication. Type: string (or Expression with resultType string).

type?: string

Web activity authentication (Basic/ClientCertificate/MSI/ServicePrincipal)

username?: any

Web activity authentication user name for basic authentication or ClientID when used for ServicePrincipal. Type: string (or Expression with resultType string).

userTenant?: any

TenantId for which Azure Auth token will be requested when using ServicePrincipal Authentication. Type: string (or Expression with resultType string).