Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListConnectionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListConnectionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
Response containing Connections listed by region.
Instance Attribute Summary collapse
-
#connections ⇒ Array<Google::Apis::IntegrationsV1::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.
9039 9040 9041 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9039 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connections ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Connection>
Connections.
Corresponds to the JSON property connections
9032 9033 9034 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9032 def connections @connections end |
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
9037 9038 9039 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9037 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9044 9045 9046 9047 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9044 def update!(**args) @connections = args[:connections] if args.key?(:connections) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |