Adds Object API to API Quick Start
Change-Id: If8603ec2fdf9283848e2c99e9f981cd4b82195fa
This commit is contained in:
parent
02d8fb5a28
commit
3bd8540950
@ -181,4 +181,55 @@
|
||||
<section xml:id="Identity-API-Examples"><title>Identity API Examples</title>
|
||||
<para>POST /v2.0/tokens</para>
|
||||
<para>GET /v2.0/tenants</para></section>
|
||||
<section xml:id="Object-API-Examples"><title>Object API Examples</title>
|
||||
<variablelist>
|
||||
<title>Query Parameters</title>
|
||||
<varlistentry>
|
||||
<term><code>limit</code></term>
|
||||
<listitem>
|
||||
<para>For an integer value <inlineequation>
|
||||
<mathphrase><emphasis>n</emphasis></mathphrase>
|
||||
</inlineequation>, limits the number of results to at most <inlineequation>
|
||||
<mathphrase><emphasis>n</emphasis></mathphrase>
|
||||
</inlineequation> values.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><code>marker</code></term>
|
||||
<listitem>
|
||||
<para>Given a string value <inlineequation>
|
||||
<mathphrase><emphasis>x</emphasis></mathphrase>
|
||||
</inlineequation>, return object names greater in value than the specified
|
||||
marker.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><code>format</code></term>
|
||||
<listitem>
|
||||
<para>Specify either <code>json</code> or <code>xml</code> to return the
|
||||
respective serialized response, for example append
|
||||
<programlisting>?format=json</programlisting>onto a query to inform the
|
||||
service that you want the information serialized in JSON when it is returned
|
||||
to you.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
<para>At this time, a <code>prefix</code> query parameter is not supported at the account
|
||||
level.</para>
|
||||
<section><title>Storage Account Services</title>
|
||||
<para>GET /v1.0/<account></para>
|
||||
<para>HEAD /v1.0/<account></para></section>
|
||||
<section><title>Storage Container Services</title>
|
||||
<para>GET /v1.0/<account>/<container></para>
|
||||
<para>HEAD /v1.0/<account>/<container></para>
|
||||
<para>PUT /v1.0/<account>/<container></para>
|
||||
<para>DELETE /v1.0/<account>/<container></para>
|
||||
</section>
|
||||
<section><title>Storage Object Services</title>
|
||||
<para>GET /v1.0/<account>/<container>/<object></para>
|
||||
<para>HEAD /v1.0/<account>/<container>/<object></para>
|
||||
<para>PUT /v1.0/<account>/<container>/<object></para>
|
||||
<para>DELETE /v1.0/<account>/<container>/<object></para>
|
||||
<para>POST /v1.0/<account>/<container>/<object></para>
|
||||
</section></section>
|
||||
</chapter>
|
||||
|
Loading…
x
Reference in New Issue
Block a user