Show / Hide Table of Contents

Class SqlTuningAdvisorTaskSummaryReportTaskInfo

The general information regarding the SQL Tuning Advisor task.

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

Properties

Description

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

The description of the SQL Tuning Advisor task. This is not defined for Auto SQL Tuning tasks.

Id

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

The ID of the SQL Tuning Advisor task. This is not the OCID.

Remarks

Required

Name

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

The name of the SQL Tuning Advisor task.

Remarks

Required

Owner

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

The owner of the SQL Tuning Advisor task.

Remarks

Required

RunningTime

Declaration
[JsonProperty(PropertyName = "runningTime")]
public int? RunningTime { get; set; }
Property Value
Type Description
int?

The total running time in seconds. This is not defined for Auto SQL Tuning tasks.

Status

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

The status of the SQL Tuning Advisor task. This is not defined for Auto SQL Tuning tasks.

TimeEnded

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

The end time of the task execution.

Remarks

Required

TimeStarted

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

The start time of the task execution.

Remarks

Required

In this article
Back to top