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