IWithRepositoryType<ParentT> Interface

Definition

A web app source control definition allowing repository type to be specified.

public interface IWithRepositoryType<ParentT>
type IWithRepositoryType<'ParentT> = interface
Public Interface IWithRepositoryType(Of ParentT)

Type Parameters

ParentT

The stage of the parent definition to return to after attaching this definition.

Derived

Methods

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.

WithPublicGitRepository(String)

Specifies the repository to be a public external repository, either Git or Mercurial. Continuous integration will not be turned on.

WithPublicMercurialRepository(String)

Specifies the repository to be a public external repository, either Git or Mercurial. Continuous integration will not be turned on.

Applies to