Sha256: 30490951a21a0dcae99d2dfeb80609c32494db7e5ae265577e0bf47c8988c149
Contents?: true
Size: 513 Bytes
Versions: 41
Compression:
Stored size: 513 Bytes
Contents
module Fog module Google class Pubsub class Real # Delete a topic on the remote service. # # @param topic_name [#to_s] name of topic to delete # @see https://cloud.google.com/pubsub/reference/rest/v1/projects.topics/delete def delete_topic(topic_name) @pubsub.delete_topic(topic_name) end end class Mock def delete_topic(_topic_name) raise Fog::Errors::MockNotImplemented end end end end end
Version data entries
41 entries across 41 versions & 2 rubygems