Skip to content

Commit c032a8c

Browse files
Conform to MSDOCS req's: md formatting & timestamp
- updated the article timestamp to reflect the latest update (`ms.date` field in front matter) - fixed code formatting (don't add indentation to code snippets when they should be left-justified... only indent when needed - modified `<span>` tags to be HTML tags - the way they were done, there were 4 open tags with no corresponding closing tag; removed dupes and modified for closing tags
1 parent 372522a commit c032a8c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/apis/migration-api-azure-container-and-queue.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: SPO provided Migration Azure container and queue
33
ms.author: jhendr
44
author: JoanneHendrickson
55
manager: pamgreen
6-
ms.date: 6/20/2018
6+
ms.date: 04/23/2020
77
description: "One of the Main requirement for using our Migration API is the usage of an Azure container as a temporary storage. We now provide a default container that can be used for using the migration API."
88
localization_priority: Normal
99
---
@@ -31,33 +31,33 @@ For the Migration API to accept a Migration Job coming from a SPO provided Azure
3131
### Getting Containers
3232

3333
```csharp
34-
public SPProvisionedMigrationContainersInfo ProvisionMigrationContainers()
34+
public SPProvisionedMigrationContainersInfo ProvisionMigrationContainers()
3535
```
3636

3737
The call will return an object that contains two strings containing two SAS tokens for accessing the two required containers and a byte array for the AES256CBC encryption.
3838

3939
This key will need to be used when encrypting the data. We forget the key once we give it out, therefore you must keep it to pass it again for the Submit Migration Job call.
4040

4141
```csharp
42-
Uri DataContainerUri
42+
Uri DataContainerUri
4343

44-
Uri MetadataContainer Uri
44+
Uri MetadataContainer Uri
4545

46-
byte[] EncryptionKey
46+
byte[] EncryptionKey
4747
```
4848

4949
### Getting Queue
5050

5151
```csharp
52-
public SPProvisionedMigrationQueueInfo ProvisionMigrationQueue()
52+
public SPProvisionedMigrationQueueInfo ProvisionMigrationQueue()
5353
```
5454

5555
This method will return a string containing the SAS token for accessing the Azure queue.
5656

5757
The queue can be reused across multiple migration jobs so this call should not be that frequently as the `SPProvisionedMigrationContainersInfo()` call.
5858

5959
```csharp
60-
Uri JobQueueUri
60+
Uri JobQueueUri
6161
```
6262

6363
### After getting the Container and the Queue:
@@ -71,5 +71,5 @@ If your tenant is hosted in a government cloud (GCC), you must have the proper e
7171

7272
|**Required Endpoint**|**Why**|
7373
|:-----|:-----|
74-
|https://<span><span>*.blob.core.usgovcloudapi.<span><span>net|Migration API Azure Government requirement|
75-
|https://<span><span>*.queue.core.usgovcloudapi.<span><span>net|Migration API Azure Government requirement|
74+
|https://<span>*.blob.core.usgovcloudapi.</span>net|Migration API Azure Government requirement|
75+
|https://<span>*.queue.core.usgovcloudapi.</span>net|Migration API Azure Government requirement|

0 commit comments

Comments
 (0)