Skip to content

Commit 6e7b8c2

Browse files
authored
Merge pull request #109270 from Juliako/patch-18
Update manage-asset-concept.md
2 parents d27bb53 + 843234b commit 6e7b8c2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/media-services/latest/manage-asset-concept.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,13 @@ After the digital files are uploaded into storage and associated with an Asset,
5252
```azurecli
5353
az storage blob upload -f /path/to/file -c MyContainer -n MyBlob
5454
```
55-
2. Get a SAS URL with read-write permissions that will be used to upload digital files into the Asset container. You can use the Media Services API to [list the asset container URLs](https://docs.microsoft.com/rest/api/media/assets/listcontainersas).
55+
2. Get a SAS URL with read-write permissions that will be used to upload digital files into the Asset container.
56+
57+
You can use the Media Services API to [list the asset container URLs](https://docs.microsoft.com/rest/api/media/assets/listcontainersas).
5658
57-
If using asset’s [ListContainerSasInput](https://docs.microsoft.com/rest/api/media/assets/listcontainersas#listcontainersasinput) function to get SAS URLs, note that the function returns multiple SAS URLs as there are two storage account keys for each storage account. A storage account has two keys because it allows for seamless rotation of storage account keys (for example, change one while using the other then start using the new key and rotate the other key). The 1st SAS URL represents storage key1 and second one storage key2.
58-
5959
**AssetContainerSas.listContainerSas** takes a [ListContainerSasInput](https://docs.microsoft.com/rest/api/media/assets/listcontainersas#listcontainersasinput) parameter on which you set `expiryTime`. The time should be set to < 24 hours.
60+
61+
[ListContainerSasInput](https://docs.microsoft.com/rest/api/media/assets/listcontainersas#listcontainersasinput) returns multiple SAS URLs as there are two storage account keys for each storage account. A storage account has two keys because it allows for seamless rotation of storage account keys (for example, change one while using the other then start using the new key and rotate the other key). The 1st SAS URL represents storage key1 and second one storage key2.
6062
3. Use the Azure Storage APIs or SDKs (for example, the [Storage REST API](../../storage/common/storage-rest-api-auth.md) or [.NET SDK](../../storage/blobs/storage-quickstart-blobs-dotnet.md)) to upload files into the Asset container.
6163
4. Use Media Services v3 APIs to create a Transform and a Job to process your "input" Asset. For more information, see [Transforms and Jobs](transform-concept.md).
6264
5. Stream the content from the "output" asset.

0 commit comments

Comments
 (0)