interface MicrosoftOneDriveNodeParameters {
additionalFields?: { name?: string };
binaryData?: boolean;
binaryPropertyName?: string;
fileContent?: string;
fileId?: string;
fileName?: string;
folderId?: string;
itemId?: string;
name?: string;
newName?: string;
operation?:
| "create"
| "get"
| "delete"
| "search"
| "upload"
| "copy"
| "download"
| "share"
| "rename"
| "getChildren";
options?: { parentFolderId?: string };
parentId?: string;
parentReference?: {
driveId?: string;
driveType?: string;
id?: string;
listId?: string;
name?: string;
path?: string;
shareId?: string;
siteId?: string;
};
query?: string;
resource?: "file"
| "folder";
scope?: "organization" | "anonymous";
type?: "edit" | "view" | "embed";
}Properties§
§§§§§§§§§§§§§§§
readonly additional Fields?: { ... }§
readonly binary Data?: booleanWhether the data to upload should be taken from binary field
readonly binary Property Name?: stringDefault: "data"
readonly file Content?: stringThe text content of the file
readonly file Id?: string§readonly file Name?: stringThe name the file should be saved as
readonly folder Id?: string§readonly item Id?: stringID of the file
readonly name?: stringThe name or path of the folder
readonly new Name?: stringNew name for file
readonly operation?:
| "create"
| "get"
| "delete"
| "search"
| "upload"
| "copy"
| "download"
| "share"
| "rename"
| "getChildren"Default: "upload"
readonly options?: { ... }Default: {}
readonly parent Id?: stringID of the parent folder that will contain the file
readonly parent Reference?: { ... }Reference to the parent item the copy will be created in Details Default: {}
readonly query?: stringThe query text used to search for items. Values may be matched across several fields including filename, metadata, and file content.
readonly resource?: "file" | "folder"Default: "file"
readonly scope?: "organization" | "anonymous"The type of sharing link to create
readonly type?: "edit" | "view" | "embed"The type of sharing link to create
Default: {}