module Contentful::Management::Resource::AllPublished

Wrapper Class for Resources with '/public' API calls

Public Instance Methods

all_published(client, space_id, environment_id, parameters = {}) click to toggle source

Gets a collection of published resources.

@param [Contentful::Management::Client] client @param [String] space_id @param [Hash] parameters @see _ For complete option list: www.contentful.com/developers/docs/references/content-delivery-api/#/reference/search-parameters @option parameters [String] 'sys.id' Entry ID @option parameters [String] :content_type @option parameters [Integer] :limit @option parameters [Integer] :skip @deprecated This call will be soon removed from the API except for Content Types

@return [Contentful::Management::Array<Contentful::Management::Resource>]

# File lib/contentful/management/resource/all_published.rb, line 19
def all_published(client, space_id, environment_id, parameters = {})
  client_association_class.new(client, space_id, environment_id).all_published(parameters)
end