Interface FunctionApp.UpdateStages.WithStorageAccount
-
- All Known Subinterfaces:
FunctionApp.Update
- Enclosing interface:
- FunctionApp.UpdateStages
public static interface FunctionApp.UpdateStages.WithStorageAccountA function app definition allowing storage account to be specified. A storage account is required for storing function execution runtime, triggers, and logs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctionApp.UpdatewithExistingStorageAccount(StorageAccount storageAccount)Specifies the storage account to use for the function app.FunctionApp.UpdatewithNewStorageAccount(String name, StorageAccountSkuType sku)Creates a new storage account to use for the function app.
-
-
-
Method Detail
-
withNewStorageAccount
FunctionApp.Update withNewStorageAccount(String name, StorageAccountSkuType sku)
Creates a new storage account to use for the function app.- Parameters:
name- the name of the storage accountsku- the sku of the storage account- Returns:
- the next stage of the function app update
-
withExistingStorageAccount
FunctionApp.Update withExistingStorageAccount(StorageAccount storageAccount)
Specifies the storage account to use for the function app.- Parameters:
storageAccount- the storage account to use- Returns:
- the next stage of the function app update
-
-