Add template field to bundle section

This commit is contained in:
Shreyas Goenka 2024-12-27 15:19:18 +05:30
parent 793bf2b995
commit d9111fbadf
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 4 additions and 0 deletions

View File

@ -53,4 +53,8 @@ type Bundle struct {
// A stable generated UUID for the bundle. This is normally serialized by
// Databricks first party template when a user runs bundle init.
Uuid string `json:"uuid,omitempty"`
// The template used to generate this bundle. This allows us to attribute bundle
// deploy revenue to a template.
Template string `json:"template,omitempty"`
}