共用方式為


FactoryGitHubConfiguration Constructors

Definition

Overloads

FactoryGitHubConfiguration()

Initializes a new instance of the FactoryGitHubConfiguration class.

FactoryGitHubConfiguration(String, String, String, String, String, String, String, GitHubClientSecret)

Initializes a new instance of the FactoryGitHubConfiguration class.

FactoryGitHubConfiguration(String, String, String, String, String, Nullable<Boolean>, String, String, GitHubClientSecret)

Initializes a new instance of the FactoryGitHubConfiguration class.

FactoryGitHubConfiguration()

Initializes a new instance of the FactoryGitHubConfiguration class.

public FactoryGitHubConfiguration ();
Public Sub New ()

Applies to

FactoryGitHubConfiguration(String, String, String, String, String, String, String, GitHubClientSecret)

Initializes a new instance of the FactoryGitHubConfiguration class.

public FactoryGitHubConfiguration (string accountName, string repositoryName, string collaborationBranch, string rootFolder, string lastCommitId, string hostName, string clientId = default, Microsoft.Azure.Management.DataFactory.Models.GitHubClientSecret clientSecret = default);
new Microsoft.Azure.Management.DataFactory.Models.FactoryGitHubConfiguration : string * string * string * string * string * string * string * Microsoft.Azure.Management.DataFactory.Models.GitHubClientSecret -> Microsoft.Azure.Management.DataFactory.Models.FactoryGitHubConfiguration
Public Sub New (accountName As String, repositoryName As String, collaborationBranch As String, rootFolder As String, lastCommitId As String, hostName As String, Optional clientId As String = Nothing, Optional clientSecret As GitHubClientSecret = Nothing)

Parameters

accountName
String

Account name.

repositoryName
String

Repository name.

collaborationBranch
String

Collaboration branch.

rootFolder
String

Root folder.

lastCommitId
String

Last commit id.

hostName
String

GitHub Enterprise host name. For example: https://github.mydomain.com

clientId
String

GitHub bring your own app client id.

clientSecret
GitHubClientSecret

GitHub bring your own app client secret information.

Applies to

FactoryGitHubConfiguration(String, String, String, String, String, Nullable<Boolean>, String, String, GitHubClientSecret)

Initializes a new instance of the FactoryGitHubConfiguration class.

public FactoryGitHubConfiguration (string accountName, string repositoryName, string collaborationBranch, string rootFolder, string lastCommitId = default, bool? disablePublish = default, string hostName = default, string clientId = default, Microsoft.Azure.Management.DataFactory.Models.GitHubClientSecret clientSecret = default);
new Microsoft.Azure.Management.DataFactory.Models.FactoryGitHubConfiguration : string * string * string * string * string * Nullable<bool> * string * string * Microsoft.Azure.Management.DataFactory.Models.GitHubClientSecret -> Microsoft.Azure.Management.DataFactory.Models.FactoryGitHubConfiguration
Public Sub New (accountName As String, repositoryName As String, collaborationBranch As String, rootFolder As String, Optional lastCommitId As String = Nothing, Optional disablePublish As Nullable(Of Boolean) = Nothing, Optional hostName As String = Nothing, Optional clientId As String = Nothing, Optional clientSecret As GitHubClientSecret = Nothing)

Parameters

accountName
String

Account name.

repositoryName
String

Repository name.

collaborationBranch
String

Collaboration branch.

rootFolder
String

Root folder.

lastCommitId
String

Last commit id.

disablePublish
Nullable<Boolean>

Disable manual publish operation in ADF studio to favor automated publish.

hostName
String

GitHub Enterprise host name. For example: https://github.mydomain.com

clientId
String

GitHub bring your own app client id.

clientSecret
GitHubClientSecret

GitHub bring your own app client secret information.

Applies to