Show / Hide Table of Contents

Class DatabaseUsageMetrics

The list of aggregated metrics for Managed Databases in the fleet.

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

Properties

CompartmentId

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

The OCID of the compartment where the Managed Database resides.

DatabaseContainerId

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

The OCID of the parent Container Database, in the case of a Pluggable Database.

DatabaseId

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

The Database id of the Managed Database. Every database had its own id and that value is captured here.

DatabaseName

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

The display name of the Managed Database.

DatabaseSubType

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

The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.

DatabaseType

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

The type of Oracle Database installation.

DatabaseVersion

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

The Oracle Database version.

DbId

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

The OCID of the Managed Database.

DbRole

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

The Database role of the Managed Database.

DbUniqueName

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

The Database unique name of the Managed Database.

DeploymentType

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

The infrastructure used to deploy the Oracle Database.

Metrics

Declaration
[JsonProperty(PropertyName = "metrics")]
public List<FleetMetricDefinition> Metrics { get; set; }
Property Value
Type Description
List<FleetMetricDefinition>

A list of the database health metrics like CPU, Storage, and Memory.

PrimaryDbId

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

The Primary Database id of the Managed Database.

PrimaryDbUniqueName

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

The Primary Database unique name of the Managed Database.

WorkloadType

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

The workload type of the Autonomous Database.

In this article
Back to top