Show / Hide Table of Contents

Class SubscriptionSku

SKU information.

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

Properties

Description

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

Description of the stock units.

EndDate

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

Date and time when the SKU ended.

GsiOrderLineId

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

Sales order line identifier.

IsAdditionalInstance

Declaration
[JsonProperty(PropertyName = "isAdditionalInstance")]
public bool? IsAdditionalInstance { get; set; }
Property Value
Type Description
bool?

Specifies if an additional test instance can be provisioned by the SaaS application.

IsBaseServiceComponent

Declaration
[JsonProperty(PropertyName = "isBaseServiceComponent")]
public bool? IsBaseServiceComponent { get; set; }
Property Value
Type Description
bool?

Specifies if the SKU is considered as a parent or child.

LicensePartDescription

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

Description of the covered product belonging to this SKU.

MetricName

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

Base metric for billing the service.

Quantity

Declaration
[JsonProperty(PropertyName = "quantity")]
public int? Quantity { get; set; }
Property Value
Type Description
int?

Quantity of the stock units.

Sku

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

Stock Keeping Unit (SKU) ID.

Remarks

Required

StartDate

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

Date and time when the SKU was created.

In this article
Back to top