Upload
type: "io.kestra.plugin.googleworkspace.drive.Upload"
Upload a file in a Drive folder.
Examples
Upload a csv and convert it to sheet format
id: googleworkspace_drive_upload
namespace: company.team
inputs:
- id: file
type: FILE
description: The file to be uploaded to Google Drive
tasks:
- id: upload
type: io.kestra.plugin.googleworkspace.drive.Upload
from: "{{ inputs.file }}"
parents:
- "1HuxzpLt1b0111MuKMgy8wAv-m9Myc1E_"
name: "My awesome CSV"
contentType: "text/csv"
mimeType: "application/vnd.google-apps.spreadsheet"
Properties
contentType
- Type: string
- Dynamic: ✔️
- Required: ✔️
The content-type of the file.
a valid RFC2045 like
text/csv
,application/msword
, ...
from
- Type: string
- Dynamic: ✔️
- Required: ✔️
The file to copy
description
- Type: string
- Dynamic: ✔️
- Required: ❌
A short description of the file.
fileId
- Type: string
- Dynamic: ✔️
- Required: ❌
The file id to update
If not provided, it will create a new file
mimeType
- Type: string
- Dynamic: ✔️
- Required: ❌
The MIME type of the file.
Drive will attempt to automatically detect an appropriate value from uploaded content if no value is provided. The value cannot be changed unless a new revision is uploaded. If a file is created with a Google Doc MIME type, the uploaded content will be imported if possible. The supported import formats are published here.
name
- Type: string
- Dynamic: ✔️
- Required: ❌
The name of the file
This is not necessarily unique within a folder
parents
- Type: array
- SubType: string
- Dynamic: ✔️
- Required: ❌
The destination path
readTimeout
- Type: integer
- Dynamic: ✔️
- Required: ❌
- Default:
120
The read timeout for the request (in seconds)
scopes
- Type: array
- SubType: string
- Dynamic: ✔️
- Required: ❌
- Default:
[https://www.googleapis.com/auth/drive]
The GCP scopes to used
serviceAccount
- Type: string
- Dynamic: ✔️
- Required: ❌
The GCP service account key
teamDriveId
- Type: string
- Dynamic: ✔️
- Required: ❌
ID of the Team Drive the file resides in.
Outputs
file
- Type: File
- Required: ❌
The file metadata uploaded
Definitions
io.kestra.plugin.googleworkspace.drive.models.File
Properties
createdTime
- Type: string
- Dynamic: ❓
- Required: ❓
- Format:
date-time
id
- Type: string
- Dynamic: ❓
- Required: ❓
mimeType
- Type: string
- Dynamic: ❓
- Required: ❓
name
- Type: string
- Dynamic: ❓
- Required: ❓
parents
- Type: array
- SubType: string
- Dynamic: ❓
- Required: ❓
size
- Type: integer
- Dynamic: ❓
- Required: ❓
trashed
- Type: boolean
- Dynamic: ❓
- Required: ❓
version
- Type: integer
- Dynamic: ❓
- Required: ❓
Was this page helpful?