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.
5030 5031 5032 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5030 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
5018 5019 5020 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5018 def connections @connections end |
#next_page_token ⇒ String
Optional. page_token
Corresponds to the JSON property nextPageToken
5023 5024 5025 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5023 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
5028 5029 5030 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5028 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5035 5036 5037 5038 5039 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5035 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 |