/** * Databricks Node - Version 1 * Discriminator: resource=genie, operation=createMessage */ interface Credentials { databricksApi: CredentialReference; databricksOAuth2Api: CredentialReference; } /** AI-powered data assistant. Learn more. */ export type DatabricksV1GenieCreateMessageParams = { resource: 'genie'; operation: 'createMessage'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * The ID of the Genie space */ spaceId?: string | Expression | PlaceholderValue; /** * The ID of the conversation */ conversationId?: string | Expression | PlaceholderValue; /** * The message to be sent to Genie Space */ message?: string | Expression | PlaceholderValue; }; export type DatabricksV1GenieCreateMessageNode = { type: 'n8n-nodes-base.databricks'; version: 1; credentials?: Credentials; config: NodeConfig; };