Skip to content

Latest commit

 

History

History
429 lines (294 loc) · 14.6 KB

storage-account-services.inc

File metadata and controls

429 lines (294 loc) · 14.6 KB

Accounts

Lists containers for an account. Creates, updates, shows, and deletes account metadata. For more information and concepts about accounts see Object Storage API overview.

Show account details and list containers

.. rest_method::  GET /v1/{account}

Shows details for an account and lists containers, sorted by name, in the account.

The sort order for the name is based on a binary comparison, a single built-in collating sequence that compares string data by using the SQLite memcmp() function, regardless of text encoding. See Collating Sequences.

The response body returns a list of containers. The default response (text/plain) returns one container per line.

If you use query parameters to page through a long list of containers, you have reached the end of the list if the number of items in the returned list is less than the request limit value. The list contains more items if the number of items in the returned list equals the limit value.

When asking for a list of containers and there are none, the response behavior changes depending on whether the request format is text, JSON, or XML. For a text response, you get a 204 , because there is no content. However, for a JSON or XML response, you get a 200 with content indicating an empty array.

Example requests and responses:

  • Show account details and list containers and ask for a JSON response:

    .. literalinclude:: samples/account-containers-list-http-request-json.txt
    
    .. literalinclude:: samples/account-containers-list-http-response-json.txt
    
    .. literalinclude:: samples/account-containers-list-response.json
    
    
  • Show account details and list containers and ask for an XML response:

    .. literalinclude:: samples/account-containers-list-http-request-xml.txt
    
    .. literalinclude:: samples/account-containers-list-http-response-xml.txt
    
    .. literalinclude:: samples/account-containers-list-response.xml
    
    

If the request succeeds, the operation returns one of these status codes:

  • OK (200). Success. The response body lists the containers.
  • No Content (204). Success. The response body shows no containers. Either the account has no containers or you are paging through a long list of names by using the marker, limit, or end_marker query parameter and you have reached the end of the list.

Normal response codes: 200 Error response codes:204,

Request

.. rest_parameters:: parameters.yaml

   - account: account
   - limit: limit
   - marker: marker
   - end_marker: end_marker
   - format: format
   - prefix: prefix
   - delimiter: delimiter
   - X-Auth-Token: X-Auth-Token
   - X-Service-Token: X-Service-Token
   - X-Newest: X-Newest
   - Accept: Accept
   - X-Trans-Id-Extra: X-Trans-Id-Extra


Response Parameters

.. rest_parameters:: parameters.yaml

   - Content-Length: Content-Length_listing_resp
   - X-Account-Meta-name: X-Account-Meta-name
   - X-Account-Meta-Temp-URL-Key: X-Account-Meta-Temp-URL-Key_resp
   - X-Account-Meta-Temp-URL-Key-2: X-Account-Meta-Temp-URL-Key-2_resp
   - X-Timestamp: X-Timestamp
   - X-Trans-Id: X-Trans-Id
   - X-Openstack-Request-Id: X-Openstack-Request-Id
   - Date: Date
   - X-Account-Bytes-Used: X-Account-Bytes-Used
   - X-Account-Container-Count: X-Account-Container-Count
   - X-Account-Object-Count: X-Account-Object-Count
   - X-Account-Storage-Policy-name-Bytes-Used: X-Account-Storage-Policy-name-Bytes-Used
   - X-Account-Storage-Policy-name-Container-Count: X-Account-Storage-Policy-name-Container-Count
   - X-Account-Storage-Policy-name-Object-Count: X-Account-Storage-Policy-name-Object-Count
   - X-Account-Meta-Quota-Bytes: X-Account-Meta-Quota-Bytes_resp
   - X-Account-Access-Control: X-Account-Access-Control_resp
   - Content-Type: Content-Type_listing_resp
   - count: count
   - bytes: bytes_in_account_get
   - name: name_in_account_get


Create, update, or delete account metadata

.. rest_method::  POST /v1/{account}

Creates, updates, or deletes account metadata.

To create, update, or delete custom metadata, use the X-Account-Meta-{name} request header, where {name} is the name of the metadata item.

Account metadata operations work differently than how object metadata operations work. Depending on the contents of your POST account metadata request, the Object Storage API updates the metadata as shown in the following table:

