WebBasicAuthenticationArgs

data class WebBasicAuthenticationArgs(val authenticationType: Output<String>, val password: Output<Either<AzureKeyVaultSecretReferenceArgs, SecureStringArgs>>, val url: Output<Any>, val username: Output<Any>) : ConvertibleToJava<WebBasicAuthenticationArgs>

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

Constructors

Link copied to clipboard
constructor(authenticationType: Output<String>, password: Output<Either<AzureKeyVaultSecretReferenceArgs, SecureStringArgs>>, url: Output<Any>, username: Output<Any>)

Properties

Link copied to clipboard

Type of authentication used to connect to the web table source. Expected value is 'Basic'.

Link copied to clipboard

The password for Basic authentication.

Link copied to clipboard
val url: Output<Any>

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

Link copied to clipboard
val username: Output<Any>

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

Functions

Link copied to clipboard
open override fun toJava(): WebBasicAuthenticationArgs