Show / Hide Table of Contents

Class CreateOrUpdateGitTagDetails

The information needed to create a lightweight tag.

Inheritance
object
CreateOrUpdateGitRefDetails
CreateOrUpdateGitTagDetails
Inherited Members
CreateOrUpdateGitRefDetails.RefName
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 CreateOrUpdateGitTagDetails : CreateOrUpdateGitRefDetails

Properties

ObjectId

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

SHA-1 hash value of the object pointed to by the tag.

Remarks

Required

In this article
Back to top