Class: Google::Apis::CertificatemanagerV1::ListCertificatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::ListCertificatesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/certificatemanager_v1/classes.rb,
lib/google/apis/certificatemanager_v1/representations.rb,
lib/google/apis/certificatemanager_v1/representations.rb
Overview
Response for the ListCertificates
method.
Instance Attribute Summary collapse
-
#certificates ⇒ Array<Google::Apis::CertificatemanagerV1::Certificate>
A list of certificates for the parent resource.
-
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included. -
#unreachable ⇒ Array<String>
A list of locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCertificatesResponse
constructor
A new instance of ListCertificatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCertificatesResponse
Returns a new instance of ListCertificatesResponse.
742 743 744 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 742 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificates ⇒ Array<Google::Apis::CertificatemanagerV1::Certificate>
A list of certificates for the parent resource.
Corresponds to the JSON property certificates
728 729 730 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 728 def certificates @certificates end |
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included. To get the next set of results, call this method
again using the value of next_page_token
as page_token
.
Corresponds to the JSON property nextPageToken
735 736 737 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 735 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
A list of locations that could not be reached.
Corresponds to the JSON property unreachable
740 741 742 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 740 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
747 748 749 750 751 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 747 def update!(**args) @certificates = args[:certificates] if args.key?(:certificates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |