<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Feature enablement for Foundation Model Unity Catalog permissions in Data Governance</title>
    <link>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168668#M2988</link>
    <description>&lt;P&gt;It persists after enablement. The legacy databricks-* endpoints are a separate serving path from both pay-per-token and provisioned throughput, so they aren't gated by the system.ai EXECUTE revoke. It isn't pre-enablement behaviour that clears once the feature is on.&lt;/P&gt;
&lt;P&gt;The permissions page doesn't cover this case, so I've confirmed it on our side.&lt;/P&gt;
&lt;P&gt;So the account needs both:&lt;/P&gt;
&lt;P&gt;1. Enable Foundation model Unity Catalog permissions. This enforces the revoke on the pay-per-token and AI Functions paths automatically, and covers new models going forward.&lt;BR /&gt;2. Clear the endpoints that enablement doesn't touch: delete any disallowed provisioned-throughput endpoints, and remove the legacy databricks-* endpoints. That legacy removal is handled on our side, either via the Enforce Unity Gateway workspace setting where it's available in your region, or a backend request we raise to disable the specific Foundation Model API endpoints. I'll confirm which applies to your workspaces and set it up with you.&lt;/P&gt;
&lt;P&gt;Quickest way to scope it: once the feature is enabled, re-run the same call with EXECUTE still revoked. If it's blocked, the only remaining work is clearing the standing endpoints. If it still succeeds, it's routing to an existing endpoint rather than the pay-per-token path.&lt;/P&gt;</description>
    <pubDate>Tue, 15 Sep 2026 13:24:05 GMT</pubDate>
    <dc:creator>tom_n</dc:creator>
    <dc:date>2026-09-15T13:24:05Z</dc:date>
    <item>
      <title>Feature enablement for Foundation Model Unity Catalog permissions</title>
      <link>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168601#M2985</link>
      <description>&lt;P&gt;I am trying to restrict workspace users' access to Databricks Foundation Models using the guidance in the&amp;nbsp;&lt;A title="https://docs.databricks.com/aws/en/machine-learning/foundation-model-apis/model-uc-permissions/" href="https://docs.databricks.com/aws/en/machine-learning/foundation-model-apis/model-uc-permissions/" target="_blank" rel="noreferrer noopener"&gt;Foundation Model Unity Catalog Permissions&amp;nbsp;documentation.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have revoked EXECUTE permission for all users from the&amp;nbsp;&lt;STRONG&gt;system.ai&amp;nbsp;&lt;/STRONG&gt;schema. However, workspace users can still successfully query foundation models via&amp;nbsp;&lt;STRONG&gt;ai_query()&lt;/STRONG&gt;&amp;nbsp;using the&amp;nbsp;&lt;STRONG&gt;databricks-*&lt;/STRONG&gt;&amp;nbsp;serving endpoint names&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;:&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;-- This SUCCEEDS (should be blocked)
SELECT ai_query("databricks-claude-sonnet-4-5", "whats 1+1?") AS response

-- This FAILS with RESOURCE_DOES_NOT_EXIST
SELECT ai_query("system.ai.claude-sonnet-4-5", "whats 1+1?") AS response&lt;/PRE&gt;&lt;P&gt;The&amp;nbsp;system.ai.*&amp;nbsp;path returns a&amp;nbsp;RESOURCE_DOES_NOT_EXIST&amp;nbsp;error (which I assume is expected) after revoking EXECUTE. However, calling the same model via the&amp;nbsp;databricks-*&amp;nbsp;endpoint name bypasses the UC permission check entirely.&lt;/P&gt;&lt;P&gt;The documentation states:&amp;nbsp;&lt;I&gt;"Foundation model Unity Catalog permissions is generally available but requires enablement. Reach out to your Databricks account team to enable this feature."&lt;/I&gt;&lt;/P&gt;&lt;P&gt;What is the&amp;nbsp;&lt;STRONG&gt;Foundation Model Unity Catalog Permissions&amp;nbsp;feature &lt;/STRONG&gt;called in &lt;STRONG&gt;Account Previews&lt;/STRONG&gt; and how can it be enabled? So that the &lt;STRONG&gt;EXECUTE&lt;/STRONG&gt; revoke on&amp;nbsp;&lt;STRONG&gt;system.ai&lt;/STRONG&gt;&amp;nbsp;is enforced consistently across all access paths — including pay-per-token&amp;nbsp;&lt;STRONG&gt;databricks-*&lt;/STRONG&gt;&amp;nbsp;endpoints called via&amp;nbsp;&lt;STRONG&gt;ai_query()&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Side question: does&amp;nbsp;serverless compute bypass Unity Catalog permissions?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 03:43:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168601#M2985</guid>
      <dc:creator>broccobroccolis</dc:creator>
      <dc:date>2026-09-15T03:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Feature enablement for Foundation Model Unity Catalog permissions</title>
      <link>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168628#M2986</link>
      <description>&lt;P&gt;The reason the two calls behave differently is that databricks-* and system.ai.* are separate serving and authorisation paths, and only the system.ai.* path runs through Unity Catalog.&lt;/P&gt;
