Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC-1804: Fix malformed errors on rest bucket create page #822

Merged
merged 1 commit into from
Oct 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
DOC-1804: Fix malformed errors on rest bucket create page
  • Loading branch information
mattcarabine committed Oct 25, 2016
commit 078cda4c758eaed17388d8e14acdc3b884f96b58
15 changes: 9 additions & 6 deletions content/rest-api/rest-bucket-create.dita
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,15 @@ name=newbucket&ramQuotaMB=20&authType=none&replicaNumber=2&proxy
<entry>Accepted</entry>
</row>
<row>
<entry>204</entry>
<entry>Bad Request JSON with errors in the form of {"errors": {…. }}
name: Bucket with given name already exists ramQuotaMB: RAM Quota is
too large or too small replicaNumber: Must be specified and must be
a non-negative integer proxyPort: port is invalid, port is already
in use</entry>
<entry>400</entry>
<entry>Bad Request JSON with errors in the form of <codeph>{"errors": {…. }}</codeph>.
Possible error messages include:<ul>
<li>name: Bucket with given name already exists </li>
<li>ramQuotaMB: RAM Quota is too large or too small</li>
<li>replicaNumber: Must be specified and must be a non-negative
integer</li>
<li>proxyPort: port is invalid, port is already in use</li>
</ul></entry>
</row>
<row>
<entry>404</entry>
Expand Down