class Google::Apis::PrivatecaV1::ListCaPoolsResponse

Response message for CertificateAuthorityService.ListCaPools.

Attributes

ca_pools[RW]

The list of CaPools. Corresponds to the JSON property `caPools` @return [Array<Google::Apis::PrivatecaV1::CaPool>]

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_v1/classes.rb, line 1512
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_v1/classes.rb, line 1517
def update!(**args)
  @ca_pools = args[:ca_pools] if args.key?(:ca_pools)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end