FunctionsScaleAndConcurrency Class

Scale and concurrency settings for the function app.

Constructor

FunctionsScaleAndConcurrency(*args: Any, **kwargs: Any)

Variables

Name Description
always_ready

'Always Ready' configuration for the function app.

maximum_instance_count
int

The maximum number of instances for the function app.

instance_memory_mb
int

Set the amount of memory allocated to each instance of the function app in MB. CPU and network bandwidth are allocated proportionally.

triggers

Scale and concurrency settings for the function app triggers.

Attributes

always_ready

'Always Ready' configuration for the function app.

always_ready: list['_models.FunctionsAlwaysReadyConfig'] | None

instance_memory_mb

Set the amount of memory allocated to each instance of the function app in MB. CPU and network bandwidth are allocated proportionally.

instance_memory_mb: int | None

maximum_instance_count

The maximum number of instances for the function app.

maximum_instance_count: int | None

triggers

Scale and concurrency settings for the function app triggers.

triggers: _models.FunctionsScaleAndConcurrencyTriggers | None