Skip to content

Commit 41d3217

Browse files
authored
Merge pull request #268209 from HeidiSteen/heidist-fix
[azure search] Bulk edit "postman"
2 parents e4bb3f4 + 6e790b6 commit 41d3217

21 files changed

+23
-23
lines changed

articles/search/cognitive-search-create-custom-skill-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ Of course, you may rename the file from `Function1.cs` to `BingEntitySearch.cs`.
314314

315315
## Test the function from Visual Studio
316316

317-
Press **F5** to run the program and test function behaviors. In this case, we'll use the function below to look up two entities. Use Postman or Fiddler to issue a call like the one shown below:
317+
Press **F5** to run the program and test function behaviors. In this case, we'll use the function below to look up two entities. Use a REST client to issue a call like the one shown below:
318318

319319
```http
320320
POST https://localhost:7071/api/EntitySearch

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ If you used a free service, remember that you're limited to three indexes, index
191191

192192
## Next steps
193193

194-
You can create skillsets using the portal, .NET SDK, or REST API. To further your knowledge, try the REST API using Postman and more sample data.
194+
You can create skillsets using the portal, .NET SDK, or REST API. To further your knowledge, try the REST API using a REST client and more sample data.
195195

196196
> [!div class="nextstepaction"]
197197
> [Tutorial: Extract text and structure from JSON blobs using REST APIs ](cognitive-search-tutorial-blob.md)

articles/search/cognitive-search-working-with-skillsets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ In this example, source fields from a CSV file include customer reviews about ho
181181
In the hotel reviews example, a "document" within the enrichment process represents a single hotel review.
182182

183183
> [!TIP]
184-
> You can create a search index and knowledge store for this data in [Azure portal](knowledge-store-create-portal.md) or through [Postman and the REST APIs](knowledge-store-create-rest.md). You can also use [Debug Sessions](cognitive-search-debug-session.md) for insights into skillset composition, dependencies, and effects on an enrichment tree. Images in this article are pulled from Debug Sessions.
184+
> You can create a search index and knowledge store for this data in [Azure portal](knowledge-store-create-portal.md) or [REST APIs](knowledge-store-create-rest.md). You can also use [Debug Sessions](cognitive-search-debug-session.md) for insights into skillset composition, dependencies, and effects on an enrichment tree. Images in this article are pulled from Debug Sessions.
185185
186186
Conceptually, the initial enrichment tree looks as follows:
187187

articles/search/hybrid-search-how-to-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ A hybrid query combines full text search and vector search, where the `"search"`
4242

4343
Hybrid queries are useful because they add support for all query capabilities, including orderby and [semantic ranking](semantic-how-to-query-request.md). For example, in addition to the vector query, you could search over people or product names or titles, scenarios for which similarity search isn't a good fit.
4444

45-
The following example is from the [Postman collection of REST APIs](https://github.com/Azure/azure-search-vector-samples/tree/main/demo-python) that demonstrate hybrid query configurations.
45+
The following example shows a hybrid query configurations.
4646

4747
```http
4848
POST https://{{search-service-name}}.search.windows.net/indexes/{{index-name}}/docs/search?api-version=2023-11-01

articles/search/knowledge-store-connect-power-bi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In this article, learn how to connect to and query a knowledge store using Power
1818

1919
A knowledge store that's composed of tables in Azure Storage work best in Power BI. If the tables contain projections from the same skillset and projection group, you can easily "join" them to build table visualizations that include fields from related tables.
2020

21-
Follow the steps in this article using sample data and a knowledge store as [created in this portal quickstart](knowledge-store-create-portal.md) or through [Postman and REST APIs](knowledge-store-create-rest.md).
21+
Follow the steps in this article using sample data and a knowledge store as [created in this portal quickstart](knowledge-store-create-portal.md) or through [REST APIs](knowledge-store-create-rest.md).
2222

2323
## Connect to Azure Storage
2424

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,4 @@ If you're using a free service, remember that you're limited to three indexes, i
178178
Now that you've been introduced to a knowledge store, take a closer look at each step by switching over to the REST API walkthrough. Tasks that the wizard handled internally are explained in the REST walkthrough.
179179

