GitPatternRepository 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
GitPatternRepository() |
Initializes a new instance of the GitPatternRepository class. |
GitPatternRepository(String, String, IList<String>, String, IList<String>, String, String, String, String, String, Nullable<Boolean>) |
Initializes a new instance of the GitPatternRepository class. |
GitPatternRepository()
Initializes a new instance of the GitPatternRepository class.
public GitPatternRepository ();
Public Sub New ()
Applies to
GitPatternRepository(String, String, IList<String>, String, IList<String>, String, String, String, String, String, Nullable<Boolean>)
Initializes a new instance of the GitPatternRepository class.
public GitPatternRepository (string name, string uri, System.Collections.Generic.IList<string> pattern = default, string label = default, System.Collections.Generic.IList<string> searchPaths = default, string username = default, string password = default, string hostKey = default, string hostKeyAlgorithm = default, string privateKey = default, bool? strictHostKeyChecking = default);
new Microsoft.Azure.Management.AppPlatform.Models.GitPatternRepository : string * string * System.Collections.Generic.IList<string> * string * System.Collections.Generic.IList<string> * string * string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.AppPlatform.Models.GitPatternRepository
Public Sub New (name As String, uri As String, Optional pattern As IList(Of String) = Nothing, Optional label As String = Nothing, Optional searchPaths As IList(Of String) = Nothing, Optional username As String = Nothing, Optional password As String = Nothing, Optional hostKey As String = Nothing, Optional hostKeyAlgorithm As String = Nothing, Optional privateKey As String = Nothing, Optional strictHostKeyChecking As Nullable(Of Boolean) = Nothing)
Parameters
- name
- String
Name of the repository
- uri
- String
URI of the repository
- label
- String
Label of the repository
- username
- String
Username of git repository basic auth.
- password
- String
Password of git repository basic auth.
- hostKey
- String
Public sshKey of git repository.
- hostKeyAlgorithm
- String
SshKey algorithm of git repository.
- privateKey
- String
Private sshKey algorithm of git repository.
Applies to
Azure SDK for .NET