Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListIntegrationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListIntegrationsResponse
- 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 for ListIntegrations.
Instance Attribute Summary collapse
-
#integrations ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegration>
The integrations which match the request.
-
#next_page_token ⇒ String
The next page token for the response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListIntegrationsResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListIntegrationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListIntegrationsResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListIntegrationsResponse.
9128 9129 9130 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9128 def initialize(**args) update!(**args) end |
Instance Attribute Details
#integrations ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegration>
The integrations which match the request.
Corresponds to the JSON property integrations
9121 9122 9123 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9121 def integrations @integrations end |
#next_page_token ⇒ String
The next page token for the response.
Corresponds to the JSON property nextPageToken
9126 9127 9128 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9126 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9133 9134 9135 9136 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9133 def update!(**args) @integrations = args[:integrations] if args.key?(:integrations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |