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

Version Path
fog-google-1.24.1 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.24.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.23.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.22.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.21.1 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.21.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.20.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.19.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.18.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.17.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.16.1 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.16.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.15.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.14.0 lib/fog/google/requests/pubsub/create_topic.rb
gitlab-fog-google-1.14.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.13.0 lib/fog/google/requests/pubsub/create_topic.rb
gitlab-fog-google-1.13.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.12.1 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.12.0 lib/fog/google/requests/pubsub/create_topic.rb
fog-google-1.11.0 lib/fog/google/requests/pubsub/create_topic.rb