Copying the manifest object |
Include the
- ?multipart-manifest=get
+ ?multipart-manifest=get
query string in the © request. The
new object contains the same manifest as
the original. The segment objects are not
diff --git a/doc/user-guide/section_object-api-large-lists.xml b/doc/user-guide/section_object-api-large-lists.xml
index 349f884988..448b79d9bd 100644
--- a/doc/user-guide/section_object-api-large-lists.xml
+++ b/doc/user-guide/section_object-api-large-lists.xml
@@ -6,50 +6,50 @@
xml:id="large-lists">
Page through large lists of containers or objects
If you have a large number of containers or objects, you can
- use the marker,
- limit, and
- end_marker parameters to control
+ use the marker,
+ limit, and
+ end_marker parameters to control
how many items are returned in a list and where the list
starts or ends.
- marker
+ marker
When you request a list of containers or
objects, Object Storage returns a maximum of
10,000 names for each request. To get subsequent
names, you must make another request with the
- marker parameter. Set
+ marker parameter. Set
the marker parameter to the
name of the last item returned in the previous
list. You must URL-encode the
- marker value before you
+ marker value before you
send the HTTP request. Object Storage returns a
maximum of 10,000 names starting after the last
item returned.
- limit
+ limit
To return fewer than 10,000 names, use the
- limit parameter. If the
+ limit parameter. If the
number of names returned equals the specified
- limit (or 10,000 if you
- omit the limit parameter),
+ limit (or 10,000 if you
+ omit the limit parameter),
you can assume there are more names to list. If
the number of names in the list is exactly
- divisible by the limit
+ divisible by the limit
value, the last request has no content.
- end_marker
+ end_marker
Limits the result set to names that are less
- than the end_marker
+ than the end_marker
parameter value. You must URL-encode the
- end_marker value before
+ end_marker value before
you send the HTTP request.
@@ -63,7 +63,7 @@ kiwis
oranges
pears
- Use a limit of two:
+ Use a limit of two:
# curl -i $publicURL/?limit=2 -X GET -H "X-Auth-Token: $token"
apples
bananas
@@ -72,7 +72,7 @@ bananas
Make another request with a
- marker parameter set to the
+ marker parameter set to the
name of the last item returned:
# curl -i $publicURL/?limit=2&marker=bananas -X GET -H "X-Auth-Token: $token"
kiwis
@@ -82,25 +82,25 @@ oranges
Make another request with a
- marker of the last item
+ marker of the last item
returned:
# curl -i $publicURL/?limit=2&marker=oranges -X GET -H "X-Auth-Token: $token"
pears
You receive a one-item response, which is fewer than
- the limit number of names. This
+ the limit number of names. This
indicates that this is the end of the list.
- Use the end_marker parameter
+ Use the end_marker parameter
to limit the result set to object names that are less
- than the end_marker parameter
+ than the end_marker parameter
value:
# curl -i $publicURL/?end_marker=oranges -X GET -H "X-Auth-Token: $token"
apples
bananas
kiwis
You receive a result set of all container names
- before the end-marker
+ before the end-marker
value.
diff --git a/doc/user-guide/section_object-api-response-formats.xml b/doc/user-guide/section_object-api-response-formats.xml
index 187c25ac6f..b095f999ed 100644
--- a/doc/user-guide/section_object-api-response-formats.xml
+++ b/doc/user-guide/section_object-api-response-formats.xml
@@ -75,7 +75,7 @@
JSON example with format query parameter
For example, this request uses the
- format query parameter to ask
+ format query parameter to ask
for a JSON response:
$ curl -i $publicURL?format=json -X GET -H "X-Auth-Token: $token"
HTTP/1.1 200 OK
@@ -138,7 +138,7 @@ Date: Wed, 22 Jan 2014 21:12:00 GMT
The remainder of the examples in this guide use
standard, non-serialized responses. However, all &GET;
requests that perform list operations accept the
- format query parameter or
+ format query parameter or
Accept request header.
|