Show / Hide Table of Contents

Class AddmReport

ADDM Tasks.

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

Properties

AddmReportProp

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

The complete ADDM report

Remarks

Required

DatabaseIdentifier

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

Internal id of the database.

Remarks

Required

SnapshotIntervalEnd

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

AWR snapshot id.

Remarks

Required

SnapshotIntervalStart

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

AWR snapshot id.

Remarks

Required

TaskIdentifier

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

TASK_ID in the oracle database view DBA_ADDM_TASKS

Remarks

Required

TimeIntervalEnd

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

The end timestamp that was passed into the request.

Remarks

Required

TimeIntervalStart

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

The start timestamp that was passed into the request.

Remarks

Required

In this article
Back to top