Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListCertificatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListCertificatesResponse
- 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
-
#certificates ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCertificate>
The list of Certificates retrieved.
-
#next_page_token ⇒ String
The token used to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListCertificatesResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListCertificatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListCertificatesResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListCertificatesResponse.
7543 7544 7545 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7543 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificates ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCertificate>
The list of Certificates retrieved.
Corresponds to the JSON property certificates
7536 7537 7538 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7536 def certificates @certificates end |
#next_page_token ⇒ String
The token used to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
7541 7542 7543 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7541 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7548 7549 7550 7551 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7548 def update!(**args) @certificates = args[:certificates] if args.key?(:certificates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |