Class: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1ListIndexesResponse

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

Overview

The response for FirestoreAdmin.ListIndexes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirestoreAdminV1beta1ListIndexesResponse

Returns a new instance of GoogleFirestoreAdminV1beta1ListIndexesResponse.



1104
1105
1106
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1104

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

Instance Attribute Details

#indexesArray<Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1Index>

The indexes. Corresponds to the JSON property indexes



1097
1098
1099
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1097

def indexes
  @indexes
end

#next_page_tokenString

The standard List next-page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1102
1103
1104
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1102

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1109
1110
1111
1112
# File 'generated/google/apis/firestore_v1beta1/classes.rb', line 1109

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