Show / Hide Table of Contents

Class OciDevOpsBuildConfiguration

OCI DevOps configuration extends a Verify Configuration with necessary data to reach and use the OCI DevOps Build Service.

Inheritance
object
VerifyConfiguration
OciDevOpsBuildConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AdmService.Models
Assembly: OCI.DotNetSDK.Adm.dll
Syntax
public class OciDevOpsBuildConfiguration : VerifyConfiguration

Properties

AdditionalParameters

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

Additional key-value pairs passed as parameters to the build service when running an experiment.

PipelineId

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

The Oracle Cloud Identifier (OCID) of the user's DevOps Build Pipeline.

Remarks

Required

In this article
Back to top