Show / Hide Table of Contents

Class DatabaseStorageAggregateMetrics

The database storage metric values.

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

Properties

StorageAllocated

Declaration
[JsonProperty(PropertyName = "storageAllocated")]
public MetricDataPoint StorageAllocated { get; set; }
Property Value
Type Description
MetricDataPoint

StorageUsed

Declaration
[JsonProperty(PropertyName = "storageUsed")]
public MetricDataPoint StorageUsed { get; set; }
Property Value
Type Description
MetricDataPoint

StorageUsedByTableSpace

Declaration
[JsonProperty(PropertyName = "storageUsedByTableSpace")]
public List<MetricDataPoint> StorageUsedByTableSpace { get; set; }
Property Value
Type Description
List<MetricDataPoint>

A list of the storage metrics grouped by TableSpace for a specific Managed Database.

In this article
Back to top