Class: Google::Apis::CertificatemanagerV1::ListDnsAuthorizationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::ListDnsAuthorizationsResponse
- 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 ListDnsAuthorizations
method.
Instance Attribute Summary collapse
-
#dns_authorizations ⇒ Array<Google::Apis::CertificatemanagerV1::DnsAuthorization>
A list of dns authorizations 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) ⇒ ListDnsAuthorizationsResponse
constructor
A new instance of ListDnsAuthorizationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDnsAuthorizationsResponse
Returns a new instance of ListDnsAuthorizationsResponse.
775 776 777 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 775 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dns_authorizations ⇒ Array<Google::Apis::CertificatemanagerV1::DnsAuthorization>
A list of dns authorizations for the parent resource.
Corresponds to the JSON property dnsAuthorizations
761 762 763 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 761 def @dns_authorizations 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
768 769 770 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 768 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
773 774 775 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 773 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
780 781 782 783 784 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 780 def update!(**args) @dns_authorizations = args[:dns_authorizations] if args.key?(:dns_authorizations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |