Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse

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

Instance Method Summary collapse

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_versionsArray<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_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)


9094
9095
9096
# File 'lib/google/apis/integrations_v1/classes.rb', line 9094

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)


9099
9100
9101
# File 'lib/google/apis/integrations_v1/classes.rb', line 9099

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