&lt;P&gt;- system.ai.claude-sonnet-4-5 resolves to a UC model service, so your EXECUTE revoke applies and the call fails as expected.&lt;BR /&gt;- databricks-claude-sonnet-4-5 resolves to the legacy default Foundation Model API serving endpoint. Direct calls to it don't pass through UC model-service authorisation, so revoking EXECUTE on system.ai never touches it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The feature and how to enable it&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;In the Account Console it's listed under Previews as "Foundation Model Permissions" (account-level). An account admin toggles it on there and it takes effect immediately. If the toggle isn't visible, we can get it enabled for you from our side. Once it's on, revoking EXECUTE on system.ai is enforced across the UC-governed paths: ai_query, the AI Playground, and the newer gateway endpoints.&lt;/P&gt;
&lt;P&gt;One thing to flag: enabling the feature covers newly created model services automatically, but it doesn't retro-fit services that already exist. For those you'll need to revoke EXECUTE per model service. New models landing in system.ai also grant EXECUTE to all users by default.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Enforcing consistently across all paths&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;1. Revoke EXECUTE at the catalog, schema and securable level (all three), scriptable through the UC Grants API.&lt;BR /&gt;2. Enable Foundation Model Permissions so new models don't quietly re-open access.&lt;BR /&gt;3. Allow-list the models you do want, either by re-granting EXECUTE per approved model service, or with an ABAC grant policy (grant everything except models carrying a "blocked" tag).&lt;BR /&gt;4. The legacy default databricks-* endpoints are the one path UC can't reach. To close them fully, speak to your account team (if you have one) to disable those specific Foundation Model API endpoints for your workspaces, or you migrate that traffic onto Unity Gateway where it's UC-governed.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Does serverless compute bypass Unity Catalog?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;No. Serverless SQL and serverless compute enforce Unity Catalog in full. Serverless didn't ignore UC here: your ai_query("databricks-…") call routed to the legacy serving endpoint, which sits outside UC authorisation. Enabling Foundation Model Permissions and dealing with the legacy endpoints closes that gap.&lt;/P&gt;
&lt;P&gt;Reference: Foundation model Unity Catalog permissions — &lt;A href="http://docs.databricks.com/machine-learning/foundation-model-apis/model-uc-permissions" target="_self"&gt;docs.databricks.com/machine-learning/foundation-model-apis/model-uc-permissions&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 09:23:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168628#M2986</guid>
      <dc:creator>tom_n</dc:creator>
      <dc:date>2026-09-15T09:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Feature enablement for Foundation Model Unity Catalog permissions</title>
      <link>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168632#M2987</link>
      <description>&lt;P class=""&gt;Thank you, &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/253950"&gt;@tom_n&lt;/a&gt;. Could you please clarify one point against the &lt;A class="" href="https://docs.databricks.com/aws/en/machine-learning/foundation-model-apis/model-uc-permissions/?utm_source=chatgpt.com" rel="noopener" target="_blank"&gt;permissions documentation&lt;/A&gt;?&lt;/P&gt;&lt;P&gt;It says pay-per-token calls enforce the restrictions automatically after enablement, while provisioned-throughput endpoints require manual removal.&lt;/P&gt;&lt;P&gt;Does the legacy &lt;EM&gt;databricks-*&lt;/EM&gt; exception still apply after &lt;STRONG&gt;Foundation model Unity Catalog permissions&lt;/STRONG&gt; is enabled? Or does it describe the behavior before enablement? That would help establish whether this account needs the feature enabled, additional endpoint restrictions, or both.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 10:36:46 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168632#M2987</guid>
      <dc:creator>ivanvyd</dc:creator>
      <dc:date>2026-09-15T10:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Feature enablement for Foundation Model Unity Catalog permissions</title>
      <link>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168668#M2988</link>
      <description>&lt;P&gt;It persists after enablement. The legacy databricks-* endpoints are a separate serving path from both pay-per-token and provisioned throughput, so they aren't gated by the system.ai EXECUTE revoke. It isn't pre-enablement behaviour that clears once the feature is on.&lt;/P&gt;
&lt;P&gt;The permissions page doesn't cover this case, so I've confirmed it on our side.&lt;/P&gt;
&lt;P&gt;So the account needs both:&lt;/P&gt;
&lt;P&gt;1. Enable Foundation model Unity Catalog permissions. This enforces the revoke on the pay-per-token and AI Functions paths automatically, and covers new models going forward.&lt;BR /&gt;2. Clear the endpoints that enablement doesn't touch: delete any disallowed provisioned-throughput endpoints, and remove the legacy databricks-* endpoints. That legacy removal is handled on our side, either via the Enforce Unity Gateway workspace setting where it's available in your region, or a backend request we raise to disable the specific Foundation Model API endpoints. I'll confirm which applies to your workspaces and set it up with you.&lt;/P&gt;
&lt;P&gt;Quickest way to scope it: once the feature is enabled, re-run the same call with EXECUTE still revoked. If it's blocked, the only remaining work is clearing the standing endpoints. If it still succeeds, it's routing to an existing endpoint rather than the pay-per-token path.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 13:24:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/feature-enablement-for-foundation-model-unity-catalog/m-p/168668#M2988</guid>
      <dc:creator>tom_n</dc:creator>
      <dc:date>2026-09-15T13:24:05Z</dc:date>
    </item>
  </channel>
</rss>

