Show / Hide Table of Contents

Class CreateStackDetails

Stack details required to create a Stack artifact.

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

Properties

ImageListingIds

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

Image listing OCIDs that are referenced 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

In this article
Back to top