Class: Google::Apis::PrivatecaV1::ListCaPoolsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1::ListCaPoolsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1/classes.rb,
lib/google/apis/privateca_v1/representations.rb,
lib/google/apis/privateca_v1/representations.rb
Overview
Response message for CertificateAuthorityService.ListCaPools.
Instance Attribute Summary collapse
-
#ca_pools ⇒ Array<Google::Apis::PrivatecaV1::CaPool>
The list of CaPools.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#unreachable ⇒ Array<String>
A list of locations (e.g. "us-west1") that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCaPoolsResponse
constructor
A new instance of ListCaPoolsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCaPoolsResponse
Returns a new instance of ListCaPoolsResponse.
1714 1715 1716 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1714 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ca_pools ⇒ Array<Google::Apis::PrivatecaV1::CaPool>
The list of CaPools.
Corresponds to the JSON property caPools
1700 1701 1702 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1700 def ca_pools @ca_pools end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in
ListCertificateAuthoritiesRequest.page_token to retrieve the next page of
results.
Corresponds to the JSON property nextPageToken
1707 1708 1709 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1707 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
A list of locations (e.g. "us-west1") that could not be reached.
Corresponds to the JSON property unreachable
1712 1713 1714 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1712 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1719 1720 1721 1722 1723 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1719 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 |