IWithRepositoryType<ParentT>.WithContinuouslyIntegratedGitHubRepository Method

Definition

Overloads

WithContinuouslyIntegratedGitHubRepository(String)

Specifies the repository to be a GitHub repository. Continuous integration will be turned on. This repository can be either public or private, but your GitHub access token must have enough privileges to add a webhook to the repository.

WithContinuouslyIntegratedGitHubRepository(String, String)

Specifies the repository to be a GitHub repository. Continuous integration will be turned on. This repository can be either public or private, but your GitHub access token must have enough privileges to add a webhook to the repository.

WithContinuouslyIntegratedGitHubRepository(String)

Specifies the repository to be a GitHub repository. Continuous integration will be turned on. This repository can be either public or private, but your GitHub access token must have enough privileges to add a webhook to the repository.

public Microsoft.Azure.Management.AppService.Fluent.WebAppSourceControl.Definition.IWithGitHubBranch<ParentT> WithContinuouslyIntegratedGitHubRepository (string url);
abstract member WithContinuouslyIntegratedGitHubRepository : string -> Microsoft.Azure.Management.AppService.Fluent.WebAppSourceControl.Definition.IWithGitHubBranch<'ParentT>
Public Function WithContinuouslyIntegratedGitHubRepository (url As String) As IWithGitHubBranch(Of ParentT)

Parameters

url
String

The URL pointing to the repository, e.g. https://github.com/Azure/azure-sdk-for-java.

Returns

Applies to

WithContinuouslyIntegratedGitHubRepository(String, String)

Specifies the repository to be a GitHub repository. Continuous integration will be turned on. This repository can be either public or private, but your GitHub access token must have enough privileges to add a webhook to the repository.

public Microsoft.Azure.Management.AppService.Fluent.WebAppSourceControl.Definition.IWithGitHubBranch<ParentT> WithContinuouslyIntegratedGitHubRepository (string organization, string repository);
abstract member WithContinuouslyIntegratedGitHubRepository : string * string -> Microsoft.Azure.Management.AppService.Fluent.WebAppSourceControl.Definition.IWithGitHubBranch<'ParentT>
Public Function WithContinuouslyIntegratedGitHubRepository (organization As String, repository As String) As IWithGitHubBranch(Of ParentT)

Parameters

organization
String

The user name or organization name the GitHub repository belongs to, e.g. Azure.

repository
String

The name of the repository, e.g. azure-sdk-for-java.

Returns

Applies to