Class: Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2IndexConfigDelta
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2IndexConfigDelta
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firestore_v1beta2/classes.rb,
generated/google/apis/firestore_v1beta2/representations.rb,
generated/google/apis/firestore_v1beta2/representations.rb
Overview
Information about an index configuration change.
Instance Attribute Summary collapse
-
#change_type ⇒ String
Specifies how the index is changing.
-
#index ⇒ Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Index
Cloud Firestore indexes enable simple and complex queries against documents in a database.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirestoreAdminV1beta2IndexConfigDelta
constructor
A new instance of GoogleFirestoreAdminV1beta2IndexConfigDelta.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleFirestoreAdminV1beta2IndexConfigDelta
Returns a new instance of GoogleFirestoreAdminV1beta2IndexConfigDelta
485 486 487 |
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 485 def initialize(**args) update!(**args) end |
Instance Attribute Details
#change_type ⇒ String
Specifies how the index is changing.
Corresponds to the JSON property changeType
477 478 479 |
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 477 def change_type @change_type end |
#index ⇒ Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Index
Cloud Firestore indexes enable simple and complex queries against
documents in a database.
Corresponds to the JSON property index
483 484 485 |
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 483 def index @index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
490 491 492 493 |
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 490 def update!(**args) @change_type = args[:change_type] if args.key?(:change_type) @index = args[:index] if args.key?(:index) end |