Skip to content

Commit 0579e3e

Browse files
committed
Freshness pass, #4
1 parent cc7fa2e commit 0579e3e

6 files changed

+19
-21
lines changed

articles/search/search-how-to-index-markdown-blobs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-ai-search
1010
ms.custom:
1111
- ignite-2024
1212
ms.topic: how-to
13-
ms.date: 11/20/2024
13+
ms.date: 05/29/2025
1414
---
1515

1616
# Index Markdown blobs and files in Azure AI Search
@@ -38,7 +38,7 @@ In Azure AI Search, indexers for Azure Blob Storage, Azure Files, and OneLake su
3838
Parsing mode parameters are specified in an indexer definition when you create or update an indexer.
3939

4040
```http
41-
POST https://[service name].search.windows.net/indexers?api-version=2024-11-01-preview
41+
POST https://[service name].search.windows.net/indexers?api-version=2025-05-01-preview
4242
Content-Type: application/json
4343
api-key: [admin key]
4444
@@ -155,7 +155,7 @@ An example index configuration might look something like this:
155155
If field names and data types align, the blob indexer can infer the mapping without an explicit field mapping present in the request, so an indexer configuration corresponding to the provided index configuration might look like this:
156156

157157
```http
158-
POST https://[service name].search.windows.net/indexers?api-version=2024-11-01-preview
158+
POST https://[service name].search.windows.net/indexers?api-version=2025-05-01-preview
159159
Content-Type: application/json
160160
api-key: [admin key]
161161
@@ -337,7 +337,7 @@ If you aren't utilizing field mappings, the shape of the index should reflect th
337337
### Indexer definition for one-to-one parsing
338338

339339
```http
340-
POST https://[service name].search.windows.net/indexers?api-version=2024-11-01-preview
340+
POST https://[service name].search.windows.net/indexers?api-version=2025-05-01-preview
341341
Content-Type: application/json
342342
api-key: [admin key]
343343

articles/search/search-howto-managed-identities-sql.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom:
1010
- ignite-2023
1111
ms.service: azure-ai-search
1212
ms.topic: how-to
13-
ms.date: 12/10/2024
13+
ms.date: 05/29/2025
1414
---
1515

1616
# Set up an indexer connection to Azure SQL using a managed identity
@@ -90,7 +90,7 @@ Create the data source and provide either a system-assigned managed identity or
9090
9191
### System-assigned managed identity
9292
93-
The [REST API](/rest/api/searchservice/data-sources/create), Azure portal, and the [.NET SDK](/dotnet/api/azure.search.documents.indexes.models.searchindexerdatasourceconnection) support system-assigned managed identity.
93+
The [REST API](/rest/api/searchservice/data-sources/create), Azure portal, and the Azure SDKs support system-assigned managed identity.
9494
9595
When you're connecting with a system-assigned managed identity, the only change to the data source definition is the format of the "credentials" property. You'll provide an Initial Catalog or Database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Azure SQL Database, the resource group of SQL Database, and the name of the SQL database.
9696
@@ -115,16 +115,16 @@ api-key: [admin key]
115115

116116
### User-assigned managed identity (preview)
117117

118-
The 2021-04-30-preview and later preview REST APIs support connections based on a user-assigned managed identity. When you're connecting with a user-assigned managed identity, there are two changes to the data source definition:
118+
Preview REST APIs support connections based on a user-assigned managed identity. When you're connecting with a user-assigned managed identity, there are two changes to the data source definition:
119119
120120
* First, the format of the "credentials" property is an Initial Catalog or Database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Azure SQL Database, the resource group of SQL Database, and the name of the SQL database. This is the same format as the system-assigned managed identity.
121121
122122
* Second, add an "identity" property that contains the collection of user-assigned managed identities. Only one user-assigned managed identity should be provided when creating the data source. Set it to type "userAssignedIdentities".
123123
124-
Here's an example of how to create an indexer data source object using the most recent preview API version for [Create or Update Data Source](/rest/api/searchservice/data-sources/create-or-update?view=rest-searchservice-2024-05-01-preview&preserve-view=true):
124+
Here's an example of how to create an indexer data source object using the most recent preview API version for [Create or Update Data Source](/rest/api/searchservice/data-sources/create-or-update?view=rest-searchservice-2025-05-01-preview&preserve-view=true):
125125

126126
```http
127-
POST https://[service name].search.windows.net/datasources?api-version=2024-05-01-preview
127+
POST https://[service name].search.windows.net/datasources?api-version=2025-05-01-preview
128128
Content-Type: application/json
129129
api-key: [admin key]
130130

