Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse
- 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 ListIntegrationVersions.
Instance Attribute Summary collapse
-
#integration_versions ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationVersion>
The integrations which match the request.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to 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.
9102 9103 9104 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9102 def initialize(**args) update!(**args) end |
Instance Attribute Details
#integration_versions ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationVersion>
The integrations which match the request.
Corresponds to the JSON property integrationVersions
9088 9089 9090 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9088 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
9094 9095 9096 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9094 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
9099 9100 9101 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9099 def @no_permission end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9107 9108 9109 9110 9111 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9107 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 |