Class: Google::Apis::FirebasedataconnectV1beta::ListConnectorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1beta::ListConnectorsResponse
- 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. By default, connectors.source
will not be included in the response. To specify the fields included in the
response, the response field mask can be provided by using the query parameter
$fields or the header X-Goog-FieldMask.
Instance Attribute Summary collapse
-
#connectors ⇒ Array<Google::Apis::FirebasedataconnectV1beta::Connector>
The list of Connectors.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListConnectorsResponse
constructor
A new instance of ListConnectorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListConnectorsResponse
Returns a new instance of ListConnectorsResponse.
525 526 527 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 525 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connectors ⇒ Array<Google::Apis::FirebasedataconnectV1beta::Connector>
The list of Connectors.
Corresponds to the JSON property connectors
512 513 514 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 512 def connectors @connectors end |
#next_page_token ⇒ String
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
518 519 520 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 518 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
523 524 525 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 523 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
530 531 532 533 534 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 530 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 |