Show / Hide Table of Contents

Class AwrSourceSummary

Summary of an AwrSource.

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

Properties

AwrHubId

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

AWR Hub OCID

Remarks

Required

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

HoursSinceLastImport

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

Number of hours since last AWR snapshots import happened from the Source database.

Remarks

Required

MaxSnapshotIdentifier

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

The maximum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.

Remarks

Required

MinSnapshotIdentifier

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

The minimum snapshot identifier of the source database for which AWR data is uploaded to AWR Hub.

Remarks

Required

Name

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

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

Remarks

Required

SnapshotsUploaded

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

Number of AWR snapshots uploaded from the Source database.

Remarks

Required

TimeFirstSnapshotGenerated

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

The time at which the earliest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string

Remarks

Required

TimeLastSnapshotGenerated

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

The time at which the latest snapshot was generated in the source database for which data is uploaded to AWR Hub. An RFC3339 formatted datetime string

Remarks

Required

In this article
Back to top