StackMajorVersion Class

Application stack major version.

Constructor

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

Variables

Name Description
display_version
str

Application stack major version (display only).

runtime_version
str

Application stack major version (runtime only).

is_default

true if this is the default major version; otherwise, false.

minor_versions

Minor versions associated with the major version.

application_insights

true if this supports Application Insights; otherwise, false.

is_preview

true if this stack is in Preview, otherwise false.

is_deprecated

true if this stack has been deprecated, otherwise false.

is_hidden

true if this stack should be hidden for new customers on portal, otherwise false.

app_settings_dictionary

<appSettings> <appSetting name="FUNCTIONS_WORKER_RUNTIME" value="dotnet" /> </appSettings> Example: All the function apps need AppSetting: "FUNCTIONS_WORKER_RUNTIME" to be set stack name.

site_config_properties_dictionary

<siteConfigProperties> <siteConfigProperty name="Use32BitWorkerProcess" value="false" /> </siteConfigProperties> Example: All Linux Function Apps, need Use32BitWorkerProcess to be set to 0.

Attributes

app_settings_dictionary

<appSettings> <appSetting name="FUNCTIONS_WORKER_RUNTIME" value="dotnet" /> </appSettings> Example: All the function apps need AppSetting: "FUNCTIONS_WORKER_RUNTIME" to be set stack name.

app_settings_dictionary: dict[str, Any] | None

application_insights

true if this supports Application Insights; otherwise, false.

application_insights: bool | None

display_version

Application stack major version (display only).

display_version: str | None

is_default

true if this is the default major version; otherwise, false.

is_default: bool | None

is_deprecated

true if this stack has been deprecated, otherwise false.

is_deprecated: bool | None

is_hidden

true if this stack should be hidden for new customers on portal, otherwise false.

is_hidden: bool | None

is_preview

true if this stack is in Preview, otherwise false.

is_preview: bool | None

minor_versions

Minor versions associated with the major version.

minor_versions: list['_models.StackMinorVersion'] | None

runtime_version

Application stack major version (runtime only).

runtime_version: str | None

site_config_properties_dictionary

<siteConfigProperties> <siteConfigProperty name="Use32BitWorkerProcess" value="false" /> </siteConfigProperties> Example: All Linux Function Apps, need Use32BitWorkerProcess to be set to 0.

site_config_properties_dictionary: dict[str, Any] | None