180180
> [!div class="nextstepaction"]
181-
> [Create a knowledge store using REST and Postman](knowledge-store-create-rest.md)
181+
> [Create a knowledge store using REST](knowledge-store-create-rest.md)

articles/search/query-lucene-syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ In some circumstances, you may want to search for a special character, like an '
186186

187187
Analyzers that tokenize special characters include the whitespace analyzer, which takes into consideration any character sequences separated by whitespaces as tokens (so the `` string would be considered a token). Also, a language analyzer like the Microsoft English analyzer ("en.microsoft"), would take the "€" string as a token. You can [test an analyzer](/rest/api/searchservice/test-analyzer) to see what tokens it generates for a given query.
188188

189-
When using Unicode characters, make sure symbols are properly escaped in the query url (for instance for `` would use the escape sequence `%E2%9D%A4+`). Postman does this translation automatically.
189+
When using Unicode characters, make sure symbols are properly escaped in the query url (for instance for `` would use the escape sequence `%E2%9D%A4+`). Some REST clients do this translation automatically.
190190

191191
## Precedence (grouping)
192192

articles/search/search-capacity-planning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ One approach for estimating capacity is to start with the Free tier. Remember th
7474

7575
+ [Create a free service](search-create-service-portal.md).
7676
+ Prepare a small, representative dataset.
77-
+ Create an index and load your data. If the dataset can be hosted in an Azure data source supported by indexers, you can use the [Import data wizard in the portal](search-get-started-portal.md) to both create and load the index. Otherwise, you could use [REST and Postman](search-get-started-rest.md) to create the index and push the data. The push model requires data to be in the form of JSON documents, where fields in the document correspond to fields in the index.
77+
+ Create an index and load your data. If the dataset can be hosted in an Azure data source supported by indexers, you can use the [Import data wizard in the portal](search-get-started-portal.md) to both create and load the index. Otherwise, you could use [REST APIs](search-get-started-rest.md) to create the index and push the data. The push model requires data to be in the form of JSON documents, where fields in the document correspond to fields in the index.
7878
+ Collect information about the index, such as size. Features and attributes affect storage. For example, adding suggesters (search-as-you-type queries) will increase storage requirements.
7979

8080
Using the same data set, you might try creating multiple versions of an index, with different attributes on each field, to see how storage requirements vary. For more information, see ["Storage implications" in Create a basic index](search-what-is-an-index.md#index-size).

articles/search/search-explorer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ If you're using a free service, remember that you're limited to three indexes, i
201201

202202
## Next steps
203203

204-
To learn more about query structures and syntax, use Postman or an equivalent tool to create query expressions that use more parts of the API. The [Search POST REST API](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2023-10-01-preview&preserve-view=true) is especially helpful for learning and exploration.
204+
To learn more about query structures and syntax, use a REST client to create query expressions that use more parts of the API. The [Search POST REST API](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2023-10-01-preview&preserve-view=true) is especially helpful for learning and exploration.
205205

206206
> [!div class="nextstepaction"]
207-
> [Create a basic query in Postman](search-get-started-rest.md)
207+
> [Create a basic query in REST](search-get-started-rest.md)

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
@@ -38,7 +38,7 @@ This article also provides:
3838

3939
+ Read permissions. Azure AI Search supports SQL Server authentication, where the user name and password are provided on the connection string. Alternatively, you can [set up a managed identity and use Azure roles](search-howto-managed-identities-sql.md).
4040

41-
To work through the examples in this article, you'll need a REST client, such as [Postman](search-get-started-rest.md).
41+
To work through the examples in this article, you need a [REST client](search-get-started-rest.md).
4242

4343
Other approaches for creating an Azure SQL indexer include Azure SDKs or [Import data wizard](search-get-started-portal.md) in the Azure portal. If you're using Azure portal, make sure that access to all public networks is enabled in the Azure SQL firewall and that the client has access via an inbound rule.
4444

0 commit comments

Comments
 (0)