Skip to content

Commit 05e6c1f

Browse files
authored
Merge pull request #1710 from HeidiSteen/heidist-uuf
Remove preview from TOC, acrolinx pass on sharepoint how-to
2 parents 343e240 + 3a37051 commit 05e6c1f

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

articles/search/search-get-started-portal-import-vectors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ Search Explorer accepts text strings as input and then vectorizes the text for v
481481

482482
Each document is a chunk of the original PDF. The `title` field shows which PDF the chunk comes from. Each `chunk` is quite long. You can copy and paste one into a text editor to read the entire value.
483483

484-
1. To see all of the chunks from a specific document, add a filter for the `text_parent_id` field for a specific PDF. You can check the **Fields** tab of your index to confirm this field is filterable.
484+
1. To see all of the chunks from a specific document, add a filter for the `title_parent_id` field for a specific PDF. You can check the **Fields** tab of your index to confirm this field is filterable.
485485

486486
```json
487487
{

articles/search/search-howto-index-sharepoint-online.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Here are the limitations of this feature:
6464

6565
+ Indexing sub-sites recursively from a specific site provided isn't supported.
6666

67-
+ SharePoint Online indexer isn't supported when [Microsoft ENTRA ID Conditional Access](/entra/identity/conditional-access/overview) is enabled.
67+
+ SharePoint Online indexer isn't supported when [Microsoft Entra ID Conditional Access](/entra/identity/conditional-access/overview) is enabled.
6868

6969
Here are the considerations when using this feature:
7070

@@ -74,7 +74,7 @@ Here are the considerations when using this feature:
7474

7575
<!-- + There could be Microsoft 365 processes that update SharePoint file system-metadata (based on different configurations in SharePoint) and will cause the SharePoint Online indexer to trigger. Make sure that you test your setup and understand the document processing count prior to using any AI enrichment. Since this is a third-party connector to Azure (SharePoint is located in Microsoft 365), SharePoint configuration is not checked by the indexer. -->
7676

77-
+ If your SharePoint configuration allows Microsoft 365 processes to update SharePoint file system metadata, be aware that these updates can trigger the SharePoint Online indexer, causing the indexer to ingest documents multiple times. Because the SharePoint Online indexer is a third-party connector to Azure, the indexer can't read the configuration or vary its behavior. It responds to changes in new and changed content, regardless of how those updates are made. For this reason, make sure that you test your setup and understand the document processing count prior to using the indexer and any AI enrichment.
77+
+ If your SharePoint configuration allows Microsoft 365 processes to update SharePoint file system metadata, be aware that these updates can trigger the SharePoint Online indexer, causing the indexer to ingest documents multiple times. Because the SharePoint Online indexer is a non-Microsoft connector to Azure, the indexer can't read the configuration or vary its behavior. It responds to changes in new and changed content, regardless of how those updates are made. For this reason, make sure that you test your setup and understand the document processing count prior to using the indexer and any AI enrichment.
7878

7979

8080

@@ -107,7 +107,7 @@ We recommend app-based permissions. See [limitations](#limitations-and-considera
107107

108108
+ Application permissions (recommended), where the indexer runs under the [identity of the SharePoint tenant](/sharepoint/dev/solution-guidance/security-apponly-azureacs) with access to all sites and files. The indexer requires a [client secret](/azure/active-directory/develop/v2-oauth2-client-creds-grant-flow). The indexer will also require [tenant admin approval](/azure/active-directory/manage-apps/grant-admin-consent) before it can index any content.
109109

110-
+ Delegated permissions, where the indexer runs under the identity of the user or app sending the request. Data access is limited to the sites and files to which the caller has access. To support delegated permissions, the indexer requires a [device code prompt](/azure/active-directory/develop/v2-oauth2-device-code) to sign in on behalf of the user. User-delegated permissions enforces token expiration every 75 minutes, per the most recent security libraries used to implement this authentication type. This is not a behavior that can be adjusted. An expired token requires manual indexing using [Run Indexer (preview)](/rest/api/searchservice/indexers/run?view=rest-searchservice-2024-05-01-preview&tabs=HTTP&preserve-view=true). For this reason, you might want app-based permissions instead.
110+
+ Delegated permissions, where the indexer runs under the identity of the user or app sending the request. Data access is limited to the sites and files to which the caller has access. To support delegated permissions, the indexer requires a [device code prompt](/azure/active-directory/develop/v2-oauth2-device-code) to sign in on behalf of the user. User-delegated permissions enforce token expiration every 75 minutes, per the most recent security libraries used to implement this authentication type. This isn't a behavior that can be adjusted. An expired token requires manual indexing using [Run Indexer (preview)](/rest/api/searchservice/indexers/run?view=rest-searchservice-2024-05-01-preview&tabs=HTTP&preserve-view=true). For this reason, you might want app-based permissions instead.
111111

112112

113113
<a name='step-3-create-an-azure-ad-application'></a>
@@ -253,7 +253,7 @@ api-key: [admin key]
253253

254254
An indexer connects a data source with a target search index and provides a schedule to automate the data refresh. Once the index and data source are created, you can create the indexer.
255255

256-
If you are using delegated permissions, during this step, you’re asked to sign in with organization credentials that have access to the SharePoint site. If possible, we recommend creating a new organizational user account and giving that new user the exact permissions that you want the indexer to have.
256+
If you're using delegated permissions, during this step, you’re asked to sign in with organization credentials that have access to the SharePoint site. If possible, we recommend creating a new organizational user account and giving that new user the exact permissions that you want the indexer to have.
257257

258258
There are a few steps to creating the indexer:
259259

@@ -292,7 +292,7 @@ There are a few steps to creating the indexer:
292292
}
293293
```
294294
295-
If you're using application permissions, it's necessary to wait until the initial run is complete before starting to query your index. The following instructions provided in this step pertain specifically to delegated permissions, and are not applicable to application permissions.
295+
If you're using application permissions, it's necessary to wait until the initial run is complete before starting to query your index. The following instructions provided in this step pertain specifically to delegated permissions, and aren't applicable to application permissions.
296296
297297
1. When you create the indexer for the first time, the [Create Indexer (preview)](/rest/api/searchservice/indexers/create-or-update?view=rest-searchservice-2024-05-01-preview&tabs=HTTP&preserve-view=true) request waits until you complete the next step. You must call [Get Indexer Status](/rest/api/searchservice/indexers/get-status?view=rest-searchservice-2024-05-01-preview&tabs=HTTP&preserve-view=true) to get the link and enter your new device code.
298298
@@ -377,7 +377,7 @@ Here are the steps for updating a data source, assuming an expired device code:
377377
378378
## Indexing document metadata
379379
380-
If you're indexing document metadata (`"dataToExtract": "contentAndMetadata"`), the following metadata will be available to index.
380+
If you're indexing document metadata (`"dataToExtract": "contentAndMetadata"`), the following metadata is available to index.
381381
382382
| Identifier | Type | Description |
383383
| ------------- | -------------- | ----------- |
@@ -487,7 +487,7 @@ You can also continue indexing if errors happen at any point of processing, eith
487487
}
488488
```
489489

490-
If a file on the SharePoint site has encryption enabled, an error message similar to the following may be encountered:
490+
If a file on the SharePoint site has encryption enabled, you might see the following error message:
491491

492492
```
493493
Code: resourceModified Message: The resource has changed since the caller last read it; usually an eTag mismatch Inner error: Code: irmEncryptFailedToFindProtector

