NestedFilters class
A list of nested Filter objects. A resource must satisfy the conditions of all filters to be included in the results returned from the Search API.
For example, to filter on a training job's InputDataConfig
property with a specific channel name and S3Uri
prefix, define
the following filters:
-
'{Name:"InputDataConfig.ChannelName", "Operator":"Equals", "Value":"train"}',
-
'{Name:"InputDataConfig.DataSource.S3DataSource.S3Uri", "Operator":"Contains", "Value":"mybucket/catdata"}'
Constructors
-
NestedFilters({required List<
Filter> filters, required String nestedPropertyName})
Properties
-
filters
→ List<
Filter> -
A list of filters. Each filter acts on a property. Filters must contain at
least one
Filters
value. For example, aNestedFilters
call might include a filter on thePropertyName
parameter of theInputDataConfig
property:InputDataConfig.DataSource.S3DataSource.S3Uri
.final - hashCode → int
-
The hash code for this object.
no setterinherited
- nestedPropertyName → String
-
The name of the property to use in the nested filters. The value must match
a listed property name, such as
InputDataConfig
.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited