Skip to content

Commit e6151c6

Browse files
committed
update OpenZiti/edge-api@v0.26.39
1 parent b049d1f commit e6151c6

File tree

152 files changed

+439
-294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+439
-294
lines changed

edge-api/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ docs/SessionDetail.md
131131
docs/SessionEdgeRouter.md
132132
docs/SpecDetail.md
133133
docs/Tags.md
134+
docs/TargetToken.md
134135
docs/TerminatorClientDetail.md
135136
docs/TerminatorPrecedence.md
136137
docs/Version.md
@@ -278,6 +279,7 @@ src/main/java/org/openziti/edge/model/SessionDetail.java
278279
src/main/java/org/openziti/edge/model/SessionEdgeRouter.java
279280
src/main/java/org/openziti/edge/model/SpecDetail.java
280281
src/main/java/org/openziti/edge/model/Tags.java
282+
src/main/java/org/openziti/edge/model/TargetToken.java
281283
src/main/java/org/openziti/edge/model/TerminatorClientDetail.java
282284
src/main/java/org/openziti/edge/model/TerminatorPrecedence.java
283285
src/main/java/org/openziti/edge/model/Version.java

edge-api/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Ziti Edge Client
44

5-
- API version: 0.26.38
5+
- API version: 0.26.39
66

7-
- Build date: 2025-01-24T15:38:47.422198133-05:00[America/New_York]
7+
- Build date: 2025-01-27T11:11:53.726065456-05:00[America/New_York]
88

99
- Generator version: 7.11.0
1010

@@ -45,7 +45,7 @@ Add this dependency to your project's POM:
4545
<dependency>
4646
<groupId>org.openziti</groupId>
4747
<artifactId>edge-api</artifactId>
48-
<version>0.26.38</version>
48+
<version>0.26.39</version>
4949
<scope>compile</scope>
5050
</dependency>
5151
```
@@ -55,7 +55,7 @@ Add this dependency to your project's POM:
5555
Add this dependency to your project's build file:
5656

5757
```groovy
58-
compile "org.openziti:edge-api:0.26.38"
58+
compile "org.openziti:edge-api:0.26.39"
5959
```
6060

6161
### Others
@@ -68,7 +68,7 @@ mvn clean package
6868

6969
Then manually install the following JARs:
7070

71-
- `target/edge-api-0.26.38.jar`
71+
- `target/edge-api-0.26.39.jar`
7272
- `target/lib/*.jar`
7373

7474
## Getting Started
@@ -376,6 +376,7 @@ Class | Method | HTTP request | Description
376376
- [SessionEdgeRouter](docs/SessionEdgeRouter.md)
377377
- [SpecDetail](docs/SpecDetail.md)
378378
- [Tags](docs/Tags.md)
379+
- [TargetToken](docs/TargetToken.md)
379380
- [TerminatorClientDetail](docs/TerminatorClientDetail.md)
380381
- [TerminatorPrecedence](docs/TerminatorPrecedence.md)
381382
- [Version](docs/Version.md)

edge-api/api/openapi.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ info:
99
name: Apache 2.0
1010
url: https://www.apache.org/licenses/LICENSE-2.0.html
1111
title: Ziti Edge Client
12-
version: 0.26.38
12+
version: 0.26.39
1313
servers:
1414
- url: https://demo.ziti.dev/edge/client/v1
1515
paths:
@@ -4875,6 +4875,8 @@ components:
48754875
items:
48764876
type: string
48774877
type: array
4878+
targetToken:
4879+
$ref: "#/components/schemas/targetToken"
48784880
required:
48794881
- externalAuthUrl
48804882
- name
@@ -4891,6 +4893,7 @@ components:
48914893
comment: comment
48924894
href: https://openapi-generator.tech
48934895
name: MyApps Signer
4896+
targetToken: ACCESS
48944897
id: id
48954898
scopes:
48964899
- scopes
@@ -6634,6 +6637,7 @@ components:
66346637
comment: comment
66356638
href: https://openapi-generator.tech
66366639
name: MyApps Signer
6640+
targetToken: ACCESS
66376641
id: id
66386642
scopes:
66396643
- scopes
@@ -6650,6 +6654,7 @@ components:
66506654
comment: comment
66516655
href: https://openapi-generator.tech
66526656
name: MyApps Signer
6657+
targetToken: ACCESS
66536658
id: id
66546659
scopes:
66556660
- scopes
@@ -8519,6 +8524,14 @@ components:
85198524
description: "A map of user defined fields and values. The values are limited\
85208525
\ to the following types/values: null, string, boolean"
85218526
example: {}
8527+
targetToken:
8528+
description: Defines the target token type
8529+
enum:
8530+
- ACCESS
8531+
- ID
8532+
nullable: true
8533+
type: string
8534+
x-nullable: true
85228535
terminatorClientDetail:
85238536
allOf:
85248537
- $ref: "#/components/schemas/baseEntity"

edge-api/docs/ClientExternalJwtSignerDetail.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ A External JWT Signer resource
1818
|**externalAuthUrl** | **String** | | |
1919
|**name** | **String** | | |
2020
|**scopes** | **List&lt;String&gt;** | | [optional] |
21+
|**targetToken** | **TargetToken** | | [optional] |
2122

2223

2324

edge-api/docs/TargetToken.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# TargetToken
4+
5+
## Enum
6+
7+
8+
* `ACCESS` (value: `"ACCESS"`)
9+
10+
* `ID` (value: `"ID"`)
11+
12+
13+

edge-api/src/main/java/org/openziti/edge/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ziti Edge Client
33
* OpenZiti Edge Client API
44
*
5-
* The version of the OpenAPI document: 0.26.38
5+
* The version of the OpenAPI document: 0.26.39
66
* Contact: help@openziti.org
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -52,7 +52,7 @@
5252
*/
5353
@javax.annotation.Generated(
5454
value = "org.openapitools.codegen.languages.JavaClientCodegen",
55-
date = "2025-01-24T15:38:47.422198133-05:00[America/New_York]",
55+
date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
5656
comments = "Generator version: 7.11.0")
5757
public class ApiClient {
5858

edge-api/src/main/java/org/openziti/edge/ApiException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ziti Edge Client
33
* OpenZiti Edge Client API
44
*
5-
* The version of the OpenAPI document: 0.26.38
5+
* The version of the OpenAPI document: 0.26.39
66
* Contact: help@openziti.org
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@
1616

1717
@javax.annotation.Generated(
1818
value = "org.openapitools.codegen.languages.JavaClientCodegen",
19-
date = "2025-01-24T15:38:47.422198133-05:00[America/New_York]",
19+
date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
2020
comments = "Generator version: 7.11.0")
2121
public class ApiException extends Exception {
2222
private static final long serialVersionUID = 1L;

edge-api/src/main/java/org/openziti/edge/ApiResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ziti Edge Client
33
* OpenZiti Edge Client API
44
*
5-
* The version of the OpenAPI document: 0.26.38
5+
* The version of the OpenAPI document: 0.26.39
66
* Contact: help@openziti.org
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
2222
*/
2323
@javax.annotation.Generated(
2424
value = "org.openapitools.codegen.languages.JavaClientCodegen",
25-
date = "2025-01-24T15:38:47.422198133-05:00[America/New_York]",
25+
date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
2626
comments = "Generator version: 7.11.0")
2727
public class ApiResponse<T> {
2828
private final int statusCode;

edge-api/src/main/java/org/openziti/edge/Configuration.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ziti Edge Client
33
* OpenZiti Edge Client API
44
*
5-
* The version of the OpenAPI document: 0.26.38
5+
* The version of the OpenAPI document: 0.26.39
66
* Contact: help@openziti.org
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,10 +14,10 @@
1414

1515
@javax.annotation.Generated(
1616
value = "org.openapitools.codegen.languages.JavaClientCodegen",
17-
date = "2025-01-24T15:38:47.422198133-05:00[America/New_York]",
17+
date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
1818
comments = "Generator version: 7.11.0")
1919
public class Configuration {
20-
public static final String VERSION = "0.26.38";
20+
public static final String VERSION = "0.26.39";
2121

2222
private static ApiClient defaultApiClient = new ApiClient();
2323

edge-api/src/main/java/org/openziti/edge/JSON.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ziti Edge Client
33
* OpenZiti Edge Client API
44
*
5-
* The version of the OpenAPI document: 0.26.38
5+
* The version of the OpenAPI document: 0.26.39
66
* Contact: help@openziti.org
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
2626

2727
@javax.annotation.Generated(
2828
value = "org.openapitools.codegen.languages.JavaClientCodegen",
29-
date = "2025-01-24T15:38:47.422198133-05:00[America/New_York]",
29+
date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
3030
comments = "Generator version: 7.11.0")
3131
public class JSON {
3232
private ObjectMapper mapper;
@@ -85,7 +85,7 @@ public static Class<?> getClassForElement(JsonNode node, Class<?> modelClass) {
8585
/** Helper class to register the discriminator mappings. */
8686
@javax.annotation.Generated(
8787
value = "org.openapitools.codegen.languages.JavaClientCodegen",
88-
date = "2025-01-24T15:38:47.422198133-05:00[America/New_York]",
88+
date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
8989
comments = "Generator version: 7.11.0")
9090
private static class ClassDiscriminatorMapping {
9191
// The model class name.

0 commit comments

Comments
 (0)