Show / Hide Table of Contents

Class UpdateDevOpsConfigSourceDetails

Update details for a DevOps configuration source.

Inheritance
object
UpdateConfigSourceDetails
UpdateDevOpsConfigSourceDetails
Inherited Members
UpdateConfigSourceDetails.WorkingDirectory
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 UpdateDevOpsConfigSourceDetails : UpdateConfigSourceDetails

Properties

BranchName

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

The name of the branch that contains the Terraform configuration.

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