module Uiza::APIResource::EntityResource
Public Instance Methods
create_entity(params)
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 4 def create_entity params Uiza::Entity.create params end
delete_entity(id)
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 20 def delete_entity id Uiza::Entity.delete id end
get_aws_upload_key_entity()
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 36 def get_aws_upload_key_entity Uiza::Entity.get_aws_upload_key end
get_status_publish_entity(id)
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 32 def get_status_publish_entity id Uiza::Entity.get_status_publish id end
list_entity(params = {})
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 12 def list_entity params = {} Uiza::Entity.list params end
publish_entity(id)
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 28 def publish_entity id Uiza::Entity.publish id end
retrieve_entity(id)
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 8 def retrieve_entity id Uiza::Entity.retrieve id end
search_entity(keyword)
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 24 def search_entity keyword Uiza::Entity.search keyword end
update_entity(params)
click to toggle source
# File lib/uiza/api_resource/entity_resource.rb, line 16 def update_entity params Uiza::Entity.update params end