Show / Hide Table of Contents

Class ResourceSummary

The details of a resource under a service.

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

Properties

ChildResources

Declaration
[JsonProperty(PropertyName = "childResources")]
public List<string> ChildResources { get; set; }
Property Value
Type Description
List<string>

The details of any child resources.

DailyUnitDisplayName

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

Units to be used for daily aggregated data.

Description

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

Description of the resource.

HourlyUnitDisplayName

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

Units to be used for hourly aggregated data.

InstanceType

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

Instance type for the resource.

IsPurchased

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

Indicates if the SKU was purchased

Name

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

Name of the resource.

RawUnitDisplayName

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

Default units to use when unspecified.

Servicename

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

Name of the service.

Skus

Declaration
[JsonProperty(PropertyName = "skus")]
public List<SkuProducts> Skus { get; set; }
Property Value
Type Description
List<SkuProducts>

The details of resource Skus.

UsageDataType

Declaration
[JsonProperty(PropertyName = "usageDataType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ResourceSummary.UsageDataTypeEnum? UsageDataType { get; set; }
Property Value
Type Description
ResourceSummary.UsageDataTypeEnum?

Usage data type of the resource.

In this article
Back to top