Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_versionsArray<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_tokenString

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

Returns:

  • (String)


7349
7350
7351
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7349

def next_page_token
  @next_page_token
end

#no_permissionBoolean Also known as: no_permission?

Whether the user has no permission on the version or not. Corresponds to the JSON property noPermission

Returns:

  • (Boolean)


7354
7355
7356
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7354

def no_permission
  @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