Account metadata operations

POST request header contains Result

A metadata key without a value.

The metadata key already exists for the account.

The API removes the metadata item from the account.

A metadata key without a value.

The metadata key does not already exist for the account.

The API ignores the metadata key.

A metadata key value.

The metadata key already exists for the account.

The API updates the metadata key value for the account.

A metadata key value.

The metadata key does not already exist for the account.

The API adds the metadata key and value pair, or item, to the account.

One or more account metadata items are omitted.

The metadata items already exist for the account.

The API does not change the existing metadata items.

To delete a metadata header, send an empty value for that header, such as for the X-Account-Meta-Book header. If the tool you use to communicate with Object Storage, such as an older version of cURL, does not support empty headers, send the X-Remove-Account- Meta-{name} header with an arbitrary value. For example, X-Remove-Account-Meta-Book: x. The operation ignores the arbitrary value.

Subsequent requests for the same key and value pair overwrite the existing value.

If the container already has other custom metadata items, a request to create, update, or delete metadata does not affect those items.

This operation does not accept a request body.

Example requests and responses:

  • Create account metadata:

    curl -i $publicURL -X POST -H "X-Auth-Token: $token" -H "X-Account-Meta-Book: MobyDick" -H "X-Account-Meta-Subject: Literature"
    
    HTTP/1.1 204 No Content
    Content-Length: 0
    Content-Type: text/html; charset=UTF-8
    X-Trans-Id: tx8c2dd6aee35442a4a5646-0052d954fb
    X-Openstack-Request-Id: tx8c2dd6aee35442a4a5646-0052d954fb
    Date: Fri, 17 Jan 2014 16:06:19 GMT
    
  • Update account metadata:

    curl -i $publicURL -X POST -H "X-Auth-Token: $token" -H "X-Account-Meta-Subject: AmericanLiterature"
    
    HTTP/1.1 204 No Content
    Content-Length: 0
    Content-Type: text/html; charset=UTF-8
    X-Trans-Id: tx1439b96137364ab581156-0052d95532
    X-Openstack-Request-Id: tx1439b96137364ab581156-0052d95532
    Date: Fri, 17 Jan 2014 16:07:14 GMT
    
  • Delete account metadata:

    curl -i $publicURL -X POST -H "X-Auth-Token: $token" -H "X-Remove-Account-Meta-Subject: x"
    
    HTTP/1.1 204 No Content
    Content-Length: 0
    Content-Type: text/html; charset=UTF-8
    X-Trans-Id: tx411cf57701424da99948a-0052d9556f
    X-Openstack-Request-Id: tx411cf57701424da99948a-0052d9556f
    Date: Fri, 17 Jan 2014 16:08:15 GMT
    

If the request succeeds, the operation returns the No Content (204) response code.

To confirm your changes, issue a show account metadata request.

Error response codes:204,

Request

.. rest_parameters:: parameters.yaml

   - account: account
   - X-Auth-Token: X-Auth-Token
   - X-Service-Token: X-Service-Token
   - X-Account-Meta-Temp-URL-Key: X-Account-Meta-Temp-URL-Key_req
   - X-Account-Meta-Temp-URL-Key-2: X-Account-Meta-Temp-URL-Key-2_req
   - X-Account-Meta-name: X-Account-Meta-name_req
   - X-Remove-Account-name: X-Remove-Account-name
   - X-Account-Access-Control: X-Account-Access-Control_req
   - X-Trans-Id-Extra: X-Trans-Id-Extra


Response Parameters

.. rest_parameters:: parameters.yaml

   - Date: Date
   - X-Timestamp: X-Timestamp
   - Content-Length: Content-Length_cud_resp
   - Content-Type: Content-Type_cud_resp
   - X-Trans-Id: X-Trans-Id
   - X-Openstack-Request-Id: X-Openstack-Request-Id


Show account metadata

.. rest_method::  HEAD /v1/{account}

Shows metadata for an account.

Metadata for the account includes:

  • Number of containers
  • Number of objects
  • Total number of bytes that are stored in Object Storage for the account

Because the storage system can store large amounts of data, take care when you represent the total bytes response as an integer; when possible, convert it to a 64-bit unsigned integer if your platform supports that primitive type.

Do not include metadata headers in this request.

