Show / Hide Table of Contents

Class LaunchEligibility

Tenant eligibility and other information for launching a PIC image

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

Properties

ImageId

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

PIC Image ID

Remarks

Required

IneligibilityReason

Declaration
[JsonProperty(PropertyName = "ineligibilityReason")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IneligibilityReasonEnum? IneligibilityReason { get; set; }
Property Value
Type Description
IneligibilityReasonEnum?

Reason the account is ineligible to launch paid listings

IsLaunchAllowed

Declaration
[Required(ErrorMessage = "IsLaunchAllowed is required.")]
[JsonProperty(PropertyName = "isLaunchAllowed")]
public bool? IsLaunchAllowed { get; set; }
Property Value
Type Description
bool?

Is the tenant permitted to launch the PIC image

Remarks

Required

Meters

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

related meters for the PIC image

In this article
Back to top