Google Super
GOOGLESUPER_GENERATE_IDS
Generates a set of file IDs which can be provided in create or copy requests. Use when you need to pre-allocate IDs for new files or copies.
Remote googlesuper
Other tools also called GOOGLESUPER_GENERATE_IDS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"type": {
"type": "string",
"title": "Type",
"default": null,
"examples": [
"files"
],
"nullable": true,
"description": "The type of items for which the IDs can be used. For example, 'files' or 'shortcuts'."
},
"count": {
"type": "integer",
"title": "Count",
"default": null,
"maximum": 1000,
"minimum": 1,
"examples": [
10
],
"nullable": true,
"description": "The number of IDs to return. Value must be between 1 and 1000, inclusive."
},
"space": {
"type": "string",
"title": "Space",
"default": null,
"examples": [
"drive"
],
"nullable": true,
"description": "The space in which the IDs can be used. Supported values are 'drive' and 'appDataFolder'."
}
}
}