class Contentful::Management::ClientUploadMethodsFactory

Wrapper for Upload API for usage from within Client @private

Public Instance Methods

all(*) click to toggle source
# File lib/contentful/management/client_upload_methods_factory.rb, line 16
def all(*)
  fail 'Not supported'
end
create(attributes) click to toggle source
# File lib/contentful/management/client_upload_methods_factory.rb, line 24
def create(attributes)
  associated_class.create(client, @space_id, attributes)
end
find(resource_id) click to toggle source
# File lib/contentful/management/client_upload_methods_factory.rb, line 20
def find(resource_id)
  associated_class.find(client, @space_id, resource_id)
end
new(*) click to toggle source
# File lib/contentful/management/client_upload_methods_factory.rb, line 12
def new(*)
  fail 'Not supported'
end