Show / Hide Table of Contents

Class GitConfigSourceRecord

Metadata about the Git configuration source.

Inheritance
object
ConfigSourceRecord
GitConfigSourceRecord
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcemanagerService.Models
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
public class GitConfigSourceRecord : ConfigSourceRecord

Properties

BranchName

Declaration
[JsonProperty(PropertyName = "branchName")]
public string BranchName { get; set; }
Property Value
Type Description
string

The name of the branch within the Git repository.

CommitId

Declaration
[JsonProperty(PropertyName = "commitId")]
public string CommitId { get; set; }
Property Value
Type Description
string

The unique identifier (SHA-1 hash) of the individual change to the Git repository.

ConfigurationSourceProviderId

Declaration
[Required(ErrorMessage = "ConfigurationSourceProviderId is required.")]
[JsonProperty(PropertyName = "configurationSourceProviderId")]
public string ConfigurationSourceProviderId { get; set; }
Property Value
Type Description
string

Unique identifier (OCID) for the Git configuration source.

Remarks

Required

RepositoryUrl

Declaration
[JsonProperty(PropertyName = "repositoryUrl")]
public string RepositoryUrl { get; set; }
Property Value
Type Description
string

The URL of the Git repository.

In this article
Back to top