ApplicationUpdate

Request body for updating a web application. Only include properties that should be changed.

DatacenterEnterpriseInfrastructureMicrosoftOperating SystemServer ManagementWindows ServerWindows Server 2025

Properties

Name Type Description
path string The virtual path for the application.
physical_path string The physical file system path for the application.
application_pool object
enabled_protocols string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-server-applicationupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationUpdate",
  "title": "ApplicationUpdate",
  "type": "object",
  "description": "Request body for updating a web application. Only include properties that should be changed.",
  "properties": {
    "path": {
      "type": "string",
      "description": "The virtual path for the application.",
      "example": "example_value"
    },
    "physical_path": {
      "type": "string",
      "description": "The physical file system path for the application.",
      "example": "example_value"
    },
    "application_pool": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        }
      },
      "example": "example_value"
    },
    "enabled_protocols": {
      "type": "string",
      "example": "example_value"
    }
  }
}