Class: Google::Apis::CertificatemanagerV1::ListCertificateIssuanceConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::ListCertificateIssuanceConfigsResponse
- 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 ListCertificateIssuanceConfigs
method.
Instance Attribute Summary collapse
-
#certificate_issuance_configs ⇒ Array<Google::Apis::CertificatemanagerV1::CertificateIssuanceConfig>
A list of certificate configs 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) ⇒ ListCertificateIssuanceConfigsResponse
constructor
A new instance of ListCertificateIssuanceConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCertificateIssuanceConfigsResponse
Returns a new instance of ListCertificateIssuanceConfigsResponse.
643 644 645 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 643 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificate_issuance_configs ⇒ Array<Google::Apis::CertificatemanagerV1::CertificateIssuanceConfig>
A list of certificate configs for the parent resource.
Corresponds to the JSON property certificateIssuanceConfigs
629 630 631 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 629 def certificate_issuance_configs @certificate_issuance_configs 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
636 637 638 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 636 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
641 642 643 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 641 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
648 649 650 651 652 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 648 def update!(**args) @certificate_issuance_configs = args[:certificate_issuance_configs] if args.key?(:certificate_issuance_configs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |