Вы можете использовать остальные API-хранилища BLOB-объектов. Конечная точка для настройки свойств службы BLOB-объектов.Вы можете изменить статические свойства веб-сайта в версии API 2018-03-28.
PUT https://<account-name>.blob.core.windows.net/?restype=service&comp=properties
Тело:
<?xml version="1.0" encoding="utf-8"?>
<StorageServiceProperties>
<StaticWebsite>
<Enabled>true|false</Enabled>
<IndexDocument>default-name-of-index-page-under-each-directory</IndexDocument>
<ErrorDocument404Path>absolute-path-of-the-custom-404-page</ErrorDocument404Path>
</StaticWebsite>
</StorageServiceProperties>
См. Документы о том, как авторизоваться самостоятельно.
https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-service-properties
Абстракция Powershell существует.
Enable-AzStorageStaticWebsite -IndexDocument $indexdoc -ErrorDocument404Path $errordoc
https://docs.microsoft.com/en-us/powershell/module/az.storage/enable-azstoragestaticwebsite?view=azps-1.3.0