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
      1694 1695 1696  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1694 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#op ⇒ String
The operator to filter by.
Corresponds to the JSON property op
      1681 1682 1683  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1681 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
      1686 1687 1688  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1686 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
      1692 1693 1694  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1692 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1699 1700 1701 1702 1703  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1699 def update!(**args) @op = args[:op] if args.key?(:op) @property = args[:property] if args.key?(:property) @value = args[:value] if args.key?(:value) end  |