mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
chore(json): fetch latest json and re-gen all code
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"kind": "discovery#restDescription",
|
||||
"etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/PDe69Eq2j9-xpzST6tMQ5MRPx_I\"",
|
||||
"etag": "\"tbys6C40o18GZwyMen5GMkdK-3s/W9mfjzQR1RkzHwNqZlCoG9HjWHE\"",
|
||||
"discoveryVersion": "v1",
|
||||
"id": "drive:v2",
|
||||
"name": "drive",
|
||||
"version": "v2",
|
||||
"revision": "20160901",
|
||||
"revision": "20161212",
|
||||
"title": "Drive API",
|
||||
"description": "Manages files in Drive including uploading, downloading, searching, detecting changes, and updating sharing permissions.",
|
||||
"ownerDomain": "google.com",
|
||||
@@ -963,6 +963,10 @@
|
||||
"type": "string",
|
||||
"description": "The full file extension; extracted from the title. May contain multiple concatenated extensions, such as \"tar.gz\". Removing an extension from the title does not clear this field; however, changing the extension on the title does update this field. This field is only populated for files with content stored in Drive; it is not populated for Google Docs or shortcut files."
|
||||
},
|
||||
"hasThumbnail": {
|
||||
"type": "boolean",
|
||||
"description": "Whether this file has a thumbnail."
|
||||
},
|
||||
"headRevisionId": {
|
||||
"type": "string",
|
||||
"description": "The ID of the file's head revision. This field is only populated for files with content stored in Drive; it is not populated for Google Docs or shortcut files."
|
||||
@@ -1119,6 +1123,10 @@
|
||||
"type": "boolean",
|
||||
"description": "Deprecated."
|
||||
},
|
||||
"modified": {
|
||||
"type": "boolean",
|
||||
"description": "Whether the file has been modified by this user."
|
||||
},
|
||||
"restricted": {
|
||||
"type": "boolean",
|
||||
"description": "Whether viewers and commenters are prevented from downloading, printing, and copying this file."
|
||||
@@ -1258,7 +1266,7 @@
|
||||
},
|
||||
"thumbnail": {
|
||||
"type": "object",
|
||||
"description": "Thumbnail for the file. Only accepted on upload and for files that are not already thumbnailed by Google.",
|
||||
"description": "A thumbnail for the file. This will only be used if Drive cannot generate a standard thumbnail.",
|
||||
"properties": {
|
||||
"image": {
|
||||
"type": "string",
|
||||
@@ -1273,7 +1281,12 @@
|
||||
},
|
||||
"thumbnailLink": {
|
||||
"type": "string",
|
||||
"description": "A short-lived link to the file's thumbnail. Typically lasts on the order of hours."
|
||||
"description": "A short-lived link to the file's thumbnail. Typically lasts on the order of hours. Only populated when the requesting app can access the file's content."
|
||||
},
|
||||
"thumbnailVersion": {
|
||||
"type": "string",
|
||||
"description": "The thumbnail version for use in client-contructable thumbnail URLs or thumbnail cache invalidation.",
|
||||
"format": "int64"
|
||||
},
|
||||
"title": {
|
||||
"type": "string",
|
||||
@@ -1476,7 +1489,7 @@
|
||||
},
|
||||
"id": {
|
||||
"type": "string",
|
||||
"description": "The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type anyone, in which case both id and value are ignored."
|
||||
"description": "The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored."
|
||||
},
|
||||
"kind": {
|
||||
"type": "string",
|
||||
@@ -1515,7 +1528,7 @@
|
||||
},
|
||||
"value": {
|
||||
"type": "string",
|
||||
"description": "The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type anyone, in which case both id and value are ignored."
|
||||
"description": "The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored."
|
||||
},
|
||||
"withLink": {
|
||||
"type": "boolean",
|
||||
@@ -1732,6 +1745,10 @@
|
||||
"description": "This is always drive#revisionList.",
|
||||
"default": "drive#revisionList"
|
||||
},
|
||||
"nextPageToken": {
|
||||
"type": "string",
|
||||
"description": "The page token for the next page of revisions. This field will be absent if the end of the revisions list has been reached. If the token is rejected for any reason, it should be discarded and pagination should be restarted from the first page of results."
|
||||
},
|
||||
"selfLink": {
|
||||
"type": "string",
|
||||
"description": "A link back to this list."
|
||||
@@ -4238,6 +4255,20 @@
|
||||
"description": "The ID of the file.",
|
||||
"required": true,
|
||||
"location": "path"
|
||||
},
|
||||
"maxResults": {
|
||||
"type": "integer",
|
||||
"description": "Maximum number of revisions to return.",
|
||||
"default": "200",
|
||||
"format": "int32",
|
||||
"minimum": "1",
|
||||
"maximum": "1000",
|
||||
"location": "query"
|
||||
},
|
||||
"pageToken": {
|
||||
"type": "string",
|
||||
"description": "Page token for revisions. To get the next page of results, set this parameter to the value of \"nextPageToken\" from the previous response.",
|
||||
"location": "query"
|
||||
}
|
||||
},
|
||||
"parameterOrder": [
|
||||
|
||||
Reference in New Issue
Block a user