Authorizations
You must specify the scheme 'Api-Key' in the Authorization header. For example, Authorization: Api-Key <Your_Api_Key>
Body
application/json
A request to update the autoscaling settings for a multiple chainlets in an environment. If a chainlet name doesn't exist, an error is returned.
Mapping of chainlet name to the desired chainlet autoscaling settings. If the chainlet name doesn't exist, an error is returned.
Examples:
[
  {
    "autoscaling_settings": {
      "autoscaling_window": 800,
      "concurrency_target": 4,
      "max_replica": 3,
      "min_replica": 2,
      "scale_down_delay": 63,
      "target_utilization_percentage": null
    },
    "chainlet_name": "HelloWorld"
  }
][
  {
    "autoscaling_settings": {
      "autoscaling_window": null,
      "concurrency_target": null,
      "max_replica": null,
      "min_replica": 0,
      "scale_down_delay": null,
      "target_utilization_percentage": null
    },
    "chainlet_name": "HelloWorld"
  },
  {
    "autoscaling_settings": {
      "autoscaling_window": null,
      "concurrency_target": null,
      "max_replica": null,
      "min_replica": 0,
      "scale_down_delay": null,
      "target_utilization_percentage": null
    },
    "chainlet_name": "RandInt"
  }
]Response
200 - application/json