Class: Google::Apis::PrivatecaV1beta1::ListCertificatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1beta1::ListCertificatesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1beta1/classes.rb,
lib/google/apis/privateca_v1beta1/representations.rb,
lib/google/apis/privateca_v1beta1/representations.rb
Overview
Response message for CertificateAuthorityService.ListCertificates.
Instance Attribute Summary collapse
-
#certificates ⇒ Array<Google::Apis::PrivatecaV1beta1::Certificate>
The list of Certificates.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#unreachable ⇒ Array<String>
A list of locations (e.g. "us-west1") that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCertificatesResponse
constructor
A new instance of ListCertificatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCertificatesResponse
Returns a new instance of ListCertificatesResponse.
1365 1366 1367 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1365 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificates ⇒ Array<Google::Apis::PrivatecaV1beta1::Certificate>
The list of Certificates.
Corresponds to the JSON property certificates
1352 1353 1354 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1352 def certificates @certificates end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in
ListCertificatesRequest.next_page_token to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
1358 1359 1360 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1358 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
A list of locations (e.g. "us-west1") that could not be reached.
Corresponds to the JSON property unreachable
1363 1364 1365 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1363 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1370 1371 1372 1373 1374 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1370 def update!(**args) @certificates = args[:certificates] if args.key?(:certificates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |