Share via


SourceProperties Constructors

Definition

Overloads

SourceProperties()

Initializes a new instance of the SourceProperties class.

SourceProperties(String, String, String, AuthInfo)

Initializes a new instance of the SourceProperties class.

SourceProperties()

Initializes a new instance of the SourceProperties class.

public SourceProperties ();
Public Sub New ()

Applies to

SourceProperties(String, String, String, AuthInfo)

Initializes a new instance of the SourceProperties class.

public SourceProperties (string sourceControlType, string repositoryUrl, string branch = default, Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AuthInfo sourceControlAuthProperties = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SourceProperties : string * string * string * Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AuthInfo -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SourceProperties
Public Sub New (sourceControlType As String, repositoryUrl As String, Optional branch As String = Nothing, Optional sourceControlAuthProperties As AuthInfo = Nothing)

Parameters

sourceControlType
String

The type of source control service. Possible values include: 'Github', 'VisualStudioTeamService'

repositoryUrl
String

The full URL to the source code respository

branch
String

The branch name of the source code.

sourceControlAuthProperties
AuthInfo

The authorization properties for accessing the source code repository and to set up webhooks for notifications.

Applies to