Show / Hide Table of Contents

Class ListingPackageSummary

The model for a summary of a package.

Inheritance
object
ListingPackageSummary
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
public class ListingPackageSummary

Properties

ListingId

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

The ID of the listing that the specified package belongs to.

PackageType

Declaration
[JsonProperty(PropertyName = "packageType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PackageTypeEnum? PackageType { get; set; }
Property Value
Type Description
PackageTypeEnum?

The specified package's type.

PackageVersion

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

The version of the specified package.

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

In this article
Back to top