Class InsightFilterCapability
Describes a supported filter for an insight type.
Inherited Members
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class InsightFilterCapability
Properties
CanUsePartialMatch
Declaration
[JsonProperty(PropertyName = "canUsePartialMatch")]
public bool? CanUsePartialMatch { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Indicates whether partial matching is supported. |
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Name of the filter parameter. |
Remarks
Required
Type
Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Data type of the filter parameter. |
Remarks
Required
Values
Declaration
[JsonProperty(PropertyName = "values")]
public List<string> Values { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> | Allowed values for enum-based filters. |