Show / Hide Table of Contents

Class SqlPlanBaselineJob

The details of the database job used for loading and evolving SQL plan baselines.

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

Properties

Name

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

The job name.

Remarks

Required

Status

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

The job status.

Remarks

Required

TimeCreated

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

The date and time the job was created.

Type

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

The job type.

Remarks

Required

In this article
Back to top