Google Super
GOOGLESUPER_CREATE_FILE
Creates a new file or folder with metadata. Use to create empty files or folders, or files with content by providing it in the request body (though this action primarily focuses on metadata creation).
Remote googlesuper
Other tools also called GOOGLESUPER_CREATE_FILE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"default": null,
"nullable": true,
"description": "The name of the file."
},
"fields": {
"type": "string",
"title": "Fields",
"default": null,
"nullable": true,
"description": "A comma-separated list of fields to include in the response."
},
"parents": {
"type": "array",
"items": {
"type": "string",
"properties": {}
},
"title": "Parents",
"default": null,
"nullable": true,
"description": "The IDs of parent folders."
},
"starred": {
"type": "boolean",
"title": "Starred",
"default": null,
"nullable": true,
"description": "Whether the user has starred the file."
},
"mimeType": {
"type": "string",
"title": "Mime Type",
"default": null,
"nullable": true,
"description": "The MIME type of the file."
},
"description": {
"type": "string",
"title": "Description",
"default": null,
"nullable": true,
"description": "A short description of the file."
}
}
}