Show / Hide Table of Contents

Class SpmEvolveTaskParameters

The set of parameters used in an SPM evolve task.

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

Properties

AllowedTimeLimit

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

The global time limit in seconds. This is the total time allowed for the task.

AlternatePlanBaselines

Declaration
[JsonProperty(PropertyName = "alternatePlanBaselines", ItemConverterType = typeof(ResponseEnumConverter))]
public List<SpmEvolveTaskParameters.AlternatePlanBaselinesEnum> AlternatePlanBaselines { get; set; }
Property Value
Type Description
List<SpmEvolveTaskParameters.AlternatePlanBaselinesEnum>

Determines which alternative plans should be loaded.

AlternatePlanLimit

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

Specifies the maximum number of plans to load in total (that is, not the limit for each SQL statement). A value of zero indicates UNLIMITED number of plans.

AlternatePlanSources

Declaration
[JsonProperty(PropertyName = "alternatePlanSources", ItemConverterType = typeof(ResponseEnumConverter))]
public List<SpmEvolveTaskParameters.AlternatePlanSourcesEnum> AlternatePlanSources { get; set; }
Property Value
Type Description
List<SpmEvolveTaskParameters.AlternatePlanSourcesEnum>

Determines which sources to search for additional plans.

ArePlansAutoAccepted

Declaration
[JsonProperty(PropertyName = "arePlansAutoAccepted")]
public bool? ArePlansAutoAccepted { get; set; }
Property Value
Type Description
bool?

Specifies whether to accept recommended plans automatically.

In this article
Back to top