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.



7451
7452
7453
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7451

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



7437
7438
7439
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7437

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)


7443
7444
7445
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7443

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)


7448
7449
7450
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7448

def no_permission
  @no_permission
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7456
7457
7458
7459
7460
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7456

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