Class AutomaticCaptureFilterDetails
The details of a capture filter used to include or exclude SQL statements in the initial automatic plan capture.
Inherited Members
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.
|
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. |