Show account metadata request:

curl -i $publicURL -X HEAD -H "X-Auth-Token: $token"
HTTP/1.1 204 No Content
Content-Length: 0
X-Account-Object-Count: 1
X-Account-Meta-Book: MobyDick
X-Timestamp: 1389453423.35964
X-Account-Bytes-Used: 14
X-Account-Container-Count: 2
Content-Type: text/plain; charset=utf-8
Accept-Ranges: bytes
X-Trans-Id: txafb3504870144b8ca40f7-0052d955d4
X-Openstack-Request-Id: txafb3504870144b8ca40f7-0052d955d4
Date: Fri, 17 Jan 2014 16:09:56 GMT

If the account or authentication token is not valid, the operation returns the Unauthorized (401) response code.

Error response codes:204,401,

Request

.. rest_parameters:: parameters.yaml

   - account: account
   - X-Auth-Token: X-Auth-Token
   - X-Service-Token: X-Service-Token
   - X-Newest: X-Newest
   - X-Trans-Id-Extra: X-Trans-Id-Extra


Response Parameters

.. rest_parameters:: parameters.yaml

   - Content-Length: Content-Length_cud_resp
   - X-Account-Meta-name: X-Account-Meta-name
   - X-Account-Meta-Temp-URL-Key: X-Account-Meta-Temp-URL-Key_resp
   - X-Account-Meta-Temp-URL-Key-2: X-Account-Meta-Temp-URL-Key-2_resp
   - X-Timestamp: X-Timestamp
   - X-Trans-Id: X-Trans-Id
   - X-Openstack-Request-Id: X-Openstack-Request-Id
   - Date: Date
   - X-Account-Bytes-Used: X-Account-Bytes-Used
   - X-Account-Object-Count: X-Account-Object-Count
   - X-Account-Container-Count: X-Account-Container-Count
   - X-Account-Storage-Policy-name-Bytes-Used: X-Account-Storage-Policy-name-Bytes-Used
   - X-Account-Storage-Policy-name-Container-Count: X-Account-Storage-Policy-name-Container-Count
   - X-Account-Storage-Policy-name-Object-Count: X-Account-Storage-Policy-name-Object-Count
   - X-Account-Meta-Quota-Bytes: X-Account-Meta-Quota-Bytes_resp
   - X-Account-Access-Control: X-Account-Access-Control_resp
   - Content-Type: Content-Type_cud_resp


Delete the specified account

.. rest_method::  DELETE /v1/{account}

Deletes the specified account when a reseller admin issues this request. Accounts are only deleted by (1) having a reseller admin level auth token (2) sending a DELETE to a proxy server for the account to be deleted and (3) that proxy server having the allow_account_management" config option set to true.

Note that an issuing a DELETE request simply marks the account for deletion later as outlined in the link: https://docs.openstack.org/swift/latest/overview_reaper.html.

Take care when performing this operation because deleting an account is a one-way operation that is not trivially recoverable. It's crucial to note that in an OpenStack context, you should delete an account after the project/tenant has been deleted from Keystone.

curl -i $publicURL -X DELETE -H 'X-Auth-Token: $<reseller admin token>'
HTTP/1.1 204 No Content
Content-Length: 0
Content-Type: text/html; charset=UTF-8
X-Account-Status: Deleted
X-Trans-Id: tx91ce60a640cc42eca198a-006128c180
X-Openstack-Request-Id: tx91ce60a640cc42eca198a-006128c180
Date: Fri, 27 Aug 2021 11:42:08 GMT

If the account or authentication token is not valid, the operation returns the Unauthorized (401). If you try to delete an account with a non-admin token, a 403 Forbidden response code is returned. If you give a non-existent account or an invalid URL, a 404 Not Found response code is returned.

Error response codes:204,401,403,404.

Request

.. rest_parameters:: parameters.yaml

   - account: account
   - X-Auth-Token: X-Auth-Token

Response Parameters

.. rest_parameters:: parameters.yaml

   - Date: Date
   - X-Timestamp: X-Timestamp
   - Content-Length: Content-Length_cud_resp
   - Content-Type: Content-Type_cud_resp
   - X-Trans-Id: X-Trans-Id
   - X-Openstack-Request-Id: X-Openstack-Request-Id