Skip to content

Commit c741975

Browse files
fix frontmatter timestamp & markdown issues
1 parent bb1207d commit c741975

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/apis/migration-api-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "SharePoint Online Import Migration API"
33
description: "This article provides in depth information on how to use the SPO Migration API."
4-
ms.date: 06/28/2022
4+
ms.date: 12/05/2022
55
ms.author: jhendr
66
author: JoanneHendrickson
77
manager: serdars
@@ -57,7 +57,8 @@ The required permissions are as follows in the Azure Storage API:
5757
(SharedAccessBlobPermissions.Read | SharedAccessBlobPermissions.List)
5858
```
5959

60-
**Note:** The change to enforce Read and List permissions on the SAS token is coming in a future build. Until then it will not be enforced. However, it is a best practice to use these values.
60+
> [!NOTE]
61+
> The change to enforce Read and List permissions on the SAS token is coming in a future build. Until then it will not be enforced. However, it is a best practice to use these values.
6162
6263
All files in the container must have at least a single snapshot applied to them to ensure that no file modification is made by the customer during the import. Any file that does not have a snapshot will be skipped during import and have an error thrown, although the job will attempt to continue the import. The import pipeline will use the latest snapshot of the file available at the time of import. The following is an example of the code that might be used to create a snapshot on a file after it is uploaded to Azure Blob Storage:
6364

@@ -312,6 +313,7 @@ The **ExportSettings.XML** file is expected to be at the root of the Azure Blob
312313
The main requirement is that the ExportSettings `SiteUrl` value must be populated with a URL consistent with the source URL used for the rest of the import package. In the case of file shares as a source, the URL would be pre-specified to be the source URL in the rest of the package, whereas a package generated through an export operation at a source site would be its original source site collection URL.
313314

314315
#### SourceType required
316+
315317
Beginning January 1, 2023, the SourceType field will be mandatory when calling the Migration API. Starting October 1st, 2022, a warning message will be sent if the field is missing.
316318

317319
Accepted SourceType values:
@@ -335,13 +337,11 @@ When declaring to **Other**, include *DetailedSource* to provide us the detailed
335337
**Example**:
336338

337339
```powershell
338-
339340
<ExportSettings xmlns="urn:deployment-exportsettings-schema" SiteUrl="https://some site url" FileLocation="some paths" IncludeSecurity="All" SourceType="Other" DetailedSource="My special source type not in the list">
340341
<ExportObjects>
341342
<DeploymentObject Id="GUID for list" Type="List" ParentId="GUID for web" />
342343
</ExportObjects>
343344
</ExportSettings>
344-
345345
```
346346

347347
### LookupListMap.XML

0 commit comments

Comments
 (0)