/**
* Databricks Node - Version 1
* Discriminator: resource=genie, operation=getMessage
*/
interface Credentials {
databricksApi: CredentialReference;
databricksOAuth2Api: CredentialReference;
}
/** AI-powered data assistant. Learn more. */
export type DatabricksV1GenieGetMessageParams = {
resource: 'genie';
operation: 'getMessage';
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;
};
export type DatabricksV1GenieGetMessageNode = {
type: 'n8n-nodes-base.databricks';
version: 1;
credentials?: Credentials;
config: NodeConfig;
};