Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListConnectionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListConnectionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
Response containing Connections listed by region.
Instance Attribute Summary collapse
-
#connections ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Connection>
Connections.
-
#next_page_token ⇒ String
Next page token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListConnectionsResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListConnectionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListConnectionsResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListConnectionsResponse.
7337 7338 7339 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7337 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connections ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Connection>
Connections.
Corresponds to the JSON property connections
7330 7331 7332 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7330 def connections @connections end |
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
7335 7336 7337 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7335 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7342 7343 7344 7345 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7342 def update!(**args) @connections = args[:connections] if args.key?(:connections) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |