Show / Hide Table of Contents

Class ListingPackage

A base object for all types of listing packages.

Inheritance
object
ListingPackage
ContainerListingPackage
ImageListingPackage
KubernetesListingPackage
OrchestrationListingPackage
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplaceService.Models
Assembly: OCI.DotNetSDK.Marketplace.dll
Syntax
[JsonConverter(typeof(ListingPackageModelConverter))]
public class ListingPackage

Properties

Description

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

Description of this package.

ListingId

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

The ID of the listing this package belongs to.

Remarks

Required

OperatingSystem

Declaration
[JsonProperty(PropertyName = "operatingSystem")]
public OperatingSystem OperatingSystem { get; set; }
Property Value
Type Description
OperatingSystem

Pricing

Declaration
[JsonProperty(PropertyName = "pricing")]
public PricingModel Pricing { get; set; }
Property Value
Type Description
PricingModel

Regions

Declaration
[JsonProperty(PropertyName = "regions")]
public List<Region> Regions { get; set; }
Property Value
Type Description
List<Region>

The regions where you can deploy the listing package. (Some packages have restrictions that limit their deployment to United States regions only.)

ResourceId

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

The unique identifier for the package resource.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time this listing package was created, expressed in RFC 3339 timestamp format.
Example: 2016-08-25T21:10:29.600Z

Version

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

The package version.

Remarks

Required

In this article
Back to top