diff --git a/devolutions-gateway/openapi/doc/index.adoc b/devolutions-gateway/openapi/doc/index.adoc
index 95f0604d6..c9415544d 100644
--- a/devolutions-gateway/openapi/doc/index.adoc
+++ b/devolutions-gateway/openapi/doc/index.adoc
@@ -1,6 +1,6 @@
= devolutions-gateway
infos@devolutions.net
-2024.3.3
+2024.3.4
:toc: left
:numbered:
:toclevels: 4
@@ -1297,6 +1297,26 @@ This is done via updating `Agent/update.json` file, which is then read by Devolu
| bearer
|===
+===== Parameters
+
+
+
+
+
+====== Query Parameters
+
+[cols="2,3,1,1,1"]
+|===
+|Name| Description| Required| Default| Pattern
+
+| version
+| The version to install; use 'latest' for the latest version, or 'w.x.y.z' for a specific version
+| X
+| null
+|
+
+|===
+
===== Return Type
diff --git a/devolutions-gateway/openapi/dotnet-client/README.md b/devolutions-gateway/openapi/dotnet-client/README.md
index 2d2f28816..e77ec4c22 100644
--- a/devolutions-gateway/openapi/dotnet-client/README.md
+++ b/devolutions-gateway/openapi/dotnet-client/README.md
@@ -4,8 +4,8 @@ Protocol-aware fine-grained relay server
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
-- API version: 2024.3.3
-- SDK version: 2024.11.7
+- API version: 2024.3.4
+- SDK version: 2024.11.12
- Generator version: 7.9.0
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen
diff --git a/devolutions-gateway/openapi/dotnet-client/config.json b/devolutions-gateway/openapi/dotnet-client/config.json
index 186c3419c..b09c579a1 100644
--- a/devolutions-gateway/openapi/dotnet-client/config.json
+++ b/devolutions-gateway/openapi/dotnet-client/config.json
@@ -2,7 +2,7 @@
"packageAuthors": "Devolutions Inc.",
"packageName": "Devolutions.Gateway.Client",
"packageTitle": "Devolutions Gateway REST API Client",
- "packageVersion": "2024.11.7",
+ "packageVersion": "2024.11.12",
"packageDescription": "Client for Devolutions Gateway REST API",
"packageGuid": "EF1E8A60-F71D-4F02-A779-B113740FF5CC",
"packageCopyright": "© Devolutions Inc. All rights reserved.",
diff --git a/devolutions-gateway/openapi/dotnet-client/docs/UpdateApi.md b/devolutions-gateway/openapi/dotnet-client/docs/UpdateApi.md
index 04271407b..2cc70c368 100644
--- a/devolutions-gateway/openapi/dotnet-client/docs/UpdateApi.md
+++ b/devolutions-gateway/openapi/dotnet-client/docs/UpdateApi.md
@@ -8,7 +8,7 @@ All URIs are relative to *http://localhost*
# **TriggerUpdate**
-> Object TriggerUpdate ()
+> Object TriggerUpdate (string version)
Triggers Devolutions Gateway update process.
@@ -38,11 +38,12 @@ namespace Example
HttpClient httpClient = new HttpClient();
HttpClientHandler httpClientHandler = new HttpClientHandler();
var apiInstance = new UpdateApi(httpClient, config, httpClientHandler);
+ var version = "version_example"; // string | The version to install; use 'latest' for the latest version, or 'w.x.y.z' for a specific version
try
{
// Triggers Devolutions Gateway update process.
- Object result = apiInstance.TriggerUpdate();
+ Object result = apiInstance.TriggerUpdate(version);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -63,7 +64,7 @@ This returns an ApiResponse object which contains the response data, status code
try
{
// Triggers Devolutions Gateway update process.
- ApiResponse