articles/search/toc.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ items:
299299
href: search-how-to-index-sql-server.md
300300
- name: OneLake files
301301
href: search-how-to-index-onelake-files.md
302-
- name: SharePoint in Microsoft 365
302+
- name: SharePoint and OneDrive
303303
href: search-howto-index-sharepoint-online.md
304304
- name: Skillsets
305305
items:
@@ -357,7 +357,7 @@ items:
357357
href: vector-search-how-to-assign-narrow-data-types.md
358358
- name: Eliminate redundant storage
359359
href: vector-search-how-to-storage-options.md
360-
- name: Truncate dimensions (preview)
360+
- name: Truncate dimensions
361361
href: vector-search-how-to-truncate-dimensions.md
362362
- name: Query vectors
363363
href: vector-search-how-to-query.md
@@ -592,7 +592,7 @@ items:
592592
href: query-simple-syntax.md
593593
- name: Full Lucene query syntax
594594
href: query-lucene-syntax.md
595-
- name: moreLikeThis (preview)
595+
- name: moreLikeThis
596596
href: search-more-like-this.md
597597
- name: OData language reference
598598
items:
@@ -641,7 +641,7 @@ items:
641641
href: cognitive-search-skill-annotation-language.md
642642
- name: Azure AI resource skills
643643
items:
644-
- name: Document Layout skill (preview)
644+
- name: Document Layout skill
645645
href: cognitive-search-skill-document-intelligence-layout.md
646646
- name: Entity Linking (v3)
647647
href: cognitive-search-skill-entity-linking-v3.md
@@ -661,7 +661,7 @@ items:
661661
href: cognitive-search-skill-sentiment-v3.md
662662
- name: Text Translation
663663
href: cognitive-search-skill-text-translation.md
664-
- name: AI Vision multimodal embeddings (preview)
664+
- name: AI Vision multimodal embeddings
665665
href: cognitive-search-skill-vision-vectorize.md
666666
- name: Azure AI Search utility skills (nonbillable)
667667
items:
@@ -677,7 +677,7 @@ items:
677677
href: cognitive-search-skill-textsplit.md
678678
- name: Azure OpenAI skills
679679
items:
680-
- name: Azure OpenAI Embedding (preview)
680+
- name: Azure OpenAI Embedding
681681
href: cognitive-search-skill-azure-openai-embedding.md
682682
- name: Custom skills
683683
items:

0 commit comments

Comments
 (0)