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.
7201 7202 7203 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7201 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connections ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Connection>
Connections.
Corresponds to the JSON property connections
7194 7195 7196 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7194 def connections @connections end |
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
7199 7200 7201 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7199 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7206 7207 7208 7209 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7206 def update!(**args) @connections = args[:connections] if args.key?(:connections) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |