你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

FunctionApp.DefinitionStages.WithStorageAccount Interface

public interface WithStorageAccount

A function app definition allowing storage account to be specified. A storage account is required for storing function execution runtime, triggers, and logs.

Method Summary

Modifier and Type Method and Description
FunctionApp.DefinitionStages.WithCreate withExistingStorageAccount(StorageAccount storageAccount)

Specifies the storage account to use for the function app.

FunctionApp.DefinitionStages.WithCreate withNewStorageAccount(String name, com.microsoft.azure.management.storage.SkuName sku)

Creates a new storage account to use for the function app.

Method Details

withExistingStorageAccount

public WithCreate 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 definition

withNewStorageAccount

public WithCreate withNewStorageAccount(String name, com.microsoft.azure.management.storage.SkuName sku)

Creates a new storage account to use for the function app.

Parameters:

name - the name of the storage account
sku - the sku of the storage account

Returns:

the next stage of the definition

Applies to