Show / Hide Table of Contents

Class SqlPlanBaselineJobSummary

A summary of the database job used for loading and evolving SQL plan baselines.

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

Properties

Name

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

The name of the job.

Remarks

Required

Status

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

The status of the job.

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 SqlPlanBaselineJobSummary.TypeEnum? Type { get; set; }
Property Value
Type Description
SqlPlanBaselineJobSummary.TypeEnum?

The type of the job.

Remarks

Required

In this article
Back to top