Show / Hide Table of Contents

Class AddmTaskSummary

The object containing the ADDM task metadata.

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

Properties

BeginSnapshotId

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

The ID number of the beginning AWR snapshot.

DbUser

Declaration
[JsonProperty(PropertyName = "dbUser")]
public string DbUser { get; set; }
Property Value
Type Description
string

The database user who owns the ADDM task.

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

The description of the ADDM task.

EndSnapshotId

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

The ID number of the ending AWR snapshot.

EndSnapshotTime

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

The timestamp of the ending AWR snapshot used in the ADDM task as defined by date-time RFC3339 format.

Findings

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

The number of ADDM findings.

HowCreated

Declaration
[JsonProperty(PropertyName = "howCreated")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AddmTaskSummary.HowCreatedEnum? HowCreated { get; set; }
Property Value
Type Description
AddmTaskSummary.HowCreatedEnum?

A description of how the task was created.

StartSnapshotTime

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

The timestamp of the beginning AWR snapshot used in the ADDM task as defined by date-time RFC3339 format.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AddmTaskSummary.StatusEnum? Status { get; set; }
Property Value
Type Description
AddmTaskSummary.StatusEnum?

The status of the ADDM task.

TaskId

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

The ID number of the ADDM task.

Remarks

Required

TaskName

Declaration
[JsonProperty(PropertyName = "taskName")]
public string TaskName { get; set; }
Property Value
Type Description
string

The name of the ADDM task.

TimeCreated

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

The creation date of the ADDM task.

Remarks

Required

In this article
Back to top