| <html><body> |
| <style> |
| |
| body, h1, h2, h3, div, span, p, pre, a { |
| margin: 0; |
| padding: 0; |
| border: 0; |
| font-weight: inherit; |
| font-style: inherit; |
| font-size: 100%; |
| font-family: inherit; |
| vertical-align: baseline; |
| } |
| |
| body { |
| font-size: 13px; |
| padding: 1em; |
| } |
| |
| h1 { |
| font-size: 26px; |
| margin-bottom: 1em; |
| } |
| |
| h2 { |
| font-size: 24px; |
| margin-bottom: 1em; |
| } |
| |
| h3 { |
| font-size: 20px; |
| margin-bottom: 1em; |
| margin-top: 1em; |
| } |
| |
| pre, code { |
| line-height: 1.5; |
| font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; |
| } |
| |
| pre { |
| margin-top: 0.5em; |
| } |
| |
| h1, h2, h3, p { |
| font-family: Arial, sans serif; |
| } |
| |
| h1, h2, h3 { |
| border-bottom: solid #CCC 1px; |
| } |
| |
| .toc_element { |
| margin-top: 0.5em; |
| } |
| |
| .firstline { |
| margin-left: 2 em; |
| } |
| |
| .method { |
| margin-top: 1em; |
| border: solid 1px #CCC; |
| padding: 1em; |
| background: #EEE; |
| } |
| |
| .details { |
| font-weight: bold; |
| font-size: 14px; |
| } |
| |
| </style> |
| |
| <h1><a href="drive_v2.html">Drive API</a> . <a href="drive_v2.files.html">files</a></h1> |
| <h2>Instance Methods</h2> |
| <p class="toc_element"> |
| <code><a href="#copy">copy(fileId, body, pinned=None, convert=None, ocr=None, sourceLanguage=None, ocrLanguage=None, targetLanguage=None, timedTextTrackName=None, timedTextLanguage=None)</a></code></p> |
| <p class="firstline">Creates a copy of the specified file.</p> |
| <p class="toc_element"> |
| <code><a href="#delete">delete(fileId)</a></code></p> |
| <p class="firstline">Permanently deletes a file by ID. Skips the trash.</p> |
| <p class="toc_element"> |
| <code><a href="#get">get(fileId, projection=None, updateViewedDate=None)</a></code></p> |
| <p class="firstline">Gets a file's metadata by ID.</p> |
| <p class="toc_element"> |
| <code><a href="#insert">insert(body=None, media_body=None, convert=None, ocr=None, sourceLanguage=None, ocrLanguage=None, targetLanguage=None, timedTextLanguage=None, timedTextTrackName=None, pinned=None)</a></code></p> |
| <p class="firstline">Insert a new file.</p> |
| <p class="toc_element"> |
| <code><a href="#list">list(q=None, projection=None, pageToken=None, maxResults=None)</a></code></p> |
| <p class="firstline">Lists the user's files.</p> |
| <p class="toc_element"> |
| <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> |
| <p class="firstline">Retrieves the next page of results.</p> |
| <p class="toc_element"> |
| <code><a href="#patch">patch(fileId, body, newRevision=None, pinned=None, targetLanguage=None, ocrLanguage=None, ocr=None, sourceLanguage=None, updateViewedDate=None, timedTextTrackName=None, convert=None, setModifiedDate=None, timedTextLanguage=None)</a></code></p> |
| <p class="firstline">Updates file metadata and/or content. This method supports patch semantics.</p> |
| <p class="toc_element"> |
| <code><a href="#touch">touch(fileId)</a></code></p> |
| <p class="firstline">Set the file's updated time to the current server time.</p> |
| <p class="toc_element"> |
| <code><a href="#trash">trash(fileId)</a></code></p> |
| <p class="firstline">Moves a file to the trash.</p> |
| <p class="toc_element"> |
| <code><a href="#untrash">untrash(fileId)</a></code></p> |
| <p class="firstline">Restores a file from the trash.</p> |
| <p class="toc_element"> |
| <code><a href="#update">update(fileId, body=None, newRevision=None, media_body=None, targetLanguage=None, ocrLanguage=None, ocr=None, pinned=None, sourceLanguage=None, updateViewedDate=None, timedTextTrackName=None, convert=None, setModifiedDate=None, timedTextLanguage=None)</a></code></p> |
| <p class="firstline">Updates file metadata and/or content</p> |
| <h3>Method Details</h3> |
| <div class="method"> |
| <code class="details" id="copy">copy(fileId, body, pinned=None, convert=None, ocr=None, sourceLanguage=None, ocrLanguage=None, targetLanguage=None, timedTextTrackName=None, timedTextLanguage=None)</code> |
| <pre>Creates a copy of the specified file. |
| |
| Args: |
| fileId: string, The ID of the file to copy. (required) |
| body: object, The request body. (required) |
| The object takes the form of: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| } |
| |
| pinned: boolean, Whether to pin the head revision of the new copy. |
| convert: boolean, Whether to convert this file to the corresponding Google Docs format. |
| ocr: boolean, Whether to attempt OCR on .jpg, .png, or .gif uploads. |
| sourceLanguage: string, The language of the original file to be translated. |
| ocrLanguage: string, If ocr is true, hints at the language to use. Valid values are ISO 639-1 codes. |
| targetLanguage: string, Target language to translate the file to. If no sourceLanguage is provided, the API will attempt to detect the language. |
| timedTextTrackName: string, The timed text track name. |
| timedTextLanguage: string, The language of the timed text. |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="delete">delete(fileId)</code> |
| <pre>Permanently deletes a file by ID. Skips the trash. |
| |
| Args: |
| fileId: string, The ID of the file to delete. (required) |
| </pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="get">get(fileId, projection=None, updateViewedDate=None)</code> |
| <pre>Gets a file's metadata by ID. |
| |
| Args: |
| fileId: string, The ID for the file in question. (required) |
| projection: string, Restrict information returned for simplicity and optimization. |
| Allowed values |
| BASIC - Includes only the basic metadata fields |
| FULL - Includes all metadata fields |
| updateViewedDate: boolean, Whether to update the view date after successfully retrieving the file. |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="insert">insert(body=None, media_body=None, convert=None, ocr=None, sourceLanguage=None, ocrLanguage=None, targetLanguage=None, timedTextLanguage=None, timedTextTrackName=None, pinned=None)</code> |
| <pre>Insert a new file. |
| |
| Args: |
| body: object, The request body. |
| The object takes the form of: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| } |
| |
| media_body: string, The filename of the media request body, or an instance of a MediaUpload object. |
| convert: boolean, Whether to convert this file to the corresponding Google Docs format. |
| ocr: boolean, Whether to attempt OCR on .jpg, .png, or .gif uploads. |
| sourceLanguage: string, The language of the original file to be translated. |
| ocrLanguage: string, If ocr is true, hints at the language to use. Valid values are ISO 639-1 codes. |
| targetLanguage: string, Target language to translate the file to. If no sourceLanguage is provided, the API will attempt to detect the language. |
| timedTextLanguage: string, The language of the timed text. |
| timedTextTrackName: string, The timed text track name. |
| pinned: boolean, Whether to pin the head revision of the uploaded file. |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="list">list(q=None, projection=None, pageToken=None, maxResults=None)</code> |
| <pre>Lists the user's files. |
| |
| Args: |
| q: string, Query string for searching files. |
| projection: string, Restrict information returned for simplicity and optimization. |
| Allowed values |
| BASIC - Includes only the basic metadata fields |
| FULL - Includes all metadata fields |
| pageToken: string, Page token for files. |
| maxResults: integer, Maximum number of files to return. |
| |
| Returns: |
| An object of the form: |
| |
| { # A list of files. |
| "nextPageToken": "A String", # The page token for the next page of files. |
| "kind": "drive#fileList", # This is always drive#fileList. |
| "items": [ # The actual list of files. |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }, |
| ], |
| "nextLink": "A String", # A link to the next page of files. |
| "etag": "A String", # The ETag of the list. |
| "selfLink": "A String", # A link back to this list. |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="list_next">list_next(previous_request, previous_response)</code> |
| <pre>Retrieves the next page of results. |
| |
| Args: |
| previous_request: The request for the previous page. (required) |
| previous_response: The response from the request for the previous page. (required) |
| |
| Returns: |
| A request object that you can call 'execute()' on to request the next |
| page. Returns None if there are no more items in the collection. |
| </pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="patch">patch(fileId, body, newRevision=None, pinned=None, targetLanguage=None, ocrLanguage=None, ocr=None, sourceLanguage=None, updateViewedDate=None, timedTextTrackName=None, convert=None, setModifiedDate=None, timedTextLanguage=None)</code> |
| <pre>Updates file metadata and/or content. This method supports patch semantics. |
| |
| Args: |
| fileId: string, The ID of the file to update. (required) |
| body: object, The request body. (required) |
| The object takes the form of: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| } |
| |
| newRevision: boolean, Whether a blob upload should create a new revision. If false, the blob data in the current head revision will be replaced. |
| pinned: boolean, Whether to pin the new revision. |
| targetLanguage: string, Target language to translate the file to. If no sourceLanguage is provided, the API will attempt to detect the language. |
| ocrLanguage: string, If ocr is true, hints at the language to use. Valid values are ISO 639-1 codes. |
| ocr: boolean, Whether to attempt OCR on .jpg, .png, or .gif uploads. |
| sourceLanguage: string, The language of the original file to be translated. |
| updateViewedDate: boolean, Whether to update the view date after successfully updating the file. |
| timedTextTrackName: string, The timed text track name. |
| convert: boolean, Whether to convert this file to the corresponding Google Docs format. |
| setModifiedDate: boolean, Whether to set the modified date with the supplied modified date. |
| timedTextLanguage: string, The language of the timed text. |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="touch">touch(fileId)</code> |
| <pre>Set the file's updated time to the current server time. |
| |
| Args: |
| fileId: string, The ID of the file to update. (required) |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="trash">trash(fileId)</code> |
| <pre>Moves a file to the trash. |
| |
| Args: |
| fileId: string, The ID of the file to trash. (required) |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="untrash">untrash(fileId)</code> |
| <pre>Restores a file from the trash. |
| |
| Args: |
| fileId: string, The ID of the file to untrash. (required) |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="update">update(fileId, body=None, newRevision=None, media_body=None, targetLanguage=None, ocrLanguage=None, ocr=None, pinned=None, sourceLanguage=None, updateViewedDate=None, timedTextTrackName=None, convert=None, setModifiedDate=None, timedTextLanguage=None)</code> |
| <pre>Updates file metadata and/or content |
| |
| Args: |
| fileId: string, The ID of the file to update. (required) |
| body: object, The request body. |
| The object takes the form of: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| } |
| |
| newRevision: boolean, Whether a blob upload should create a new revision. If false, the blob data in the current head revision will be replaced. |
| media_body: string, The filename of the media request body, or an instance of a MediaUpload object. |
| targetLanguage: string, Target language to translate the file to. If no sourceLanguage is provided, the API will attempt to detect the language. |
| ocrLanguage: string, If ocr is true, hints at the language to use. Valid values are ISO 639-1 codes. |
| ocr: boolean, Whether to attempt OCR on .jpg, .png, or .gif uploads. |
| pinned: boolean, Whether to pin the new revision. |
| sourceLanguage: string, The language of the original file to be translated. |
| updateViewedDate: boolean, Whether to update the view date after successfully updating the file. |
| timedTextTrackName: string, The timed text track name. |
| convert: boolean, Whether to convert this file to the corresponding Google Docs format. |
| setModifiedDate: boolean, Whether to set the modified date with the supplied modified date. |
| timedTextLanguage: string, The language of the timed text. |
| |
| Returns: |
| An object of the form: |
| |
| { # The metadata for a file. |
| "mimeType": "A String", # The MIME type of the file. |
| "thumbnailLink": "A String", # A link to the file's thumbnail. |
| "labels": { # A group of labels for the file. |
| "restricted": True or False, # Whether viewers are prevented from downloading this file. |
| "hidden": True or False, # Whether this file is hidden from the user. |
| "viewed": True or False, # Whether this file has been viewed by this user. |
| "starred": True or False, # Whether this file is starred by the user. |
| "trashed": True or False, # Whether this file has been trashed. |
| }, |
| "indexableText": { # Indexable text attributes for the file (can only be written) |
| "text": "A String", # The text to be indexed for this file |
| }, |
| "etag": "A String", # ETag of the file. |
| "lastModifyingUserName": "A String", # Name of the last user to modify this file. This will only be populated if a user has edited this file. |
| "writersCanShare": True or False, # Whether writers can share the document with other users. |
| "id": "A String", # The id of the file. |
| "title": "A String", # The title of this file. |
| "ownerNames": [ # Name(s) of the owner(s) of this file. |
| "A String", |
| ], |
| "sharedWithMeDate": "A String", # Time at which this file was shared with the user (formatted RFC 3339 timestamp). |
| "lastViewedByMeDate": "A String", # Last time this file was viewed by the user (formatted RFC 3339 timestamp). |
| "parents": [ # Collection of parent folders which contain this file. |
| # Setting this field will put the file in all of the provided folders. On insert, if no folders are provided, the file will be placed in the default root folder. |
| { # A reference to a file's parent. |
| "selfLink": "A String", # A link back to this reference. |
| "kind": "drive#parentReference", # This is always drive#parentReference. |
| "id": "A String", # The ID of the parent. |
| "isRoot": True or False, # Whether or not the parent is the root folder. |
| "parentLink": "A String", # A link to the parent. |
| }, |
| ], |
| "exportLinks": { # Links for exporting Google Docs to specific formats. |
| }, |
| "originalFilename": "A String", # The filename when uploading this file. This will only be populated on files with content stored in Drive. |
| "description": "A String", # A short description of the file. |
| "editable": True or False, # Whether the file can be edited by the current user. |
| "kind": "drive#file", # The type of file. This is always drive#file. |
| "quotaBytesUsed": "A String", # The number of quota bytes used by this file. |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive. |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp). |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive. |
| "embedLink": "A String", # A link for embedding the file. |
| "alternateLink": "A String", # A link for opening the file in a browser. |
| "permissionsLink": "A String", # A link to the permissions collection. |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted RFC 3339 timestamp). |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive. |
| "userPermission": { # A single permission for a file. # The permissions for the authenticated user on this file. |
| "withLink": True or False, # Whether the link is required for this permission. |
| "kind": "drive#permission", # This is always drive#permission. |
| "name": "A String", # The name for this permission. |
| "value": "A String", # The email address or domain name for the entity. This is not populated in responses. |
| "id": "A String", # The ID of the permission. |
| "authKey": "A String", # The authkey parameter required for this permission. |
| "etag": "A String", # The ETag of the permission. |
| "role": "A String", # The primary role for this user. Allowed values are: |
| # - owner |
| # - reader |
| # - writer |
| "photoLink": "A String", # A link to the profile photo, if available. |
| "type": "A String", # The account type. Allowed values are: |
| # - user |
| # - group |
| # - domain |
| # - anyone |
| "additionalRoles": [ # Additional roles for this user. Only commenter is currently allowed. |
| "A String", |
| ], |
| "selfLink": "A String", # A link back to this permission. |
| }, |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive. |
| "selfLink": "A String", # A link back to this file. |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted RFC 3339 timestamp). |
| }</pre> |
| </div> |
| |
| </body></html> |