Show / Hide Table of Contents

Class PerformanceMetricsData

The list of Data Guard performance metrics for Managed Databases.

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

Properties

CompartmentId

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

The OCID of the compartment in which the Managed Database resides.

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.

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")]
public string DeploymentType { get; set; }
Property Value
Type Description
string

The deployment type of the Managed Database.

Metrics

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

The list of Data Guard performance metrics such as ApplyLag, TransportLag and RedoApplyRate for the Managed Databases.

PrimaryDbId

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

The ID of the primary 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.

ResourceId

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

The OCID of the Managed Database.

ResourceName

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

The resource name of the Managed Database.

In this article
Back to top