Show / Hide Table of Contents

Class OptimizerStatisticsAdvisorExecution

The summary of the Optimizer Statistics Advisor execution, which includes information about the Managed Database and a comprehensive execution report.

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

Properties

Database

Declaration
[JsonProperty(PropertyName = "database")]
public OptimizerDatabase Database { get; set; }
Property Value
Type Description
OptimizerDatabase

ErrorMessage

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

The errors in the Optimizer Statistics Advisor execution, if any.

ExecutionName

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

The name of the Optimizer Statistics Advisor execution.

Remarks

Required

Findings

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

The number of findings generated by the Optimizer Statistics Advisor execution.

Report

Declaration
[JsonProperty(PropertyName = "report")]
public OptimizerStatisticsAdvisorExecutionReport Report { get; set; }
Property Value
Type Description
OptimizerStatisticsAdvisorExecutionReport

Status

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

The status of the Optimizer Statistics Advisor execution.

Remarks

Required

StatusMessage

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

The Optimizer Statistics Advisor execution status message, if any.

TaskName

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

The name of the Optimizer Statistics Advisor task.

Remarks

Required

TimeEnd

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

The end time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".

Remarks

Required

TimeStart

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

The start time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".

Remarks

Required

In this article
Back to top