/**
 * Databricks Node - Version 1
 * Re-exports all discriminator combinations.
 */

import type { DatabricksV1DatabricksSqlNode } from './resource_databricks_sql';
import type { DatabricksV1FilesNode } from './resource_files';
import type { DatabricksV1GenieNode } from './resource_genie';
import type { DatabricksV1ModelServingNode } from './resource_model_serving';
import type { DatabricksV1UnityCatalogNode } from './resource_unity_catalog';
import type { DatabricksV1VectorSearchNode } from './resource_vector_search';

export * from './resource_databricks_sql';
export * from './resource_files';
export * from './resource_genie';
export * from './resource_model_serving';
export * from './resource_unity_catalog';
export * from './resource_vector_search';

export type DatabricksV1Node =
  | DatabricksV1DatabricksSqlNode
  | DatabricksV1FilesNode
  | DatabricksV1GenieNode
  | DatabricksV1ModelServingNode
  | DatabricksV1UnityCatalogNode
  | DatabricksV1VectorSearchNode
  ;