Show / Hide Table of Contents

Class AwrSnapshotSummary

The AWR snapshot summary of one snapshot.

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

Properties

AwrSourceDatabaseId

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

DatabaseId of the Source database for which AWR Data will be uploaded to AWR Hub.

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 identifier of the snapshot.

Remarks

Required

TimeDbStartup

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

The timestamp of the database startup.

TimeSnapshotBegin

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

The start time of the snapshot.

TimeSnapshotEnd

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

The end time of the snapshot.

In this article
Back to top