Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dgw): adjust delete_many endpoint #1095

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
139 changes: 137 additions & 2 deletions devolutions-gateway/openapi/doc/index.adoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ docs/ConfigDiagnostic.md
docs/ConfigPatch.md
docs/ConnectionMode.md
docs/DataEncoding.md
docs/DeleteManyResult.md
docs/DiagnosticsApi.md
docs/HealthApi.md
docs/Heartbeat.md
Expand Down Expand Up @@ -64,6 +65,7 @@ src/Devolutions.Gateway.Client/Model/ConfigDiagnostic.cs
src/Devolutions.Gateway.Client/Model/ConfigPatch.cs
src/Devolutions.Gateway.Client/Model/ConnectionMode.cs
src/Devolutions.Gateway.Client/Model/DataEncoding.cs
src/Devolutions.Gateway.Client/Model/DeleteManyResult.cs
src/Devolutions.Gateway.Client/Model/Heartbeat.cs
src/Devolutions.Gateway.Client/Model/Identity.cs
src/Devolutions.Gateway.Client/Model/JrlInfo.cs
Expand Down
6 changes: 4 additions & 2 deletions devolutions-gateway/openapi/dotnet-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.10.25
- SDK version: 2024.11.7
- Generator version: 7.9.0
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen

Expand Down Expand Up @@ -147,14 +147,15 @@ Class | Method | HTTP request | Description
*DiagnosticsApi* | [**GetLogs**](docs/DiagnosticsApi.md#getlogs) | **GET** /jet/diagnostics/logs | Retrieves latest logs.
*HealthApi* | [**GetHealth**](docs/HealthApi.md#gethealth) | **GET** /jet/health | Performs a health check
*HeartbeatApi* | [**GetHeartbeat**](docs/HeartbeatApi.md#getheartbeat) | **GET** /jet/heartbeat | Performs a heartbeat check
*JrecApi* | [**DeleteManyRecordings**](docs/JrecApi.md#deletemanyrecordings) | **DELETE** /jet/jrec/delete | Mass-deletes recordings stored on this instance
*JrecApi* | [**DeleteRecording**](docs/JrecApi.md#deleterecording) | **DELETE** /jet/jrec/delete/{id} | Deletes a recording stored on this instance
*JrecApi* | [**ListRecordings**](docs/JrecApi.md#listrecordings) | **GET** /jet/jrec/list | Lists all recordings stored on this instance
*JrecApi* | [**PullRecordingFile**](docs/JrecApi.md#pullrecordingfile) | **GET** /jet/jrec/pull/{id}/{filename} | Retrieves a recording file for a given session
*JrlApi* | [**GetJrlInfo**](docs/JrlApi.md#getjrlinfo) | **GET** /jet/jrl/info | Retrieves current JRL (Json Revocation List) info
*JrlApi* | [**UpdateJrl**](docs/JrlApi.md#updatejrl) | **POST** /jet/jrl | Updates JRL (Json Revocation List) using a JRL token
*SessionsApi* | [**GetSessions**](docs/SessionsApi.md#getsessions) | **GET** /jet/sessions | Lists running sessions
*SessionsApi* | [**TerminateSession**](docs/SessionsApi.md#terminatesession) | **POST** /jet/session/{id}/terminate | Terminate forcefully a running session
*UpdateApi* | [**Update**](docs/UpdateApi.md#update) | **POST** /jet/update | Triggers Devolutions Gateway update process.
*UpdateApi* | [**TriggerUpdate**](docs/UpdateApi.md#triggerupdate) | **POST** /jet/update | Triggers Devolutions Gateway update process.
*WebAppApi* | [**SignAppToken**](docs/WebAppApi.md#signapptoken) | **POST** /jet/webapp/app-token | Requests a web application token using the configured authorization method
*WebAppApi* | [**SignSessionToken**](docs/WebAppApi.md#signsessiontoken) | **POST** /jet/webapp/session-token | Requests a session token using a web application token

Expand All @@ -170,6 +171,7 @@ Class | Method | HTTP request | Description
- [Model.ConfigPatch](docs/ConfigPatch.md)
- [Model.ConnectionMode](docs/ConnectionMode.md)
- [Model.DataEncoding](docs/DataEncoding.md)
- [Model.DeleteManyResult](docs/DeleteManyResult.md)
- [Model.Heartbeat](docs/Heartbeat.md)
- [Model.Identity](docs/Identity.md)
- [Model.JrlInfo](docs/JrlInfo.md)
Expand Down
2 changes: 1 addition & 1 deletion devolutions-gateway/openapi/dotnet-client/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packageAuthors": "Devolutions Inc.",
"packageName": "Devolutions.Gateway.Client",
"packageTitle": "Devolutions Gateway REST API Client",
"packageVersion": "2024.10.25",
"packageVersion": "2024.11.7",
"packageDescription": "Client for Devolutions Gateway REST API",
"packageGuid": "EF1E8A60-F71D-4F02-A779-B113740FF5CC",
"packageCopyright": "© Devolutions Inc. All rights reserved.",
Expand Down
11 changes: 11 additions & 0 deletions devolutions-gateway/openapi/dotnet-client/docs/DeleteManyResult.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 104 additions & 0 deletions devolutions-gateway/openapi/dotnet-client/docs/JrecApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading