{ "info": { "_postman_id": "e2acbcc3-ea76-4c54-954a-42dac13211be", "name": "Upsun.com Rest Add-ons Autoscaling API", "description": "# Introduction\n\nUpsun, formerly Platform.sh, is a container-based Platform-as-a-Service. Our main API\nis simply Git. With a single `git push` and a couple of YAML files in\nyour repository you can deploy an arbitrarily complex cluster.\nEvery [**Project**](#tag/Project) can have multiple applications (PHP,\nNode.js, Python, Ruby, Go, etc.) and managed, automatically\nprovisioned services (databases, message queues, etc.).\n\nEach project also comes with multiple concurrent\nlive staging/development [**Environments**](#tag/Environment).\nThese ephemeral development environments\nare automatically created every time you push a new branch or create a\npull request, and each has a full copy of the data of its parent branch,\nwhich is created on-the-fly in seconds.\n\nOur Git implementation supports integrations with third party Git\nproviders such as GitHub, Bitbucket, or GitLab, allowing you to simply\nintegrate Upsun into your existing workflow.\n\n## Using the REST API\n\nIn addition to the Git API, we also offer a REST API that allows you to manage\nevery aspect of the platform, from managing projects and environments,\nto accessing accounts and subscriptions, to creating robust workflows\nand integrations with your CI systems and internal services.\n\nThese API docs are generated from a standard **OpenAPI (Swagger)** Specification document\nwhich you can find here in [YAML](openapispec-upsun.yaml) and in [JSON](openapispec-upsun.json) formats.\n\nThis RESTful API consumes and produces HAL-style JSON over HTTPS,\nand any REST library can be used to access it. On GitHub, we also host\na few API libraries that you can use to make API access easier, such as our\n[PHP API client](https://github.com/upsun/upsun-sdk-php).\n\nIn order to use the API you will first need to have an [Upsun account](https://auth.upsun.com/register/) \nand [create an API Token](https://docs.upsun.com/anchors/cli/api-token/).\n\n# Authentication\n\n## OAuth2\n\nAPI authentication is done with OAuth2 access tokens.\n\n### API tokens\n\nYou can use an API token as one way to get an OAuth2 access token. This\nis particularly useful in scripts, e.g. for CI pipelines.\n\nTo create an API token, go to the \"API Tokens\" section\nof the \"Account Settings\" tab on the [Console](https://console.upsun.com).\n\nTo exchange this API token for an access token, a `POST` request\nmust be made to `https://auth.upsun.com/oauth2/token`.\n\nThe request will look like this in cURL:\n\n
\ncurl -u platform-api-user: \\\n    -d 'grant_type=api_token&api_token=API_TOKEN' \\\n    https://auth.upsun.com/oauth2/token\n
\n\nThis will return a \"Bearer\" access token that\ncan be used to authenticate further API requests, for example:\n\n
\n{\n    \"access_token\": \"abcdefghij1234567890\",\n    \"expires_in\": 900,\n    \"token_type\": \"bearer\"\n}\n
\n\n### Using the Access Token\n\nTo authenticate further API requests, include this returned bearer token\nin the `Authorization` header. For example, to retrieve a list of\n[Projects](#tag/Project)\naccessible by the current user, you can make the following request\n(substituting the dummy token for your own):\n\n
\ncurl -H \"Authorization: Bearer abcdefghij1234567890\" \\\n    https://api.upsun.com/projects\n
\n\n# HAL Links\n\nMost endpoints in the API return fields which defines a HAL\n(Hypertext Application Language) schema for the requested endpoint.\nThe particular objects returns and their contents can vary by endpoint.\nThe payload examples we give here for the requests do not show these\nelements. These links can allow you to create a fully dynamic API client\nthat does not need to hardcode any method or schema.\n\nUnless they are used for pagination we do not show the HAL links in the\npayload examples in this documentation for brevity and as their content\nis contextual (based on the permissions of the user).\n\n## _links Objects\n\nMost endpoints that respond to `GET` requests will include a `_links` object\nin their response. The `_links` object contains a key-object pair labelled `self`, which defines\ntwo further key-value pairs:\n\n* `href` - A URL string referring to the fully qualified name of the returned object. For many endpoints, this will be the direct link to the API endpoint on the region gateway, rather than on the general API gateway. This means it may reference a host of, for example, `eu-2.platform.sh` rather than `api.upsun.com`.\n* `meta` - An object defining the OpenAPI Specification (OAS) [schema object](https://swagger.io/specification/#schemaObject) of the component returned by the endpoint.\n\nThere may be zero or more other fields in the `_links` object resembling fragment identifiers\nbeginning with a hash mark, e.g. `#edit` or `#delete`. Each of these keys\nrefers to a JSON object containing two key-value pairs:\n\n* `href` - A URL string referring to the path name of endpoint which can perform the action named in the key.\n* `meta` - An object defining the OAS schema of the endpoint. This consists of a key-value pair, with the key defining an HTTP method and the value defining the [operation object](https://swagger.io/specification/#operationObject) of the endpoint.\n\nTo use one of these HAL links, you must send a new request to the URL defined\nin the `href` field which contains a body defined the schema object in the `meta` field.\n\nFor example, if you make a request such as `GET /projects/abcdefghij1234567890`, the `_links`\nobject in the returned response will include the key `#delete`. That object\nwill look something like this fragment:\n\n```\n\"#delete\": {\n \"href\": \"/api/projects/abcdefghij1234567890\",\n \"meta\": {\n \"delete\": {\n \"responses\": {\n . . . // Response definition omitted for space\n },\n \"parameters\": []\n }\n }\n}\n```\n\nTo use this information to delete a project, you would then send a `DELETE`\nrequest to the endpoint `https://api.upsun.com/api/projects/abcdefghij1234567890`\nwith no body or parameters to delete the project that was originally requested.\n\n## _embedded Objects\n\nRequests to endpoints which create or modify objects, such as `POST`, `PATCH`, or `DELETE`\nrequests, will include an `_embedded` key in their response. The object\nrepresented by this key will contain the created or modified object. This\nobject is identical to what would be returned by a subsequent `GET` request\nfor the object referred to by the endpoint.\n\n\nContact Support:\n Name: Support", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T03:24:00.000Z", "updatedAt": "2026-07-28T03:24:00.000Z", "lastUpdatedBy": "35240", "uid": "35240-e2acbcc3-ea76-4c54-954a-42dac13211be" }, "item": [ { "name": "projects", "item": [ { "name": "{projectId}", "item": [ { "name": "environments", "item": [ { "name": "{environmentId}", "item": [ { "name": "autoscaling", "item": [ { "name": "settings", "item": [ { "name": "Retrieves Autoscaler settings", "id": "2d1c0cea-aed7-4026-acd3-ed842efbab4f", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/projects/:projectId/environments/:environmentId/autoscaling/settings", "host": [ "{{baseUrl}}" ], "path": [ "projects", ":projectId", "environments", ":environmentId", "autoscaling", "settings" ], "variable": [ { "id": "e0233110-d0ab-4da2-a2c5-f0931949d33f", "key": "projectId", "value": "", "description": "(Required) A string that uniquely identifies the project" }, { "id": "45be2631-1918-4618-a645-8eee0fb0513c", "key": "environmentId", "value": "", "description": "(Required) A string that uniquely identifies the project environment" } ] }, "description": "Retrieves Autoscaler settings" }, "response": [ { "id": "a4188717-aab6-4e0b-8401-62936d34c5d0", "name": "Autoscaler settings", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: oauth2", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/projects/:projectId/environments/:environmentId/autoscaling/settings", "host": [ "{{baseUrl}}" ], "path": [ "projects", ":projectId", "environments", ":environmentId", "autoscaling", "settings" ], "variable": [ { "key": "projectId" }, { "key": "environmentId" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"services\": {\n \"eiusmode\": {\n \"pariatur_48_\": {\n \"triggers\": {\n \"cpu\": {\n \"adipisicing_8b5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"quis06\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"enim7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"in_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"veniam_b8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ea9b6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"quis6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_b\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris_8e\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"velit_205\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"eac\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"ad55\": {\n \"triggers\": {\n \"cpu\": {\n \"veniama\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"deserunt5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"ut_12\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"cupidatat_c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"anim6b\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"essee\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"nostrud_ff\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_b23\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"in_2\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"officia92\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n },\n \"aliqua__aa\": {\n \"commodo_a\": {\n \"triggers\": {\n \"cpu\": {\n \"labore2c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"minim3b7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n },\n \"pariatur7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ipsum65e\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"est__b_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"ipsumdd\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Excepteur_eb8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"ex_5f\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"consectetur_9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"incididuntbfb\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"aute89a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_4d3\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"sint_a9d\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"Excepteur7e6\": {\n \"triggers\": {\n \"cpu\": {\n \"id792\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"incididunt_b08\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"consectetur_c17\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"elit2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"velit1\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"adipisicinge\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"laborum155\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"adipisicing_d9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"aliqua299\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_4a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"dolor_a\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"dolore\": {\n \"triggers\": {\n \"cpu\": {\n \"consectetur9d\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"cillum22\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"in6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"aute2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"id3\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"sed_8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"este\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Duise95\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"exercitation58\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"est_e9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"culpa9d\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"elit705\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris8_\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"proident_6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n }\n }\n}", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-a4188717-aab6-4e0b-8401-62936d34c5d0" } ], "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-2d1c0cea-aed7-4026-acd3-ed842efbab4f" }, { "name": "Updates Autoscaler settings", "id": "59c48b23-3f28-4317-912b-59a095754ede", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"services\": {\n \"eiusmode\": {\n \"pariatur_48_\": {\n \"triggers\": {\n \"cpu\": {\n \"adipisicing_8b5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"quis06\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"enim7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"in_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"veniam_b8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ea9b6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"quis6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_b\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris_8e\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"velit_205\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"eac\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"ad55\": {\n \"triggers\": {\n \"cpu\": {\n \"veniama\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"deserunt5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"ut_12\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"cupidatat_c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"anim6b\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"essee\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"nostrud_ff\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_b23\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"in_2\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"officia92\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n },\n \"aliqua__aa\": {\n \"commodo_a\": {\n \"triggers\": {\n \"cpu\": {\n \"labore2c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"minim3b7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n },\n \"pariatur7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ipsum65e\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"est__b_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"ipsumdd\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Excepteur_eb8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"ex_5f\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"consectetur_9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"incididuntbfb\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"aute89a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_4d3\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"sint_a9d\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"Excepteur7e6\": {\n \"triggers\": {\n \"cpu\": {\n \"id792\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"incididunt_b08\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"consectetur_c17\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"elit2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"velit1\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"adipisicinge\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"laborum155\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"adipisicing_d9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"aliqua299\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_4a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"dolor_a\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"dolore\": {\n \"triggers\": {\n \"cpu\": {\n \"consectetur9d\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"cillum22\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"in6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"aute2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"id3\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"sed_8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"este\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Duise95\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"exercitation58\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"est_e9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"culpa9d\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"elit705\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris8_\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"proident_6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/projects/:projectId/environments/:environmentId/autoscaling/settings", "host": [ "{{baseUrl}}" ], "path": [ "projects", ":projectId", "environments", ":environmentId", "autoscaling", "settings" ], "variable": [ { "id": "b4d46e9a-202e-4f94-bed4-bacdf4d3743c", "key": "projectId", "value": "", "description": "(Required) A string that uniquely identifies the project" }, { "id": "316a2695-ca9a-4e26-93ec-47efabd7b3d1", "key": "environmentId", "value": "", "description": "(Required) A string that uniquely identifies the project environment" } ] }, "description": "Updates Autoscaler settings" }, "response": [ { "id": "ea58d208-c1b0-4a22-b40e-71bb358fbf69", "name": "Updated Autoscaler settings", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: oauth2", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"services\": {\n \"eiusmode\": {\n \"pariatur_48_\": {\n \"triggers\": {\n \"cpu\": {\n \"adipisicing_8b5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"quis06\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"enim7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"in_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"veniam_b8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ea9b6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"quis6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_b\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris_8e\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"velit_205\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"eac\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"ad55\": {\n \"triggers\": {\n \"cpu\": {\n \"veniama\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"deserunt5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"ut_12\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"cupidatat_c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"anim6b\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"essee\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"nostrud_ff\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_b23\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"in_2\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"officia92\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n },\n \"aliqua__aa\": {\n \"commodo_a\": {\n \"triggers\": {\n \"cpu\": {\n \"labore2c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"minim3b7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n },\n \"pariatur7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ipsum65e\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"est__b_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"ipsumdd\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Excepteur_eb8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"ex_5f\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"consectetur_9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"incididuntbfb\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"aute89a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_4d3\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"sint_a9d\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"Excepteur7e6\": {\n \"triggers\": {\n \"cpu\": {\n \"id792\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"incididunt_b08\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"consectetur_c17\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"elit2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"velit1\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"adipisicinge\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"laborum155\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"adipisicing_d9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"aliqua299\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_4a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"dolor_a\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"dolore\": {\n \"triggers\": {\n \"cpu\": {\n \"consectetur9d\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"cillum22\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"in6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"aute2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"id3\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"sed_8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"este\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Duise95\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"exercitation58\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"est_e9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"culpa9d\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"elit705\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris8_\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"proident_6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/projects/:projectId/environments/:environmentId/autoscaling/settings", "host": [ "{{baseUrl}}" ], "path": [ "projects", ":projectId", "environments", ":environmentId", "autoscaling", "settings" ], "variable": [ { "key": "projectId" }, { "key": "environmentId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"services\": {\n \"eiusmode\": {\n \"pariatur_48_\": {\n \"triggers\": {\n \"cpu\": {\n \"adipisicing_8b5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"quis06\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"enim7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"in_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"veniam_b8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ea9b6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"quis6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_b\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris_8e\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"velit_205\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"eac\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"ad55\": {\n \"triggers\": {\n \"cpu\": {\n \"veniama\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"deserunt5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"ut_12\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"cupidatat_c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"anim6b\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"essee\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"nostrud_ff\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_b23\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"in_2\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"officia92\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n },\n \"aliqua__aa\": {\n \"commodo_a\": {\n \"triggers\": {\n \"cpu\": {\n \"labore2c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"minim3b7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n },\n \"pariatur7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ipsum65e\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"est__b_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"ipsumdd\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Excepteur_eb8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"ex_5f\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"consectetur_9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"incididuntbfb\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"aute89a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_4d3\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"sint_a9d\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"Excepteur7e6\": {\n \"triggers\": {\n \"cpu\": {\n \"id792\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"incididunt_b08\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"consectetur_c17\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"elit2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"velit1\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"adipisicinge\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"laborum155\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"adipisicing_d9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"aliqua299\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_4a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"dolor_a\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"dolore\": {\n \"triggers\": {\n \"cpu\": {\n \"consectetur9d\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"cillum22\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"in6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"aute2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"id3\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"sed_8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"este\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Duise95\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"exercitation58\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"est_e9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"culpa9d\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"elit705\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris8_\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"proident_6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n }\n }\n}", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-ea58d208-c1b0-4a22-b40e-71bb358fbf69" } ], "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-59c48b23-3f28-4317-912b-59a095754ede" }, { "name": "Modifies Autoscaler settings", "id": "b6f03700-27b0-4917-b99a-77f0d7d9aff4", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"services\": {\n \"eiusmode\": {\n \"pariatur_48_\": {\n \"triggers\": {\n \"cpu\": {\n \"adipisicing_8b5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"quis06\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"enim7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"in_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"veniam_b8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ea9b6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"quis6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_b\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris_8e\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"velit_205\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"eac\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"ad55\": {\n \"triggers\": {\n \"cpu\": {\n \"veniama\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"deserunt5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"ut_12\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"cupidatat_c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"anim6b\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"essee\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"nostrud_ff\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_b23\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"in_2\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"officia92\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n },\n \"aliqua__aa\": {\n \"commodo_a\": {\n \"triggers\": {\n \"cpu\": {\n \"labore2c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"minim3b7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n },\n \"pariatur7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ipsum65e\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"est__b_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"ipsumdd\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Excepteur_eb8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"ex_5f\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"consectetur_9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"incididuntbfb\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"aute89a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_4d3\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"sint_a9d\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"Excepteur7e6\": {\n \"triggers\": {\n \"cpu\": {\n \"id792\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"incididunt_b08\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"consectetur_c17\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"elit2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"velit1\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"adipisicinge\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"laborum155\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"adipisicing_d9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"aliqua299\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_4a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"dolor_a\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"dolore\": {\n \"triggers\": {\n \"cpu\": {\n \"consectetur9d\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"cillum22\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"in6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"aute2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"id3\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"sed_8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"este\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Duise95\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"exercitation58\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"est_e9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"culpa9d\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"elit705\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris8_\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"proident_6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/projects/:projectId/environments/:environmentId/autoscaling/settings", "host": [ "{{baseUrl}}" ], "path": [ "projects", ":projectId", "environments", ":environmentId", "autoscaling", "settings" ], "variable": [ { "id": "bc1464fb-7ae3-476d-b8c2-fee4a1c6ee56", "key": "projectId", "value": "", "description": "(Required) A string that uniquely identifies the project" }, { "id": "ed066135-fb29-48ac-9ce7-0d7147949b56", "key": "environmentId", "value": "", "description": "(Required) A string that uniquely identifies the project environment" } ] }, "description": "Modifies Autoscaler settings" }, "response": [ { "id": "75293e1c-4a0c-4fb2-8668-f626b2e507e6", "name": "Updated Autoscaler settings", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: oauth2", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"services\": {\n \"eiusmode\": {\n \"pariatur_48_\": {\n \"triggers\": {\n \"cpu\": {\n \"adipisicing_8b5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"quis06\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"enim7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"in_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"veniam_b8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ea9b6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"quis6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_b\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris_8e\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"velit_205\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"eac\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"ad55\": {\n \"triggers\": {\n \"cpu\": {\n \"veniama\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"deserunt5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"ut_12\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"cupidatat_c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"anim6b\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"essee\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"nostrud_ff\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_b23\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"in_2\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"officia92\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n },\n \"aliqua__aa\": {\n \"commodo_a\": {\n \"triggers\": {\n \"cpu\": {\n \"labore2c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"minim3b7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n },\n \"pariatur7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ipsum65e\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"est__b_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"ipsumdd\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Excepteur_eb8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"ex_5f\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"consectetur_9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"incididuntbfb\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"aute89a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_4d3\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"sint_a9d\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"Excepteur7e6\": {\n \"triggers\": {\n \"cpu\": {\n \"id792\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"incididunt_b08\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"consectetur_c17\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"elit2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"velit1\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"adipisicinge\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"laborum155\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"adipisicing_d9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"aliqua299\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_4a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"dolor_a\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"dolore\": {\n \"triggers\": {\n \"cpu\": {\n \"consectetur9d\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"cillum22\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"in6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"aute2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"id3\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"sed_8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"este\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Duise95\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"exercitation58\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"est_e9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"culpa9d\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"elit705\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris8_\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"proident_6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/projects/:projectId/environments/:environmentId/autoscaling/settings", "host": [ "{{baseUrl}}" ], "path": [ "projects", ":projectId", "environments", ":environmentId", "autoscaling", "settings" ], "variable": [ { "key": "projectId" }, { "key": "environmentId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"services\": {\n \"eiusmode\": {\n \"pariatur_48_\": {\n \"triggers\": {\n \"cpu\": {\n \"adipisicing_8b5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"quis06\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"enim7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"in_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"veniam_b8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ea9b6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"quis6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_b\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris_8e\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"velit_205\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"eac\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"ad55\": {\n \"triggers\": {\n \"cpu\": {\n \"veniama\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"deserunt5\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"ut_12\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"cupidatat_c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"anim6b\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"essee\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"nostrud_ff\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_b23\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"in_2\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"officia92\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n },\n \"aliqua__aa\": {\n \"commodo_a\": {\n \"triggers\": {\n \"cpu\": {\n \"labore2c\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"minim3b7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n }\n },\n \"pariatur7\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"ipsum65e\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"est__b_\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"ipsumdd\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Excepteur_eb8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"ex_5f\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"consectetur_9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"incididuntbfb\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"aute89a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"magna_4d3\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"sint_a9d\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"Excepteur7e6\": {\n \"triggers\": {\n \"cpu\": {\n \"id792\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"incididunt_b08\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"consectetur_c17\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"elit2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n },\n \"velit1\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"adipisicinge\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"laborum155\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"adipisicing_d9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"aliqua299\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"eu_4a\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"dolor_a\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n },\n \"dolore\": {\n \"triggers\": {\n \"cpu\": {\n \"consectetur9d\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n },\n \"cillum22\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"memory\": {\n \"in6\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"aute2\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n }\n }\n },\n \"cpu_pressure\": {\n \"id3\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"sed_8\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 300,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n }\n },\n \"este\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 600,\n \"enabled\": \"\"\n }\n }\n },\n \"memory_pressure\": {\n \"Duise95\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 1800,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 120,\n \"enabled\": \"\"\n }\n },\n \"exercitation58\": {\n \"enabled\": \"\",\n \"down\": {\n \"threshold\": \"\",\n \"duration\": 3600,\n \"enabled\": \"\"\n },\n \"up\": {\n \"threshold\": \"\",\n \"duration\": 60,\n \"enabled\": \"\"\n }\n }\n }\n },\n \"instances\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"resources\": {\n \"cpu\": {\n \"est_e9\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"culpa9d\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"elit705\": {\n \"min\": \"\",\n \"max\": \"\"\n },\n \"laboris8_\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n },\n \"memory\": {\n \"proident_6\": {\n \"min\": \"\",\n \"max\": \"\"\n }\n }\n },\n \"scale_factor\": {\n \"up\": \"\",\n \"down\": \"\"\n },\n \"scale_cooldown\": {\n \"up\": \"\",\n \"down\": \"\"\n }\n }\n }\n }\n}", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-75293e1c-4a0c-4fb2-8668-f626b2e507e6" } ], "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-b6f03700-27b0-4917-b99a-77f0d7d9aff4" } ], "id": "b0dbe023-45f8-4730-bd8c-db14e20a960a", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-b0dbe023-45f8-4730-bd8c-db14e20a960a" } ], "id": "d97b7ad2-60c1-4802-949c-6640736ccc74", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-d97b7ad2-60c1-4802-949c-6640736ccc74" } ], "id": "56d62be8-d94e-40a5-bb8d-26673b5d2cd9", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-56d62be8-d94e-40a5-bb8d-26673b5d2cd9" } ], "id": "a0edfa25-53ef-4677-a141-34e046a749d4", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-a0edfa25-53ef-4677-a141-34e046a749d4" } ], "id": "2b8bf6c6-5343-4943-9433-6b8b1d7ef040", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-2b8bf6c6-5343-4943-9433-6b8b1d7ef040" } ], "id": "4186870f-a8fc-471b-9db0-ad1e055464c6", "createdAt": "2026-07-28T03:24:01.000Z", "updatedAt": "2026-07-28T03:24:01.000Z", "uid": "35240-4186870f-a8fc-471b-9db0-ad1e055464c6" } ], "auth": { "type": "oauth2", "oauth2": [ { "key": "redirect_uri", "value": "https://auth.api.platform.sh/oauth2/token", "type": "string" }, { "key": "accessTokenUrl", "value": "https://auth.api.platform.sh/oauth2/token", "type": "string" }, { "key": "authUrl", "value": "https://auth.api.platform.sh/oauth2/authorize", "type": "string" }, { "key": "grant_type", "value": "authorization_code", "type": "string" } ] }, "variable": [ { "key": "schemes", "value": "https" }, { "key": "baseUrl", "value": "{{schemes}}://api.upsun.com" } ] }