Sha256: ec1e89df60ab6c8dfda8f0aacdaabba9b28a6cad4801d45ac0f0fcef78ad3418
Contents?: true
Size: 486 Bytes
Versions: 20
Compression:
Stored size: 486 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) Fog::Mock.not_implemented end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems