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.
4864 4865 4866 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4864 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
4852 4853 4854 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4852 def connections @connections end |
#next_page_token ⇒ String
Optional. page_token
Corresponds to the JSON property nextPageToken
4857 4858 4859 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4857 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
4862 4863 4864 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4862 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4869 4870 4871 4872 4873 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4869 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 |