RepositoryRefDefinition Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RepositoryRefDefinition() |
Initializes a new instance of the RepositoryRefDefinition class. |
RepositoryRefDefinition(String, String, String, String) |
Initializes a new instance of the RepositoryRefDefinition class. |
RepositoryRefDefinition()
Initializes a new instance of the RepositoryRefDefinition class.
public RepositoryRefDefinition ();
Public Sub New ()
Applies to
RepositoryRefDefinition(String, String, String, String)
Initializes a new instance of the RepositoryRefDefinition class.
public RepositoryRefDefinition (string branch = default, string tag = default, string semver = default, string commit = default);
new Microsoft.Azure.Management.KubernetesConfiguration.Models.RepositoryRefDefinition : string * string * string * string -> Microsoft.Azure.Management.KubernetesConfiguration.Models.RepositoryRefDefinition
Public Sub New (Optional branch As String = Nothing, Optional tag As String = Nothing, Optional semver As String = Nothing, Optional commit As String = Nothing)
Parameters
- branch
- String
The git repository branch name to checkout.
- tag
- String
The git repository tag name to checkout. This takes precedence over branch.
- semver
- String
The semver range used to match against git repository tags. This takes precedence over tag.
- commit
- String
The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
Applies to
Azure SDK for .NET