Class: Google::Apis::DatastoreV1::PropertyFilter
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::PropertyFilter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1/classes.rb,
generated/google/apis/datastore_v1/representations.rb,
generated/google/apis/datastore_v1/representations.rb
Overview
A filter on a specific property.
Instance Attribute Summary collapse
-
#op ⇒ String
The operator to filter by.
-
#property ⇒ Google::Apis::DatastoreV1::PropertyReference
A reference to a property relative to the kind expressions.
-
#value ⇒ Google::Apis::DatastoreV1::Value
A message that can hold any of the supported value types and associated metadata.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PropertyFilter
constructor
A new instance of PropertyFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PropertyFilter
Returns a new instance of PropertyFilter
660 661 662 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 660 def initialize(**args) update!(**args) end |
Instance Attribute Details
#op ⇒ String
The operator to filter by.
Corresponds to the JSON property op
653 654 655 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 653 def op @op end |
#property ⇒ Google::Apis::DatastoreV1::PropertyReference
A reference to a property relative to the kind expressions.
Corresponds to the JSON property property
658 659 660 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 658 def property @property end |
#value ⇒ Google::Apis::DatastoreV1::Value
A message that can hold any of the supported value types and associated
metadata.
Corresponds to the JSON property value
648 649 650 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 648 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
665 666 667 668 669 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 665 def update!(**args) @value = args[:value] if args.key?(:value) @op = args[:op] if args.key?(:op) @property = args[:property] if args.key?(:property) end |