Skip to main content

deployments

Operations on a deployments resource.

Overview

Namedeployments
TypeResource
Iddatabricks_workspace.apps.deployments

Fields

NameDatatype
create_timestring
creatorstring
deployment_artifactsobject
deployment_idstring
modestring
source_code_pathstring
statusobject
update_timestring

Methods

NameAccessible byRequired ParamsDescription
getdeploymentSELECTapp_name, deployment_id, deployment_nameRetrieves information for the app deployment with the supplied name and deployment id.
listdeploymentsSELECTapp_name, deployment_nameLists all app deployments for the app with the supplied name.

SELECT examples

SELECT
create_time,
creator,
deployment_artifacts,
deployment_id,
mode,
source_code_path,
status,
update_time
FROM databricks_workspace.apps.deployments
WHERE app_name = '{{ app_name }}' AND
deployment_name = '{{ deployment_name }}';