/** * Google Drive Node - Version 3 * Discriminator: resource=drive, operation=deleteDrive */ interface Credentials { googleApi: CredentialReference; googleDriveOAuth2Api: CredentialReference; } /** Permanently delete a shared drive */ export type GoogleDriveV3DriveDeleteDriveParams = { resource: 'drive'; operation: 'deleteDrive'; authentication?: 'oAuth2' | 'serviceAccount' | Expression; /** * The shared drive to delete * @default {"mode":"list","value":""} */ driveId?: { __rl: true; mode: 'list' | 'url' | 'id'; value: string; cachedResultName?: string }; }; export type GoogleDriveV3DriveDeleteDriveNode = { type: 'n8n-nodes-base.googleDrive'; version: 3; credentials?: Credentials; config: NodeConfig; };