Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDnsZonesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_zonesArray<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_tokenString

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

Returns:

  • (String)


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