early_data_advanced

Version: v2024-04-29Includes use: No

Behavior Name: Early Data (0-RTT) Advanced

Use this behavior to allow query string parameters in early data, also known as 0-RTT data.

Note: The base early_data behavior needs to be present in the property in order to use the early_data_advanced behavior.

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" "early_data_advanced" {
  rules_v2025_02_18 {
    name     = "Early Data (0-RTT) Advanced"
    comments = ""
    behavior {
      early_data_advanced {
        supported_http_methods = [
          "GET"
        ]
      }
    }
  }
}
"behaviors": [
   {
  "name": "earlyDataAdvanced",
    "options": {
      "supportedHttpMethods": [
        "GET"
      ]
    }
  }
]

Options

Option Description
allow_query_string_params
Allows support for URLs with query string parameters. When disabled, URLs that contain query strings aren't eligible for early data processing, and are rejected with a 425 Too Early status code.
supported_http_methods
Sets which HTTP methods to use. The default is GET, but all possible values are:
  • GET
  • HEAD
  • OPTIONS
  • POST
  • PUT
  • DELETE