Show / Hide Table of Contents

Class DeployPipelineParameterCollection

Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.

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

Properties

Items

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

List of parameters defined for a deployment pipeline.

Remarks

Required

In this article
Back to top