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

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



1667
1668
1669
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1667

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

Instance Attribute Details

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

The indexes. Corresponds to the JSON property indexes



1660
1661
1662
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1660

def indexes
  @indexes
end

#next_page_tokenString

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

Returns:

  • (String)


1665
1666
1667
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1665

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1672
1673
1674
1675
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1672

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