Show / Hide Table of Contents

Class RunHistoricAddmDetails

The details of the ADDM task, which include the beginning and ending AWR snapshot IDs.

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

Properties

EndSnapshotId

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

The ID of the ending AWR snapshot.

Remarks

Required

StartSnapshotId

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

The ID number of the beginning AWR snapshot.

Remarks

Required

In this article
Back to top