Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListCertificatesResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListCertificatesResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaListCertificatesResponse.



7397
7398
7399
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7397

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

Instance Attribute Details

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

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



7390
7391
7392
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7390

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)


7395
7396
7397
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7395

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7402
7403
7404
7405
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7402

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