Class: Google::Apis::DatastoreV1beta3::PlanSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastore_v1beta3/classes.rb,
lib/google/apis/datastore_v1beta3/representations.rb,
lib/google/apis/datastore_v1beta3/representations.rb

Overview

Planning phase information for the query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PlanSummary

Returns a new instance of PlanSummary.



1758
1759
1760
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1758

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#indexes_usedArray<Hash<String,Object>>

The indexes selected for the query. For example: [ "query_scope": "Collection" , "properties": "(foo ASC, __name__ ASC)", "query_scope": "Collection", " properties": "(bar ASC, __name__ ASC)" ] Corresponds to the JSON property indexesUsed

Returns:

  • (Array<Hash<String,Object>>)


1756
1757
1758
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1756

def indexes_used
  @indexes_used
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1763
1764
1765
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1763

def update!(**args)
  @indexes_used = args[:indexes_used] if args.key?(:indexes_used)
end