Skip to content

Commit e119f41

Browse files
committed
REST API create data source update
1 parent b7e730a commit e119f41

10 files changed

+10
-10
lines changed

articles/search/cognitive-search-concept-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ An enrichment pipeline consists of [*indexers*](search-indexer-overview.md) that
116116

117117
Start with a subset of data in a [supported data source](search-indexer-overview.md#supported-data-sources). Indexer and skillset design is an iterative process. The work goes faster with a small representative data set.
118118

119-
1. Create a [data source](/rest/api/searchservice/create-data-source) that specifies a connection to your data.
119+
1. Create a [data source](/rest/api/searchservice/data-sources/create) that specifies a connection to your data.
120120

121121
1. [Create a skillset](cognitive-search-defining-skillset.md). Unless your project is small, you should [attach an Azure AI multi-service resource](cognitive-search-attach-cognitive-services.md). If you're [creating a knowledge store](knowledge-store-create-rest.md), define it within the skillset.
122122

articles/search/cognitive-search-tutorial-blob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ AI enrichment is indexer-driven. This part of the walkthrough creates four objec
9797
9898
### Step 1: Create a data source
9999
100-
Call [Create Data Source](/rest/api/searchservice/create-data-source) to set the connection string to the Blob container containing the sample data files.
100+
Call [Create Data Source](/rest/api/searchservice/data-sources/create) to set the connection string to the Blob container containing the sample data files.
101101
102102
```http
103103
### Create a data source

articles/search/knowledge-store-create-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ A valid API key establishes trust, on a per request basis, between the applicati
113113
114114
## Create a data source
115115
116-
[Create Data Source](/rest/api/searchservice/create-data-source) creates a data source connection on Azure AI Search.
116+
[Create Data Source](/rest/api/searchservice/data-sources/create) creates a data source connection on Azure AI Search.
117117
118118
1. Paste in the following example to create the data source.
119119

articles/search/search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Other approaches for creating an Azure SQL indexer include Azure SDKs or [Import
4646

4747
The data source definition specifies the data to index, credentials, and policies for identifying changes in the data. A data source is defined as an independent resource so that it can be used by multiple indexers.
4848

49-
1. [Create data source](/rest/api/searchservice/create-data-source) or [Update data source](/rest/api/searchservice/update-data-source) to set its definition:
49+
1. [Create Data Source](/rest/api/searchservice/data-sources/create) or [Create or Update Data Source](/rest/api/searchservice/data-sources/create-or-update) to set its definition:
5050

5151
```http
5252
POST https://myservice.search.windows.net/datasources?api-version=2024-07-01

articles/search/search-howto-create-indexers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Indexers require a data source that specifies the type, container, and connectio
127127

128128
1. Make sure you're using a [supported data source type](search-indexer-overview.md#supported-data-sources).
129129

130-
1. [Create a data source](/rest/api/searchservice/create-data-source) definition. The following list is a few of the more frequently used data sources:
130+
1. [Create a data source](/rest/api/searchservice/data-sources/create) definition. The following list is a few of the more frequently used data sources:
131131

132132
+ [Azure Blob Storage](search-howto-indexing-azure-blob-storage.md)
133133
+ [Azure Cosmos DB](search-howto-index-cosmosdb.md)

articles/search/search-howto-index-azure-data-lake-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ It's important to point out that you don't need to define fields for all of the
9696

9797
The data source definition specifies the data to index, credentials, and policies for identifying changes in the data. A data source is defined as an independent resource so that it can be used by multiple indexers.
9898

99-
1. [Create or update a data source](/rest/api/searchservice/create-data-source) to set its definition:
99+
1. [Create or update a data source](/rest/api/searchservice/data-sources/create-or-update) to set its definition:
100100

101101
```json
102102
{

articles/search/search-howto-index-cosmosdb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Because terminology can be confusing, it's worth noting that [Azure Cosmos DB in
3535

3636
The data source definition specifies the data to index, credentials, and policies for identifying changes in the data. A data source is an independent resource that can be used by multiple indexers.
3737

38-
1. [Create or update a data source](/rest/api/searchservice/create-data-source) to set its definition:
38+
1. [Create or update a data source](/rest/api/searchservice/data-sources/create-or-update) to set its definition:
3939

4040
```http
4141
POST https://[service name].search.windows.net/datasources?api-version=2024-07-01

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Indexers use a data source object for connections to an external data source. Th
6868

6969
You must have a [system-assigned managed identity already configured](search-howto-managed-identities-data-sources.md), and it must have a role-assignment on Azure Storage.
7070

71-
For connections made using a system-assigned managed identity, the only change to the [data source definition](/rest/api/searchservice/create-data-source) is the format of the `credentials` property.
71+
For connections made using a system-assigned managed identity, the only change to the [data source definition](/rest/api/searchservice/data-sources/create) is the format of the `credentials` property.
7272

7373
Provide a `ResourceId` that has no account key or password. The `ResourceId` must include the subscription ID of the storage account, the resource group of the storage account, and the storage account name.
7474

articles/search/search-indexer-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ You can create a data source using any of these approaches:
127127

128128
+ Using the Azure portal, on the **Data sources** tab of your search service pages, select **Add data source** to specify the data source definition.
129129
+ Using the Azure portal, the [Import data wizard](search-import-data-portal.md) outputs a data source.
130-
+ Using the REST APIs, call [Create Data Source](/rest/api/searchservice/create-data-source).
130+
+ Using the REST APIs, call [Create Data Source](/rest/api/searchservice/data-sources/create).
131131
+ Using the Azure SDK for .NET, call [SearchIndexerDataSourceConnection class](/dotnet/api/azure.search.documents.indexes.models.searchindexerdatasourceconnection)
132132

133133
### Step 2: Create an index

articles/search/search-semi-structured-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ See [Quickstart: Text search using REST](search-get-started-rest.md) if you need
133133

134134
## Create a data source
135135

136-
[Create Data Source (REST)](/rest/api/searchservice/create-data-source) creates a data source connection that specifies what data to index.
136+
[Create Data Source (REST)](/rest/api/searchservice/data-sources/create) creates a data source connection that specifies what data to index.
137137

138138
```http
139139
### Create a data source

0 commit comments

Comments
 (0)