Share via


WebActivityAuthentication Constructors

Definition

Overloads

WebActivityAuthentication()

Initializes a new instance of the WebActivityAuthentication class.

WebActivityAuthentication(String, SecretBase, Object, SecretBase, Object, Object, CredentialReference)

Initializes a new instance of the WebActivityAuthentication class.

WebActivityAuthentication()

Initializes a new instance of the WebActivityAuthentication class.

public WebActivityAuthentication ();
Public Sub New ()

Applies to

WebActivityAuthentication(String, SecretBase, Object, SecretBase, Object, Object, CredentialReference)

Initializes a new instance of the WebActivityAuthentication class.

public WebActivityAuthentication (string type = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase pfx = default, object username = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase password = default, object resource = default, object userTenant = default, Microsoft.Azure.Management.DataFactory.Models.CredentialReference credential = default);
new Microsoft.Azure.Management.DataFactory.Models.WebActivityAuthentication : string * Microsoft.Azure.Management.DataFactory.Models.SecretBase * obj * Microsoft.Azure.Management.DataFactory.Models.SecretBase * obj * obj * Microsoft.Azure.Management.DataFactory.Models.CredentialReference -> Microsoft.Azure.Management.DataFactory.Models.WebActivityAuthentication
Public Sub New (Optional type As String = Nothing, Optional pfx As SecretBase = Nothing, Optional username As Object = Nothing, Optional password As SecretBase = Nothing, Optional resource As Object = Nothing, Optional userTenant As Object = Nothing, Optional credential As CredentialReference = Nothing)

Parameters

type
String

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

pfx
SecretBase

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

username
Object

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

password
SecretBase

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

resource
Object

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

userTenant
Object

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

credential
CredentialReference

The credential reference containing authentication information.

Applies to