Class: Google::Apis::DatastoreV1beta3::PlanSummary
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1beta3::PlanSummary
- 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
-
#indexes_used ⇒ Array<Hash<String,Object>>
The indexes selected for the query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PlanSummary
constructor
A new instance of PlanSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PlanSummary
Returns a new instance of PlanSummary.
1673 1674 1675 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1673 def initialize(**args) update!(**args) end |
Instance Attribute Details
#indexes_used ⇒ Array<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
1671 1672 1673 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1671 def indexes_used @indexes_used end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1678 1679 1680 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1678 def update!(**args) @indexes_used = args[:indexes_used] if args.key?(:indexes_used) end |