Skip to content

Commit c6b3108

Browse files
authored
Merge pull request #185602 from HeidiSteen/heidist-fresh
Portal tab consistency pass
2 parents b92e037 + 55fcbe7 commit c6b3108

9 files changed

+31
-22
lines changed

articles/search/cognitive-search-attach-cognitive-services.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ You can use the Azure portal, REST API, or an Azure SDK to attach a billable res
3030

3131
If you leave the property unspecified, execution of billable skills will stop at 20 transactions per indexer invocation and a "Time Out" message will appear in indexer execution history.
3232

33-
### [**Azure portal**](#tab/cogkey-portal)
33+
### [**Azure portal**](#tab/portal)
34+
35+
1. [Sign in to Azure portal](https://portal.azure.com).
3436

3537
1. Create a [multi-service Cognitive Services resource](../cognitive-services/cognitive-services-apis-create-account.md) in the [same region](#same-region-requirement) as your search service.
3638

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,19 @@ To create knowledge store, use the portal or an API. You will need [Azure Storag
7676

7777
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.
7878

79-
### [**Azure portal**](#tab/kstore-portal)
79+
### [**Azure portal**](#tab/portal)
8080

8181
[**Create your first knowledge store in four steps**](knowledge-store-create-portal.md) using the **Import data** wizard.
8282

83-
1. Define your data source
83+
1. [Sign in to Azure portal](https://portal.azure.com).
84+
85+
1. Define your data source.
8486

8587
1. Define your skillset and specify a knowledge store.
8688

8789
1. Define an index schema. The wizard requires it and can infer one for you.
8890

89-
1. Run the wizard. Extraction, enrichment, and storage occur in this last step.
91+
1. Complete the wizard. Extraction, enrichment, and storage occur in this last step.
9092

9193
The wizard automates tasks that you would otherwise have to be handled manually. Specifically, both shaping and projections (definitions of physical data structures in Azure Storage) are created for you.
9294

articles/search/search-how-to-create-search-index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ When you're ready to create the index, use a search client that can send the req
6464

6565
During development, plan on frequent rebuilds. Because physical structures are created in the service, [dropping and re-creating indexes](search-howto-reindex.md) is necessary for many modifications. You might consider working with a subset of your data to make rebuilds go faster.
6666

67-
### [**Azure portal**](#tab/index-portal)
67+
### [**Azure portal**](#tab/portal)
6868

6969
Index design through the portal enforces requirements and schema rules for specific data types, such as disallowing full text search capabilities on numeric fields.
7070

71-
1. [Sign in to the Azure portal](https://portal.azure.com)
71+
1. [Sign in to Azure portal](https://portal.azure.com).
7272

7373
1. In the search service Overview page, choose either option for creating a search index:
7474

articles/search/search-how-to-load-search-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A search service accepts JSON documents that conform to the index schema.
2727

2828
You can prepare these documents yourself, but if content resides in a [supported data source](search-indexer-overview.md#supported-data-sources), running an [indexer](search-indexer-overview.md) or the Import data wizard can automate document retrieval, JSON serialization, and indexing.
2929

30-
### [**Azure portal**](#tab/import-portal)
30+
### [**Azure portal**](#tab/portal)
3131

3232
Using Azure portal, the sole means for loading an index is the [Import Data wizard](search-import-data-portal.md). The wizard creates objects. If you want to load an existing index, you will need to use an alternative approach.
3333

articles/search/search-howto-complex-data-types.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ As with any index definition, you can use the portal, [REST API](/rest/api/searc
7171

7272
Other Azure SDKs provide samples in [Python](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/search/azure-search-documents/samples/sample_index_crud_operations.py), [Java](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/search/azure-search-documents/src/samples/java/com/azure/search/documents/indexes/CreateIndexExample.java), and [JavaScript](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/search/search-documents/samples/v11/javascript/indexOperations.js).
7373

74-
### [**Azure portal**](#tab/complex-type-portal)
74+
### [**Azure portal**](#tab/portal)
75+
76+
1. [Sign in to Azure portal](https://portal.azure.com).
7577

7678
1. On the search service **Overview** page, select the **Indexes** tab.
7779

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,19 @@ In terms of how indexers interact with an index, an indexer only checks field na
118118

119119
When you are ready to create an indexer on a remote search service, you will need a search client, such as Azure portal or Postman, or code that instantiates an indexer client. We recommend the Azure portal or REST APIs for early development and proof-of-concept testing.
120120

121-
### [**Azure portal**](#tab/indexer-portal)
121+
### [**Azure portal**](#tab/portal)
122122

123-
The portal provides two options for creating an indexer: [**Import data wizard**](search-import-data-portal.md) and **New Indexer** that provides a visual editor for specifying an indexer definition. The wizard is unique in that it creates all of the required elements. Other approaches require that you have predefined a data source and index.
123+
1. [Sign in to Azure portal](https://portal.azure.com).
124124

125-
The following screenshot shows where you can find these features in the portal.
125+
1. On the search service Overview page, choose from two options:
126126

127-
:::image type="content" source="media/search-howto-create-indexers/portal-indexer-client.png" alt-text="hotels indexer" border="true":::
127+
+ [**Import data wizard**](search-import-data-portal.md). The wizard is unique in that it creates all of the required elements. Other approaches require that you have predefined a data source and index.
128+
129+
+ **New Indexer**, a visual editor for specifying an indexer definition.
130+
131+
The following screenshot shows where you can find these features in the portal.
132+
133+
:::image type="content" source="media/search-howto-create-indexers/portal-indexer-client.png" alt-text="hotels indexer" border="true":::
128134

129135
### [**REST**](#tab/indexer-rest)
130136

articles/search/search-howto-run-reset-indexers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Reset also applies to just new and update operations. It will not trigger deleti
7272

7373
Once you reset an indexer, you cannot undo the action.
7474

75-
### [**Azure portal**](#tab/reset-indexer-portal)
75+
### [**Azure portal**](#tab/portal)
7676

7777
1. [Sign in to Azure portal](https://portal.azure.com) and open the search service page.
7878
1. On the **Overview** page, select the **Indexers** tab.

articles/search/search-security-rbac.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ In this step, configure your search service to recognize an **authorization** he
9494

9595
### [**Azure portal**](#tab/config-svc-portal)
9696

97-
1. Open the [Azure portal](https://ms.portal.azure.com).
98-
99-
1. Navigate to your search service.
97+
1. [Sign in to Azure portal](https://portal.azure.com) and open the search service page.
10098

10199
1. Select **Keys** in the left navigation pane.
102100

articles/search/semantic-how-to-query-request.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,18 +101,17 @@ Similar to [scoring profiles](index-add-scoring-profiles.md), semantic configura
101101

102102
### [**Azure portal**](#tab/portal)
103103

104-
To create a semantic configuration in the Azure portal:
104+
1. [Sign in to Azure portal](https://portal.azure.com) and navigate to a search service that has [semantic search enabled](semantic-search-overview.md#enable-semantic-search).
105105

106-
1. Open the [Azure portal](https://portal.azure.com) and navigate to a search service that has semantic search [enabled](semantic-search-overview.md#enable-semantic-search).
107-
108-
1. Navigate to the index you want to add a semantic configuration to.
106+
1. Open an index.
109107

110108
1. Select **Semantic Configurations** and then select **Add Semantic Configuration**.
111109

112-
1. At this point, a wizard will appear allowing you to select a title field, content fields, and keyword fields. Make sure to list content fields and keyword fields in priority order. After you're finished, select **OK** and then save the changes.
110+
The **New Semantic Configuration** page opens with options for selecting a title field, content fields, and keyword fields. Make sure to list content fields and keyword fields in priority order.
113111

114-
:::image type="content" source="./media/semantic-search-overview/create-semantic-config.png" alt-text="Screenshot that shows how to create a semantic configuration in the Azure portal." border="true":::
112+
Select **OK** to save the changes.
115113

114+
:::image type="content" source="./media/semantic-search-overview/create-semantic-config.png" alt-text="Screenshot that shows how to create a semantic configuration in the Azure portal." border="true":::
116115

117116
### [**REST API**](#tab/rest)
118117

0 commit comments

Comments
 (0)