Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.

Commit

Permalink
Add an operations page
Browse files Browse the repository at this point in the history
  • Loading branch information
chilts committed Mar 31, 2013
1 parent 7651a1e commit 5562387
Showing 1 changed file with 110 additions and 0 deletions.
110 changes: 110 additions & 0 deletions docs/operations.md
@@ -0,0 +1,110 @@
# Operations #

## PutObject ##

* [PutObject on AWS](http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUT.html)

### Params ###

<table>
<thead>
<tr>
<th width="20%">Param Name</th>
<th width="10%">Required</th>
<th width="10%">Type</th>
<th width="60%">Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>BucketName</td>
<td>required</td>
<td>special</td>
<td></td>
</tr>
<tr>
<td>ObjectName</td>
<td>required</td>
<td>special</td>
<td></td>
</tr>
<tr>
<td>Range</td>
<td>optional</td>
<td>header</td>
<td></td>
</tr>
<tr>
<td>IfModifiedSince</td>
<td>optional</td>
<td>header</td>
<td></td>
</tr>
<tr>
<td>IfUnmodifiedSince</td>
<td>optional</td>
<td>header</td>
<td></td>
</tr>
<tr>
<td>IfMatch</td>
<td>optional</td>
<td>header</td>
<td></td>
</tr>
<tr>
<td>IfNoneMatch</td>
<td>optional</td>
<td>header</td>
<td></td>
</tr>
<tr>
<td>ResponseContentType</td>
<td>optional</td>
<td>param</td>
<td></td>
</tr>
<tr>
<td>ResponseContentLanguage</td>
<td>optional</td>
<td>param</td>
<td></td>
</tr>
<tr>
<td>ResponseExpires</td>
<td>optional</td>
<td>param</td>
<td></td>
</tr>
<tr>
<td>ResponseCacheControl</td>
<td>optional</td>
<td>param</td>
<td></td>
</tr>
<tr>
<td>ResponseContentDisposition</td>
<td>optional</td>
<td>param</td>
<td></td>
</tr>
<tr>
<td>ResponseContentEncoding</td>
<td>optional</td>
<td>param</td>
<td></td>
</tr>
<tr>
<td>VersionId</td>
<td>optional</td>
<td>param</td>
<td></td>
</tr>
</tbody>
</table>

## GetObject ##

* [GetObject on AWS](http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETacl.html)

(Ends)

0 comments on commit 5562387

Please sign in to comment.