Class: Google::Apis::PrivatecaV1beta1::ListReusableConfigsResponse

Inherits:
Object
  • Object
show all
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.ListReusableConfigs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListReusableConfigsResponse

Returns a new instance of ListReusableConfigsResponse.



2519
2520
2521
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2519

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


2507
2508
2509
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2507

def next_page_token
  @next_page_token
end

#reusable_configsArray<Google::Apis::PrivatecaV1beta1::ReusableConfig>

The list of ReusableConfigs. Corresponds to the JSON property reusableConfigs



2512
2513
2514
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2512

def reusable_configs
  @reusable_configs
end

#unreachableArray<String>

A list of locations (e.g. "us-west1") that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


2517
2518
2519
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2517

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2524
2525
2526
2527
2528
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2524

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