chore(json-update): update json and regen all code

This commit is contained in:
Sebastian Thiel
2015-06-26 16:08:25 +02:00
parent 615ac64ec1
commit 7d58d66025
596 changed files with 35453 additions and 5854 deletions

View File

@@ -1,6 +1,6 @@
{
"kind": "discovery#restDescription",
"etag": "\"ye6orv2F-1npMW3u9suM3a7C5Bo/-eHE4ygU6pB-Rytn-s2uFnfwHbs\"",
"etag": "\"ye6orv2F-1npMW3u9suM3a7C5Bo/lTxRjj5-AURGfd9glUYk42wgbOA\"",
"discoveryVersion": "v1",
"id": "storage:v1",
"name": "storage",
@@ -575,7 +575,7 @@
},
"crc32c": {
"type": "string",
"description": "CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64."
"description": "CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64 in big-endian byte order."
},
"etag": {
"type": "string",
@@ -782,10 +782,11 @@
"RewriteResponse": {
"id": "RewriteResponse",
"type": "object",
"description": "A Rewrite response.",
"description": "A rewrite response.",
"properties": {
"done": {
"type": "boolean"
"type": "boolean",
"description": "true if the copy is finished; otherwise, false if the copy is in progress. This property is always present in the response."
},
"kind": {
"type": "string",
@@ -794,16 +795,20 @@
},
"objectSize": {
"type": "string",
"description": "The total size of the object being copied in bytes. This property is always present in the response.",
"format": "uint64"
},
"resource": {
"$ref": "Object"
"$ref": "Object",
"description": "A resource containing the metadata for the copied-to object. This property is present in the response only when copying completes."
},
"rewriteToken": {
"type": "string"
"type": "string",
"description": "A token to use in subsequent requests to continue copying data. This token is present in the response only when there is more data to copy."
},
"totalBytesRewritten": {
"type": "string",
"description": "The total bytes written so far, which can be used to provide a waiting user with a progress indicator. This property is always present in the response.",
"format": "uint64"
}
}
@@ -1935,7 +1940,7 @@
"id": "storage.objects.copy",
"path": "b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}",
"httpMethod": "POST",
"description": "Copies an object to a specified location. Optionally overrides metadata.",
"description": "Copies a source object to a destination object. Optionally overrides metadata.",
"parameters": {
"destinationBucket": {
"type": "string",
@@ -2573,7 +2578,7 @@
},
"maxBytesRewrittenPerCall": {
"type": "string",
"description": "The maximum number of bytes that will be rewritten per Rewrite request. Most callers shouldn't need to specify this parameter - it is primarily in place to support testing. If specified the value must be an integral multiple of 1 MiB (1048576). Also, this only applies to requests where the source and destination span locations and/or storage classes. Finally, this value must not change across Rewrite calls else you'll get an error that the rewrite token is invalid.",
"description": "The maximum number of bytes that will be rewritten per rewrite request. Most callers shouldn't need to specify this parameter - it is primarily in place to support testing. If specified the value must be an integral multiple of 1 MiB (1048576). Also, this only applies to requests where the source and destination span locations and/or storage classes. Finally, this value must not change across rewrite calls else you'll get an error that the rewriteToken is invalid.",
"format": "int64",
"location": "query"
},
@@ -2592,7 +2597,7 @@
},
"rewriteToken": {
"type": "string",
"description": "Include this field (from the previous Rewrite response) on each Rewrite request after the first one, until the Rewrite response 'done' flag is true. Calls that provide a rewriteToken can omit all other request fields, but if included those fields must match the values provided in the first rewrite request.",
"description": "Include this field (from the previous rewrite response) on each rewrite request after the first one, until the rewrite response 'done' flag is true. Calls that provide a rewriteToken can omit all other request fields, but if included those fields must match the values provided in the first rewrite request.",
"location": "query"
},
"sourceBucket": {