WebApp.DefinitionStages.WithNewAppServicePlan Interface

public static interface WebApp.DefinitionStages.WithNewAppServicePlan

A web app definition allowing app service plan to be set.

Method Summary

Modifier and Type Method and Description
abstract WithWindowsAppFramework withNewFreeAppServicePlan()

Creates a new free app service plan.

abstract WithLinuxAppFramework withNewLinuxPlan(PricingTier pricingTier)

Creates a new app service plan to use.

abstract WithLinuxAppFramework withNewLinuxPlan(Creatable<AppServicePlan> appServicePlanCreatable)

Creates a new app service plan to use.

abstract WithLinuxAppFramework withNewLinuxPlan(String appServicePlanName, PricingTier pricingTier)

Creates a new app service plan to use.

abstract WithWindowsAppFramework withNewSharedAppServicePlan()

Creates a new shared app service plan.

abstract WithWindowsAppFramework withNewWindowsPlan(PricingTier pricingTier)

Creates a new app service plan to use.

abstract WithWindowsAppFramework withNewWindowsPlan(Creatable<AppServicePlan> appServicePlanCreatable)

Creates a new app service plan to use.

abstract WithWindowsAppFramework withNewWindowsPlan(String appServicePlanName, PricingTier pricingTier)

Creates a new app service plan to use.

Method Details

withNewFreeAppServicePlan

public abstract WebApp.DefinitionStages.WithWindowsAppFramework withNewFreeAppServicePlan()

Creates a new free app service plan. This will fail if there are 10 or more free plans in the current subscription.

Returns:

the next stage of the definition

withNewLinuxPlan

public abstract WebApp.DefinitionStages.WithLinuxAppFramework withNewLinuxPlan(PricingTier pricingTier)

Creates a new app service plan to use.

Parameters:

pricingTier - the sku of the app service plan

Returns:

the next stage of the definition

withNewLinuxPlan

public abstract WebApp.DefinitionStages.WithLinuxAppFramework withNewLinuxPlan(Creatable appServicePlanCreatable)

Creates a new app service plan to use.

Parameters:

appServicePlanCreatable - the new app service plan creatable

Returns:

the next stage of the definition

withNewLinuxPlan

public abstract WebApp.DefinitionStages.WithLinuxAppFramework withNewLinuxPlan(String appServicePlanName, PricingTier pricingTier)

Creates a new app service plan to use.

Parameters:

appServicePlanName - the name of the new app service plan
pricingTier - the sku of the app service plan

Returns:

the next stage of the definition

withNewSharedAppServicePlan

public abstract WebApp.DefinitionStages.WithWindowsAppFramework withNewSharedAppServicePlan()

Creates a new shared app service plan.

Returns:

the next stage of the definition

withNewWindowsPlan

public abstract WebApp.DefinitionStages.WithWindowsAppFramework withNewWindowsPlan(PricingTier pricingTier)

Creates a new app service plan to use.

Parameters:

pricingTier - the sku of the app service plan

Returns:

the next stage of the definition

withNewWindowsPlan

public abstract WebApp.DefinitionStages.WithWindowsAppFramework withNewWindowsPlan(Creatable appServicePlanCreatable)

Creates a new app service plan to use.

Parameters:

appServicePlanCreatable - the new app service plan creatable

Returns:

the next stage of the definition

withNewWindowsPlan

public abstract WebApp.DefinitionStages.WithWindowsAppFramework withNewWindowsPlan(String appServicePlanName, PricingTier pricingTier)

Creates a new app service plan to use.

Parameters:

appServicePlanName - the name of the new app service plan
pricingTier - the sku of the app service plan

Returns:

the next stage of the definition

Applies to