Show / Hide Table of Contents

Class DropSqlPlanBaselinesDetails

The details required to drop SQL plan baselines. It takes either credentials or databaseCredential. It's recommended to provide databaseCredential

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

Properties

Credentials

Declaration
[JsonProperty(PropertyName = "credentials")]
public ManagedDatabaseCredential Credentials { get; set; }
Property Value
Type Description
ManagedDatabaseCredential

DatabaseCredential

Declaration
[JsonProperty(PropertyName = "databaseCredential")]
public DatabaseCredentialDetails DatabaseCredential { get; set; }
Property Value
Type Description
DatabaseCredentialDetails

PlanName

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

The plan name. It identifies a specific plan. If null' then all plans associated with the SQL statement identified by sqlHandle' are dropped.

SqlHandle

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

The SQL statement handle. It identifies plans associated with a SQL statement that are to be dropped. If null then planName must be specified.

In this article
Back to top