Class: Google::Apis::FirebasedataconnectV1beta::ListConnectorsResponse

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 Connectors.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListConnectorsResponse

Returns a new instance of ListConnectorsResponse.



522
523
524
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 522

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

Instance Attribute Details

#connectorsArray<Google::Apis::FirebasedataconnectV1beta::Connector>

The list of Connectors. Corresponds to the JSON property connectors



509
510
511
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 509

def connectors
  @connectors
end

#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)


515
516
517
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 515

def next_page_token
  @next_page_token
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


520
521
522
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 520

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



527
528
529
530
531
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 527

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