/** * Databricks Node - Version 1 * Discriminator: resource=files, operation=deleteFile */ interface Credentials { databricksApi: CredentialReference; databricksOAuth2Api: CredentialReference; } /** Manage files in Unity Catalog volumes. Learn more. */ export type DatabricksV1FilesDeleteFileParams = { resource: 'files'; operation: 'deleteFile'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Full path to the volume in format: catalog.schema.volume */ volumePath?: string | Expression | PlaceholderValue; /** * Path to the file within the volume (e.g. "folder/file.txt" or "file.txt"). Do not include leading slash. */ filePath?: string | Expression | PlaceholderValue; }; export type DatabricksV1FilesDeleteFileNode = { type: 'n8n-nodes-base.databricks'; version: 1; credentials?: Credentials; config: NodeConfig; };