Show / Hide Table of Contents

Class RepositoryCommitSummary

Commit summary with commit information.

Inheritance
object
RepositoryCommitSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class RepositoryCommitSummary

Properties

AuthorEmail

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

Email of the author of the repository.

Remarks

Required

AuthorName

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

Name of the author of the repository.

Remarks

Required

CommitId

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

Commit hash pointed to by reference name.

Remarks

Required

CommitMessage

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

The commit message.

Remarks

Required

CommitterEmail

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

Email of who creates the commit.

Remarks

Required

CommitterName

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

Name of who creates the commit.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace": {"bar-key": "value"}}

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}

ParentCommitIds

Declaration
[Required(ErrorMessage = "ParentCommitIds is required.")]
[JsonProperty(PropertyName = "parentCommitIds")]
public List<string> ParentCommitIds { get; set; }
Property Value
Type Description
List<string>

An array of parent commit IDs of created commit.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time to create the commit.

Remarks

Required

TreeId

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

Tree information for the specified commit.

Remarks

Required

In this article
Back to top