Show / Hide Table of Contents

Class AutomaticCaptureFilterDetails

The details of a capture filter used to include or exclude SQL statements in the initial automatic plan capture.

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

Properties

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
[JsonConverter(typeof(StringEnumConverter))]
public AutomaticCaptureFilterDetails.NameEnum? Name { get; set; }
Property Value
Type Description
AutomaticCaptureFilterDetails.NameEnum?

The name of the automatic capture filter.

  • AUTO_CAPTURE_SQL_TEXT: Search pattern to apply to SQL text.
  • AUTO_CAPTURE_PARSING_SCHEMA_NAME: Parsing schema to include or exclude for SQL plan management auto capture.
  • AUTO_CAPTURE_MODULE: Module to include or exclude for SQL plan management auto capture.
  • AUTO_CAPTURE_ACTION: Action to include or exclude for SQL plan management automatic capture.
Remarks

Required

ValuesToExclude

Declaration
[JsonProperty(PropertyName = "valuesToExclude")]
public List<string> ValuesToExclude { get; set; }
Property Value
Type Description
List<string>

A list of filter values to exclude.

ValuesToInclude

Declaration
[JsonProperty(PropertyName = "valuesToInclude")]
public List<string> ValuesToInclude { get; set; }
Property Value
Type Description
List<string>

A list of filter values to include.

In this article
Back to top