WebActivityAuthenticationResponse

data class WebActivityAuthenticationResponse(val credential: CredentialReferenceResponse? = null, val password: Either<AzureKeyVaultSecretReferenceResponse, SecureStringResponse>? = null, val pfx: Either<AzureKeyVaultSecretReferenceResponse, SecureStringResponse>? = null, val resource: Any? = null, val type: String? = null, val userTenant: Any? = null, val username: Any? = null)

Web activity authentication properties.

Constructors

Link copied to clipboard
constructor(credential: CredentialReferenceResponse? = null, password: Either<AzureKeyVaultSecretReferenceResponse, SecureStringResponse>? = null, pfx: Either<AzureKeyVaultSecretReferenceResponse, SecureStringResponse>? = null, resource: Any? = null, type: String? = null, userTenant: Any? = null, username: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The credential reference containing authentication information.

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard
val resource: Any? = null

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

Link copied to clipboard
val type: String? = null

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

Link copied to clipboard
val username: Any? = null

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

Link copied to clipboard
val userTenant: Any? = null

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