Class: Google::Apis::FirestoreV1::PlanSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firestore_v1/classes.rb,
lib/google/apis/firestore_v1/representations.rb,
lib/google/apis/firestore_v1/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.



3260
3261
3262
# File 'lib/google/apis/firestore_v1/classes.rb', line 3260

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>>)


3258
3259
3260
# File 'lib/google/apis/firestore_v1/classes.rb', line 3258

def indexes_used
  @indexes_used
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3265
3266
3267
# File 'lib/google/apis/firestore_v1/classes.rb', line 3265

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