class Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2IndexConfigDelta
Information about an index configuration change.
Attributes
change_type[RW]
Specifies how the index is changing. Corresponds to the JSON property `changeType` @return [String]
index[RW]
Cloud Firestore indexes enable simple and complex queries against documents in a database. Corresponds to the JSON property `index` @return [Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Index]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firestore_v1beta2/classes.rb, line 459 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firestore_v1beta2/classes.rb, line 464 def update!(**args) @change_type = args[:change_type] if args.key?(:change_type) @index = args[:index] if args.key?(:index) end