Class: Google::Apis::ConnectorsV1::SearchConnectionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::SearchConnectionsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Response message for Connectors.SearchConnections.
Instance Attribute Summary collapse
-
#connections ⇒ Array<Google::Apis::ConnectorsV1::SearchConnectionInstance>
A list of connectors.
-
#next_page_token ⇒ String
Optional.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchConnectionsResponse
constructor
A new instance of SearchConnectionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchConnectionsResponse
Returns a new instance of SearchConnectionsResponse.
5667 5668 5669 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5667 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connections ⇒ Array<Google::Apis::ConnectorsV1::SearchConnectionInstance>
A list of connectors.
Corresponds to the JSON property connections
5655 5656 5657 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5655 def connections @connections end |
#next_page_token ⇒ String
Optional. page_token
Corresponds to the JSON property nextPageToken
5660 5661 5662 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5660 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
5665 5666 5667 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5665 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5672 5673 5674 5675 5676 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5672 def update!(**args) @connections = args[:connections] if args.key?(:connections) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |