Sha256: b8c10f7609eecf9df681c324cfc196093bdb5dde1f3db9d1cde259398b64d336
Contents?: true
Size: 506 Bytes
Versions: 20
Compression:
Stored size: 506 Bytes
Contents
module Fog module Compute class Google class Mock def delete_route(_identity) Fog::Mock.not_implemented end end class Real # Deletes the specified Route resource. # # @param identity [String] Name of the route to delete # @see https://cloud.google.com/compute/docs/reference/latest/routes/delete def delete_route(identity) @compute.delete_route(@project, identity) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems