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.
6950 6951 6952 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6950 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
6942 6943 6944 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6942 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
6948 6949 6950 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6948 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6955 6956 6957 6958 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6955 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 |