Sha256: f283d9ec57abeebbb84579e5e14db051d4a9349c86434744ff431767aaf4d8df
Contents?: true
Size: 538 Bytes
Versions: 21
Compression:
Stored size: 538 Bytes
Contents
module Fog module DNS class Google ## # Fetches the representation of an existing Change. # # @see https://developers.google.com/cloud-dns/api/v1/changes/get class Real def get_change(zone_name_or_id, identity) @dns.get_change(@project, zone_name_or_id, identity) end end class Mock def get_change(_zone_name_or_id, _identity) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems