Show / Hide Table of Contents

Class DevOpsConfigSourceRecord

Metadata about the DevOps configuration source.

Inheritance
object
ConfigSourceRecord
DevOpsConfigSourceRecord
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 DevOpsConfigSourceRecord : ConfigSourceRecord

Properties

BranchName

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

The name of the branch that contains the Terraform configuration.

Remarks

Required

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 DevOps repository.

ProjectId

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

The OCID of the {@link Project}.

Remarks

Required

RepositoryId

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

The OCID of the {@link Repository}.

Remarks

Required

In this article
Back to top