Show / Hide Table of Contents

Class ExadataInfrastructureUsageMetrics

The list of aggregated metrics for Exadata infrastructures in the fleet.

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

Properties

CompartmentId

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

The OCID of the compartment where the Exadata infrastructure resides.

DeploymentType

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

The Exadata infrastructure deployment type.

InfrastructureId

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

The OCID of the Exadata infrastructure.

InfrastructureName

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

The display name of the Exadata infrastructure.

Metrics

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

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

NumberOfDbSystems

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

The number of Database Systems created on the Exadata infrastructure.

RackSize

Declaration
[JsonProperty(PropertyName = "rackSize")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExadataInfrastructureUsageMetrics.RackSizeEnum? RackSize { get; set; }
Property Value
Type Description
ExadataInfrastructureUsageMetrics.RackSizeEnum?

The size of the Exadata infrastructure.

State

Declaration
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExadataInfrastructureLifecycleStateValues.StateEnum? State { get; set; }
Property Value
Type Description
ExadataInfrastructureLifecycleStateValues.StateEnum?

The lifecycle state of the Exadata infrastructure.

StorageServerCount

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

The number of storage server for the Exadata infrastructure.

In this article
Back to top