Hi @arendon
The mute_notifications_until_the_last_retry field you're trying to use isn't currently supported in Databricks Asset Bundles YAML configuration,
which explains why you're getting the "unknown field" warnings.
This is a common issue where certain UI features haven't been fully exposed through the programmatic configuration options yet.
Here are a few approaches you can try:
Workarounds
1. Use Terraform Provider Instead
If you're open to using Terraform instead of or alongside Asset Bundles,
the Databricks Terraform provider often has more complete field coverage.
2. Post-Deployment API Call
You could deploy your bundle and then make a direct API call to update the notification settings.
3. Check Alternative Field Names
Sometimes the YAML field names differ from the UI labels. Try these variations in your bundle configuration.
4. File a Feature Request
Since this is a gap between UI capabilities and Asset Bundle support, consider filing a feature request with Databricks
support to add this field to the Asset Bundle schema.
Verification Steps
To check what notification fields are currently supported in your Asset Bundle version, you can:
1. Run databricks bundle schema to see available fields
2. Check the latest Databricks Asset Bundle documentation
3. Look at the job resource schema specifically.
LR