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