Class: Google::Apis::FirebasedataconnectV1beta::ListSchemasResponse

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

Overview

Message for response to listing Schemas.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSchemasResponse

Returns a new instance of ListSchemasResponse.



604
605
606
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 604

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

Instance Attribute Details

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


592
593
594
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 592

def next_page_token
  @next_page_token
end

#schemasArray<Google::Apis::FirebasedataconnectV1beta::Schema>

The list of Schemas. Corresponds to the JSON property schemas



597
598
599
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 597

def schemas
  @schemas
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


602
603
604
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 602

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



609
610
611
612
613
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 609

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