Show / Hide Table of Contents

Class StackArtifactDetails

Stack details required to create a Stack artifact.

Inheritance
object
StackArtifactDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class StackArtifactDetails

Properties

ImageListingIds

Declaration
[JsonProperty(PropertyName = "imageListingIds")]
public List<string> ImageListingIds { get; set; }
Property Value
Type Description
List<string>

Image listing OCIDs that are referred in the Stack.

SourceStackId

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

The source stack OCID.

Remarks

Required

ValidationError

Declaration
[JsonProperty(PropertyName = "validationError")]
public string ValidationError { get; set; }
Property Value
Type Description
string

The description of the stack validation failure errors.

ValidationStatus

Declaration
[Required(ErrorMessage = "ValidationStatus is required.")]
[JsonProperty(PropertyName = "validationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ValidationStatus? ValidationStatus { get; set; }
Property Value
Type Description
ValidationStatus?

Stack validation status.

Remarks

Required

In this article
Back to top