Show / Hide Table of Contents

Class ComputedUsageAggregation

Computed Usage Aggregation object

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

Properties

Cost

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

Sum of Computed Line Amount rounded

CostUnrounded

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

Sum of Computed Line Amount unrounded

DataCenter

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

Data Center Attribute as sent by MQS to SPM.

NetUnitPrice

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

Net Unit Price for the product in consideration.

Product

Declaration
[JsonProperty(PropertyName = "product")]
public ComputedUsageProduct Product { get; set; }
Property Value
Type Description
ComputedUsageProduct

Quantity

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

Total Quantity that was used for computation

TimeMeteredOn

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

Metered Service date , expressed in RFC 3339 timestamp format.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputedUsageAggregation.TypeEnum? Type { get; set; }
Property Value
Type Description
ComputedUsageAggregation.TypeEnum?

Usage compute type in SPM.

In this article
Back to top