Sha256: 661f6260f0d3ca924017a5712134ff753d4fb1906eb4f46c9e56fbf997c1b5bd
Contents?: true
Size: 558 Bytes
Versions: 21
Compression:
Stored size: 558 Bytes
Contents
module Fog module Compute class Google class Mock def delete_route(_identity) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: 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
21 entries across 21 versions & 2 rubygems