Google Drive

GOOGLEDRIVE_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 googledrive

Other tools also called GOOGLEDRIVE_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'."
    }
  }
}