Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListCertificatesResponse

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 to list Certificates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListCertificatesResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaListCertificatesResponse.



9014
9015
9016
# File 'lib/google/apis/integrations_v1/classes.rb', line 9014

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#certificatesArray<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCertificate>

The list of Certificates retrieved. Corresponds to the JSON property certificates



9007
9008
9009
# File 'lib/google/apis/integrations_v1/classes.rb', line 9007

def certificates
  @certificates
end

#next_page_tokenString

The token used to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


9012
9013
9014
# File 'lib/google/apis/integrations_v1/classes.rb', line 9012

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9019
9020
9021
9022
# File 'lib/google/apis/integrations_v1/classes.rb', line 9019

def update!(**args)
  @certificates = args[:certificates] if args.key?(:certificates)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end