Behavior name: Message Store bulk upload
| Version: v2023-09-20 | Includes use: No | 
|---|
Behavior name: Message Store bulk upload
Uploads a ZIP archive with objects to an existing data set. The target data set stores objects as key-value pairs. The path to an object in the ZIP archive is a key, and the content of an object is a value. For an overview, see ecms_database.
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" "ecms_bulk_upload" {
  rules_v2023_09_20 {
    name     = "Message Store bulk upload"
    comments = "Uploads a ZIP archive with objects to an existing data set."
    behavior {
      ecms_bulk_upload {
        enabled = true
      }
    }
  }
}
"behaviors": [
  {
    "name": "ecmsBulkUpload",
    "options": {
      "enabled": true
      }
  }
]
Options
| Option | Description | 
|---|---|
| enabled | Enables sending a compressed archive file with objects. Sends the archive file to the default path of the target data set:  <hostname>/bulk/<database_name>/<dataset_name>. | 
