Show / Hide Table of Contents

Class DeliverArtifactCollection

Specifies an array of artifacts that need to be pushed to the artifactory stores.

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

Properties

Items

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

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

Remarks

Required

In this article
Back to top