Skip to content
Open
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
36 changes: 33 additions & 3 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 @@ -63,6 +63,7 @@ docs/SetConfigResponse.md
docs/SetUpdateScheduleRequest.md
docs/SubProvisionerKey.md
docs/Subscriber.md
docs/TargetConnectionOptions.md
docs/TrafficApi.md
docs/TrafficEventResponse.md
docs/TransportProtocolResponse.md
Expand Down Expand Up @@ -154,6 +155,7 @@ src/Devolutions.Gateway.Client/Model/SetConfigResponse.cs
src/Devolutions.Gateway.Client/Model/SetUpdateScheduleRequest.cs
src/Devolutions.Gateway.Client/Model/SubProvisionerKey.cs
src/Devolutions.Gateway.Client/Model/Subscriber.cs
src/Devolutions.Gateway.Client/Model/TargetConnectionOptions.cs
src/Devolutions.Gateway.Client/Model/TrafficEventResponse.cs
src/Devolutions.Gateway.Client/Model/TransportProtocolResponse.cs
src/Devolutions.Gateway.Client/Model/UpdateProductInfo.cs
Expand Down
1 change: 1 addition & 0 deletions devolutions-gateway/openapi/dotnet-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ Class | Method | HTTP request | Description
- [Model.SetUpdateScheduleRequest](docs/SetUpdateScheduleRequest.md)
- [Model.SubProvisionerKey](docs/SubProvisionerKey.md)
- [Model.Subscriber](docs/Subscriber.md)
- [Model.TargetConnectionOptions](docs/TargetConnectionOptions.md)
- [Model.TrafficEventResponse](docs/TrafficEventResponse.md)
- [Model.TransportProtocolResponse](docs/TransportProtocolResponse.md)
- [Model.UpdateProductInfo](docs/UpdateProductInfo.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": "2025.12.2",
"packageVersion": "2026.2.4",
"packageDescription": "Client for Devolutions Gateway REST API",
"packageGuid": "EF1E8A60-F71D-4F02-A779-B113740FF5CC",
"packageCopyright": "© Devolutions Inc. All rights reserved.",
Expand Down

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

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

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

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

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

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

23 changes: 20 additions & 3 deletions devolutions-gateway/openapi/gateway-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1772,6 +1772,10 @@ components:
- id
- kind
properties:
connection_options:
allOf:
- $ref: '#/components/schemas/TargetConnectionOptions'
nullable: true
host_to_resolve:
type: string
description: |-
Expand Down Expand Up @@ -1799,15 +1803,17 @@ components:
description: |-
Minimum persistence duration in seconds for the data provisioned via this operation.

Optional parameter for "provision-token" and "provision-credentials" kinds.
Optional parameter for "provision-token", "provision-credentials", and
"provision-connection-options" kinds.
nullable: true
minimum: 0
token:
type: string
description: |-
The token to be stored on the proxy-side.

Required for "provision-token" and "provision-credentials" kinds.
Required for "provision-token", "provision-credentials", and
"provision-connection-options" kinds.
nullable: true
PreflightOperationKind:
type: string
Expand All @@ -1819,6 +1825,7 @@ components:
- provision-token
- provision-credentials
- resolve-host
- provision-connection-options
PreflightOutput:
type: object
required:
Expand Down Expand Up @@ -1991,7 +1998,7 @@ components:
nullable: true
krb_kdc:
type: string
description: |-
description: Kerberos KDC address (`<scheme>://<host>:<port>`; port required). Supported schemes: tcp, udp.
Kerberos KDC address.

E.g.: `tcp://IT-HELP-DC.ad.it-help.ninja:88`.
Expand Down Expand Up @@ -2105,6 +2112,16 @@ components:
Url:
type: string
description: HTTP URL where notification messages are to be sent
TargetConnectionOptions:
type: object
properties:
krb_kdc:
type: string
description: Kerberos KDC address (`<scheme>://<host>:<port>`; port required). Supported schemes: tcp, udp.
Kerberos KDC address for the target-side CredSSP connection.

Supported schemes are `tcp` and `udp`.
nullable: true
TrafficEventResponse:
type: object
required:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ model/setConfigResponse.ts
model/setUpdateScheduleRequest.ts
model/subProvisionerKey.ts
model/subscriber.ts
model/targetConnectionOptions.ts
model/trafficEventResponse.ts
model/transportProtocolResponse.ts
model/updateProductInfo.ts
Expand Down
Loading
Loading