Skip to content

Commit 941a164

Browse files
authored
Merge pull request #1871 from eric-urban/eur/search-azure-portal
[SCOPED] Aure portal
2 parents c26514b + 87907e1 commit 941a164

File tree

94 files changed

+212
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+212
-212
lines changed

articles/search/cognitive-search-concept-image-scenarios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ This section supplements the [skill reference](cognitive-search-predefined-skill
149149

150150
1. [Create or update a skillset](/rest/api/searchservice/skillsets/create) to add skills.
151151

152-
1. Add templates for OCR and Image Analysis from the portal, or copy the definitions from the [skill reference](cognitive-search-predefined-skills.md) documentation. Insert them into the skills array of your skillset definition.
152+
1. Add templates for OCR and Image Analysis from the Azure portal, or copy the definitions from the [skill reference](cognitive-search-predefined-skills.md) documentation. Insert them into the skills array of your skillset definition.
153153

154154
1. If necessary, [include a multi-service key](cognitive-search-attach-cognitive-services.md) in the Azure AI services property of the skillset. Azure AI Search makes calls to a billable Azure AI services resource for OCR and image analysis for transactions that exceed the free limit (20 per indexer per day). Azure AI services must be in the same region as your search service.
155155

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For [parallel indexing](search-howto-large-index.md), distribute your data into
7070

7171
## See also
7272

73-
+ [Quickstart: Create an AI enrichment pipeline in the portal](search-get-started-skillset.md)
73+
+ [Quickstart: Create an AI enrichment pipeline in the Azure portal](search-get-started-skillset.md)
7474
+ [Tutorial: Learn AI enrichment REST APIs](cognitive-search-tutorial-blob.md)
7575
+ [How to configure blob indexers](search-howto-indexing-azure-blob-storage.md)
7676
+ [How to define a skillset](cognitive-search-defining-skillset.md)

articles/search/cognitive-search-how-to-debug-skillset.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ Debug sessions work with all generally available [indexer data sources](search-d
5757

5858
1. On the action bar at the top, select **Add debug session**.
5959

60-
:::image type="content" source="media/cognitive-search-debug/new-debug-session.png" lightbox="media/cognitive-search-debug/new-debug-session.png" alt-text="Screenshot of the debug sessions commands in the portal page." border="true":::
60+
:::image type="content" source="media/cognitive-search-debug/new-debug-session.png" lightbox="media/cognitive-search-debug/new-debug-session.png" alt-text="Screenshot of the debug sessions commands in the Azure portal page." border="true":::
6161

6262
1. In **Debug session name**, provide a name that will help you remember which skillset, indexer, and data source the debug session is about.
6363

6464
1. In **Indexer template**, select the indexer that drives the skillset you want to debug. Copies of both the indexer and skillset are used to initialize the session.
6565

6666
1. In **Document to debug**, choose the first document in the index or select a specific document. If you select a specific document, depending on the data source, you're asked for a URI or a row ID.
6767

68-
If your specific document is a blob, provide the blob URI. You can find the URI in the blob property page in the portal.
68+
If your specific document is a blob, provide the blob URI. You can find the URI in the blob property page in the Azure portal.
6969

7070
:::image type="content" source="media/cognitive-search-debug/copy-blob-url.png" lightbox="media/cognitive-search-debug/copy-blob-url.png" alt-text="Screenshot of the URI property in blob storage." border="true":::
7171

@@ -87,7 +87,7 @@ It's expected for a debug session to take longer to execute than the indexer sin
8787

8888
## Start with errors and warnings
8989

90-
Indexer execution history in the portal gives you the full error and warning list for all documents. In a debug session, the errors and warnings are limited to one document. You can work through this list, make your changes, and then return to the list to verify whether issues are resolved.
90+
Indexer execution history in the Azure portal gives you the full error and warning list for all documents. In a debug session, the errors and warnings are limited to one document. You can work through this list, make your changes, and then return to the list to verify whether issues are resolved.
9191

9292
Remember that a debug session is based on one document from the entire index. If an input or output looks wrong, the problem could be specific to that document. You can choose a different document to confirm whether errors and warnings are pervasive or specific to a single document.
9393

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ Console.WriteLine("Creating or updating the data source...");
237237
SearchIndexerDataSourceConnection dataSource = CreateOrUpdateDataSource(indexerClient, configuration);
238238
```
239239

240-
Build and run the solution. Since this is your first request, check the Azure portal to confirm the data source was created in Azure AI Search. On the search service overview page, verify the Data Sources list has a new item. You might need to wait a few minutes for the portal page to refresh.
240+
Build and run the solution. Since this is your first request, check the Azure portal to confirm the data source was created in Azure AI Search. On the search service overview page, verify the Data Sources list has a new item. You might need to wait a few minutes for the Azure portal page to refresh.
241241

242-
![Data sources tile in the portal](./media/cognitive-search-tutorial-blob/data-source-tile.png "Data sources tile in the portal")
242+
![Data sources tile in the Azure portal](./media/cognitive-search-tutorial-blob/data-source-tile.png "Data sources tile in the Azure portal")
243243

244244
### Step 2: Create a skillset
245245

@@ -784,7 +784,7 @@ CheckIndexerOverallStatus(indexerClient, demoIndexer);
784784

785785
In Azure AI Search tutorial console apps, we typically add a 2-second delay before running queries that return results, but because enrichment takes several minutes to complete, we'll close the console app and use another approach instead.
786786

787-
The easiest option is [Search explorer](search-explorer.md) in the portal. You can first run an empty query that returns all documents, or a more targeted search that returns new field content created by the pipeline.
787+
The easiest option is [Search explorer](search-explorer.md) in the Azure portal. You can first run an empty query that returns all documents, or a more targeted search that returns new field content created by the pipeline.
788788

789789
1. In Azure portal, in the search Overview page, select **Indexes**.
790790

@@ -802,7 +802,7 @@ The easiest option is [Search explorer](search-explorer.md) in the portal. You c
802802

803803
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure AI Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
804804

805-
The sample code for this tutorial checks for existing objects and deletes them so that you can rerun your code. You can also use the portal to delete indexes, indexers, data sources, and skillsets.
805+
The sample code for this tutorial checks for existing objects and deletes them so that you can rerun your code. You can also use the Azure portal to delete indexes, indexers, data sources, and skillsets.
806806

807807
## Takeaways
808808

@@ -816,7 +816,7 @@ Finally, you learned how to test results and reset the system for further iterat
816816

817817
When you're working in your own subscription, at the end of a project, it's a good idea to remove the resources that you no longer need. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
818818

819-
You can find and manage resources in the portal, using the All resources or Resource groups link in the left-navigation pane.
819+
You can find and manage resources in the Azure portal, using the All resources or Resource groups link in the left-navigation pane.
820820

821821
## Next steps
822822

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ Finally, you learned how to test results and reset the system for further iterat
565565

566566
When you're working in your own subscription, at the end of a project, it's a good idea to remove the resources that you no longer need. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
567567

568-
You can find and manage resources in the portal, using the All resources or Resource groups link in the left-navigation pane.
568+
You can find and manage resources in the Azure portal, using the All resources or Resource groups link in the left-navigation pane.
569569

570570
## Next steps
571571

articles/search/cognitive-search-tutorial-debug-sessions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ This section creates the sample data set in Azure Blob Storage so that the index
5050

5151
+ Choose the StorageV2 (general purpose V2) account type.
5252

53-
1. Navigate to the Azure Storage services pages in the portal and create a Blob container. Best practice is to specify the access level "private". Name your container `clinicaltrialdataset`.
53+
1. Navigate to the Azure Storage services pages in the Azure portal and create a Blob container. Best practice is to specify the access level "private". Name your container `clinicaltrialdataset`.
5454

5555
1. In container, select **Upload** to upload the sample files you downloaded and unzipped in the first step.
5656

57-
1. While in the portal, copy the connection string for Azure Storage. You can get the connection string from **Settings** > **Access Keys** in the portal.
57+
1. While in the Azure portal, copy the connection string for Azure Storage. You can get the connection string from **Settings** > **Access Keys** in the Azure portal.
5858

5959
## Copy a key and URL
6060

@@ -80,7 +80,7 @@ In this section, create a "buggy" workflow that you can fix in this tutorial.
8080

8181
1. Close the file.
8282

83-
## Check results in the portal
83+
## Check results in the Azure portal
8484

8585
The sample code intentionally creates a buggy index as a consequence of problems that occurred during skillset execution. The problem is that the index is missing data.
8686

@@ -257,9 +257,9 @@ The results should show that organizations and locations are now populated with
257257

258258
When you're working in your own subscription, it's a good idea at the end of a project to identify whether you still need the resources you created. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
259259

260-
You can find and manage resources in the portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
260+
You can find and manage resources in the Azure portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
261261

262-
The free service is limited to three indexes, indexers, and data sources. You can delete individual items in the portal to stay under the limit.
262+
The free service is limited to three indexes, indexers, and data sources. You can delete individual items in the Azure portal to stay under the limit.
263263

264264
## Next steps
265265

articles/search/index-add-suggesters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private static void CreateIndex(string indexName, SearchIndexClient indexClient)
143143
|--------------|-----------------|
144144
| name | Specified in the suggester definition, but also called on an Autocomplete or Suggestions request. |
145145
| sourceFields | Specified in the suggester definition. It's a list of one or more fields in the index that are the source of the content for suggestions. Fields must be of type `Edm.String`. If an analyzer is specified on the field, it must be a named lexical analyzer listed on [LexicalAnalyzerName Struct](/dotnet/api/azure.search.documents.indexes.models.lexicalanalyzername) (not a custom analyzer). </br></br>As a best practice, specify only those fields that lend themselves to an expected and appropriate response, whether it's a completed string in a search bar or a dropdown list. </br></br>A hotel name is a good candidate because it has precision. Verbose fields like descriptions and comments are too dense. Similarly, repetitive fields, such as categories and tags, are less effective. In the examples, we include *category* anyway to demonstrate that you can include multiple fields. |
146-
| searchMode | REST-only parameter, but also visible in the portal. This parameter isn't available in the .NET SDK. It indicates the strategy used to search for candidate phrases. The only mode currently supported is `analyzingInfixMatching`, which currently matches on the beginning of a term.|
146+
| searchMode | REST-only parameter, but also visible in the Azure portal. This parameter isn't available in the .NET SDK. It indicates the strategy used to search for candidate phrases. The only mode currently supported is `analyzingInfixMatching`, which currently matches on the beginning of a term.|
147147

148148
<a name="how-to-use-a-suggester"></a>
149149

articles/search/knowledge-store-concept-intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ A knowledge store is defined inside a skillset definition and it has two compone
5959
}
6060
```
6161

62-
The type of projection you specify in this structure determines the type of storage used by knowledge store, but not its structure. Fields in tables, objects, and files are determined by Shaper skill output if you're creating the knowledge store programmatically, or by the Import data wizard if you're using the portal.
62+
The type of projection you specify in this structure determines the type of storage used by knowledge store, but not its structure. Fields in tables, objects, and files are determined by Shaper skill output if you're creating the knowledge store programmatically, or by the Import data wizard if you're using the Azure portal.
6363

6464
+ `tables` project enriched content into Table Storage. Define a table projection when you need tabular reporting structures for inputs to analytical tools or export as data frames to other data stores. You can specify multiple `tables` within the same projection group to get a subset or cross section of enriched documents. Within the same projection group, table relationships are preserved so that you can work with all of them.
6565

@@ -73,11 +73,11 @@ The type of projection you specify in this structure determines the type of stor
7373

7474
## Create a knowledge store
7575

76-
To create knowledge store, use the portal or an API.
76+
To create knowledge store, use the Azure portal or an API.
7777

7878
You need [Azure Storage](/azure/storage/), a [skillset](cognitive-search-working-with-skillsets.md), and an [indexer](search-indexer-overview.md). Because indexers require a search index, you also need to provide an index definition.
7979

80-
Go with the portal approach for the fastest route to a finished knowledge store. Or, choose the REST API for a deeper understanding of how objects are defined and related.
80+
Go with the Azure portal approach for the fastest route to a finished knowledge store. Or, choose the REST API for a deeper understanding of how objects are defined and related.
8181

8282
### [**Azure portal**](#tab/portal)
8383

@@ -151,7 +151,7 @@ Although an indexer creates and updates structures and content in Azure Storage,
151151

152152
Knowledge store offers persistence of enriched documents, useful when designing a skillset, or the creation of new structures and content for consumption by any client applications capable of accessing an Azure Storage account.
153153

154-
The simplest approach for creating enriched documents is [through the portal](knowledge-store-create-portal.md), but a REST client and REST APIs can provide more insight into how objects are created and referenced programmatically.
154+
The simplest approach for creating enriched documents is [through the Azure portal](knowledge-store-create-portal.md), but a REST client and REST APIs can provide more insight into how objects are created and referenced programmatically.
155155

156156
> [!div class="nextstepaction"]
157157
> [Create a knowledge store using REST](knowledge-store-create-rest.md)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ In this quickstart, the table for "hotelReviewssPages" should look similar to th
166166

167167
When you're working in your own subscription, it's a good idea at the end of a project to identify whether you still need the resources you created. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
168168

169-
You can find and manage resources in the portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
169+
You can find and manage resources in the Azure portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
170170

171-
If you're using a free service, remember that you're limited to three indexes, indexers, and data sources. You can delete individual items in the portal to stay under the limit.
171+
If you're using a free service, remember that you're limited to three indexes, indexers, and data sources. You can delete individual items in the Azure portal to stay under the limit.
172172

173173
> [!TIP]
174174
> If you want to repeat this exercise or try a different AI enrichment walkthrough, delete the **hotel-reviews-idxr** indexer and the related objects to recreate them. Deleting the indexer resets the free daily transaction counter to zero.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ In this walkthrough, the knowledge store is composed of a various tables showing
408408

409409
When you're working in your own subscription, it's a good idea at the end of a project to identify whether you still need the resources you created. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
410410

411-
You can find and manage resources in the portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
411+
You can find and manage resources in the Azure portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
412412

413413
## Next steps
414414

0 commit comments

Comments
 (0)