Show / Hide Table of Contents

Class AwrDatabaseSnapshotSummary

The AWR snapshot summary of one snapshot.

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

Properties

AwrSourceDatabaseIdentifier

Declaration
[Required(ErrorMessage = "AwrSourceDatabaseIdentifier is required.")]
[JsonProperty(PropertyName = "awrSourceDatabaseIdentifier")]
public string AwrSourceDatabaseIdentifier { get; set; }
Property Value
Type Description
string

Internal ID of the database. The internal ID of the database is not the OCID. It can be retrieved from the following endpoint: /awrHubs/{awrHubId}/awrDatabases

Remarks

Required

ErrorCount

Declaration
[JsonProperty(PropertyName = "errorCount")]
public long? ErrorCount { get; set; }
Property Value
Type Description
long?

The total number of errors.

InstanceNumber

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

The database instance number.

SnapshotIdentifier

Declaration
[Required(ErrorMessage = "SnapshotIdentifier is required.")]
[JsonProperty(PropertyName = "snapshotIdentifier")]
public int? SnapshotIdentifier { get; set; }
Property Value
Type Description
int?

The ID of the snapshot. The snapshot identifier is not the OCID. It can be retrieved from the following endpoint: /awrHubs/{awrHubId}/awrDbSnapshots

Remarks

Required

TimeBegin

Declaration
[JsonProperty(PropertyName = "timeBegin")]
public DateTime? TimeBegin { get; set; }
Property Value
Type Description
DateTime?

The start time of the snapshot.

TimeDbStartup

Declaration
[JsonProperty(PropertyName = "timeDbStartup")]
public DateTime? TimeDbStartup { get; set; }
Property Value
Type Description
DateTime?

The timestamp of the database startup.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

The end time of the snapshot.

In this article
Back to top