articles/search/search-index-azure-sql-managed-instance-with-managed-identity.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: azure-ai-search
99
ms.custom:
1010
- ignite-2023
1111
ms.topic: conceptual
12-
ms.date: 12/10/2024
12+
ms.date: 05/29/2025
1313
---
1414

1515
# Set up an indexer connection to Azure SQL Managed Instance using a managed identity
@@ -46,12 +46,11 @@ Follow these steps to assign the search service system managed identity permissi
4646

4747
:::image type="content" source="./media/search-index-azure-sql-managed-instance-with-managed-identity/sql-login.png" alt-text="Showing screenshot of the Connect to Server dialog.":::
4848

49-
3. From the left pane, locate the SQL database you are using as data source for indexing and right-click it. Select **New Query**.
49+
1. From the left pane, locate the SQL database you are using as data source for indexing and right-click it. Select **New Query**.
5050

5151
:::image type="content" source="./media/search-index-azure-sql-managed-instance-with-managed-identity/new-sql-query.png" alt-text="Showing screenshot of new SQL query.":::
5252

53-
54-
4. In the T-SQL window, copy the following commands and include the brackets around your search service name. Click on **Execute**.
53+
1. In the T-SQL window, copy the following commands and include the brackets around your search service name. Click on **Execute**.
5554

5655

5756
```sql
@@ -79,8 +78,7 @@ In this step, you'll give your Azure AI Search service permission to read data f
7978
8079
:::image type="content" source="./media/search-index-azure-sql-managed-instance-with-managed-identity/access-control-add-role-assignment.png" alt-text="Showing screenshot of the Access Control page." lightbox="media/search-index-azure-sql-managed-instance-with-managed-identity/access-control-add-role-assignment.png":::
8180
82-
83-
4. Select **Reader** role.
81+
1. Select **Reader** role.
8482
1. Leave **Assign access to** as **Microsoft Entra user, group, or service principal**.
8583
1. If you're using a system-assigned managed identity, search for your search service, then select it. If you're using a user-assigned managed identity, search for the name of the user-assigned managed identity, then select it. Select **Save**.
8684
@@ -101,7 +99,7 @@ When you're connecting with a system-assigned managed identity, the only change
10199
Here's an example of how to create a data source to index data from a storage account using the [Create Data Source](/rest/api/searchservice/data-sources/create) REST API and a managed identity connection string. The managed identity connection string format is the same for the REST API, .NET SDK, and the Azure portal.
102100

103101
```http
104-
POST https://[service name].search.windows.net/datasources?api-version=2020-06-30
102+
POST https://[service name].search.windows.net/datasources?api-version=2024-07-01
105103
Content-Type: application/json
106104
api-key: [admin key]
107105
@@ -124,7 +122,7 @@ The index specifies the fields in a document, attributes, and other constructs t
124122
Here's a [Create Index](/rest/api/searchservice/indexes/create) REST API call with a searchable `booktitle` field:
125123
126124
```http
127-
POST https://[service name].search.windows.net/indexes?api-version=2020-06-30
125+
POST https://[service name].search.windows.net/indexes?api-version=2024-07-01
128126
Content-Type: application/json
129127
api-key: [admin key]
130128
@@ -144,7 +142,7 @@ An indexer connects a data source with a target search index, and provides a sch
144142
Here's a [Create Indexer](/rest/api/searchservice/indexers/create) REST API call with an Azure SQL indexer definition. The indexer runs when you submit the request.
145143
146144
```http
147-
POST https://[service name].search.windows.net/indexers?api-version=2020-06-30
145+
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
148146
Content-Type: application/json
149147
api-key: [admin key]
150148

articles/search/search-indexer-howto-access-ip-restricted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-ai-search
1010
ms.custom:
1111
- ignite-2023
1212
ms.topic: how-to
13-
ms.date: 12/10/2024
13+
ms.date: 05/29/2025
1414
---
1515

1616
# Configure IP firewall rules to allow indexer connections from Azure AI Search

articles/search/search-indexer-howto-access-trusted-service-exception.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-ai-search
1010
ms.custom:
1111
- ignite-2023
1212
ms.topic: how-to
13-
ms.date: 12/10/2024
13+
ms.date: 05/29/2025
1414
---
1515

1616
# Make indexer connections to Azure Storage as a trusted service

articles/search/search-security-network-security-perimeter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: azure-ai-search
99
ms.custom:
1010
- ignite-2024
1111
ms.topic: how-to
12-
ms.date: 12/05/2024
12+
ms.date: 05/29/2025
1313
---
1414

1515
# Add a search service to a network security perimeter

0 commit comments

Comments
 (0)