DataAccessorAttributeFilterArgs

data class DataAccessorAttributeFilterArgs(val andAllFilters: Output<List<DataAccessorAttributeFilterArgs>>? = null, val containsAll: Output<DataAccessorDocumentAttributeArgs>? = null, val containsAny: Output<DataAccessorDocumentAttributeArgs>? = null, val equalsTo: Output<DataAccessorDocumentAttributeArgs>? = null, val greaterThan: Output<DataAccessorDocumentAttributeArgs>? = null, val greaterThanOrEquals: Output<DataAccessorDocumentAttributeArgs>? = null, val lessThan: Output<DataAccessorDocumentAttributeArgs>? = null, val lessThanOrEquals: Output<DataAccessorDocumentAttributeArgs>? = null, val notFilter: Output<DataAccessorAttributeFilterArgs>? = null, val orAllFilters: Output<List<DataAccessorAttributeFilterArgs>>? = null) : ConvertibleToJava<DataAccessorAttributeFilterArgs>

Constructors

Link copied to clipboard
constructor(andAllFilters: Output<List<DataAccessorAttributeFilterArgs>>? = null, containsAll: Output<DataAccessorDocumentAttributeArgs>? = null, containsAny: Output<DataAccessorDocumentAttributeArgs>? = null, equalsTo: Output<DataAccessorDocumentAttributeArgs>? = null, greaterThan: Output<DataAccessorDocumentAttributeArgs>? = null, greaterThanOrEquals: Output<DataAccessorDocumentAttributeArgs>? = null, lessThan: Output<DataAccessorDocumentAttributeArgs>? = null, lessThanOrEquals: Output<DataAccessorDocumentAttributeArgs>? = null, notFilter: Output<DataAccessorAttributeFilterArgs>? = null, orAllFilters: Output<List<DataAccessorAttributeFilterArgs>>? = null)

Properties

Link copied to clipboard

Performs a logical AND operation on all supplied filters.

Link copied to clipboard

Returns true when a document contains all the specified document attributes or metadata fields. Supported for the following document attribute value types : stringListValue .

Link copied to clipboard

Returns true when a document contains any of the specified document attributes or metadata fields. Supported for the following document attribute value types : stringListValue .

Link copied to clipboard

Performs an equals operation on two document attributes or metadata fields. Supported for the following document attribute value types : dateValue , longValue , stringListValue and stringValue .

Link copied to clipboard

Performs a greater than operation on two document attributes or metadata fields. Supported for the following document attribute value types : dateValue and longValue .

Link copied to clipboard

Performs a greater or equals than operation on two document attributes or metadata fields. Supported for the following document attribute value types : dateValue and longValue .

Link copied to clipboard

Performs a less than operation on two document attributes or metadata fields. Supported for the following document attribute value types : dateValue and longValue .

Link copied to clipboard

Performs a less than or equals operation on two document attributes or metadata fields.Supported for the following document attribute value type : dateValue and longValue .

Link copied to clipboard

Performs a logical NOT operation on all supplied filters.

Link copied to clipboard

Performs a logical OR operation on all supplied filters.

Functions

Link copied to clipboard
open override fun toJava(): DataAccessorAttributeFilterArgs