You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the Azure portal or newer preview REST APIs and beta SDK packages, you can attach an Azure AI multi-service multi-service resource using a managed identity and permissions. The advantage of this approach is that billing is keyless and has no dependency on regions.
36
+
Using the Azure portal or newer preview REST APIs and beta SDK packages, you can attach an Azure AI multi-service resource using a managed identity and permissions. The advantage of this approach is that billing is keyless and has no dependency on regions.
37
37
38
38
1.[Configure Azure AI Search to use a managed identity](search-howto-managed-identities-data-sources.md).
39
39
@@ -42,10 +42,10 @@ Using the Azure portal or newer preview REST APIs and beta SDK packages, you can
42
42
1. Using the Azure portal, or the [Skillset 2024-11-01-preview REST API](/rest/api/searchservice/skillsets/create-or-update?view=rest-searchservice-2024-11-01-preview&preserve-view=true), or an Azure SDK beta package that provides the syntax, configure a skillset to use an identity:
43
43
44
44
+ The managed identity used on the connection belongs to the search service.
45
-
+ The identity can be a system managed or a user assigned.
45
+
+ The identity can be system managed or user assigned.
46
46
+ The identity must have **Cognitive Services User** permissions on the Azure AI resource.
47
47
+`@odata.type` is always `#Microsoft.Azure.Search.AIServicesByIdentity`.
48
-
+`subdomainUrl` is the endpoint of your Azure AI multi-service resoruce. It can be in [any region that's jointly supported](search-region-support.md#azure-public-regions) by Azure AI Search and Azure AI services.
48
+
+`subdomainUrl` is the endpoint of your Azure AI multi-service resource. It can be in [any region that's jointly supported](search-region-support.md#azure-public-regions) by Azure AI Search and Azure AI services.
49
49
50
50
As with keys, the details you provide about the Azure AI Services resource are used for billing, not connections. All API requests made by Azure AI Search to Azure AI services for built-in skills processing continue to be internal and managed by Microsoft.
51
51
@@ -75,7 +75,7 @@ POST https://[service-name].search.windows.net/skillsets/[skillset-name]?api-ver
75
75
76
76
Identity is set to the resource ID of the user-assigned managed identity. To find an existing user-assigned managed identity, see [Manage user-assigned managed identities](/entra/identity/managed-identities-azure-resources/how-manage-user-assigned-managed-identities).
77
77
78
-
For a a user-assigned managed identity, set the `@odata.type` and the `userAssignedIdentity` properties.
78
+
For a user-assigned managed identity, set the `@odata.type` and the `userAssignedIdentity` properties.
79
79
80
80
```http
81
81
POST https://[service-name].search.windows.net/skillsets/[skillset-name]?api-version=2024-11-01-Preview
0 commit comments