Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse
- 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 ListIntegrationVersions.
Instance Attribute Summary collapse
-
#integration_versions ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationVersion>
The integrations which match the request.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#no_permission ⇒ Boolean
(also: #no_permission?)
Whether the user has no permission on the version or not.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse.
7357 7358 7359 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7357 def initialize(**args) update!(**args) end |
Instance Attribute Details
#integration_versions ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationVersion>
The integrations which match the request.
Corresponds to the JSON property integrationVersions
7343 7344 7345 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7343 def integration_versions @integration_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
7349 7350 7351 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7349 def next_page_token @next_page_token end |
#no_permission ⇒ Boolean Also known as: no_permission?
Whether the user has no permission on the version or not.
Corresponds to the JSON property noPermission
7354 7355 7356 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7354 def @no_permission end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7362 7363 7364 7365 7366 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7362 def update!(**args) @integration_versions = args[:integration_versions] if args.key?(:integration_versions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @no_permission = args[:no_permission] if args.key?(:no_permission) end |