From b8d374da0059ab3b7d2749ec0cc530fc411fcb0f Mon Sep 17 00:00:00 2001 From: Eckart Liemke Date: Wed, 22 Jan 2025 17:49:08 +0100 Subject: [PATCH] describe upgrade options more explicitly --- guides/multitenancy/mtxs.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/guides/multitenancy/mtxs.md b/guides/multitenancy/mtxs.md index d2831958c..4bdf37d06 100644 --- a/guides/multitenancy/mtxs.md +++ b/guides/multitenancy/mtxs.md @@ -1296,6 +1296,7 @@ Use the `upgrade` endpoint to upgrade tenant base models. | Arguments | Description | | --------- | ----------------------------------------------------------- | | `tenants` | A list of tenants, or `[*]` for all tenants | +| `options` | Additional options, including HDI deployment options, see [DeploymentService](#deployment-config), prefixed with `_` | #### Example Usage {#example-upgrade} @@ -1309,7 +1310,17 @@ Content-Type: application/json Prefer: respond-async { - "tenants": ["t1", "t2"] + "tenants": ["t1", "t2"], + "options": { + "_": { + "hdi": { + "deploy": { + "trace": "true", + "auto_undeploy": "true" + } + } + } + } } ```