Class AutomaticCaptureFilter
An automatic capture filter that enables you to capture only those SQL statements that you want, and exclude noncritical statements.
Inherited Members
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.
|
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. |