Interface StorageAccount.UpdateStages.WithAccessTraffic
-
- All Known Subinterfaces:
StorageAccount.Update
- Enclosing interface:
- StorageAccount.UpdateStages
public static interface StorageAccount.UpdateStages.WithAccessTrafficThe stage of the storage account update allowing to specify the protocol to be used to access account.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StorageAccount.UpdatewithHttpAndHttpsTraffic()Specifies that both http and https traffic should be allowed to storage account.StorageAccount.UpdatewithMinimumTlsVersion(MinimumTlsVersion minimumTlsVersion)Specifies the minimum TLS version for HTTPS traffic.StorageAccount.UpdatewithOnlyHttpsTraffic()Specifies that only https traffic should be allowed to storage account.
-
-
-
Method Detail
-
withOnlyHttpsTraffic
StorageAccount.Update withOnlyHttpsTraffic()
Specifies that only https traffic should be allowed to storage account.- Returns:
- the next stage of storage account update
-
withHttpAndHttpsTraffic
StorageAccount.Update withHttpAndHttpsTraffic()
Specifies that both http and https traffic should be allowed to storage account.- Returns:
- the next stage of storage account update
-
withMinimumTlsVersion
StorageAccount.Update withMinimumTlsVersion(MinimumTlsVersion minimumTlsVersion)
Specifies the minimum TLS version for HTTPS traffic.- Parameters:
minimumTlsVersion- the minimum TLS version- Returns:
- the next stage of storage account update
-
-