Sha256: 2164d9d71417c6bd549017c935f2e19819c35857900758fb59c6b1c8d065eefa
Contents?: true
Size: 634 Bytes
Versions: 41
Compression:
Stored size: 634 Bytes
Contents
module Fog module Google class Pubsub class Real # Create a topic on the remote service. # # @param topic_name [#to_s] name of topic to create; note that it must # obey the naming rules for a topic (e.g. # 'projects/myProject/topics/my_topic') # @see https://cloud.google.com/pubsub/reference/rest/v1/projects.topics/create def create_topic(topic_name) @pubsub.create_topic(topic_name) end end class Mock def create_topic(_topic_name) raise Fog::Errors::MockNotImplemented end end end end end
Version data entries
41 entries across 41 versions & 2 rubygems