Interface BatchAccount.UpdateStages.WithStorageAccount
-
- All Known Subinterfaces:
BatchAccount.Update
- Enclosing interface:
- BatchAccount.UpdateStages
public static interface BatchAccount.UpdateStages.WithStorageAccountThe stage of a Batch account update allowing to specify a storage account.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchAccount.UpdatewithExistingStorageAccount(com.microsoft.azure.management.storage.StorageAccount storageAccount)Specifies an existing storage account to associate with the Batch account.BatchAccount.UpdatewithNewStorageAccount(com.microsoft.azure.management.resources.fluentcore.model.Creatable<com.microsoft.azure.management.storage.StorageAccount> storageAccountCreatable)Specifies a new storage account to create and associate with the Batch account.BatchAccount.UpdatewithNewStorageAccount(String storageAccountName)Specifies a new storage account to create and associate with the Batch account.BatchAccount.UpdatewithoutStorageAccount()Removes the associated storage account.
-
-
-
Method Detail
-
withExistingStorageAccount
BatchAccount.Update withExistingStorageAccount(com.microsoft.azure.management.storage.StorageAccount storageAccount)
Specifies an existing storage account to associate with the Batch account.- Parameters:
storageAccount- an existing storage account- Returns:
- the next stage of the update
-
withNewStorageAccount
BatchAccount.Update withNewStorageAccount(com.microsoft.azure.management.resources.fluentcore.model.Creatable<com.microsoft.azure.management.storage.StorageAccount> storageAccountCreatable)
Specifies a new storage account to create and associate with the Batch account.- Parameters:
storageAccountCreatable- the definition of the storage account- Returns:
- the next stage of the update
-
withNewStorageAccount
BatchAccount.Update withNewStorageAccount(String storageAccountName)
Specifies a new storage account to create and associate with the Batch account.- Parameters:
storageAccountName- the name of a new storage account- Returns:
- the next stage of the update
-
withoutStorageAccount
BatchAccount.Update withoutStorageAccount()
Removes the associated storage account.- Returns:
- the next stage of the update
-
-