Class: Google::Apis::PrivatecaV1::ListCertificateAuthoritiesResponse
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1::ListCertificateAuthoritiesResponse
- 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.ListCertificateAuthorities.
Instance Attribute Summary collapse
-
#certificate_authorities ⇒ Array<Google::Apis::PrivatecaV1::CertificateAuthority>
The list of CertificateAuthorities.
-
#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) ⇒ ListCertificateAuthoritiesResponse
constructor
A new instance of ListCertificateAuthoritiesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCertificateAuthoritiesResponse
Returns a new instance of ListCertificateAuthoritiesResponse.
1621 1622 1623 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1621 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate_authorities ⇒ Array<Google::Apis::PrivatecaV1::CertificateAuthority>
The list of CertificateAuthorities.
Corresponds to the JSON property certificateAuthorities
1607 1608 1609 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1607 def @certificate_authorities end |
#next_page_token ⇒ String
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
1614 1615 1616 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1614 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
1619 1620 1621 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1619 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1626 1627 1628 1629 1630 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1626 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 |