interface MicrosoftOneDriveTriggerNodeParameters {
event?:
| "folderCreated"
| "folderUpdated"
| "fileUpdated"
| "fileCreated";
fileId?: { mode: "id"
| "url"; value: string };
folderId?: { mode: "id" | "url"; value: string };
options?: { folderChild?: boolean };
pollTimes: {
item: { mode: string & {} | "everyMinute" }[];
};
simple?: boolean;
watch?: | "anyFile"
| "selectedFolder"
| "selectedFile"
| "anyFolder"
| "oneSelectedFolder";
watchFolder?: boolean;
}Properties§
§§§§§§
readonly event?:
| "folderCreated"
| "folderUpdated"
| "fileUpdated"
| "fileCreated"§
readonly file Id?: { ... }The file to operate on. The 'By URL' option only accepts URLs that start with 'https://onedrive.live.com'. Default: {"mode":"id","value":""}
readonly folder Id?: { ... }The folder to operate on. The 'By URL' option only accepts URLs that start with 'https://onedrive.live.com'. Default: {"mode":"id","value":"","cachedResultName":""}
readonly options?: { ... }Default: {}
readonly poll Times: { ... }§readonly simple?: booleanWhether to return a simplified version of the response instead of the raw data Default: true
readonly watch?:
| "anyFile"
| "selectedFolder"
| "selectedFile"
| "anyFolder"
| "oneSelectedFolder"How to select which file to watch Default: "anyFile"
readonly watch Folder?: booleanWhether to watch for the created file in a given folder, rather than the entire OneDrive
Default: "fileCreated"