--- description: 'Learn about resources supported by Databricks Asset Bundles and how to configure them.' --- # :re[DABS] resources :re[DABS] allows you to specify information about the :re[Databricks] resources used by the bundle in the `resources` mapping in the bundle configuration. See [resources mapping](settings.md#resources) and [resources key reference](reference.md#resources). This article outlines supported resource types for bundles and provides details and an example for each supported type. For additional examples, see [\_](resource-examples.md). ## Supported resources The following table lists supported resource types for bundles. Some resources can be created by defining them in a bundle and deploying the bundle, and some resources only support referencing an existing resource to include in the bundle. Resources are defined using the corresponding [Databricks REST API](https://docs.databricks.com/api/workspace/introduction) object’s create operation request payload, where the object’s supported fields, expressed as YAML, are the resource’s supported properties. Links to documentation for each resource’s corresponding payloads are listed in the table. :::tip The `databricks bundle validate` command returns warnings if unknown resource properties are found in bundle configuration files. ::: :::list-table - - Resource - Create support - Corresponding REST API object - - [cluster](#clusters) - ✓ - [Cluster object](https://docs.databricks.com/api/workspace/clusters/create) - - [dashboard](#dashboards) - - [Dashboard object](https://docs.databricks.com/api/workspace/lakeview/create) - - [experiment](#experiments) - ✓ - [Experiment object](https://docs.databricks.com/api/workspace/experiments/createexperiment) - - [job](#jobs) - ✓ - [Job object](https://docs.databricks.com/api/workspace/jobs/create) - - [model (legacy)](#models) - ✓ - [Model (legacy) object](https://docs.databricks.com/api/workspace/modelregistry/createmodel) - - [model_serving_endpoint](#model_serving_endpoints) - ✓ - [Model serving endpoint object](https://docs.databricks.com/api/workspace/servingendpoints/create) - - [pipeline](#pipelines) - ✓ - [Pipeline object](https://docs.databricks.com/api/workspace/pipelines/create) - - [quality_monitor](#quality_monitors) - ✓ - [Quality monitor object](https://docs.databricks.com/api/workspace/qualitymonitors/create) - - [registered_model](#registered_models) (Unity Catalog) - ✓ - [Registered model object](https://docs.databricks.com/api/workspace/registeredmodels/create) - - [schema](#schemas) (Unity Catalog) - ✓ - [Schema object](https://docs.databricks.com/api/workspace/schemas/create) - - [volume](#volumes) (Unity Catalog) - ✓ - [Volume object](https://docs.databricks.com/api/workspace/volumes/create) :::