Show / Hide Table of Contents

Class AutomaticCaptureFilter

An automatic capture filter that enables you to capture only those SQL statements that you want, and exclude noncritical statements.

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

Properties

ModifiedBy

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

The database user who last updated the filter value.

Name

Declaration
[JsonProperty(PropertyName = "name")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AutomaticCaptureFilter.NameEnum? Name { get; set; }
Property Value
Type Description
AutomaticCaptureFilter.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.

TimeLastModified

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

The time the filter value was last updated.

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