class Google::Apis::PrivatecaV1beta1::ListCertificatesResponse
Response message for CertificateAuthorityService.ListCertificates.
Attributes
certificates[RW]
The list of Certificates. Corresponds to the JSON property `certificates` @return [Array<Google::Apis::PrivatecaV1beta1::Certificate>]
next_page_token[RW]
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` @return [String]
unreachable[RW]
A list of locations (e.g. “us-west1”) that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/privateca_v1beta1/classes.rb, line 1365 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# 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