From e6982d09ac73e33aca9d127457faa44df3d9a0ac Mon Sep 17 00:00:00 2001 From: shreyas-goenka <88374338+shreyas-goenka@users.noreply.github.com> Date: Mon, 20 Jan 2025 20:22:22 +0530 Subject: [PATCH] Add doc string for `bundle.uuid` (#2170) Co-authored-by: Julia Crawford (Databricks) --- bundle/internal/schema/annotations.yml | 2 +- bundle/schema/jsonschema.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bundle/internal/schema/annotations.yml b/bundle/internal/schema/annotations.yml index 28d29798a..e18de7896 100644 --- a/bundle/internal/schema/annotations.yml +++ b/bundle/internal/schema/annotations.yml @@ -55,7 +55,7 @@ github.com/databricks/cli/bundle/config.Bundle: The name of the bundle. "uuid": "description": |- - PLACEHOLDER + Reserved. A Universally Unique Identifier (UUID) for the bundle that uniquely identifies the bundle in internal Databricks systems. This is generated when a bundle project is initialized using a Databricks template (using the `databricks bundle init` command). github.com/databricks/cli/bundle/config.Deployment: "fail_on_active_runs": "description": |- diff --git a/bundle/schema/jsonschema.json b/bundle/schema/jsonschema.json index f55813b06..57b0cd231 100644 --- a/bundle/schema/jsonschema.json +++ b/bundle/schema/jsonschema.json @@ -1126,6 +1126,7 @@ "$ref": "#/$defs/string" }, "uuid": { + "description": "Reserved. A Universally Unique Identifier (UUID) for the bundle that uniquely identifies the bundle in internal Databricks systems. This is generated when a bundle project is initialized using a Databricks template (using the `databricks bundle init` command).", "$ref": "#/$defs/string" } },