class Google::Apis::PrivatecaV1beta1::ListCertificateAuthoritiesResponse
Response message for CertificateAuthorityService.ListCertificateAuthorities.
Attributes
next_page_token[RW]
A token to retrieve next page of results. Pass this value in ListCertificateAuthoritiesRequest.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 1299 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 1304 def update!(**args) @certificate_authorities = args[:certificate_authorities] if args.key?(:certificate_authorities) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end