Sha256: 66e32e38d190729eeaff02c3439acbdcd0aed315c692f4f366fa76463f419da3

Contents?: true

Size: 874 Bytes

Versions: 41

Compression:

Stored size: 874 Bytes

Contents

require "fog/core/collection"
require "fog/google/models/pubsub/topic"

module Fog
  module Google
    class Pubsub
      class Topics < Fog::Collection
        model Fog::Google::Pubsub::Topic

        # Lists all topics that exist on the project.
        #
        # @return [Array<Fog::Google::Pubsub::Topic>] list of topics
        def all
          data = service.list_topics.to_h[:topics] || []
          load(data)
        end

        # Retrieves a topic by name
        #
        # @param topic_name [String] name of topic to retrieve
        # @return [Fog::Google::Pubsub::Topic] topic found, or nil if not found
        def get(topic_name)
          topic = service.get_topic(topic_name).to_h
          new(topic)
        rescue ::Google::Apis::ClientError => e
          raise e unless e.status_code == 404
          nil
        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/models/pubsub/topics.rb
fog-google-1.24.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.23.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.22.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.21.1 lib/fog/google/models/pubsub/topics.rb
fog-google-1.21.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.20.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.19.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.18.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.17.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.16.1 lib/fog/google/models/pubsub/topics.rb
fog-google-1.16.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.15.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.14.0 lib/fog/google/models/pubsub/topics.rb
gitlab-fog-google-1.14.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.13.0 lib/fog/google/models/pubsub/topics.rb
gitlab-fog-google-1.13.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.12.1 lib/fog/google/models/pubsub/topics.rb
fog-google-1.12.0 lib/fog/google/models/pubsub/topics.rb
fog-google-1.11.0 lib/fog/google/models/pubsub/topics.rb