Show / Hide Table of Contents

Class HelmDiffArgumentCollection

Specifies list of arguments passed along with the deployment for running Helm Diff.

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

Properties

Items

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

List of arguments provided at the time of deployment.

Remarks

Required

In this article
Back to top