Share via


SourceControlUpdateParameters Constructors

Definition

Overloads

SourceControlUpdateParameters()

Initializes a new instance of the SourceControlUpdateParameters class.

SourceControlUpdateParameters(String, String, Nullable<Boolean>, Nullable<Boolean>, SourceControlSecurityTokenProperties, String)

Initializes a new instance of the SourceControlUpdateParameters class.

SourceControlUpdateParameters()

Initializes a new instance of the SourceControlUpdateParameters class.

public SourceControlUpdateParameters ();
Public Sub New ()

Applies to

SourceControlUpdateParameters(String, String, Nullable<Boolean>, Nullable<Boolean>, SourceControlSecurityTokenProperties, String)

Initializes a new instance of the SourceControlUpdateParameters class.

public SourceControlUpdateParameters (string branch = default, string folderPath = default, bool? autoSync = default, bool? publishRunbook = default, Microsoft.Azure.Management.Automation.Models.SourceControlSecurityTokenProperties securityToken = default, string description = default);
new Microsoft.Azure.Management.Automation.Models.SourceControlUpdateParameters : string * string * Nullable<bool> * Nullable<bool> * Microsoft.Azure.Management.Automation.Models.SourceControlSecurityTokenProperties * string -> Microsoft.Azure.Management.Automation.Models.SourceControlUpdateParameters
Public Sub New (Optional branch As String = Nothing, Optional folderPath As String = Nothing, Optional autoSync As Nullable(Of Boolean) = Nothing, Optional publishRunbook As Nullable(Of Boolean) = Nothing, Optional securityToken As SourceControlSecurityTokenProperties = Nothing, Optional description As String = Nothing)

Parameters

branch
String

The repo branch of the source control.

folderPath
String

The folder path of the source control. Path must be relative.

autoSync
Nullable<Boolean>

The auto sync of the source control. Default is false.

publishRunbook
Nullable<Boolean>

The auto publish of the source control. Default is true.

securityToken
SourceControlSecurityTokenProperties

The authorization token for the repo of the source control.

description
String

The user description of the source control.

Applies to