Class: Google::Apis::CertificatemanagerV1::ListCertificateMapEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::ListCertificateMapEntriesResponse
- 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 ListCertificateMapEntries
method.
Instance Attribute Summary collapse
-
#certificate_map_entries ⇒ Array<Google::Apis::CertificatemanagerV1::CertificateMapEntry>
A list of certificate map entries 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>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCertificateMapEntriesResponse
constructor
A new instance of ListCertificateMapEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCertificateMapEntriesResponse
Returns a new instance of ListCertificateMapEntriesResponse.
676 677 678 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 676 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate_map_entries ⇒ Array<Google::Apis::CertificatemanagerV1::CertificateMapEntry>
A list of certificate map entries for the parent resource.
Corresponds to the JSON property certificateMapEntries
662 663 664 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 662 def certificate_map_entries @certificate_map_entries 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
669 670 671 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 669 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
674 675 676 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 674 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
681 682 683 684 685 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 681 def update!(**args) @certificate_map_entries = args[:certificate_map_entries] if args.key?(:certificate_map_entries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |