Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDnsZonesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDnsZonesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Response for list DNS zones.
Instance Attribute Summary collapse
-
#dns_zones ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DnsZone>
DNS zones in a given organization.
-
#next_page_token ⇒ String
Page token that you can include in an
ListDnsZonesrequest to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDnsZonesResponse
constructor
A new instance of GoogleCloudApigeeV1ListDnsZonesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDnsZonesResponse
Returns a new instance of GoogleCloudApigeeV1ListDnsZonesResponse.
7000 7001 7002 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7000 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dns_zones ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DnsZone>
DNS zones in a given organization.
Corresponds to the JSON property dnsZones
6992 6993 6994 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6992 def dns_zones @dns_zones end |
#next_page_token ⇒ String
Page token that you can include in an ListDnsZones request to retrieve the
next page. If omitted, no subsequent pages exist.
Corresponds to the JSON property nextPageToken
6998 6999 7000 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6998 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7005 7006 7007 7008 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7005 def update!(**args) @dns_zones = args[:dns_zones] if args.key?(:dns_zones) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |