コード例 #1
0
def delete_bundle(api_key, uuid):
    "Delete a bundle, identified by @uuid"
    return _delete_object(api_key, "collectionbundle", uuid)
コード例 #2
0
def delete_collection(api_key, uuid):
    "Delete a collection, identified by @uuid"
    return _delete_object(api_key, "collection", uuid)
コード例 #3
0
def delete_tag(api_key, uuid):
    "Delete a tag, identified by @uuid"
    return _delete_object(api_key, "tag", uuid)
コード例 #4
0
def delete_app(api_key, uuid):
    "Delete an application, identified by @uuid"
    return _delete_object(api_key, "app", uuid)
コード例 #5
0
def delete_token(api_key, token):
    "Delete a token, identified by @token"
    return _delete_object(api_key, "token", token)
コード例 #6
0
def delete_media(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "media", uuid)
コード例 #7
0
def delete_item(api_key, uuid):
    "Delete an item, identified by @uuid"
    return _delete_object(api_key, "item", uuid)
コード例 #8
0
def delete_image(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "image", uuid)
コード例 #9
0
def delete_collection(api_key, uuid):
    "Delete a collection, identified by @uuid"
    return _delete_object(api_key, "collection", uuid)
コード例 #10
0
def delete_item(api_key, uuid):
    "Delete an item, identified by @uuid"
    return _delete_object(api_key, "item", uuid)
コード例 #11
0
def delete_media(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "image", uuid)
コード例 #12
0
def delete_token(api_key, token):
    "Delete a token, identified by @token"
    return _delete_object(api_key, "token", token)
コード例 #13
0
def delete_bundle(api_key, uuid):
    "Delete a bundle, identified by @uuid"
    return _delete_object(api_key, "collectionbundle", uuid)
コード例 #14
0
def delete_app(api_key, uuid):
    "Delete an application, identified by @uuid"
    return _delete_object(api_key, "app", uuid)
コード例 #15
0
def delete_tag(api_key, uuid):
    "Delete a tag, identified by @uuid"
    return _delete_object(api_key, "tag", uuid)