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§
Source§readonly operation?:
| "create"
| "get"
| "delete"
| "search"
| "upload"
| "copy"
| "download"
| "share"
| "rename"
| "getChildren"
readonly operation?:
| "create"
| "get"
| "delete"
| "search"
| "upload"
| "copy"
| "download"
| "share"
| "rename"
| "getChildren"
Default: "upload"
Source§readonly parent Reference?: {
driveId?: string;
driveType?: string;
id?: string;
listId?: string;
name?: string;
path?: string;
shareId?: string;
siteId?: string;
}
readonly parent Reference?: {
driveId?: string;
driveType?: string;
id?: string;
listId?: string;
name?: string;
path?: string;
shareId?: string;
siteId?: string;
}
Reference to the parent item the copy will be created in Details Default: {}
Default: {}