ApplicationPoolUpdate

Request body for updating an application pool. Only include properties that should be changed.

DatacenterEnterpriseInfrastructureMicrosoftOperating SystemServer ManagementWindows ServerWindows Server 2025

Properties

Name Type Description
name string
auto_start boolean
pipeline_mode string
managed_runtime_version string
enable_32bit_win64 boolean
queue_length integer
View JSON Schema on GitHub

JSON Schema

iis-administration-application-pool-update-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ApplicationPoolUpdate",
  "type": "object",
  "description": "Request body for updating an application pool. Only include properties that should be changed.",
  "properties": {
    "name": {
      "type": "string"
    },
    "auto_start": {
      "type": "boolean"
    },
    "pipeline_mode": {
      "type": "string"
    },
    "managed_runtime_version": {
      "type": "string"
    },
    "enable_32bit_win64": {
      "type": "boolean"
    },
    "queue_length": {
      "type": "integer"
    }
  }
}