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.
7258 7259 7260 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7258 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
7250 7251 7252 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7250 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
7256 7257 7258 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7256 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7263 7264 7265 7266 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7263 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 |