Show / Hide Table of Contents

Class InsightFilterCapability

Describes a supported filter for an insight type.

Inheritance
object
InsightFilterCapability
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.

In this article
Back to top