Show / Hide Table of Contents

Class BuildPipelineParameterCollection

Specifies list of parameters present in a build pipeline. An UPDATE operation replaces the existing parameters list entirely.

Inheritance
object
BuildPipelineParameterCollection
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 BuildPipelineParameterCollection

Properties

Items

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

List of parameters defined for a build pipeline.

Remarks

Required

In this article
Back to top