Compartilhar via


AppServicePlan Interface

Implements

public interface AppServicePlan
extends GroupableResource<AppServiceManager,AppServicePlanInner>, HasName, Refreshable<AppServicePlan>, Updatable<Update>

An immutable client-side representation of an Azure App service plan.

Method Summary

Modifier and Type Method and Description
abstract int capacity()

Gets maximum number of instances that can be assigned.

abstract int maxInstances()

Gets maximum number of instances that can be assigned.

abstract int numberOfWebApps()

Gets number of web apps assigned to this App Service Plan.

abstract OperatingSystem operatingSystem()

Gets the operating system the web app is running on.

abstract boolean perSiteScaling()

Check whether apps assigned to this App Service Plan can be scaled independently.

abstract PricingTier pricingTier()

Gets the pricing tier information of the App Service Plan

Method Details

capacity

public abstract int capacity()

Gets maximum number of instances that can be assigned.

Returns:

maximum number of instances that can be assigned

maxInstances

public abstract int maxInstances()

Gets maximum number of instances that can be assigned.

Returns:

maximum number of instances that can be assigned

numberOfWebApps

public abstract int numberOfWebApps()

Gets number of web apps assigned to this App Service Plan.

Returns:

number of web apps assigned to this App Service Plan

operatingSystem

public abstract OperatingSystem operatingSystem()

Gets the operating system the web app is running on.

Returns:

the operating system the web app is running on

perSiteScaling

public abstract boolean perSiteScaling()

Check whether apps assigned to this App Service Plan can be scaled independently.

Returns:

if apps assigned to this App Service Plan can be scaled independently

pricingTier

public abstract PricingTier pricingTier()

Gets the pricing tier information of the App Service Plan

Returns:

the pricing tier information of the App Service Plan

Applies to