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.



6968
6969
6970
# File 'lib/google/apis/apigee_v1/classes.rb', line 6968

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



6960
6961
6962
# File 'lib/google/apis/apigee_v1/classes.rb', line 6960

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)


6966
6967
6968
# File 'lib/google/apis/apigee_v1/classes.rb', line 6966

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6973
6974
6975
6976
# File 'lib/google/apis/apigee_v1/classes.rb', line 6973

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