-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
WebActivityAuthentication.cs
54 lines (48 loc) · 3.72 KB
/
WebActivityAuthentication.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure.Core.Expressions.DataFactory;
namespace Azure.ResourceManager.DataFactory.Models
{
/// <summary> Web activity authentication properties. </summary>
public partial class WebActivityAuthentication
{
/// <summary> Initializes a new instance of <see cref="WebActivityAuthentication"/>. </summary>
public WebActivityAuthentication()
{
}
/// <summary> Initializes a new instance of <see cref="WebActivityAuthentication"/>. </summary>
/// <param name="webActivityAuthenticationType"> Web activity authentication (Basic/ClientCertificate/MSI/ServicePrincipal). </param>
/// <param name="pfx"> Base64-encoded contents of a PFX file or Certificate when used for ServicePrincipal. </param>
/// <param name="username"> Web activity authentication user name for basic authentication or ClientID when used for ServicePrincipal. Type: string (or Expression with resultType string). </param>
/// <param name="password"> Password for the PFX file or basic authentication / Secret when used for ServicePrincipal. </param>
/// <param name="resource"> Resource for which Azure Auth token will be requested when using MSI Authentication. Type: string (or Expression with resultType string). </param>
/// <param name="userTenant"> TenantId for which Azure Auth token will be requested when using ServicePrincipal Authentication. Type: string (or Expression with resultType string). </param>
/// <param name="credential"> The credential reference containing authentication information. </param>
internal WebActivityAuthentication(string webActivityAuthenticationType, DataFactorySecretBaseDefinition pfx, DataFactoryElement<string> username, DataFactorySecretBaseDefinition password, DataFactoryElement<string> resource, DataFactoryElement<string> userTenant, DataFactoryCredentialReference credential)
{
WebActivityAuthenticationType = webActivityAuthenticationType;
Pfx = pfx;
Username = username;
Password = password;
Resource = resource;
UserTenant = userTenant;
Credential = credential;
}
/// <summary> Web activity authentication (Basic/ClientCertificate/MSI/ServicePrincipal). </summary>
public string WebActivityAuthenticationType { get; set; }
/// <summary> Base64-encoded contents of a PFX file or Certificate when used for ServicePrincipal. </summary>
public DataFactorySecretBaseDefinition Pfx { get; set; }
/// <summary> Web activity authentication user name for basic authentication or ClientID when used for ServicePrincipal. Type: string (or Expression with resultType string). </summary>
public DataFactoryElement<string> Username { get; set; }
/// <summary> Password for the PFX file or basic authentication / Secret when used for ServicePrincipal. </summary>
public DataFactorySecretBaseDefinition Password { get; set; }
/// <summary> Resource for which Azure Auth token will be requested when using MSI Authentication. Type: string (or Expression with resultType string). </summary>
public DataFactoryElement<string> Resource { get; set; }
/// <summary> TenantId for which Azure Auth token will be requested when using ServicePrincipal Authentication. Type: string (or Expression with resultType string). </summary>
public DataFactoryElement<string> UserTenant { get; set; }
/// <summary> The credential reference containing authentication information. </summary>
public DataFactoryCredentialReference Credential { get; set; }
}
}