Version: v2025-01-13Includes use: Yes

Behavior name: WebDAV

Web-based Distributed Authoring and Versioning (WebDAV) is a set of extensions to the HTTP protocol that allows users to collaboratively edit and manage files on remote web servers. This behavior enables WebDAV, and provides support for the following additional request methods: PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, and UNLOCK. To apply this behavior, you need to match on a request_method.

Default behavior

These samples reflect the behavior's default settings. You can use these as is in your configurations or make adjustments based on the behavior's available options.

data "akamai_property_rules_builder" "webdav" {
  rules_v2025_02_18 {
    name     = "WebDAV"
    comments = "Allows users to collaboratively edit and manage files on remote web servers."
    behavior {
      webdav {
        enabled = false
      }
    }
  }
}
"behaviors": [
  {
    "name": "webdav",
    "options": {
      "enabled": false
    }
  }
]

Options

Option Description
enabled
Enables the WebDAV behavior.