Google Drive
GOOGLEDRIVE_EDIT_FILE
Updates an existing google drive file by overwriting its entire content with new text (max 10mb).
Remote googledrive
Other tools also called GOOGLEDRIVE_EDIT_FILE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"content": {
"type": "string",
"title": "Content",
"description": "New textual content to overwrite the existing file; will be UTF-8 encoded for upload."
},
"file_id": {
"type": "string",
"title": "File Id",
"description": "Identifier of the Google Drive file to update."
},
"mime_type": {
"type": "string",
"title": "Mime Type",
"default": "text/plain",
"examples": [
"text/plain",
"text/html",
"text/csv",
"application/json",
"application/xml",
"application/javascript"
],
"description": "MIME type of the 'content' being uploaded; must accurately represent its format."
}
}
}