Class: Google::Apis::PrivatecaV1::ListCertificateRevocationListsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1::ListCertificateRevocationListsResponse
- 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. ListCertificateRevocationLists.
Instance Attribute Summary collapse
-
#certificate_revocation_lists ⇒ Array<Google::Apis::PrivatecaV1::CertificateRevocationList>
The list of CertificateRevocationLists.
-
#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) ⇒ ListCertificateRevocationListsResponse
constructor
A new instance of ListCertificateRevocationListsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCertificateRevocationListsResponse
Returns a new instance of ListCertificateRevocationListsResponse.
1680 1681 1682 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1680 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate_revocation_lists ⇒ Array<Google::Apis::PrivatecaV1::CertificateRevocationList>
The list of CertificateRevocationLists.
Corresponds to the JSON property certificateRevocationLists
1666 1667 1668 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1666 def certificate_revocation_lists @certificate_revocation_lists end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in
ListCertificateRevocationListsRequest.next_page_token to retrieve the next
page of results.
Corresponds to the JSON property nextPageToken
1673 1674 1675 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1673 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
1678 1679 1680 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1678 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1685 1686 1687 1688 1689 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1685 def update!(**args) @certificate_revocation_lists = args[:certificate_revocation_lists] if args.key?(:certificate_revocation_lists) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |