class Fog::DNS::Google::Changes
Public Instance Methods
all()
click to toggle source
get(identity)
click to toggle source
Fetches the representation of an existing Change
@param [String] identity Change identity @return [Fog::DNS::Google::Change] Change resource
# File lib/fog/google/models/dns/changes.rb, line 30 def get(identity) requires :zone if change = service.get_change(zone.identity, identity).body new(change) end rescue Fog::Errors::NotFound nil end