class Google::Apis::PrivatecaV1beta1::ListReusableConfigsResponse

Response message for CertificateAuthorityService.ListReusableConfigs.

Attributes

next_page_token[RW]

A token to retrieve next page of results. Pass this value in ListReusableConfigsRequest.next_page_token to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

reusable_configs[RW]

The list of ReusableConfigs. Corresponds to the JSON property `reusableConfigs` @return [Array<Google::Apis::PrivatecaV1beta1::ReusableConfig>]

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 1448
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 1453
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @reusable_configs = args[:reusable_configs] if args.key?(:reusable_configs)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end