Share via


GitRepoVolume Constructors

Definition

Overloads

GitRepoVolume()

Initializes a new instance of the GitRepoVolume class.

GitRepoVolume(String, String, String)

Initializes a new instance of the GitRepoVolume class.

GitRepoVolume()

Initializes a new instance of the GitRepoVolume class.

public GitRepoVolume ();
Public Sub New ()

Applies to

GitRepoVolume(String, String, String)

Initializes a new instance of the GitRepoVolume class.

public GitRepoVolume (string repository, string directory = default, string revision = default);
new Microsoft.Azure.Management.ContainerInstance.Models.GitRepoVolume : string * string * string -> Microsoft.Azure.Management.ContainerInstance.Models.GitRepoVolume
Public Sub New (repository As String, Optional directory As String = Nothing, Optional revision As String = Nothing)

Parameters

repository
String

Repository URL

directory
String

Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.

revision
String

Commit hash for the specified revision.

Applies to