Interface StorageAccount.UpdateStages.WithBlobAccess
-
- All Known Subinterfaces:
StorageAccount.Update
- Enclosing interface:
- StorageAccount.UpdateStages
public static interface StorageAccount.UpdateStages.WithBlobAccessThe stage of storage account update allowing to configure blob access.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StorageAccount.UpdatedisableBlobPublicAccess()Disables blob public access.StorageAccount.UpdatedisableSharedKeyAccess()Disables shared key access.StorageAccount.UpdateenableBlobPublicAccess()Allows blob public access, configured by individual containers.StorageAccount.UpdateenableSharedKeyAccess()Allows shared key access.
-
-
-
Method Detail
-
enableBlobPublicAccess
StorageAccount.Update enableBlobPublicAccess()
Allows blob public access, configured by individual containers.- Returns:
- the next stage of storage account update
-
disableBlobPublicAccess
StorageAccount.Update disableBlobPublicAccess()
Disables blob public access. Disabling in storage account overrides the public access settings for individual containers.- Returns:
- the next stage of storage account update
-
enableSharedKeyAccess
StorageAccount.Update enableSharedKeyAccess()
Allows shared key access.- Returns:
- the next stage of storage account update
-
disableSharedKeyAccess
StorageAccount.Update disableSharedKeyAccess()
Disables shared key access.- Returns:
- the next stage of storage account update
-
-