Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListIntegrationTemplateVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListIntegrationTemplateVersionsResponse
- 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 for IntegrationTemplateVersions.ListIntegrationTemplateVersions.
Instance Attribute Summary collapse
-
#integration_template_versions ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationTemplateVersion>
The IntegrationTemplateVersions which match the request.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListIntegrationTemplateVersionsResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListIntegrationTemplateVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListIntegrationTemplateVersionsResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListIntegrationTemplateVersionsResponse.
7325 7326 7327 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7325 def initialize(**args) update!(**args) end |
Instance Attribute Details
#integration_template_versions ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationTemplateVersion>
The IntegrationTemplateVersions which match the request.
Corresponds to the JSON property integrationTemplateVersions
7317 7318 7319 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7317 def integration_template_versions @integration_template_versions end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
7323 7324 7325 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7323 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7330 7331 7332 7333 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7330 def update!(**args) @integration_template_versions = args[:integration_template_versions] if args.key?(:integration_template_versions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |