diff --git a/edge-api/.openapi-generator/FILES b/edge-api/.openapi-generator/FILES
index 228d504e..dce41660 100644
--- a/edge-api/.openapi-generator/FILES
+++ b/edge-api/.openapi-generator/FILES
@@ -59,6 +59,7 @@ docs/EnvInfo.md
docs/ErOttEnrollmentRequest.md
docs/ExtendEnrollmentApi.md
docs/ExternalJwtSignerApi.md
+docs/GenericEnroll.md
docs/IdentityAuthenticators.md
docs/IdentityAuthenticatorsCert.md
docs/IdentityAuthenticatorsUpdb.md
@@ -213,6 +214,7 @@ src/main/java/org/openziti/edge/model/EnrollmentCertsEnvelope.java
src/main/java/org/openziti/edge/model/EntityRef.java
src/main/java/org/openziti/edge/model/EnvInfo.java
src/main/java/org/openziti/edge/model/ErOttEnrollmentRequest.java
+src/main/java/org/openziti/edge/model/GenericEnroll.java
src/main/java/org/openziti/edge/model/IdentityAuthenticators.java
src/main/java/org/openziti/edge/model/IdentityAuthenticatorsCert.java
src/main/java/org/openziti/edge/model/IdentityAuthenticatorsUpdb.java
diff --git a/edge-api/README.md b/edge-api/README.md
index 6fdb6380..306f1109 100644
--- a/edge-api/README.md
+++ b/edge-api/README.md
@@ -2,9 +2,9 @@
Ziti Edge Client
-- API version: 0.26.39
+- API version: 0.26.42
-- Build date: 2025-01-27T11:11:53.726065456-05:00[America/New_York]
+- Build date: 2025-03-17T12:51:45.850758361-04:00[America/New_York]
- Generator version: 7.11.0
@@ -45,7 +45,7 @@ Add this dependency to your project's POM:
org.openziti
edge-api
- 0.26.39
+ 0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT
compile
```
@@ -55,7 +55,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:
```groovy
-compile "org.openziti:edge-api:0.26.39"
+compile "org.openziti:edge-api:0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT"
```
### Others
@@ -68,7 +68,7 @@ mvn clean package
Then manually install the following JARs:
-- `target/edge-api-0.26.39.jar`
+- `target/edge-api-0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT.jar`
- `target/lib/*.jar`
## Getting Started
@@ -310,6 +310,7 @@ Class | Method | HTTP request | Description
- [EntityRef](docs/EntityRef.md)
- [EnvInfo](docs/EnvInfo.md)
- [ErOttEnrollmentRequest](docs/ErOttEnrollmentRequest.md)
+ - [GenericEnroll](docs/GenericEnroll.md)
- [IdentityAuthenticators](docs/IdentityAuthenticators.md)
- [IdentityAuthenticatorsCert](docs/IdentityAuthenticatorsCert.md)
- [IdentityAuthenticatorsUpdb](docs/IdentityAuthenticatorsUpdb.md)
diff --git a/edge-api/api/openapi.yaml b/edge-api/api/openapi.yaml
index 739862ee..a50c1ccf 100644
--- a/edge-api/api/openapi.yaml
+++ b/edge-api/api/openapi.yaml
@@ -9,7 +9,7 @@ info:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
title: Ziti Edge Client
- version: 0.26.39
+ version: 0.26.42
servers:
- url: https://demo.ziti.dev/edge/client/v1
paths:
@@ -2041,21 +2041,60 @@ paths:
name: method
schema:
type: string
+ requestBody:
+ content:
+ application/pkcs7:
+ schema:
+ $ref: "#/components/schemas/genericEnroll"
+ application/json:
+ schema:
+ $ref: "#/components/schemas/genericEnroll"
+ application/x-pem-file:
+ schema:
+ $ref: "#/components/schemas/genericEnroll"
+ text/plain:
+ schema:
+ $ref: "#/components/schemas/genericEnroll"
+ required: false
responses:
"200":
content:
- application/x-pem-file:
- schema:
- type: string
application/json:
schema:
- type: string
- description: A response for multi-format legacy enrollment.
- "404":
+ $ref: "#/components/schemas/enrollmentCertsEnvelope"
+ description: A response containing and identities client certificate chains
+ "400":
content:
- application/x-pem-file:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
schema:
$ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
+ "404":
+ content:
application/json:
example:
error:
@@ -2074,9 +2113,6 @@ paths:
description: The requested resource does not exist
"429":
content:
- application/x-pem-file:
- schema:
- $ref: "#/components/schemas/apiErrorEnvelope"
application/json:
example:
error:
@@ -2096,9 +2132,6 @@ paths:
been exceeded
"503":
content:
- application/x-pem-file:
- schema:
- $ref: "#/components/schemas/apiErrorEnvelope"
application/json:
schema:
$ref: "#/components/schemas/apiErrorEnvelope"
@@ -2107,9 +2140,10 @@ paths:
summary: Enroll an identity via one-time-token
tags:
- Enroll
+ x-codegen-request-body-name: body
+ x-content-type: application/pkcs7
x-accepts:
- application/json
- - application/x-pem-file
/enroll/ca:
post:
description: |
@@ -2126,6 +2160,36 @@ paths:
schema:
$ref: "#/components/schemas/empty"
description: Base empty response
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
"404":
content:
application/json:
@@ -2273,6 +2337,36 @@ paths:
$ref: "#/components/schemas/enrollmentCertsEnvelope"
description: "A response containing the edge routers signed certificates\
\ (server chain, server cert, CAs)."
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
"429":
content:
application/json:
@@ -2333,6 +2427,36 @@ paths:
$ref: "#/components/schemas/enrollmentCertsEnvelope"
description: "A response containing the edge routers new signed certificates\
\ (server chain, server cert, CAs)."
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
"401":
content:
application/json:
@@ -2420,6 +2544,36 @@ paths:
schema:
$ref: "#/components/schemas/enrollmentCertsEnvelope"
description: A response containing and identities client certificate chains
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
"404":
content:
application/json:
@@ -2495,6 +2649,36 @@ paths:
schema:
$ref: "#/components/schemas/empty"
description: Base empty response
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
"429":
content:
application/json:
@@ -2553,6 +2737,36 @@ paths:
schema:
$ref: "#/components/schemas/empty"
description: Base empty response
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
"404":
content:
application/json:
@@ -4871,6 +5085,8 @@ components:
name:
example: MyApps Signer
type: string
+ openIdConfigurationUrl:
+ type: string
scopes:
items:
type: string
@@ -4892,6 +5108,7 @@ components:
method: method
comment: comment
href: https://openapi-generator.tech
+ openIdConfigurationUrl: openIdConfigurationUrl
name: MyApps Signer
targetToken: ACCESS
id: id
@@ -6073,6 +6290,25 @@ components:
token:
type: string
type: object
+ genericEnroll:
+ properties:
+ certCsr:
+ type: string
+ clientCsr:
+ type: string
+ name:
+ type: string
+ password:
+ maxLength: 100
+ minLength: 5
+ type: string
+ serverCertCsr:
+ type: string
+ username:
+ maxLength: 100
+ minLength: 4
+ type: string
+ type: object
identityAuthenticators:
example:
cert:
@@ -6636,6 +6872,7 @@ components:
method: method
comment: comment
href: https://openapi-generator.tech
+ openIdConfigurationUrl: openIdConfigurationUrl
name: MyApps Signer
targetToken: ACCESS
id: id
@@ -6653,6 +6890,7 @@ components:
method: method
comment: comment
href: https://openapi-generator.tech
+ openIdConfigurationUrl: openIdConfigurationUrl
name: MyApps Signer
targetToken: ACCESS
id: id
diff --git a/edge-api/docs/ClientExternalJwtSignerDetail.md b/edge-api/docs/ClientExternalJwtSignerDetail.md
index 65d178d5..24c4d5d9 100644
--- a/edge-api/docs/ClientExternalJwtSignerDetail.md
+++ b/edge-api/docs/ClientExternalJwtSignerDetail.md
@@ -17,6 +17,7 @@ A External JWT Signer resource
|**clientId** | **String** | | [optional] |
|**externalAuthUrl** | **String** | | |
|**name** | **String** | | |
+|**openIdConfigurationUrl** | **String** | | [optional] |
|**scopes** | **List<String>** | | [optional] |
|**targetToken** | **TargetToken** | | [optional] |
diff --git a/edge-api/docs/EnrollApi.md b/edge-api/docs/EnrollApi.md
index 5528f7e2..7e5c14b5 100644
--- a/edge-api/docs/EnrollApi.md
+++ b/edge-api/docs/EnrollApi.md
@@ -31,7 +31,7 @@ All URIs are relative to *https://demo.ziti.dev/edge/client/v1*
## enroll
-> CompletableFuture enroll(token, method)
+> CompletableFuture enroll(token, method, body)
Enroll an identity via one-time-token
@@ -56,8 +56,9 @@ public class Example {
EnrollApi apiInstance = new EnrollApi(defaultClient);
UUID token = UUID.randomUUID(); // UUID |
String method = "method_example"; // String |
+ GenericEnroll body = new GenericEnroll(); // GenericEnroll |
try {
- CompletableFuture result = apiInstance.enroll(token, method);
+ CompletableFuture result = apiInstance.enroll(token, method, body);
System.out.println(result.get());
} catch (ApiException e) {
System.err.println("Exception when calling EnrollApi#enroll");
@@ -77,10 +78,11 @@ public class Example {
|------------- | ------------- | ------------- | -------------|
| **token** | **UUID**| | [optional] |
| **method** | **String**| | [optional] |
+| **body** | [**GenericEnroll**](GenericEnroll.md)| | [optional] |
### Return type
-CompletableFuture<**String**>
+CompletableFuture<[**EnrollmentCertsEnvelope**](EnrollmentCertsEnvelope.md)>
### Authorization
@@ -89,20 +91,21 @@ No authorization required
### HTTP request headers
-- **Content-Type**: Not defined
-- **Accept**: application/x-pem-file, application/json
+- **Content-Type**: application/pkcs7, application/json, application/x-pem-file, text/plain
+- **Accept**: application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **200** | A response for multi-format legacy enrollment. | - |
+| **200** | A response containing and identities client certificate chains | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
## enrollWithHttpInfo
-> CompletableFuture> enroll enrollWithHttpInfo(token, method)
+> CompletableFuture> enroll enrollWithHttpInfo(token, method, body)
Enroll an identity via one-time-token
@@ -128,8 +131,9 @@ public class Example {
EnrollApi apiInstance = new EnrollApi(defaultClient);
UUID token = UUID.randomUUID(); // UUID |
String method = "method_example"; // String |
+ GenericEnroll body = new GenericEnroll(); // GenericEnroll |
try {
- CompletableFuture> response = apiInstance.enrollWithHttpInfo(token, method);
+ CompletableFuture> response = apiInstance.enrollWithHttpInfo(token, method, body);
System.out.println("Status code: " + response.get().getStatusCode());
System.out.println("Response headers: " + response.get().getHeaders());
System.out.println("Response body: " + response.get().getData());
@@ -158,10 +162,11 @@ public class Example {
|------------- | ------------- | ------------- | -------------|
| **token** | **UUID**| | [optional] |
| **method** | **String**| | [optional] |
+| **body** | [**GenericEnroll**](GenericEnroll.md)| | [optional] |
### Return type
-CompletableFuture>
+CompletableFuture>
### Authorization
@@ -170,13 +175,14 @@ No authorization required
### HTTP request headers
-- **Content-Type**: Not defined
-- **Accept**: application/x-pem-file, application/json
+- **Content-Type**: application/pkcs7, application/json, application/x-pem-file, text/plain
+- **Accept**: application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **200** | A response for multi-format legacy enrollment. | - |
+| **200** | A response containing and identities client certificate chains | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -243,6 +249,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | Base empty response | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -318,6 +325,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | Base empty response | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -388,6 +396,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing the edge routers signed certificates (server chain, server cert, CAs). | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -466,6 +475,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing the edge routers signed certificates (server chain, server cert, CAs). | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -535,6 +545,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing and identities client certificate chains | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -614,6 +625,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing and identities client certificate chains | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -684,6 +696,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | Base empty response | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -762,6 +775,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | Base empty response | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -833,6 +847,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | Base empty response | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -914,6 +929,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | Base empty response | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **404** | The requested resource does not exist | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
| **503** | The request could not be completed due to the server being busy or in a temporarily bad state | - |
@@ -1302,6 +1318,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing the edge routers new signed certificates (server chain, server cert, CAs). | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **401** | The supplied session does not have the correct access rights to request this resource | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
@@ -1380,6 +1397,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing the edge routers new signed certificates (server chain, server cert, CAs). | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **401** | The supplied session does not have the correct access rights to request this resource | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
diff --git a/edge-api/docs/ExtendEnrollmentApi.md b/edge-api/docs/ExtendEnrollmentApi.md
index b0abb804..fda450f0 100644
--- a/edge-api/docs/ExtendEnrollmentApi.md
+++ b/edge-api/docs/ExtendEnrollmentApi.md
@@ -249,6 +249,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing the edge routers new signed certificates (server chain, server cert, CAs). | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **401** | The supplied session does not have the correct access rights to request this resource | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
@@ -327,6 +328,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
| **200** | A response containing the edge routers new signed certificates (server chain, server cert, CAs). | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
| **401** | The supplied session does not have the correct access rights to request this resource | - |
| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
diff --git a/edge-api/docs/GenericEnroll.md b/edge-api/docs/GenericEnroll.md
new file mode 100644
index 00000000..e6d59c54
--- /dev/null
+++ b/edge-api/docs/GenericEnroll.md
@@ -0,0 +1,18 @@
+
+
+# GenericEnroll
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**certCsr** | **String** | | [optional] |
+|**clientCsr** | **String** | | [optional] |
+|**name** | **String** | | [optional] |
+|**password** | **String** | | [optional] |
+|**serverCertCsr** | **String** | | [optional] |
+|**username** | **String** | | [optional] |
+
+
+
diff --git a/edge-api/src/main/java/org/openziti/edge/ApiClient.java b/edge-api/src/main/java/org/openziti/edge/ApiClient.java
index 1d1bd6c9..51741a72 100644
--- a/edge-api/src/main/java/org/openziti/edge/ApiClient.java
+++ b/edge-api/src/main/java/org/openziti/edge/ApiClient.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -52,7 +52,7 @@
*/
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiClient {
diff --git a/edge-api/src/main/java/org/openziti/edge/ApiException.java b/edge-api/src/main/java/org/openziti/edge/ApiException.java
index 0906c00f..9dcb8bdd 100644
--- a/edge-api/src/main/java/org/openziti/edge/ApiException.java
+++ b/edge-api/src/main/java/org/openziti/edge/ApiException.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiException extends Exception {
private static final long serialVersionUID = 1L;
diff --git a/edge-api/src/main/java/org/openziti/edge/ApiResponse.java b/edge-api/src/main/java/org/openziti/edge/ApiResponse.java
index 4c902961..c0633638 100644
--- a/edge-api/src/main/java/org/openziti/edge/ApiResponse.java
+++ b/edge-api/src/main/java/org/openziti/edge/ApiResponse.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
*/
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiResponse {
private final int statusCode;
diff --git a/edge-api/src/main/java/org/openziti/edge/Configuration.java b/edge-api/src/main/java/org/openziti/edge/Configuration.java
index f4a3916e..c2bae224 100644
--- a/edge-api/src/main/java/org/openziti/edge/Configuration.java
+++ b/edge-api/src/main/java/org/openziti/edge/Configuration.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,10 +14,10 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Configuration {
- public static final String VERSION = "0.26.39";
+ public static final String VERSION = "0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT";
private static ApiClient defaultApiClient = new ApiClient();
diff --git a/edge-api/src/main/java/org/openziti/edge/JSON.java b/edge-api/src/main/java/org/openziti/edge/JSON.java
index 830aecf1..56114505 100644
--- a/edge-api/src/main/java/org/openziti/edge/JSON.java
+++ b/edge-api/src/main/java/org/openziti/edge/JSON.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class JSON {
private ObjectMapper mapper;
@@ -85,7 +85,7 @@ public static Class> getClassForElement(JsonNode node, Class> modelClass) {
/** Helper class to register the discriminator mappings. */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
private static class ClassDiscriminatorMapping {
// The model class name.
diff --git a/edge-api/src/main/java/org/openziti/edge/Pair.java b/edge-api/src/main/java/org/openziti/edge/Pair.java
index 0c0b7e8a..30c8a24e 100644
--- a/edge-api/src/main/java/org/openziti/edge/Pair.java
+++ b/edge-api/src/main/java/org/openziti/edge/Pair.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,7 +14,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Pair {
private String name = "";
diff --git a/edge-api/src/main/java/org/openziti/edge/RFC3339DateFormat.java b/edge-api/src/main/java/org/openziti/edge/RFC3339DateFormat.java
index 4a110058..e6292966 100644
--- a/edge-api/src/main/java/org/openziti/edge/RFC3339DateFormat.java
+++ b/edge-api/src/main/java/org/openziti/edge/RFC3339DateFormat.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RFC3339DateFormat extends DateFormat {
private static final long serialVersionUID = 1L;
diff --git a/edge-api/src/main/java/org/openziti/edge/ServerConfiguration.java b/edge-api/src/main/java/org/openziti/edge/ServerConfiguration.java
index da2f8d84..dbc32a50 100644
--- a/edge-api/src/main/java/org/openziti/edge/ServerConfiguration.java
+++ b/edge-api/src/main/java/org/openziti/edge/ServerConfiguration.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@
/** Representing a Server configuration. */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServerConfiguration {
public String URL;
diff --git a/edge-api/src/main/java/org/openziti/edge/ServerVariable.java b/edge-api/src/main/java/org/openziti/edge/ServerVariable.java
index 2e114fee..59467c7d 100644
--- a/edge-api/src/main/java/org/openziti/edge/ServerVariable.java
+++ b/edge-api/src/main/java/org/openziti/edge/ServerVariable.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@
/** Representing a Server Variable for server URL template substitution. */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServerVariable {
public String description;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/AuthenticationApi.java b/edge-api/src/main/java/org/openziti/edge/api/AuthenticationApi.java
index 17c2cbfd..72c6dcf3 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/AuthenticationApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/AuthenticationApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticationApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/ControllersApi.java b/edge-api/src/main/java/org/openziti/edge/api/ControllersApi.java
index 1847b2f5..5d37ee42 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/ControllersApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/ControllersApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ControllersApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/CurrentApiSessionApi.java b/edge-api/src/main/java/org/openziti/edge/api/CurrentApiSessionApi.java
index 52fd3b24..54041540 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/CurrentApiSessionApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/CurrentApiSessionApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -47,7 +47,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/CurrentIdentityApi.java b/edge-api/src/main/java/org/openziti/edge/api/CurrentIdentityApi.java
index b60f7dd7..5000e788 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/CurrentIdentityApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/CurrentIdentityApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentIdentityApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/EdgeRouterApi.java b/edge-api/src/main/java/org/openziti/edge/api/EdgeRouterApi.java
index 92202148..49757120 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/EdgeRouterApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/EdgeRouterApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/EnrollApi.java b/edge-api/src/main/java/org/openziti/edge/api/EnrollApi.java
index e7bb3896..7544e5a2 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/EnrollApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/EnrollApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,6 +35,7 @@
import org.openziti.edge.model.EnrollUpdbRequest;
import org.openziti.edge.model.EnrollmentCertsEnvelope;
import org.openziti.edge.model.ErOttEnrollmentRequest;
+import org.openziti.edge.model.GenericEnroll;
import org.openziti.edge.model.IdentityExtendEnrollmentEnvelope;
import org.openziti.edge.model.IdentityExtendEnrollmentRequest;
import org.openziti.edge.model.IdentityExtendValidateEnrollmentRequest;
@@ -46,7 +47,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollApi {
private final HttpClient memberVarHttpClient;
@@ -91,12 +92,14 @@ private String formatExceptionMessage(String operationId, int statusCode, String
*
* @param token (optional)
* @param method (optional)
- * @return CompletableFuture<String>
+ * @param body (optional)
+ * @return CompletableFuture<EnrollmentCertsEnvelope>
* @throws ApiException if fails to make API call
*/
- public CompletableFuture enroll(UUID token, String method) throws ApiException {
+ public CompletableFuture enroll(
+ UUID token, String method, GenericEnroll body) throws ApiException {
try {
- HttpRequest.Builder localVarRequestBuilder = enrollRequestBuilder(token, method);
+ HttpRequest.Builder localVarRequestBuilder = enrollRequestBuilder(token, method, body);
return memberVarHttpClient
.sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
.thenComposeAsync(
@@ -112,7 +115,8 @@ public CompletableFuture enroll(UUID token, String method) throws ApiExc
? null
: memberVarObjectMapper.readValue(
responseBody,
- new TypeReference() {}));
+ new TypeReference<
+ EnrollmentCertsEnvelope>() {}));
} catch (IOException e) {
return CompletableFuture.failedFuture(new ApiException(e));
}
@@ -128,13 +132,14 @@ public CompletableFuture enroll(UUID token, String method) throws ApiExc
*
* @param token (optional)
* @param method (optional)
- * @return CompletableFuture<ApiResponse<String>>
+ * @param body (optional)
+ * @return CompletableFuture<ApiResponse<EnrollmentCertsEnvelope>>
* @throws ApiException if fails to make API call
*/
- public CompletableFuture> enrollWithHttpInfo(UUID token, String method)
- throws ApiException {
+ public CompletableFuture> enrollWithHttpInfo(
+ UUID token, String method, GenericEnroll body) throws ApiException {
try {
- HttpRequest.Builder localVarRequestBuilder = enrollRequestBuilder(token, method);
+ HttpRequest.Builder localVarRequestBuilder = enrollRequestBuilder(token, method, body);
return memberVarHttpClient
.sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
.thenComposeAsync(
@@ -149,7 +154,7 @@ public CompletableFuture> enrollWithHttpInfo(UUID token, Str
try {
String responseBody = localVarResponse.body();
return CompletableFuture.completedFuture(
- new ApiResponse(
+ new ApiResponse(
localVarResponse.statusCode(),
localVarResponse.headers().map(),
responseBody == null || responseBody.isBlank()
@@ -157,7 +162,7 @@ public CompletableFuture> enrollWithHttpInfo(UUID token, Str
: memberVarObjectMapper.readValue(
responseBody,
new TypeReference<
- String>() {})));
+ EnrollmentCertsEnvelope>() {})));
} catch (IOException e) {
return CompletableFuture.failedFuture(new ApiException(e));
}
@@ -167,7 +172,7 @@ public CompletableFuture> enrollWithHttpInfo(UUID token, Str
}
}
- private HttpRequest.Builder enrollRequestBuilder(UUID token, String method)
+ private HttpRequest.Builder enrollRequestBuilder(UUID token, String method, GenericEnroll body)
throws ApiException {
HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
@@ -194,9 +199,16 @@ private HttpRequest.Builder enrollRequestBuilder(UUID token, String method)
localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
}
- localVarRequestBuilder.header("Accept", "application/x-pem-file, application/json");
+ localVarRequestBuilder.header("Content-Type", "application/pkcs7");
+ localVarRequestBuilder.header("Accept", "application/json");
- localVarRequestBuilder.method("POST", HttpRequest.BodyPublishers.noBody());
+ try {
+ byte[] localVarPostBody = memberVarObjectMapper.writeValueAsBytes(body);
+ localVarRequestBuilder.method(
+ "POST", HttpRequest.BodyPublishers.ofByteArray(localVarPostBody));
+ } catch (IOException e) {
+ throw new ApiException(e);
+ }
if (memberVarReadTimeout != null) {
localVarRequestBuilder.timeout(memberVarReadTimeout);
}
diff --git a/edge-api/src/main/java/org/openziti/edge/api/EnrollmentApi.java b/edge-api/src/main/java/org/openziti/edge/api/EnrollmentApi.java
index 766296c1..a19b2b07 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/EnrollmentApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/EnrollmentApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollmentApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/ExtendEnrollmentApi.java b/edge-api/src/main/java/org/openziti/edge/api/ExtendEnrollmentApi.java
index ca31f242..c5a948ea 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/ExtendEnrollmentApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/ExtendEnrollmentApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExtendEnrollmentApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/ExternalJwtSignerApi.java b/edge-api/src/main/java/org/openziti/edge/api/ExternalJwtSignerApi.java
index 0f1db135..629e4f8a 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/ExternalJwtSignerApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/ExternalJwtSignerApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalJwtSignerApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/InformationalApi.java b/edge-api/src/main/java/org/openziti/edge/api/InformationalApi.java
index fda85280..f8c181f2 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/InformationalApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/InformationalApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class InformationalApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/MfaApi.java b/edge-api/src/main/java/org/openziti/edge/api/MfaApi.java
index 46530273..75ddb38c 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/MfaApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/MfaApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class MfaApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/PostureChecksApi.java b/edge-api/src/main/java/org/openziti/edge/api/PostureChecksApi.java
index 7805ba7b..31963d72 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/PostureChecksApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/PostureChecksApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureChecksApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/ServiceApi.java b/edge-api/src/main/java/org/openziti/edge/api/ServiceApi.java
index 6a2330ee..5aebe0c8 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/ServiceApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/ServiceApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/ServicesApi.java b/edge-api/src/main/java/org/openziti/edge/api/ServicesApi.java
index d8bb3c78..a6d049ee 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/ServicesApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/ServicesApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicesApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/SessionApi.java b/edge-api/src/main/java/org/openziti/edge/api/SessionApi.java
index 2ec8570c..38ec467d 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/SessionApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/SessionApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/api/WellKnownApi.java b/edge-api/src/main/java/org/openziti/edge/api/WellKnownApi.java
index 19e2edce..6891f8c1 100644
--- a/edge-api/src/main/java/org/openziti/edge/api/WellKnownApi.java
+++ b/edge-api/src/main/java/org/openziti/edge/api/WellKnownApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class WellKnownApi {
private final HttpClient memberVarHttpClient;
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AbstractOpenApiSchema.java b/edge-api/src/main/java/org/openziti/edge/model/AbstractOpenApiSchema.java
index 9059a8df..1af95e9a 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AbstractOpenApiSchema.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AbstractOpenApiSchema.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,7 @@
/** Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public abstract class AbstractOpenApiSchema {
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiAddress.java b/edge-api/src/main/java/org/openziti/edge/model/ApiAddress.java
index 0593d60a..a007e5b9 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiAddress.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiAddress.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({ApiAddress.JSON_PROPERTY_URL, ApiAddress.JSON_PROPERTY_VERSION})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiAddress {
public static final String JSON_PROPERTY_URL = "url";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiError.java b/edge-api/src/main/java/org/openziti/edge/model/ApiError.java
index e42b9ab7..549b22f3 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiError.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiError.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiError {
public static final String JSON_PROPERTY_ARGS = "args";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiErrorArgs.java b/edge-api/src/main/java/org/openziti/edge/model/ApiErrorArgs.java
index 86591822..b9a11492 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiErrorArgs.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiErrorArgs.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
@JsonPropertyOrder({ApiErrorArgs.JSON_PROPERTY_URL_VARS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiErrorArgs {
public static final String JSON_PROPERTY_URL_VARS = "urlVars";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiErrorCause.java b/edge-api/src/main/java/org/openziti/edge/model/ApiErrorCause.java
index 89cd9dbd..6dae4c1b 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiErrorCause.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiErrorCause.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiErrorCause {
public static final String JSON_PROPERTY_FIELD = "field";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiErrorEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ApiErrorEnvelope.java
index 5e8818c8..5c2af943 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiErrorEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiErrorEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({ApiErrorEnvelope.JSON_PROPERTY_ERROR, ApiErrorEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiErrorEnvelope {
public static final String JSON_PROPERTY_ERROR = "error";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiFieldError.java b/edge-api/src/main/java/org/openziti/edge/model/ApiFieldError.java
index 3b29fef0..2d04f9db 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiFieldError.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiFieldError.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiFieldError {
public static final String JSON_PROPERTY_FIELD = "field";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiSessionDetail.java b/edge-api/src/main/java/org/openziti/edge/model/ApiSessionDetail.java
index 5928ed28..48d405d0 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiSessionDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiSessionDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -48,7 +48,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiSessionDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ApiVersion.java b/edge-api/src/main/java/org/openziti/edge/model/ApiVersion.java
index a32d907e..52b0101b 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ApiVersion.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ApiVersion.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiVersion {
public static final String JSON_PROPERTY_API_BASE_URLS = "apiBaseUrls";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AuthQueryDetail.java b/edge-api/src/main/java/org/openziti/edge/model/AuthQueryDetail.java
index 4d5a4938..bbe50bad 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AuthQueryDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AuthQueryDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthQueryDetail {
public static final String JSON_PROPERTY_CLIENT_ID = "clientId";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AuthQueryType.java b/edge-api/src/main/java/org/openziti/edge/model/AuthQueryType.java
index 4a07c610..c7f52258 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AuthQueryType.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AuthQueryType.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Authenticate.java b/edge-api/src/main/java/org/openziti/edge/model/Authenticate.java
index 40a14dfe..0ae1b8c5 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Authenticate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Authenticate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Authenticate {
public static final String JSON_PROPERTY_CONFIG_TYPES = "configTypes";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorDetail.java b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorDetail.java
index 1ba0e25a..824e9b5c 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,7 +41,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatch.java b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatch.java
index 5ac92c65..f6307366 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatch.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorPatch {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatchWithCurrent.java b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatchWithCurrent.java
index 27fdd5f1..cb840a0c 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatchWithCurrent.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorPatchWithCurrent.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorPatchWithCurrent {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdate.java b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdate.java
index 24ef8bc7..ded30e35 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorUpdate {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdateWithCurrent.java b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdateWithCurrent.java
index a8ca4901..700daae8 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdateWithCurrent.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/AuthenticatorUpdateWithCurrent.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorUpdateWithCurrent {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/BaseEntity.java b/edge-api/src/main/java/org/openziti/edge/model/BaseEntity.java
index 711d56aa..ee7a0817 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/BaseEntity.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/BaseEntity.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class BaseEntity {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Capabilities.java b/edge-api/src/main/java/org/openziti/edge/model/Capabilities.java
index 1779f947..a49a3bc1 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Capabilities.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Capabilities.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ClientExternalJwtSignerDetail.java b/edge-api/src/main/java/org/openziti/edge/model/ClientExternalJwtSignerDetail.java
index b788a230..bf8ccd18 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ClientExternalJwtSignerDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ClientExternalJwtSignerDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,12 +40,13 @@
ClientExternalJwtSignerDetail.JSON_PROPERTY_CLIENT_ID,
ClientExternalJwtSignerDetail.JSON_PROPERTY_EXTERNAL_AUTH_URL,
ClientExternalJwtSignerDetail.JSON_PROPERTY_NAME,
+ ClientExternalJwtSignerDetail.JSON_PROPERTY_OPEN_ID_CONFIGURATION_URL,
ClientExternalJwtSignerDetail.JSON_PROPERTY_SCOPES,
ClientExternalJwtSignerDetail.JSON_PROPERTY_TARGET_TOKEN
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ClientExternalJwtSignerDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
@@ -75,6 +76,9 @@ public class ClientExternalJwtSignerDetail {
public static final String JSON_PROPERTY_NAME = "name";
@javax.annotation.Nonnull private String name;
+ public static final String JSON_PROPERTY_OPEN_ID_CONFIGURATION_URL = "openIdConfigurationUrl";
+ @javax.annotation.Nullable private String openIdConfigurationUrl;
+
public static final String JSON_PROPERTY_SCOPES = "scopes";
@javax.annotation.Nullable private List scopes = new ArrayList<>();
@@ -317,6 +321,31 @@ public void setName(@javax.annotation.Nonnull String name) {
this.name = name;
}
+ public ClientExternalJwtSignerDetail openIdConfigurationUrl(
+ @javax.annotation.Nullable String openIdConfigurationUrl) {
+ this.openIdConfigurationUrl = openIdConfigurationUrl;
+ return this;
+ }
+
+ /**
+ * Get openIdConfigurationUrl
+ *
+ * @return openIdConfigurationUrl
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_OPEN_ID_CONFIGURATION_URL)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getOpenIdConfigurationUrl() {
+ return openIdConfigurationUrl;
+ }
+
+ @JsonProperty(JSON_PROPERTY_OPEN_ID_CONFIGURATION_URL)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setOpenIdConfigurationUrl(
+ @javax.annotation.Nullable String openIdConfigurationUrl) {
+ this.openIdConfigurationUrl = openIdConfigurationUrl;
+ }
+
public ClientExternalJwtSignerDetail scopes(@javax.annotation.Nullable List scopes) {
this.scopes = scopes;
return this;
@@ -401,6 +430,9 @@ && equalsNullable(this.clientId, clientExternalJwtSignerDetail.clientId)
&& Objects.equals(
this.externalAuthUrl, clientExternalJwtSignerDetail.externalAuthUrl)
&& Objects.equals(this.name, clientExternalJwtSignerDetail.name)
+ && Objects.equals(
+ this.openIdConfigurationUrl,
+ clientExternalJwtSignerDetail.openIdConfigurationUrl)
&& Objects.equals(this.scopes, clientExternalJwtSignerDetail.scopes)
&& equalsNullable(this.targetToken, clientExternalJwtSignerDetail.targetToken);
}
@@ -426,6 +458,7 @@ public int hashCode() {
hashCodeNullable(clientId),
externalAuthUrl,
name,
+ openIdConfigurationUrl,
scopes,
hashCodeNullable(targetToken));
}
@@ -450,6 +483,9 @@ public String toString() {
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" externalAuthUrl: ").append(toIndentedString(externalAuthUrl)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
+ sb.append(" openIdConfigurationUrl: ")
+ .append(toIndentedString(openIdConfigurationUrl))
+ .append("\n");
sb.append(" scopes: ").append(toIndentedString(scopes)).append("\n");
sb.append(" targetToken: ").append(toIndentedString(targetToken)).append("\n");
sb.append("}");
@@ -618,6 +654,19 @@ public String toUrlQueryString(String prefix) {
.replaceAll("\\+", "%20")));
}
+ // add `openIdConfigurationUrl` to the URL query string
+ if (getOpenIdConfigurationUrl() != null) {
+ joiner.add(
+ String.format(
+ "%sopenIdConfigurationUrl%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getOpenIdConfigurationUrl()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
// add `scopes` to the URL query string
if (getScopes() != null) {
for (int i = 0; i < getScopes().size(); i++) {
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CommonEdgeRouterProperties.java b/edge-api/src/main/java/org/openziti/edge/model/CommonEdgeRouterProperties.java
index 8bd2a74a..217dacdd 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CommonEdgeRouterProperties.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CommonEdgeRouterProperties.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CommonEdgeRouterProperties {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ControllerDetail.java b/edge-api/src/main/java/org/openziti/edge/model/ControllerDetail.java
index e394a23d..5e926f16 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ControllerDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ControllerDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ControllerDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CreateCurrentApiSessionCertificateEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/CreateCurrentApiSessionCertificateEnvelope.java
index ddcaded1..cbb8da2e 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CreateCurrentApiSessionCertificateEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CreateCurrentApiSessionCertificateEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CreateCurrentApiSessionCertificateEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CreateEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/CreateEnvelope.java
index 23ecd21f..476ddd61 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CreateEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CreateEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({CreateEnvelope.JSON_PROPERTY_DATA, CreateEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CreateEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CreateLocation.java b/edge-api/src/main/java/org/openziti/edge/model/CreateLocation.java
index 224f70d2..38ab2e27 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CreateLocation.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CreateLocation.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
@JsonPropertyOrder({CreateLocation.JSON_PROPERTY_LINKS, CreateLocation.JSON_PROPERTY_ID})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CreateLocation {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreate.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreate.java
index 40acf674..cb7c72f4 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({CurrentApiSessionCertificateCreate.JSON_PROPERTY_CSR})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionCertificateCreate {
public static final String JSON_PROPERTY_CSR = "csr";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreateResponse.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreateResponse.java
index ce124424..fd0d32e8 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreateResponse.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateCreateResponse.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionCertificateCreateResponse {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateDetail.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateDetail.java
index 838bd87a..e1ef3c09 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionCertificateDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionCertificateDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetail.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetail.java
index 97e676f5..20766086 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -50,7 +50,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetailEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetailEnvelope.java
index 0134e206..823345a1 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetailEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionDetailEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionDetailEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionServiceUpdateList.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionServiceUpdateList.java
index 8fe2892e..df82f790 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionServiceUpdateList.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentApiSessionServiceUpdateList.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@JsonPropertyOrder({CurrentApiSessionServiceUpdateList.JSON_PROPERTY_LAST_CHANGE_AT})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionServiceUpdateList {
public static final String JSON_PROPERTY_LAST_CHANGE_AT = "lastChangeAt";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityDetailEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityDetailEnvelope.java
index b830e9c2..e59c4e2a 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityDetailEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityDetailEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentIdentityDetailEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityEdgeRouterDetail.java b/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityEdgeRouterDetail.java
index 8f758e5f..be1e095f 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityEdgeRouterDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/CurrentIdentityEdgeRouterDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -43,7 +43,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentIdentityEdgeRouterDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailAuthenticatorEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailAuthenticatorEnvelope.java
index 6ca89d76..bfe06bf3 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailAuthenticatorEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailAuthenticatorEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailAuthenticatorEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailCurrentApiSessionCertificateEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailCurrentApiSessionCertificateEnvelope.java
index acf88efd..facbd598 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailCurrentApiSessionCertificateEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailCurrentApiSessionCertificateEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailCurrentApiSessionCertificateEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailMfa.java b/edge-api/src/main/java/org/openziti/edge/model/DetailMfa.java
index 0ee82049..353227aa 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailMfa.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailMfa.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfa {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailMfaEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailMfaEnvelope.java
index efdb3728..56649870 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailMfaEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailMfaEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({DetailMfaEnvelope.JSON_PROPERTY_DATA, DetailMfaEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfaEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodes.java b/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodes.java
index c9a68dec..d2ca918a 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodes.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodes.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfaRecoveryCodes {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodesEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodesEnvelope.java
index 48ca045d..53143caa 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodesEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailMfaRecoveryCodesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfaRecoveryCodesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailServiceEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailServiceEnvelope.java
index a41bb214..0222b2da 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailServiceEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailServiceEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailServiceEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailSessionEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailSessionEnvelope.java
index d58e8523..154bd3e3 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailSessionEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailSessionEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailSessionEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailSpecBodyEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailSpecBodyEnvelope.java
index 36a78fb0..ef6e80ce 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailSpecBodyEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailSpecBodyEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailSpecBodyEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DetailSpecEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/DetailSpecEnvelope.java
index 194f2258..cf7fbf01 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DetailSpecEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DetailSpecEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({DetailSpecEnvelope.JSON_PROPERTY_DATA, DetailSpecEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailSpecEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/DialBind.java b/edge-api/src/main/java/org/openziti/edge/model/DialBind.java
index c219de09..d25a9ad1 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/DialBind.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/DialBind.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Empty.java b/edge-api/src/main/java/org/openziti/edge/model/Empty.java
index 37bf4d40..0c4246ae 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Empty.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Empty.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({Empty.JSON_PROPERTY_DATA, Empty.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Empty {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/EnrollUpdbRequest.java b/edge-api/src/main/java/org/openziti/edge/model/EnrollUpdbRequest.java
index ff28107f..83595ef9 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/EnrollUpdbRequest.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/EnrollUpdbRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollUpdbRequest {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCerts.java b/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCerts.java
index ee0b431f..ab6473ba 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCerts.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCerts.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollmentCerts {
public static final String JSON_PROPERTY_CA = "ca";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCertsEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCertsEnvelope.java
index b9abbc17..66d77274 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCertsEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/EnrollmentCertsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollmentCertsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/EntityRef.java b/edge-api/src/main/java/org/openziti/edge/model/EntityRef.java
index 1ec5554e..c19b3af0 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/EntityRef.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/EntityRef.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EntityRef {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/EnvInfo.java b/edge-api/src/main/java/org/openziti/edge/model/EnvInfo.java
index 79be63fa..32fd8512 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/EnvInfo.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/EnvInfo.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnvInfo {
public static final String JSON_PROPERTY_ARCH = "arch";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ErOttEnrollmentRequest.java b/edge-api/src/main/java/org/openziti/edge/model/ErOttEnrollmentRequest.java
index 800d168e..39033f35 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ErOttEnrollmentRequest.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ErOttEnrollmentRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ErOttEnrollmentRequest {
public static final String JSON_PROPERTY_CLIENT_CSR = "clientCsr";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/GenericEnroll.java b/edge-api/src/main/java/org/openziti/edge/model/GenericEnroll.java
new file mode 100644
index 00000000..bb2461a3
--- /dev/null
+++ b/edge-api/src/main/java/org/openziti/edge/model/GenericEnroll.java
@@ -0,0 +1,356 @@
+/*
+ * Ziti Edge Client
+ * OpenZiti Edge Client API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.edge.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.net.URLEncoder;
+import java.nio.charset.StandardCharsets;
+import java.util.Objects;
+import java.util.StringJoiner;
+import org.openziti.edge.ApiClient;
+
+/** GenericEnroll */
+@JsonPropertyOrder({
+ GenericEnroll.JSON_PROPERTY_CERT_CSR,
+ GenericEnroll.JSON_PROPERTY_CLIENT_CSR,
+ GenericEnroll.JSON_PROPERTY_NAME,
+ GenericEnroll.JSON_PROPERTY_PASSWORD,
+ GenericEnroll.JSON_PROPERTY_SERVER_CERT_CSR,
+ GenericEnroll.JSON_PROPERTY_USERNAME
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class GenericEnroll {
+ public static final String JSON_PROPERTY_CERT_CSR = "certCsr";
+ @javax.annotation.Nullable private String certCsr;
+
+ public static final String JSON_PROPERTY_CLIENT_CSR = "clientCsr";
+ @javax.annotation.Nullable private String clientCsr;
+
+ public static final String JSON_PROPERTY_NAME = "name";
+ @javax.annotation.Nullable private String name;
+
+ public static final String JSON_PROPERTY_PASSWORD = "password";
+ @javax.annotation.Nullable private String password;
+
+ public static final String JSON_PROPERTY_SERVER_CERT_CSR = "serverCertCsr";
+ @javax.annotation.Nullable private String serverCertCsr;
+
+ public static final String JSON_PROPERTY_USERNAME = "username";
+ @javax.annotation.Nullable private String username;
+
+ public GenericEnroll() {}
+
+ public GenericEnroll certCsr(@javax.annotation.Nullable String certCsr) {
+ this.certCsr = certCsr;
+ return this;
+ }
+
+ /**
+ * Get certCsr
+ *
+ * @return certCsr
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_CERT_CSR)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getCertCsr() {
+ return certCsr;
+ }
+
+ @JsonProperty(JSON_PROPERTY_CERT_CSR)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setCertCsr(@javax.annotation.Nullable String certCsr) {
+ this.certCsr = certCsr;
+ }
+
+ public GenericEnroll clientCsr(@javax.annotation.Nullable String clientCsr) {
+ this.clientCsr = clientCsr;
+ return this;
+ }
+
+ /**
+ * Get clientCsr
+ *
+ * @return clientCsr
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_CLIENT_CSR)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getClientCsr() {
+ return clientCsr;
+ }
+
+ @JsonProperty(JSON_PROPERTY_CLIENT_CSR)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setClientCsr(@javax.annotation.Nullable String clientCsr) {
+ this.clientCsr = clientCsr;
+ }
+
+ public GenericEnroll name(@javax.annotation.Nullable String name) {
+ this.name = name;
+ return this;
+ }
+
+ /**
+ * Get name
+ *
+ * @return name
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_NAME)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getName() {
+ return name;
+ }
+
+ @JsonProperty(JSON_PROPERTY_NAME)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setName(@javax.annotation.Nullable String name) {
+ this.name = name;
+ }
+
+ public GenericEnroll password(@javax.annotation.Nullable String password) {
+ this.password = password;
+ return this;
+ }
+
+ /**
+ * Get password
+ *
+ * @return password
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_PASSWORD)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getPassword() {
+ return password;
+ }
+
+ @JsonProperty(JSON_PROPERTY_PASSWORD)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setPassword(@javax.annotation.Nullable String password) {
+ this.password = password;
+ }
+
+ public GenericEnroll serverCertCsr(@javax.annotation.Nullable String serverCertCsr) {
+ this.serverCertCsr = serverCertCsr;
+ return this;
+ }
+
+ /**
+ * Get serverCertCsr
+ *
+ * @return serverCertCsr
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_SERVER_CERT_CSR)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getServerCertCsr() {
+ return serverCertCsr;
+ }
+
+ @JsonProperty(JSON_PROPERTY_SERVER_CERT_CSR)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setServerCertCsr(@javax.annotation.Nullable String serverCertCsr) {
+ this.serverCertCsr = serverCertCsr;
+ }
+
+ public GenericEnroll username(@javax.annotation.Nullable String username) {
+ this.username = username;
+ return this;
+ }
+
+ /**
+ * Get username
+ *
+ * @return username
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_USERNAME)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getUsername() {
+ return username;
+ }
+
+ @JsonProperty(JSON_PROPERTY_USERNAME)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setUsername(@javax.annotation.Nullable String username) {
+ this.username = username;
+ }
+
+ /** Return true if this genericEnroll object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ GenericEnroll genericEnroll = (GenericEnroll) o;
+ return Objects.equals(this.certCsr, genericEnroll.certCsr)
+ && Objects.equals(this.clientCsr, genericEnroll.clientCsr)
+ && Objects.equals(this.name, genericEnroll.name)
+ && Objects.equals(this.password, genericEnroll.password)
+ && Objects.equals(this.serverCertCsr, genericEnroll.serverCertCsr)
+ && Objects.equals(this.username, genericEnroll.username);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(certCsr, clientCsr, name, password, serverCertCsr, username);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class GenericEnroll {\n");
+ sb.append(" certCsr: ").append(toIndentedString(certCsr)).append("\n");
+ sb.append(" clientCsr: ").append(toIndentedString(clientCsr)).append("\n");
+ sb.append(" name: ").append(toIndentedString(name)).append("\n");
+ sb.append(" password: ").append(toIndentedString(password)).append("\n");
+ sb.append(" serverCertCsr: ").append(toIndentedString(serverCertCsr)).append("\n");
+ sb.append(" username: ").append(toIndentedString(username)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `certCsr` to the URL query string
+ if (getCertCsr() != null) {
+ joiner.add(
+ String.format(
+ "%scertCsr%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getCertCsr()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `clientCsr` to the URL query string
+ if (getClientCsr() != null) {
+ joiner.add(
+ String.format(
+ "%sclientCsr%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getClientCsr()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `name` to the URL query string
+ if (getName() != null) {
+ joiner.add(
+ String.format(
+ "%sname%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getName()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `password` to the URL query string
+ if (getPassword() != null) {
+ joiner.add(
+ String.format(
+ "%spassword%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getPassword()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `serverCertCsr` to the URL query string
+ if (getServerCertCsr() != null) {
+ joiner.add(
+ String.format(
+ "%sserverCertCsr%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getServerCertCsr()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `username` to the URL query string
+ if (getUsername() != null) {
+ joiner.add(
+ String.format(
+ "%susername%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getUsername()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticators.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticators.java
index a98cc61f..64731b4b 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticators.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticators.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityAuthenticators {
public static final String JSON_PROPERTY_CERT = "cert";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsCert.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsCert.java
index a625d089..13ae5725 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsCert.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsCert.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityAuthenticatorsCert {
public static final String JSON_PROPERTY_FINGERPRINT = "fingerprint";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsUpdb.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsUpdb.java
index 744cb2f3..b9209133 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsUpdb.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityAuthenticatorsUpdb.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityAuthenticatorsUpdb {
public static final String JSON_PROPERTY_ID = "id";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityDetail.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityDetail.java
index ba23427c..e7f7767d 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -66,7 +66,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollments.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollments.java
index e3ae82e8..7afc2aea 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollments.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollments.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityEnrollments {
public static final String JSON_PROPERTY_OTT = "ott";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOtt.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOtt.java
index 4b128a90..70312278 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOtt.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOtt.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityEnrollmentsOtt {
public static final String JSON_PROPERTY_EXPIRES_AT = "expiresAt";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOttca.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOttca.java
index 92d81521..53331b7a 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOttca.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityEnrollmentsOttca.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityEnrollmentsOttca {
public static final String JSON_PROPERTY_CA = "ca";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendCerts.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendCerts.java
index 8257163e..2ba3323b 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendCerts.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendCerts.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendCerts {
public static final String JSON_PROPERTY_CA = "ca";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentEnvelope.java
index 98b08fdc..16a12ac4 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendEnrollmentEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentRequest.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentRequest.java
index af323642..bd777a0f 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentRequest.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendEnrollmentRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({IdentityExtendEnrollmentRequest.JSON_PROPERTY_CLIENT_CERT_CSR})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendEnrollmentRequest {
public static final String JSON_PROPERTY_CLIENT_CERT_CSR = "clientCertCsr";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendValidateEnrollmentRequest.java b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendValidateEnrollmentRequest.java
index c3b9b61a..182f21de 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendValidateEnrollmentRequest.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/IdentityExtendValidateEnrollmentRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({IdentityExtendValidateEnrollmentRequest.JSON_PROPERTY_CLIENT_CERT})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendValidateEnrollmentRequest {
public static final String JSON_PROPERTY_CLIENT_CERT = "clientCert";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Jwk.java b/edge-api/src/main/java/org/openziti/edge/model/Jwk.java
index 45c3d1af..19676661 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Jwk.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Jwk.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -49,7 +49,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Jwk {
public static final String JSON_PROPERTY_ALG = "alg";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Jwks.java b/edge-api/src/main/java/org/openziti/edge/model/Jwks.java
index a3f91c39..f0ee9f4d 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Jwks.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Jwks.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({Jwks.JSON_PROPERTY_KEYS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Jwks {
public static final String JSON_PROPERTY_KEYS = "keys";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Link.java b/edge-api/src/main/java/org/openziti/edge/model/Link.java
index 49a886ca..333b4b81 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Link.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Link.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@JsonPropertyOrder({Link.JSON_PROPERTY_COMMENT, Link.JSON_PROPERTY_HREF, Link.JSON_PROPERTY_METHOD})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Link {
public static final String JSON_PROPERTY_COMMENT = "comment";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListAuthenticatorsEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListAuthenticatorsEnvelope.java
index 580b0250..c528221f 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListAuthenticatorsEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListAuthenticatorsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListAuthenticatorsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListClientExternalJwtSignersEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListClientExternalJwtSignersEnvelope.java
index c2095d5c..02365cbc 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListClientExternalJwtSignersEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListClientExternalJwtSignersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListClientExternalJwtSignersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListClientTerminatorsEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListClientTerminatorsEnvelope.java
index cf8258bc..901aa1d7 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListClientTerminatorsEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListClientTerminatorsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListClientTerminatorsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListControllersEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListControllersEnvelope.java
index 78e4777d..3c578505 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListControllersEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListControllersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListControllersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionCertificatesEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionCertificatesEnvelope.java
index 142bd3f6..48597cca 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionCertificatesEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionCertificatesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListCurrentApiSessionCertificatesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionServiceUpdatesEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionServiceUpdatesEnvelope.java
index 28c35440..fa51d768 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionServiceUpdatesEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListCurrentApiSessionServiceUpdatesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListCurrentApiSessionServiceUpdatesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListCurrentIdentityEdgeRoutersEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListCurrentIdentityEdgeRoutersEnvelope.java
index 70eabca1..c1a1391c 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListCurrentIdentityEdgeRoutersEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListCurrentIdentityEdgeRoutersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListCurrentIdentityEdgeRoutersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListEnumeratedCapabilitiesEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListEnumeratedCapabilitiesEnvelope.java
index 5ec04e49..d3836dff 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListEnumeratedCapabilitiesEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListEnumeratedCapabilitiesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListEnumeratedCapabilitiesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListNetworkJWTsEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListNetworkJWTsEnvelope.java
index 87b34c67..80fcd143 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListNetworkJWTsEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListNetworkJWTsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListNetworkJWTsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListProtocolsEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListProtocolsEnvelope.java
index 65d571b0..234f6d37 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListProtocolsEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListProtocolsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListProtocolsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListServiceEdgeRoutersEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListServiceEdgeRoutersEnvelope.java
index 23490b39..54287ccb 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListServiceEdgeRoutersEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListServiceEdgeRoutersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListServiceEdgeRoutersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListServicesEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListServicesEnvelope.java
index fe82c40f..a250c56b 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListServicesEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListServicesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListServicesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListSessionsEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListSessionsEnvelope.java
index aac8f188..63d83f80 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListSessionsEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListSessionsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListSessionsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListSpecsEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListSpecsEnvelope.java
index 8ecdf0ce..e10ad472 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListSpecsEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListSpecsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({ListSpecsEnvelope.JSON_PROPERTY_DATA, ListSpecsEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListSpecsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ListVersionEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/ListVersionEnvelope.java
index c1ca47ec..2655bfd3 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ListVersionEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ListVersionEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({ListVersionEnvelope.JSON_PROPERTY_DATA, ListVersionEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListVersionEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Meta.java b/edge-api/src/main/java/org/openziti/edge/model/Meta.java
index ea184ca7..0b61cbba 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Meta.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Meta.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Meta {
public static final String JSON_PROPERTY_API_ENROLLMENT_VERSION = "apiEnrollmentVersion";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/MfaCode.java b/edge-api/src/main/java/org/openziti/edge/model/MfaCode.java
index cba539ec..31366cfe 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/MfaCode.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/MfaCode.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({MfaCode.JSON_PROPERTY_CODE})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class MfaCode {
public static final String JSON_PROPERTY_CODE = "code";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/MfaFormats.java b/edge-api/src/main/java/org/openziti/edge/model/MfaFormats.java
index afd5d59c..c4e66103 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/MfaFormats.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/MfaFormats.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/MfaProviders.java b/edge-api/src/main/java/org/openziti/edge/model/MfaProviders.java
index edd073b6..8b48cf09 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/MfaProviders.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/MfaProviders.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/NetworkJWT.java b/edge-api/src/main/java/org/openziti/edge/model/NetworkJWT.java
index cca693dd..b6ef67af 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/NetworkJWT.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/NetworkJWT.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({NetworkJWT.JSON_PROPERTY_NAME, NetworkJWT.JSON_PROPERTY_TOKEN})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class NetworkJWT {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/NonceChallenge.java b/edge-api/src/main/java/org/openziti/edge/model/NonceChallenge.java
index ddca3dcc..0af15ff8 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/NonceChallenge.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/NonceChallenge.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@JsonPropertyOrder({NonceChallenge.JSON_PROPERTY_KEY_ID, NonceChallenge.JSON_PROPERTY_NONCE})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class NonceChallenge {
public static final String JSON_PROPERTY_KEY_ID = "keyId";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/NonceSignature.java b/edge-api/src/main/java/org/openziti/edge/model/NonceSignature.java
index db4cfc8f..5f93e852 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/NonceSignature.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/NonceSignature.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class NonceSignature {
public static final String JSON_PROPERTY_ALGORITHM = "algorithm";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/OsType.java b/edge-api/src/main/java/org/openziti/edge/model/OsType.java
index 9b23269c..cd93c469 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/OsType.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/OsType.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/OtherPrime.java b/edge-api/src/main/java/org/openziti/edge/model/OtherPrime.java
index e75c6e87..484779c9 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/OtherPrime.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/OtherPrime.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class OtherPrime {
public static final String JSON_PROPERTY_D = "d";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/OttEnrollmentRequest.java b/edge-api/src/main/java/org/openziti/edge/model/OttEnrollmentRequest.java
index 0166fc25..e6630575 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/OttEnrollmentRequest.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/OttEnrollmentRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class OttEnrollmentRequest {
public static final String JSON_PROPERTY_CLIENT_CSR = "clientCsr";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Pagination.java b/edge-api/src/main/java/org/openziti/edge/model/Pagination.java
index 00c54fa1..7e5298f4 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Pagination.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Pagination.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Pagination {
public static final String JSON_PROPERTY_LIMIT = "limit";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureCheckType.java b/edge-api/src/main/java/org/openziti/edge/model/PostureCheckType.java
index 17269848..fa5135c6 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureCheckType.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureCheckType.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureQueries.java b/edge-api/src/main/java/org/openziti/edge/model/PostureQueries.java
index bb0c9a71..3b1d24fa 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureQueries.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureQueries.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureQueries {
public static final String JSON_PROPERTY_IS_PASSING = "isPassing";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureQuery.java b/edge-api/src/main/java/org/openziti/edge/model/PostureQuery.java
index af085646..cafb0cf6 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureQuery.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureQuery.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureQuery {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureQueryProcess.java b/edge-api/src/main/java/org/openziti/edge/model/PostureQueryProcess.java
index 167881e9..f3c57e9c 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureQueryProcess.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureQueryProcess.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureQueryProcess {
public static final String JSON_PROPERTY_OS_TYPE = "osType";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponse.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponse.java
index c1ece78e..0fec36e4 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponse.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponse.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({PostureResponse.JSON_PROPERTY_SERVICES})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureResponse {
public static final String JSON_PROPERTY_SERVICES = "services";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseCreate.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseCreate.java
index f78c37ba..705f66f3 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseDomainCreate.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseDomainCreate.java
index 0f1f48fd..e3236182 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseDomainCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseDomainCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
@JsonPropertyOrder({PostureResponseDomainCreate.JSON_PROPERTY_DOMAIN})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEndpointStateCreate.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEndpointStateCreate.java
index 9589773f..ed077d95 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEndpointStateCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEndpointStateCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEnvelope.java
index 93d9419c..9f7b93ed 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureResponseEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseMacAddressCreate.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseMacAddressCreate.java
index 4823f9f9..d805480e 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseMacAddressCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseMacAddressCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
@JsonPropertyOrder({PostureResponseMacAddressCreate.JSON_PROPERTY_MAC_ADDRESSES})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseOperatingSystemCreate.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseOperatingSystemCreate.java
index 531646f8..bdc3831a 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseOperatingSystemCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseOperatingSystemCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseProcessCreate.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseProcessCreate.java
index 5e0b2732..f7a1613d 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseProcessCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseProcessCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseService.java b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseService.java
index 56398840..d3b4250e 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/PostureResponseService.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/PostureResponseService.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureResponseService {
public static final String JSON_PROPERTY_ID = "id";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Protocol.java b/edge-api/src/main/java/org/openziti/edge/model/Protocol.java
index 7c74738d..a3422776 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Protocol.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Protocol.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({Protocol.JSON_PROPERTY_ADDRESS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Protocol {
public static final String JSON_PROPERTY_ADDRESS = "address";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/RouterExtendEnrollmentRequest.java b/edge-api/src/main/java/org/openziti/edge/model/RouterExtendEnrollmentRequest.java
index b6825b08..da001ba8 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/RouterExtendEnrollmentRequest.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/RouterExtendEnrollmentRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RouterExtendEnrollmentRequest {
public static final String JSON_PROPERTY_CERT_CSR = "certCsr";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/SdkInfo.java b/edge-api/src/main/java/org/openziti/edge/model/SdkInfo.java
index ff31787a..beb1a984 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/SdkInfo.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/SdkInfo.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SdkInfo {
public static final String JSON_PROPERTY_APP_ID = "appId";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ServiceDetail.java b/edge-api/src/main/java/org/openziti/edge/model/ServiceDetail.java
index 4535379c..be857611 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ServiceDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ServiceDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ServiceEdgeRouters.java b/edge-api/src/main/java/org/openziti/edge/model/ServiceEdgeRouters.java
index 19c5a397..950175e2 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ServiceEdgeRouters.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ServiceEdgeRouters.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({ServiceEdgeRouters.JSON_PROPERTY_EDGE_ROUTERS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceEdgeRouters {
public static final String JSON_PROPERTY_EDGE_ROUTERS = "edgeRouters";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ServicePatch.java b/edge-api/src/main/java/org/openziti/edge/model/ServicePatch.java
index dda7989e..414b8185 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ServicePatch.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ServicePatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicePatch {
public static final String JSON_PROPERTY_CONFIGS = "configs";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/ServiceUpdate.java b/edge-api/src/main/java/org/openziti/edge/model/ServiceUpdate.java
index 1584b3a8..00898b3a 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/ServiceUpdate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/ServiceUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceUpdate {
public static final String JSON_PROPERTY_CONFIGS = "configs";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/SessionCreate.java b/edge-api/src/main/java/org/openziti/edge/model/SessionCreate.java
index e13bc7db..1cbe08a8 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/SessionCreate.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/SessionCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionCreate {
public static final String JSON_PROPERTY_SERVICE_ID = "serviceId";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/SessionCreateEnvelope.java b/edge-api/src/main/java/org/openziti/edge/model/SessionCreateEnvelope.java
index 0a19ace9..5ac56c7e 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/SessionCreateEnvelope.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/SessionCreateEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionCreateEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/SessionDetail.java b/edge-api/src/main/java/org/openziti/edge/model/SessionDetail.java
index c7613510..4bb01c20 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/SessionDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/SessionDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,7 +44,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/SessionEdgeRouter.java b/edge-api/src/main/java/org/openziti/edge/model/SessionEdgeRouter.java
index fdd86363..77538ad6 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/SessionEdgeRouter.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/SessionEdgeRouter.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionEdgeRouter {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/SpecDetail.java b/edge-api/src/main/java/org/openziti/edge/model/SpecDetail.java
index 4876a77f..c874460e 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/SpecDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/SpecDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SpecDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Tags.java b/edge-api/src/main/java/org/openziti/edge/model/Tags.java
index b495cba7..a81182ed 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Tags.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Tags.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@
@JsonPropertyOrder({})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Tags {
public Tags() {}
diff --git a/edge-api/src/main/java/org/openziti/edge/model/TargetToken.java b/edge-api/src/main/java/org/openziti/edge/model/TargetToken.java
index 6781d789..db6f40ee 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/TargetToken.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/TargetToken.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/TerminatorClientDetail.java b/edge-api/src/main/java/org/openziti/edge/model/TerminatorClientDetail.java
index 8acd7bc0..9d2ac7df 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/TerminatorClientDetail.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/TerminatorClientDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TerminatorClientDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/edge-api/src/main/java/org/openziti/edge/model/TerminatorPrecedence.java b/edge-api/src/main/java/org/openziti/edge/model/TerminatorPrecedence.java
index 9a3e0bbb..99a80250 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/TerminatorPrecedence.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/TerminatorPrecedence.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/edge-api/src/main/java/org/openziti/edge/model/Version.java b/edge-api/src/main/java/org/openziti/edge/model/Version.java
index 839a3633..a51347e9 100644
--- a/edge-api/src/main/java/org/openziti/edge/model/Version.java
+++ b/edge-api/src/main/java/org/openziti/edge/model/Version.java
@@ -2,7 +2,7 @@
* Ziti Edge Client
* OpenZiti Edge Client API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-27T11:11:53.726065456-05:00[America/New_York]",
+ date = "2025-03-17T12:51:45.850758361-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Version {
public static final String JSON_PROPERTY_API_VERSIONS = "apiVersions";
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index bb9f4c92..1f236cf5 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -10,7 +10,7 @@ shadow-jar = "8.3.5"
download = "5.6.0"
# OpenZiti Edge API
-ziti-api = "0.26.39"
+ziti-api = "0.26.42"
ziti-cli = "1.3.3"
# third party
diff --git a/management-api/.openapi-generator/FILES b/management-api/.openapi-generator/FILES
index e208734e..2a9901cb 100644
--- a/management-api/.openapi-generator/FILES
+++ b/management-api/.openapi-generator/FILES
@@ -53,6 +53,13 @@ docs/ConfigTypePatch.md
docs/ConfigTypeUpdate.md
docs/ConfigUpdate.md
docs/ControllerDetail.md
+docs/ControllerSettingCreate.md
+docs/ControllerSettingDetail.md
+docs/ControllerSettingEffective.md
+docs/ControllerSettingPatch.md
+docs/ControllerSettingUpdate.md
+docs/ControllerSettings.md
+docs/ControllerSettingsOidc.md
docs/ControllersApi.md
docs/CreateEnvelope.md
docs/CreateLocation.md
@@ -71,6 +78,8 @@ docs/DetailAuthenticatorEnvelope.md
docs/DetailCaEnvelope.md
docs/DetailConfigEnvelope.md
docs/DetailConfigTypeEnvelope.md
+docs/DetailControllerSettingEffectiveEnvelope.md
+docs/DetailControllerSettingEnvelope.md
docs/DetailEdgeRouterPolicyEnvelope.md
docs/DetailEnrollmentEnvelope.md
docs/DetailExternalJwtSignerEnvelope.md
@@ -149,6 +158,7 @@ docs/ListAuthenticatorsEnvelope.md
docs/ListCasEnvelope.md
docs/ListConfigTypesEnvelope.md
docs/ListConfigsEnvelope.md
+docs/ListControllerSettingEnvelope.md
docs/ListControllersEnvelope.md
docs/ListEdgeRouterPoliciesEnvelope.md
docs/ListEdgeRoutersEnvelope.md
@@ -273,6 +283,7 @@ docs/SessionDetail.md
docs/SessionEdgeRouter.md
docs/SessionManagementDetail.md
docs/SessionRoutePathDetail.md
+docs/SettingsApi.md
docs/SpecDetail.md
docs/Tags.md
docs/TargetToken.md
@@ -325,6 +336,7 @@ src/main/java/org/openziti/management/api/ServiceApi.java
src/main/java/org/openziti/management/api/ServiceEdgeRouterPolicyApi.java
src/main/java/org/openziti/management/api/ServicePolicyApi.java
src/main/java/org/openziti/management/api/SessionApi.java
+src/main/java/org/openziti/management/api/SettingsApi.java
src/main/java/org/openziti/management/api/TerminatorApi.java
src/main/java/org/openziti/management/api/TracingApi.java
src/main/java/org/openziti/management/api/WellKnownApi.java
@@ -376,6 +388,13 @@ src/main/java/org/openziti/management/model/ConfigTypePatch.java
src/main/java/org/openziti/management/model/ConfigTypeUpdate.java
src/main/java/org/openziti/management/model/ConfigUpdate.java
src/main/java/org/openziti/management/model/ControllerDetail.java
+src/main/java/org/openziti/management/model/ControllerSettingCreate.java
+src/main/java/org/openziti/management/model/ControllerSettingDetail.java
+src/main/java/org/openziti/management/model/ControllerSettingEffective.java
+src/main/java/org/openziti/management/model/ControllerSettingPatch.java
+src/main/java/org/openziti/management/model/ControllerSettingUpdate.java
+src/main/java/org/openziti/management/model/ControllerSettings.java
+src/main/java/org/openziti/management/model/ControllerSettingsOidc.java
src/main/java/org/openziti/management/model/CreateEnvelope.java
src/main/java/org/openziti/management/model/CreateLocation.java
src/main/java/org/openziti/management/model/CurrentApiSessionDetail.java
@@ -390,6 +409,8 @@ src/main/java/org/openziti/management/model/DetailAuthenticatorEnvelope.java
src/main/java/org/openziti/management/model/DetailCaEnvelope.java
src/main/java/org/openziti/management/model/DetailConfigEnvelope.java
src/main/java/org/openziti/management/model/DetailConfigTypeEnvelope.java
+src/main/java/org/openziti/management/model/DetailControllerSettingEffectiveEnvelope.java
+src/main/java/org/openziti/management/model/DetailControllerSettingEnvelope.java
src/main/java/org/openziti/management/model/DetailEdgeRouterPolicyEnvelope.java
src/main/java/org/openziti/management/model/DetailEnrollmentEnvelope.java
src/main/java/org/openziti/management/model/DetailExternalJwtSignerEnvelope.java
@@ -460,6 +481,7 @@ src/main/java/org/openziti/management/model/ListAuthenticatorsEnvelope.java
src/main/java/org/openziti/management/model/ListCasEnvelope.java
src/main/java/org/openziti/management/model/ListConfigTypesEnvelope.java
src/main/java/org/openziti/management/model/ListConfigsEnvelope.java
+src/main/java/org/openziti/management/model/ListControllerSettingEnvelope.java
src/main/java/org/openziti/management/model/ListControllersEnvelope.java
src/main/java/org/openziti/management/model/ListEdgeRouterPoliciesEnvelope.java
src/main/java/org/openziti/management/model/ListEdgeRoutersEnvelope.java
diff --git a/management-api/README.md b/management-api/README.md
index 12ca2fab..9de2b2dd 100644
--- a/management-api/README.md
+++ b/management-api/README.md
@@ -2,9 +2,9 @@
Ziti Edge Management
-- API version: 0.26.39
+- API version: 0.26.42
-- Build date: 2025-01-30T10:50:07.620098843-05:00[America/New_York]
+- Build date: 2025-03-17T12:51:49.931993799-04:00[America/New_York]
- Generator version: 7.11.0
@@ -45,7 +45,7 @@ Add this dependency to your project's POM:
org.openziti
management-api
- 0.27.7-mgmt-api-8.e97b817-dirty-SNAPSHOT
+ 0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT
compile
```
@@ -55,7 +55,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:
```groovy
-compile "org.openziti:management-api:0.27.7-mgmt-api-8.e97b817-dirty-SNAPSHOT"
+compile "org.openziti:management-api:0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT"
```
### Others
@@ -68,7 +68,7 @@ mvn clean package
Then manually install the following JARs:
-- `target/management-api-0.27.7-mgmt-api-8.e97b817-dirty-SNAPSHOT.jar`
+- `target/management-api-0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT.jar`
- `target/lib/*.jar`
## Getting Started
@@ -497,6 +497,20 @@ Class | Method | HTTP request | Description
*SessionApi* | [**detailSessionRoutePathWithHttpInfo**](docs/SessionApi.md#detailSessionRoutePathWithHttpInfo) | **GET** /sessions/{id}/route-path | Retrieves a single session's router path
*SessionApi* | [**listSessions**](docs/SessionApi.md#listSessions) | **GET** /sessions | List sessions
*SessionApi* | [**listSessionsWithHttpInfo**](docs/SessionApi.md#listSessionsWithHttpInfo) | **GET** /sessions | List sessions
+*SettingsApi* | [**createControllerSetting**](docs/SettingsApi.md#createControllerSetting) | **POST** /controller-settings | Create a controller specific setting
+*SettingsApi* | [**createControllerSettingWithHttpInfo**](docs/SettingsApi.md#createControllerSettingWithHttpInfo) | **POST** /controller-settings | Create a controller specific setting
+*SettingsApi* | [**deleteControllerSetting**](docs/SettingsApi.md#deleteControllerSetting) | **DELETE** /controller-settings/{id}/effective | Delete a controller setting object
+*SettingsApi* | [**deleteControllerSettingWithHttpInfo**](docs/SettingsApi.md#deleteControllerSettingWithHttpInfo) | **DELETE** /controller-settings/{id}/effective | Delete a controller setting object
+*SettingsApi* | [**detailControllerSetting**](docs/SettingsApi.md#detailControllerSetting) | **GET** /controller-settings/{id} | Retrieves a single controller setting object.
+*SettingsApi* | [**detailControllerSettingWithHttpInfo**](docs/SettingsApi.md#detailControllerSettingWithHttpInfo) | **GET** /controller-settings/{id} | Retrieves a single controller setting object.
+*SettingsApi* | [**detailControllerSettingEffective**](docs/SettingsApi.md#detailControllerSettingEffective) | **GET** /controller-settings/{id}/effective | Retrieves a single controller's effective calculated settings from the instance and global configuration.
+*SettingsApi* | [**detailControllerSettingEffectiveWithHttpInfo**](docs/SettingsApi.md#detailControllerSettingEffectiveWithHttpInfo) | **GET** /controller-settings/{id}/effective | Retrieves a single controller's effective calculated settings from the instance and global configuration.
+*SettingsApi* | [**listControllerSettings**](docs/SettingsApi.md#listControllerSettings) | **GET** /controller-settings | List controller settings
+*SettingsApi* | [**listControllerSettingsWithHttpInfo**](docs/SettingsApi.md#listControllerSettingsWithHttpInfo) | **GET** /controller-settings | List controller settings
+*SettingsApi* | [**patchControllerSetting**](docs/SettingsApi.md#patchControllerSetting) | **PATCH** /controller-settings/{id}/effective | Update the supplied fields on a controller setting object
+*SettingsApi* | [**patchControllerSettingWithHttpInfo**](docs/SettingsApi.md#patchControllerSettingWithHttpInfo) | **PATCH** /controller-settings/{id}/effective | Update the supplied fields on a controller setting object
+*SettingsApi* | [**updateControllerSetting**](docs/SettingsApi.md#updateControllerSetting) | **PUT** /controller-settings/{id}/effective | Update all fields on a controller setting object
+*SettingsApi* | [**updateControllerSettingWithHttpInfo**](docs/SettingsApi.md#updateControllerSettingWithHttpInfo) | **PUT** /controller-settings/{id}/effective | Update all fields on a controller setting object
*TerminatorApi* | [**createTerminator**](docs/TerminatorApi.md#createTerminator) | **POST** /terminators | Create a terminator resource
*TerminatorApi* | [**createTerminatorWithHttpInfo**](docs/TerminatorApi.md#createTerminatorWithHttpInfo) | **POST** /terminators | Create a terminator resource
*TerminatorApi* | [**deleteTerminator**](docs/TerminatorApi.md#deleteTerminator) | **DELETE** /terminators/{id} | Delete a terminator
@@ -564,6 +578,13 @@ Class | Method | HTTP request | Description
- [ConfigTypeUpdate](docs/ConfigTypeUpdate.md)
- [ConfigUpdate](docs/ConfigUpdate.md)
- [ControllerDetail](docs/ControllerDetail.md)
+ - [ControllerSettingCreate](docs/ControllerSettingCreate.md)
+ - [ControllerSettingDetail](docs/ControllerSettingDetail.md)
+ - [ControllerSettingEffective](docs/ControllerSettingEffective.md)
+ - [ControllerSettingPatch](docs/ControllerSettingPatch.md)
+ - [ControllerSettingUpdate](docs/ControllerSettingUpdate.md)
+ - [ControllerSettings](docs/ControllerSettings.md)
+ - [ControllerSettingsOidc](docs/ControllerSettingsOidc.md)
- [CreateEnvelope](docs/CreateEnvelope.md)
- [CreateLocation](docs/CreateLocation.md)
- [CurrentApiSessionDetail](docs/CurrentApiSessionDetail.md)
@@ -578,6 +599,8 @@ Class | Method | HTTP request | Description
- [DetailCaEnvelope](docs/DetailCaEnvelope.md)
- [DetailConfigEnvelope](docs/DetailConfigEnvelope.md)
- [DetailConfigTypeEnvelope](docs/DetailConfigTypeEnvelope.md)
+ - [DetailControllerSettingEffectiveEnvelope](docs/DetailControllerSettingEffectiveEnvelope.md)
+ - [DetailControllerSettingEnvelope](docs/DetailControllerSettingEnvelope.md)
- [DetailEdgeRouterPolicyEnvelope](docs/DetailEdgeRouterPolicyEnvelope.md)
- [DetailEnrollmentEnvelope](docs/DetailEnrollmentEnvelope.md)
- [DetailExternalJwtSignerEnvelope](docs/DetailExternalJwtSignerEnvelope.md)
@@ -648,6 +671,7 @@ Class | Method | HTTP request | Description
- [ListCasEnvelope](docs/ListCasEnvelope.md)
- [ListConfigTypesEnvelope](docs/ListConfigTypesEnvelope.md)
- [ListConfigsEnvelope](docs/ListConfigsEnvelope.md)
+ - [ListControllerSettingEnvelope](docs/ListControllerSettingEnvelope.md)
- [ListControllersEnvelope](docs/ListControllersEnvelope.md)
- [ListEdgeRouterPoliciesEnvelope](docs/ListEdgeRouterPoliciesEnvelope.md)
- [ListEdgeRoutersEnvelope](docs/ListEdgeRoutersEnvelope.md)
diff --git a/management-api/api/openapi.yaml b/management-api/api/openapi.yaml
index a9ec100a..7fab3944 100644
--- a/management-api/api/openapi.yaml
+++ b/management-api/api/openapi.yaml
@@ -9,7 +9,7 @@ info:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
title: Ziti Edge Management
- version: 0.26.39
+ version: 0.26.42
servers:
- url: https://demo.ziti.dev/edge/management/v1
paths:
@@ -4619,6 +4619,743 @@ paths:
- Config
x-accepts:
- application/json
+ /controller-settings:
+ get:
+ description: |
+ Retrieves a list controller settings including the base `global` settings object and any overriding controller specific settings.
+ operationId: listControllerSettings
+ parameters:
+ - in: query
+ name: limit
+ schema:
+ type: integer
+ - in: query
+ name: offset
+ schema:
+ type: integer
+ - in: query
+ name: filter
+ schema:
+ type: string
+ responses:
+ "200":
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/listControllerSettingEnvelope"
+ description: A list of controller setting objects
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
+ "401":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause: ""
+ causeMessage: ""
+ code: UNAUTHORIZED
+ message: The request could not be completed. The session is not
+ authorized or the credentials are invalid
+ requestId: 0bfe7a04-9229-4b7a-812c-9eb3cc0eac0f
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The supplied session does not have the correct access rights
+ to request this resource
+ "429":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ causeMessage: you have hit a rate limit in the requested operation
+ code: RATE_LIMITED
+ message: The resource is rate limited and the rate limit has been
+ exceeded. Please try again later
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested is rate limited and the rate limit has
+ been exceeded
+ security:
+ - ztSession: []
+ - oauth2:
+ - openid
+ summary: List controller settings
+ tags:
+ - Settings
+ x-accepts:
+ - application/json
+ post:
+ description: Create a new controller specific settings object. Requires admin
+ access.
+ operationId: createControllerSetting
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/controllerSettingCreate"
+ description: A controller settings object to create
+ required: true
+ responses:
+ "201":
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/createEnvelope"
+ description: The create request was successful and the resource has been
+ added at the following location
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
+ "401":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause: ""
+ causeMessage: ""
+ code: UNAUTHORIZED
+ message: The request could not be completed. The session is not
+ authorized or the credentials are invalid
+ requestId: 0bfe7a04-9229-4b7a-812c-9eb3cc0eac0f
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The supplied session does not have the correct access rights
+ to request this resource
+ "429":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ causeMessage: you have hit a rate limit in the requested operation
+ code: RATE_LIMITED
+ message: The resource is rate limited and the rate limit has been
+ exceeded. Please try again later
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested is rate limited and the rate limit has
+ been exceeded
+ security:
+ - ztSession: []
+ - oauth2:
+ - openid
+ summary: Create a controller specific setting
+ tags:
+ - Settings
+ x-codegen-request-body-name: controllerSetting
+ x-content-type: application/json
+ x-accepts:
+ - application/json
+ /controller-settings/{id}:
+ get:
+ description: Retrieves a single controller setting object by id. Requires admin
+ access.
+ operationId: detailControllerSetting
+ parameters:
+ - description: The id of the requested resource
+ in: path
+ name: id
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/detailControllerSettingEnvelope"
+ description: A singular controller setting object
+ "401":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause: ""
+ causeMessage: ""
+ code: UNAUTHORIZED
+ message: The request could not be completed. The session is not
+ authorized or the credentials are invalid
+ requestId: 0bfe7a04-9229-4b7a-812c-9eb3cc0eac0f
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The supplied session does not have the correct access rights
+ to request this resource
+ "404":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars:
+ id: 71a3000f-7dda-491a-9b90-a19f4ee6c406
+ causeMessage: ""
+ code: NOT_FOUND
+ message: The resource requested was not found or is no longer available
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The requested resource does not exist
+ "429":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ causeMessage: you have hit a rate limit in the requested operation
+ code: RATE_LIMITED
+ message: The resource is rate limited and the rate limit has been
+ exceeded. Please try again later
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested is rate limited and the rate limit has
+ been exceeded
+ security:
+ - ztSession: []
+ - oauth2:
+ - openid
+ summary: Retrieves a single controller setting object.
+ tags:
+ - Settings
+ x-accepts:
+ - application/json
+ /controller-settings/{id}/effective:
+ delete:
+ description: Delete a controller setting object by id. Requires admin access.
+ operationId: deleteControllerSetting
+ parameters:
+ - description: The id of the requested resource
+ in: path
+ name: id
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/empty"
+ description: The delete request was successful and the resource has been
+ removed
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
+ "401":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause: ""
+ causeMessage: ""
+ code: UNAUTHORIZED
+ message: The request could not be completed. The session is not
+ authorized or the credentials are invalid
+ requestId: 0bfe7a04-9229-4b7a-812c-9eb3cc0eac0f
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The supplied session does not have the correct access rights
+ to request this resource
+ "409":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars:
+ id: 71a3000f-7dda-491a-9b90-a19f4ee6c406
+ causeMessage: referenced by /some-resource/05f4f710-c155-4a74-86d5-77558eb9cb42
+ code: CONFLICT_CANNOT_MODIFY_REFERENCED
+ message: The resource cannot be deleted/modified. Remove all referencing
+ resources first.
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested to be removed/altered cannot be as it
+ is referenced by another object.
+ "429":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ causeMessage: you have hit a rate limit in the requested operation
+ code: RATE_LIMITED
+ message: The resource is rate limited and the rate limit has been
+ exceeded. Please try again later
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested is rate limited and the rate limit has
+ been exceeded
+ security:
+ - ztSession: []
+ - oauth2:
+ - openid
+ summary: Delete a controller setting object
+ tags:
+ - Settings
+ x-accepts:
+ - application/json
+ get:
+ description: Retrieves a single controller's effective setting object by id.
+ Requires admin access.
+ operationId: detailControllerSettingEffective
+ parameters:
+ - description: The id of the requested resource
+ in: path
+ name: id
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/detailControllerSettingEffectiveEnvelope"
+ description: A singular controller's effective setting object
+ "401":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause: ""
+ causeMessage: ""
+ code: UNAUTHORIZED
+ message: The request could not be completed. The session is not
+ authorized or the credentials are invalid
+ requestId: 0bfe7a04-9229-4b7a-812c-9eb3cc0eac0f
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The supplied session does not have the correct access rights
+ to request this resource
+ "404":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars:
+ id: 71a3000f-7dda-491a-9b90-a19f4ee6c406
+ causeMessage: ""
+ code: NOT_FOUND
+ message: The resource requested was not found or is no longer available
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The requested resource does not exist
+ "429":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ causeMessage: you have hit a rate limit in the requested operation
+ code: RATE_LIMITED
+ message: The resource is rate limited and the rate limit has been
+ exceeded. Please try again later
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested is rate limited and the rate limit has
+ been exceeded
+ security:
+ - ztSession: []
+ - oauth2:
+ - openid
+ summary: Retrieves a single controller's effective calculated settings from
+ the instance and global configuration.
+ tags:
+ - Settings
+ x-accepts:
+ - application/json
+ patch:
+ description: Update the supplied fields on a controller setting object. Requires
+ admin access.
+ operationId: patchControllerSetting
+ parameters:
+ - description: The id of the requested resource
+ in: path
+ name: id
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/controllerSettingPatch"
+ description: A controller setting object patch object
+ required: true
+ responses:
+ "200":
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/empty"
+ description: The patch request was successful and the resource has been
+ altered
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
+ "401":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause: ""
+ causeMessage: ""
+ code: UNAUTHORIZED
+ message: The request could not be completed. The session is not
+ authorized or the credentials are invalid
+ requestId: 0bfe7a04-9229-4b7a-812c-9eb3cc0eac0f
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The supplied session does not have the correct access rights
+ to request this resource
+ "404":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars:
+ id: 71a3000f-7dda-491a-9b90-a19f4ee6c406
+ causeMessage: ""
+ code: NOT_FOUND
+ message: The resource requested was not found or is no longer available
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The requested resource does not exist
+ "429":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ causeMessage: you have hit a rate limit in the requested operation
+ code: RATE_LIMITED
+ message: The resource is rate limited and the rate limit has been
+ exceeded. Please try again later
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested is rate limited and the rate limit has
+ been exceeded
+ security:
+ - ztSession: []
+ - oauth2:
+ - openid
+ summary: Update the supplied fields on a controller setting object
+ tags:
+ - Settings
+ x-codegen-request-body-name: controllerSetting
+ x-content-type: application/json
+ x-accepts:
+ - application/json
+ put:
+ description: Update all fields on a controller setting object by id. Requires
+ admin access.
+ operationId: updateControllerSetting
+ parameters:
+ - description: The id of the requested resource
+ in: path
+ name: id
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/controllerSettingUpdate"
+ description: A controller setting update object
+ required: true
+ responses:
+ "200":
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/empty"
+ description: The update request was successful and the resource has been
+ altered
+ "400":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause:
+ details:
+ context: (root)
+ field: (root)
+ property: fooField3
+ field: (root)
+ message: "(root): fooField3 is required"
+ type: required
+ value:
+ fooField: abc
+ fooField2: def
+ causeMessage: schema validation failed
+ code: COULD_NOT_VALIDATE
+ message: The supplied request contains an invalid document
+ requestId: ac6766d6-3a09-44b3-8d8a-1b541d97fdd9
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: "The supplied request contains invalid fields or could not\
+ \ be parsed (json and non-json bodies). The error's code, message, and\
+ \ cause fields can be inspected for further information"
+ "401":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ cause: ""
+ causeMessage: ""
+ code: UNAUTHORIZED
+ message: The request could not be completed. The session is not
+ authorized or the credentials are invalid
+ requestId: 0bfe7a04-9229-4b7a-812c-9eb3cc0eac0f
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The supplied session does not have the correct access rights
+ to request this resource
+ "404":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars:
+ id: 71a3000f-7dda-491a-9b90-a19f4ee6c406
+ causeMessage: ""
+ code: NOT_FOUND
+ message: The resource requested was not found or is no longer available
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The requested resource does not exist
+ "429":
+ content:
+ application/json:
+ example:
+ error:
+ args:
+ urlVars: {}
+ causeMessage: you have hit a rate limit in the requested operation
+ code: RATE_LIMITED
+ message: The resource is rate limited and the rate limit has been
+ exceeded. Please try again later
+ requestId: 270908d6-f2ef-4577-b973-67bec18ae376
+ meta:
+ apiEnrollmentVersion: 0.0.1
+ apiVersion: 0.0.1
+ schema:
+ $ref: "#/components/schemas/apiErrorEnvelope"
+ description: The resource requested is rate limited and the rate limit has
+ been exceeded
+ security:
+ - ztSession: []
+ - oauth2:
+ - openid
+ summary: Update all fields on a controller setting object
+ tags:
+ - Settings
+ x-codegen-request-body-name: controllerSetting
+ x-content-type: application/json
+ x-accepts:
+ - application/json
/controllers:
get:
description: Retrieves a list of controllers
@@ -20608,6 +21345,105 @@ components:
lastJoinedAt: 2000-01-23T04:56:07.000+00:00
tags: {}
updatedAt: 2000-01-23T04:56:07.000+00:00
+ controllerSettingCreate:
+ allOf:
+ - $ref: "#/components/schemas/controllerSettings"
+ - properties:
+ controllerId:
+ type: string
+ tags:
+ $ref: "#/components/schemas/tags"
+ required:
+ - controllerId
+ type: object
+ controllerSettingDetail:
+ allOf:
+ - $ref: "#/components/schemas/baseEntity"
+ - $ref: "#/components/schemas/controllerSettings"
+ example:
+ createdAt: 2000-01-23T04:56:07.000+00:00
+ _links:
+ key:
+ method: method
+ comment: comment
+ href: https://openapi-generator.tech
+ id: id
+ oidc:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ tags: {}
+ updatedAt: 2000-01-23T04:56:07.000+00:00
+ controllerSettingEffective:
+ allOf:
+ - $ref: "#/components/schemas/baseEntity"
+ - properties:
+ effective:
+ $ref: "#/components/schemas/controllerSettings"
+ instance:
+ $ref: "#/components/schemas/controllerSettings"
+ type: object
+ example:
+ createdAt: 2000-01-23T04:56:07.000+00:00
+ effective:
+ oidc:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ instance:
+ oidc:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ _links:
+ key:
+ method: method
+ comment: comment
+ href: https://openapi-generator.tech
+ id: id
+ tags: {}
+ updatedAt: 2000-01-23T04:56:07.000+00:00
+ controllerSettingPatch:
+ allOf:
+ - $ref: "#/components/schemas/controllerSettings"
+ - properties:
+ tags:
+ $ref: "#/components/schemas/tags"
+ type: object
+ controllerSettingUpdate:
+ allOf:
+ - $ref: "#/components/schemas/controllerSettings"
+ - properties:
+ tags:
+ $ref: "#/components/schemas/tags"
+ type: object
+ controllerSettings:
+ example:
+ oidc:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ properties:
+ oidc:
+ $ref: "#/components/schemas/controllerSettings_oidc"
+ type: object
+ controllerSettingsList:
+ items:
+ description: TODO default missing array inner type to string
+ type: string
+ type: array
controllersList:
description: An array of controller resources
items:
@@ -21317,6 +22153,91 @@ components:
- data
- meta
type: object
+ detailControllerSettingEffectiveEnvelope:
+ example:
+ data:
+ createdAt: 2000-01-23T04:56:07.000+00:00
+ effective:
+ oidc:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ instance:
+ oidc:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ _links:
+ key:
+ method: method
+ comment: comment
+ href: https://openapi-generator.tech
+ id: id
+ tags: {}
+ updatedAt: 2000-01-23T04:56:07.000+00:00
+ meta:
+ apiEnrollmentVersion: apiEnrollmentVersion
+ apiVersion: apiVersion
+ pagination:
+ offset: 6.027456183070403
+ limit: 0.8008281904610115
+ totalCount: 1.4658129805029452
+ filterableFields:
+ - filterableFields
+ - filterableFields
+ properties:
+ data:
+ $ref: "#/components/schemas/controllerSettingEffective"
+ meta:
+ $ref: "#/components/schemas/meta"
+ required:
+ - data
+ - meta
+ type: object
+ detailControllerSettingEnvelope:
+ example:
+ data:
+ createdAt: 2000-01-23T04:56:07.000+00:00
+ _links:
+ key:
+ method: method
+ comment: comment
+ href: https://openapi-generator.tech
+ id: id
+ oidc:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ tags: {}
+ updatedAt: 2000-01-23T04:56:07.000+00:00
+ meta:
+ apiEnrollmentVersion: apiEnrollmentVersion
+ apiVersion: apiVersion
+ pagination:
+ offset: 6.027456183070403
+ limit: 0.8008281904610115
+ totalCount: 1.4658129805029452
+ filterableFields:
+ - filterableFields
+ - filterableFields
+ properties:
+ data:
+ $ref: "#/components/schemas/controllerSettingDetail"
+ meta:
+ $ref: "#/components/schemas/meta"
+ required:
+ - data
+ - meta
+ type: object
detailEdgeRouterPolicyEnvelope:
example:
data:
@@ -24394,6 +25315,33 @@ components:
- data
- meta
type: object
+ listControllerSettingEnvelope:
+ example:
+ data:
+ - data
+ - data
+ meta:
+ apiEnrollmentVersion: apiEnrollmentVersion
+ apiVersion: apiVersion
+ pagination:
+ offset: 6.027456183070403
+ limit: 0.8008281904610115
+ totalCount: 1.4658129805029452
+ filterableFields:
+ - filterableFields
+ - filterableFields
+ properties:
+ data:
+ items:
+ description: TODO default missing array inner type to string
+ type: string
+ type: array
+ meta:
+ $ref: "#/components/schemas/meta"
+ required:
+ - data
+ - meta
+ type: object
listControllersEnvelope:
example:
data:
@@ -28747,6 +29695,24 @@ components:
example: {}
properties: {}
type: object
+ controllerSettings_oidc:
+ example:
+ redirectUris:
+ - redirectUris
+ - redirectUris
+ postLogoutUris:
+ - postLogoutUris
+ - postLogoutUris
+ properties:
+ postLogoutUris:
+ items:
+ type: string
+ type: array
+ redirectUris:
+ items:
+ type: string
+ type: array
+ type: object
identityAuthenticators_cert:
example:
fingerprint: fingerprint
diff --git a/management-api/docs/ControllerSettingCreate.md b/management-api/docs/ControllerSettingCreate.md
new file mode 100644
index 00000000..d2a20572
--- /dev/null
+++ b/management-api/docs/ControllerSettingCreate.md
@@ -0,0 +1,15 @@
+
+
+# ControllerSettingCreate
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**oidc** | [**ControllerSettingsOidc**](ControllerSettingsOidc.md) | | [optional] |
+|**controllerId** | **String** | | |
+|**tags** | [**Tags**](Tags.md) | | [optional] |
+
+
+
diff --git a/management-api/docs/ControllerSettingDetail.md b/management-api/docs/ControllerSettingDetail.md
new file mode 100644
index 00000000..45aed164
--- /dev/null
+++ b/management-api/docs/ControllerSettingDetail.md
@@ -0,0 +1,18 @@
+
+
+# ControllerSettingDetail
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**links** | [**Map<String, Link>**](Link.md) | A map of named links | |
+|**createdAt** | **OffsetDateTime** | | |
+|**id** | **String** | | |
+|**tags** | [**Tags**](Tags.md) | | [optional] |
+|**updatedAt** | **OffsetDateTime** | | |
+|**oidc** | [**ControllerSettingsOidc**](ControllerSettingsOidc.md) | | [optional] |
+
+
+
diff --git a/management-api/docs/ControllerSettingEffective.md b/management-api/docs/ControllerSettingEffective.md
new file mode 100644
index 00000000..1d4849f4
--- /dev/null
+++ b/management-api/docs/ControllerSettingEffective.md
@@ -0,0 +1,19 @@
+
+
+# ControllerSettingEffective
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**links** | [**Map<String, Link>**](Link.md) | A map of named links | |
+|**createdAt** | **OffsetDateTime** | | |
+|**id** | **String** | | |
+|**tags** | [**Tags**](Tags.md) | | [optional] |
+|**updatedAt** | **OffsetDateTime** | | |
+|**effective** | [**ControllerSettings**](ControllerSettings.md) | | [optional] |
+|**instance** | [**ControllerSettings**](ControllerSettings.md) | | [optional] |
+
+
+
diff --git a/management-api/docs/ControllerSettingPatch.md b/management-api/docs/ControllerSettingPatch.md
new file mode 100644
index 00000000..d0fd2a94
--- /dev/null
+++ b/management-api/docs/ControllerSettingPatch.md
@@ -0,0 +1,14 @@
+
+
+# ControllerSettingPatch
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**oidc** | [**ControllerSettingsOidc**](ControllerSettingsOidc.md) | | [optional] |
+|**tags** | [**Tags**](Tags.md) | | [optional] |
+
+
+
diff --git a/management-api/docs/ControllerSettingUpdate.md b/management-api/docs/ControllerSettingUpdate.md
new file mode 100644
index 00000000..3b47e79d
--- /dev/null
+++ b/management-api/docs/ControllerSettingUpdate.md
@@ -0,0 +1,14 @@
+
+
+# ControllerSettingUpdate
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**oidc** | [**ControllerSettingsOidc**](ControllerSettingsOidc.md) | | [optional] |
+|**tags** | [**Tags**](Tags.md) | | [optional] |
+
+
+
diff --git a/management-api/docs/ControllerSettings.md b/management-api/docs/ControllerSettings.md
new file mode 100644
index 00000000..ccde0d46
--- /dev/null
+++ b/management-api/docs/ControllerSettings.md
@@ -0,0 +1,13 @@
+
+
+# ControllerSettings
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**oidc** | [**ControllerSettingsOidc**](ControllerSettingsOidc.md) | | [optional] |
+
+
+
diff --git a/management-api/docs/ControllerSettingsOidc.md b/management-api/docs/ControllerSettingsOidc.md
new file mode 100644
index 00000000..d19ff841
--- /dev/null
+++ b/management-api/docs/ControllerSettingsOidc.md
@@ -0,0 +1,14 @@
+
+
+# ControllerSettingsOidc
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**postLogoutUris** | **List<String>** | | [optional] |
+|**redirectUris** | **List<String>** | | [optional] |
+
+
+
diff --git a/management-api/docs/DetailControllerSettingEffectiveEnvelope.md b/management-api/docs/DetailControllerSettingEffectiveEnvelope.md
new file mode 100644
index 00000000..1c40b024
--- /dev/null
+++ b/management-api/docs/DetailControllerSettingEffectiveEnvelope.md
@@ -0,0 +1,14 @@
+
+
+# DetailControllerSettingEffectiveEnvelope
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**data** | [**ControllerSettingEffective**](ControllerSettingEffective.md) | | |
+|**meta** | [**Meta**](Meta.md) | | |
+
+
+
diff --git a/management-api/docs/DetailControllerSettingEnvelope.md b/management-api/docs/DetailControllerSettingEnvelope.md
new file mode 100644
index 00000000..40558ffa
--- /dev/null
+++ b/management-api/docs/DetailControllerSettingEnvelope.md
@@ -0,0 +1,14 @@
+
+
+# DetailControllerSettingEnvelope
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**data** | [**ControllerSettingDetail**](ControllerSettingDetail.md) | | |
+|**meta** | [**Meta**](Meta.md) | | |
+
+
+
diff --git a/management-api/docs/ListControllerSettingEnvelope.md b/management-api/docs/ListControllerSettingEnvelope.md
new file mode 100644
index 00000000..fc28bc9d
--- /dev/null
+++ b/management-api/docs/ListControllerSettingEnvelope.md
@@ -0,0 +1,14 @@
+
+
+# ListControllerSettingEnvelope
+
+
+## Properties
+
+| Name | Type | Description | Notes |
+|------------ | ------------- | ------------- | -------------|
+|**data** | **List<String>** | | |
+|**meta** | [**Meta**](Meta.md) | | |
+
+
+
diff --git a/management-api/docs/SettingsApi.md b/management-api/docs/SettingsApi.md
new file mode 100644
index 00000000..8fa977aa
--- /dev/null
+++ b/management-api/docs/SettingsApi.md
@@ -0,0 +1,1241 @@
+# SettingsApi
+
+All URIs are relative to *https://demo.ziti.dev/edge/management/v1*
+
+| Method | HTTP request | Description |
+|------------- | ------------- | -------------|
+| [**createControllerSetting**](SettingsApi.md#createControllerSetting) | **POST** /controller-settings | Create a controller specific setting |
+| [**createControllerSettingWithHttpInfo**](SettingsApi.md#createControllerSettingWithHttpInfo) | **POST** /controller-settings | Create a controller specific setting |
+| [**deleteControllerSetting**](SettingsApi.md#deleteControllerSetting) | **DELETE** /controller-settings/{id}/effective | Delete a controller setting object |
+| [**deleteControllerSettingWithHttpInfo**](SettingsApi.md#deleteControllerSettingWithHttpInfo) | **DELETE** /controller-settings/{id}/effective | Delete a controller setting object |
+| [**detailControllerSetting**](SettingsApi.md#detailControllerSetting) | **GET** /controller-settings/{id} | Retrieves a single controller setting object. |
+| [**detailControllerSettingWithHttpInfo**](SettingsApi.md#detailControllerSettingWithHttpInfo) | **GET** /controller-settings/{id} | Retrieves a single controller setting object. |
+| [**detailControllerSettingEffective**](SettingsApi.md#detailControllerSettingEffective) | **GET** /controller-settings/{id}/effective | Retrieves a single controller's effective calculated settings from the instance and global configuration. |
+| [**detailControllerSettingEffectiveWithHttpInfo**](SettingsApi.md#detailControllerSettingEffectiveWithHttpInfo) | **GET** /controller-settings/{id}/effective | Retrieves a single controller's effective calculated settings from the instance and global configuration. |
+| [**listControllerSettings**](SettingsApi.md#listControllerSettings) | **GET** /controller-settings | List controller settings |
+| [**listControllerSettingsWithHttpInfo**](SettingsApi.md#listControllerSettingsWithHttpInfo) | **GET** /controller-settings | List controller settings |
+| [**patchControllerSetting**](SettingsApi.md#patchControllerSetting) | **PATCH** /controller-settings/{id}/effective | Update the supplied fields on a controller setting object |
+| [**patchControllerSettingWithHttpInfo**](SettingsApi.md#patchControllerSettingWithHttpInfo) | **PATCH** /controller-settings/{id}/effective | Update the supplied fields on a controller setting object |
+| [**updateControllerSetting**](SettingsApi.md#updateControllerSetting) | **PUT** /controller-settings/{id}/effective | Update all fields on a controller setting object |
+| [**updateControllerSettingWithHttpInfo**](SettingsApi.md#updateControllerSettingWithHttpInfo) | **PUT** /controller-settings/{id}/effective | Update all fields on a controller setting object |
+
+
+
+## createControllerSetting
+
+> CompletableFuture createControllerSetting(controllerSetting)
+
+Create a controller specific setting
+
+Create a new controller specific settings object. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ ControllerSettingCreate controllerSetting = new ControllerSettingCreate(); // ControllerSettingCreate | A controller settings object to create
+ try {
+ CompletableFuture result = apiInstance.createControllerSetting(controllerSetting);
+ System.out.println(result.get());
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#createControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **controllerSetting** | [**ControllerSettingCreate**](ControllerSettingCreate.md)| A controller settings object to create | |
+
+### Return type
+
+CompletableFuture<[**CreateEnvelope**](CreateEnvelope.md)>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: application/json
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **201** | The create request was successful and the resource has been added at the following location | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+## createControllerSettingWithHttpInfo
+
+> CompletableFuture> createControllerSetting createControllerSettingWithHttpInfo(controllerSetting)
+
+Create a controller specific setting
+
+Create a new controller specific settings object. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ ControllerSettingCreate controllerSetting = new ControllerSettingCreate(); // ControllerSettingCreate | A controller settings object to create
+ try {
+ CompletableFuture> response = apiInstance.createControllerSettingWithHttpInfo(controllerSetting);
+ System.out.println("Status code: " + response.get().getStatusCode());
+ System.out.println("Response headers: " + response.get().getHeaders());
+ System.out.println("Response body: " + response.get().getData());
+ } catch (InterruptedException | ExecutionException e) {
+ ApiException apiException = (ApiException)e.getCause();
+ System.err.println("Exception when calling SettingsApi#createControllerSetting");
+ System.err.println("Status code: " + apiException.getCode());
+ System.err.println("Response headers: " + apiException.getResponseHeaders());
+ System.err.println("Reason: " + apiException.getResponseBody());
+ e.printStackTrace();
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#createControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ System.err.println("Reason: " + e.getResponseBody());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **controllerSetting** | [**ControllerSettingCreate**](ControllerSettingCreate.md)| A controller settings object to create | |
+
+### Return type
+
+CompletableFuture>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: application/json
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **201** | The create request was successful and the resource has been added at the following location | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+
+## deleteControllerSetting
+
+> CompletableFuture deleteControllerSetting(id)
+
+Delete a controller setting object
+
+Delete a controller setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ try {
+ CompletableFuture result = apiInstance.deleteControllerSetting(id);
+ System.out.println(result.get());
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#deleteControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+
+### Return type
+
+CompletableFuture<[**Empty**](Empty.md)>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | The delete request was successful and the resource has been removed | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **409** | The resource requested to be removed/altered cannot be as it is referenced by another object. | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+## deleteControllerSettingWithHttpInfo
+
+> CompletableFuture> deleteControllerSetting deleteControllerSettingWithHttpInfo(id)
+
+Delete a controller setting object
+
+Delete a controller setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ try {
+ CompletableFuture> response = apiInstance.deleteControllerSettingWithHttpInfo(id);
+ System.out.println("Status code: " + response.get().getStatusCode());
+ System.out.println("Response headers: " + response.get().getHeaders());
+ System.out.println("Response body: " + response.get().getData());
+ } catch (InterruptedException | ExecutionException e) {
+ ApiException apiException = (ApiException)e.getCause();
+ System.err.println("Exception when calling SettingsApi#deleteControllerSetting");
+ System.err.println("Status code: " + apiException.getCode());
+ System.err.println("Response headers: " + apiException.getResponseHeaders());
+ System.err.println("Reason: " + apiException.getResponseBody());
+ e.printStackTrace();
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#deleteControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ System.err.println("Reason: " + e.getResponseBody());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+
+### Return type
+
+CompletableFuture>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | The delete request was successful and the resource has been removed | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **409** | The resource requested to be removed/altered cannot be as it is referenced by another object. | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+
+## detailControllerSetting
+
+> CompletableFuture detailControllerSetting(id)
+
+Retrieves a single controller setting object.
+
+Retrieves a single controller setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ try {
+ CompletableFuture result = apiInstance.detailControllerSetting(id);
+ System.out.println(result.get());
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#detailControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+
+### Return type
+
+CompletableFuture<[**DetailControllerSettingEnvelope**](DetailControllerSettingEnvelope.md)>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | A singular controller setting object | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+## detailControllerSettingWithHttpInfo
+
+> CompletableFuture> detailControllerSetting detailControllerSettingWithHttpInfo(id)
+
+Retrieves a single controller setting object.
+
+Retrieves a single controller setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ try {
+ CompletableFuture> response = apiInstance.detailControllerSettingWithHttpInfo(id);
+ System.out.println("Status code: " + response.get().getStatusCode());
+ System.out.println("Response headers: " + response.get().getHeaders());
+ System.out.println("Response body: " + response.get().getData());
+ } catch (InterruptedException | ExecutionException e) {
+ ApiException apiException = (ApiException)e.getCause();
+ System.err.println("Exception when calling SettingsApi#detailControllerSetting");
+ System.err.println("Status code: " + apiException.getCode());
+ System.err.println("Response headers: " + apiException.getResponseHeaders());
+ System.err.println("Reason: " + apiException.getResponseBody());
+ e.printStackTrace();
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#detailControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ System.err.println("Reason: " + e.getResponseBody());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+
+### Return type
+
+CompletableFuture>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | A singular controller setting object | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+
+## detailControllerSettingEffective
+
+> CompletableFuture detailControllerSettingEffective(id)
+
+Retrieves a single controller's effective calculated settings from the instance and global configuration.
+
+Retrieves a single controller's effective setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ try {
+ CompletableFuture result = apiInstance.detailControllerSettingEffective(id);
+ System.out.println(result.get());
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#detailControllerSettingEffective");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+
+### Return type
+
+CompletableFuture<[**DetailControllerSettingEffectiveEnvelope**](DetailControllerSettingEffectiveEnvelope.md)>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | A singular controller's effective setting object | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+## detailControllerSettingEffectiveWithHttpInfo
+
+> CompletableFuture> detailControllerSettingEffective detailControllerSettingEffectiveWithHttpInfo(id)
+
+Retrieves a single controller's effective calculated settings from the instance and global configuration.
+
+Retrieves a single controller's effective setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ try {
+ CompletableFuture> response = apiInstance.detailControllerSettingEffectiveWithHttpInfo(id);
+ System.out.println("Status code: " + response.get().getStatusCode());
+ System.out.println("Response headers: " + response.get().getHeaders());
+ System.out.println("Response body: " + response.get().getData());
+ } catch (InterruptedException | ExecutionException e) {
+ ApiException apiException = (ApiException)e.getCause();
+ System.err.println("Exception when calling SettingsApi#detailControllerSettingEffective");
+ System.err.println("Status code: " + apiException.getCode());
+ System.err.println("Response headers: " + apiException.getResponseHeaders());
+ System.err.println("Reason: " + apiException.getResponseBody());
+ e.printStackTrace();
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#detailControllerSettingEffective");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ System.err.println("Reason: " + e.getResponseBody());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+
+### Return type
+
+CompletableFuture>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | A singular controller's effective setting object | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+
+## listControllerSettings
+
+> CompletableFuture listControllerSettings(limit, offset, filter)
+
+List controller settings
+
+Retrieves a list controller settings including the base `global` settings object and any overriding controller specific settings.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ Integer limit = 56; // Integer |
+ Integer offset = 56; // Integer |
+ String filter = "filter_example"; // String |
+ try {
+ CompletableFuture result = apiInstance.listControllerSettings(limit, offset, filter);
+ System.out.println(result.get());
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#listControllerSettings");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **limit** | **Integer**| | [optional] |
+| **offset** | **Integer**| | [optional] |
+| **filter** | **String**| | [optional] |
+
+### Return type
+
+CompletableFuture<[**ListControllerSettingEnvelope**](ListControllerSettingEnvelope.md)>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | A list of controller setting objects | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+## listControllerSettingsWithHttpInfo
+
+> CompletableFuture> listControllerSettings listControllerSettingsWithHttpInfo(limit, offset, filter)
+
+List controller settings
+
+Retrieves a list controller settings including the base `global` settings object and any overriding controller specific settings.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ Integer limit = 56; // Integer |
+ Integer offset = 56; // Integer |
+ String filter = "filter_example"; // String |
+ try {
+ CompletableFuture> response = apiInstance.listControllerSettingsWithHttpInfo(limit, offset, filter);
+ System.out.println("Status code: " + response.get().getStatusCode());
+ System.out.println("Response headers: " + response.get().getHeaders());
+ System.out.println("Response body: " + response.get().getData());
+ } catch (InterruptedException | ExecutionException e) {
+ ApiException apiException = (ApiException)e.getCause();
+ System.err.println("Exception when calling SettingsApi#listControllerSettings");
+ System.err.println("Status code: " + apiException.getCode());
+ System.err.println("Response headers: " + apiException.getResponseHeaders());
+ System.err.println("Reason: " + apiException.getResponseBody());
+ e.printStackTrace();
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#listControllerSettings");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ System.err.println("Reason: " + e.getResponseBody());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **limit** | **Integer**| | [optional] |
+| **offset** | **Integer**| | [optional] |
+| **filter** | **String**| | [optional] |
+
+### Return type
+
+CompletableFuture>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: Not defined
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | A list of controller setting objects | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+
+## patchControllerSetting
+
+> CompletableFuture patchControllerSetting(id, controllerSetting)
+
+Update the supplied fields on a controller setting object
+
+Update the supplied fields on a controller setting object. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ ControllerSettingPatch controllerSetting = new ControllerSettingPatch(); // ControllerSettingPatch | A controller setting object patch object
+ try {
+ CompletableFuture result = apiInstance.patchControllerSetting(id, controllerSetting);
+ System.out.println(result.get());
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#patchControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+| **controllerSetting** | [**ControllerSettingPatch**](ControllerSettingPatch.md)| A controller setting object patch object | |
+
+### Return type
+
+CompletableFuture<[**Empty**](Empty.md)>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: application/json
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | The patch request was successful and the resource has been altered | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+## patchControllerSettingWithHttpInfo
+
+> CompletableFuture> patchControllerSetting patchControllerSettingWithHttpInfo(id, controllerSetting)
+
+Update the supplied fields on a controller setting object
+
+Update the supplied fields on a controller setting object. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ ControllerSettingPatch controllerSetting = new ControllerSettingPatch(); // ControllerSettingPatch | A controller setting object patch object
+ try {
+ CompletableFuture> response = apiInstance.patchControllerSettingWithHttpInfo(id, controllerSetting);
+ System.out.println("Status code: " + response.get().getStatusCode());
+ System.out.println("Response headers: " + response.get().getHeaders());
+ System.out.println("Response body: " + response.get().getData());
+ } catch (InterruptedException | ExecutionException e) {
+ ApiException apiException = (ApiException)e.getCause();
+ System.err.println("Exception when calling SettingsApi#patchControllerSetting");
+ System.err.println("Status code: " + apiException.getCode());
+ System.err.println("Response headers: " + apiException.getResponseHeaders());
+ System.err.println("Reason: " + apiException.getResponseBody());
+ e.printStackTrace();
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#patchControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ System.err.println("Reason: " + e.getResponseBody());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+| **controllerSetting** | [**ControllerSettingPatch**](ControllerSettingPatch.md)| A controller setting object patch object | |
+
+### Return type
+
+CompletableFuture>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: application/json
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | The patch request was successful and the resource has been altered | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+
+## updateControllerSetting
+
+> CompletableFuture updateControllerSetting(id, controllerSetting)
+
+Update all fields on a controller setting object
+
+Update all fields on a controller setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ ControllerSettingUpdate controllerSetting = new ControllerSettingUpdate(); // ControllerSettingUpdate | A controller setting update object
+ try {
+ CompletableFuture result = apiInstance.updateControllerSetting(id, controllerSetting);
+ System.out.println(result.get());
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#updateControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+| **controllerSetting** | [**ControllerSettingUpdate**](ControllerSettingUpdate.md)| A controller setting update object | |
+
+### Return type
+
+CompletableFuture<[**Empty**](Empty.md)>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: application/json
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | The update request was successful and the resource has been altered | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
+## updateControllerSettingWithHttpInfo
+
+> CompletableFuture> updateControllerSetting updateControllerSettingWithHttpInfo(id, controllerSetting)
+
+Update all fields on a controller setting object
+
+Update all fields on a controller setting object by id. Requires admin access.
+
+### Example
+
+```java
+// Import classes:
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Configuration;
+import org.openziti.management.auth.*;
+import org.openziti.management.models.*;
+import org.openziti.management.api.SettingsApi;
+import java.util.concurrent.CompletableFuture;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = Configuration.getDefaultApiClient();
+ defaultClient.setBasePath("https://demo.ziti.dev/edge/management/v1");
+
+ // Configure API key authorization: ztSession
+ ApiKeyAuth ztSession = (ApiKeyAuth) defaultClient.getAuthentication("ztSession");
+ ztSession.setApiKey("YOUR API KEY");
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
+ //ztSession.setApiKeyPrefix("Token");
+
+ // Configure OAuth2 access token for authorization: oauth2
+ OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
+ oauth2.setAccessToken("YOUR ACCESS TOKEN");
+
+ SettingsApi apiInstance = new SettingsApi(defaultClient);
+ String id = "id_example"; // String | The id of the requested resource
+ ControllerSettingUpdate controllerSetting = new ControllerSettingUpdate(); // ControllerSettingUpdate | A controller setting update object
+ try {
+ CompletableFuture> response = apiInstance.updateControllerSettingWithHttpInfo(id, controllerSetting);
+ System.out.println("Status code: " + response.get().getStatusCode());
+ System.out.println("Response headers: " + response.get().getHeaders());
+ System.out.println("Response body: " + response.get().getData());
+ } catch (InterruptedException | ExecutionException e) {
+ ApiException apiException = (ApiException)e.getCause();
+ System.err.println("Exception when calling SettingsApi#updateControllerSetting");
+ System.err.println("Status code: " + apiException.getCode());
+ System.err.println("Response headers: " + apiException.getResponseHeaders());
+ System.err.println("Reason: " + apiException.getResponseBody());
+ e.printStackTrace();
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SettingsApi#updateControllerSetting");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ System.err.println("Reason: " + e.getResponseBody());
+ e.printStackTrace();
+ }
+ }
+}
+```
+
+### Parameters
+
+
+| Name | Type | Description | Notes |
+|------------- | ------------- | ------------- | -------------|
+| **id** | **String**| The id of the requested resource | |
+| **controllerSetting** | [**ControllerSettingUpdate**](ControllerSettingUpdate.md)| A controller setting update object | |
+
+### Return type
+
+CompletableFuture>
+
+
+### Authorization
+
+[ztSession](../README.md#ztSession), [oauth2](../README.md#oauth2)
+
+### HTTP request headers
+
+- **Content-Type**: application/json
+- **Accept**: application/json
+
+### HTTP response details
+| Status code | Description | Response headers |
+|-------------|-------------|------------------|
+| **200** | The update request was successful and the resource has been altered | - |
+| **400** | The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information | - |
+| **401** | The supplied session does not have the correct access rights to request this resource | - |
+| **404** | The requested resource does not exist | - |
+| **429** | The resource requested is rate limited and the rate limit has been exceeded | - |
+
diff --git a/management-api/src/main/java/org/openziti/management/ApiClient.java b/management-api/src/main/java/org/openziti/management/ApiClient.java
index 3b17d801..dc0a5344 100644
--- a/management-api/src/main/java/org/openziti/management/ApiClient.java
+++ b/management-api/src/main/java/org/openziti/management/ApiClient.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -52,7 +52,7 @@
*/
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiClient {
diff --git a/management-api/src/main/java/org/openziti/management/ApiException.java b/management-api/src/main/java/org/openziti/management/ApiException.java
index 99bd959a..1fbb48b0 100644
--- a/management-api/src/main/java/org/openziti/management/ApiException.java
+++ b/management-api/src/main/java/org/openziti/management/ApiException.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiException extends Exception {
private static final long serialVersionUID = 1L;
diff --git a/management-api/src/main/java/org/openziti/management/ApiResponse.java b/management-api/src/main/java/org/openziti/management/ApiResponse.java
index b5ae2302..9348a0fe 100644
--- a/management-api/src/main/java/org/openziti/management/ApiResponse.java
+++ b/management-api/src/main/java/org/openziti/management/ApiResponse.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
*/
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiResponse {
private final int statusCode;
diff --git a/management-api/src/main/java/org/openziti/management/Configuration.java b/management-api/src/main/java/org/openziti/management/Configuration.java
index 9b752a14..70cd101e 100644
--- a/management-api/src/main/java/org/openziti/management/Configuration.java
+++ b/management-api/src/main/java/org/openziti/management/Configuration.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,10 +14,10 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Configuration {
- public static final String VERSION = "0.27.7-mgmt-api-8.e97b817-dirty-SNAPSHOT";
+ public static final String VERSION = "0.28.2-update-edge-api-0.26.42-42.8441c84-dirty-SNAPSHOT";
private static ApiClient defaultApiClient = new ApiClient();
diff --git a/management-api/src/main/java/org/openziti/management/JSON.java b/management-api/src/main/java/org/openziti/management/JSON.java
index d7795839..d204b195 100644
--- a/management-api/src/main/java/org/openziti/management/JSON.java
+++ b/management-api/src/main/java/org/openziti/management/JSON.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class JSON {
private ObjectMapper mapper;
@@ -85,7 +85,7 @@ public static Class> getClassForElement(JsonNode node, Class> modelClass) {
/** Helper class to register the discriminator mappings. */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
private static class ClassDiscriminatorMapping {
// The model class name.
diff --git a/management-api/src/main/java/org/openziti/management/Pair.java b/management-api/src/main/java/org/openziti/management/Pair.java
index aabe8899..72ae2f89 100644
--- a/management-api/src/main/java/org/openziti/management/Pair.java
+++ b/management-api/src/main/java/org/openziti/management/Pair.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,7 +14,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Pair {
private String name = "";
diff --git a/management-api/src/main/java/org/openziti/management/RFC3339DateFormat.java b/management-api/src/main/java/org/openziti/management/RFC3339DateFormat.java
index dddcb3e7..eab6f94b 100644
--- a/management-api/src/main/java/org/openziti/management/RFC3339DateFormat.java
+++ b/management-api/src/main/java/org/openziti/management/RFC3339DateFormat.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RFC3339DateFormat extends DateFormat {
private static final long serialVersionUID = 1L;
diff --git a/management-api/src/main/java/org/openziti/management/ServerConfiguration.java b/management-api/src/main/java/org/openziti/management/ServerConfiguration.java
index 2ab30f55..559ed109 100644
--- a/management-api/src/main/java/org/openziti/management/ServerConfiguration.java
+++ b/management-api/src/main/java/org/openziti/management/ServerConfiguration.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@
/** Representing a Server configuration. */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServerConfiguration {
public String URL;
diff --git a/management-api/src/main/java/org/openziti/management/ServerVariable.java b/management-api/src/main/java/org/openziti/management/ServerVariable.java
index 9c098525..70a5edc7 100644
--- a/management-api/src/main/java/org/openziti/management/ServerVariable.java
+++ b/management-api/src/main/java/org/openziti/management/ServerVariable.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@
/** Representing a Server Variable for server URL template substitution. */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServerVariable {
public String description;
diff --git a/management-api/src/main/java/org/openziti/management/api/ApiSessionApi.java b/management-api/src/main/java/org/openziti/management/api/ApiSessionApi.java
index e50513d8..cfc8fa72 100644
--- a/management-api/src/main/java/org/openziti/management/api/ApiSessionApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ApiSessionApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiSessionApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/AuthPolicyApi.java b/management-api/src/main/java/org/openziti/management/api/AuthPolicyApi.java
index 361c25f8..ded6c4f5 100644
--- a/management-api/src/main/java/org/openziti/management/api/AuthPolicyApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/AuthPolicyApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/AuthenticationApi.java b/management-api/src/main/java/org/openziti/management/api/AuthenticationApi.java
index 5bd03e26..696a4117 100644
--- a/management-api/src/main/java/org/openziti/management/api/AuthenticationApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/AuthenticationApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticationApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/AuthenticatorApi.java b/management-api/src/main/java/org/openziti/management/api/AuthenticatorApi.java
index 594d723a..a9f9ec61 100644
--- a/management-api/src/main/java/org/openziti/management/api/AuthenticatorApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/AuthenticatorApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,7 +41,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/CertificateAuthorityApi.java b/management-api/src/main/java/org/openziti/management/api/CertificateAuthorityApi.java
index c579d532..90ba418e 100644
--- a/management-api/src/main/java/org/openziti/management/api/CertificateAuthorityApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/CertificateAuthorityApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CertificateAuthorityApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/ConfigApi.java b/management-api/src/main/java/org/openziti/management/api/ConfigApi.java
index 2142b4a8..d89087a8 100644
--- a/management-api/src/main/java/org/openziti/management/api/ConfigApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ConfigApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -46,7 +46,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/ControllersApi.java b/management-api/src/main/java/org/openziti/management/api/ControllersApi.java
index d1b61d26..1270004e 100644
--- a/management-api/src/main/java/org/openziti/management/api/ControllersApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ControllersApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ControllersApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/CurrentApiSessionApi.java b/management-api/src/main/java/org/openziti/management/api/CurrentApiSessionApi.java
index 80944d26..f09c72a2 100644
--- a/management-api/src/main/java/org/openziti/management/api/CurrentApiSessionApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/CurrentApiSessionApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/CurrentIdentityApi.java b/management-api/src/main/java/org/openziti/management/api/CurrentIdentityApi.java
index f51059d4..e0c31c18 100644
--- a/management-api/src/main/java/org/openziti/management/api/CurrentIdentityApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/CurrentIdentityApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentIdentityApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/DatabaseApi.java b/management-api/src/main/java/org/openziti/management/api/DatabaseApi.java
index 174bf943..f6dfe044 100644
--- a/management-api/src/main/java/org/openziti/management/api/DatabaseApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/DatabaseApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DatabaseApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/EdgeRouterApi.java b/management-api/src/main/java/org/openziti/management/api/EdgeRouterApi.java
index 58d0112e..ef558fae 100644
--- a/management-api/src/main/java/org/openziti/management/api/EdgeRouterApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/EdgeRouterApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,7 +44,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/EdgeRouterPolicyApi.java b/management-api/src/main/java/org/openziti/management/api/EdgeRouterPolicyApi.java
index 983b19ed..661f679b 100644
--- a/management-api/src/main/java/org/openziti/management/api/EdgeRouterPolicyApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/EdgeRouterPolicyApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterPolicyApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/EnrollApi.java b/management-api/src/main/java/org/openziti/management/api/EnrollApi.java
index fef491a6..b62a6954 100644
--- a/management-api/src/main/java/org/openziti/management/api/EnrollApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/EnrollApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/EnrollmentApi.java b/management-api/src/main/java/org/openziti/management/api/EnrollmentApi.java
index 667f3c76..c21f7e89 100644
--- a/management-api/src/main/java/org/openziti/management/api/EnrollmentApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/EnrollmentApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollmentApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/ExtendEnrollmentApi.java b/management-api/src/main/java/org/openziti/management/api/ExtendEnrollmentApi.java
index e7701007..2f8c30e9 100644
--- a/management-api/src/main/java/org/openziti/management/api/ExtendEnrollmentApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ExtendEnrollmentApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExtendEnrollmentApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/ExternalJwtSignerApi.java b/management-api/src/main/java/org/openziti/management/api/ExternalJwtSignerApi.java
index 1f4eb877..79d0a401 100644
--- a/management-api/src/main/java/org/openziti/management/api/ExternalJwtSignerApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ExternalJwtSignerApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalJwtSignerApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/IdentityApi.java b/management-api/src/main/java/org/openziti/management/api/IdentityApi.java
index 16d35a6a..2c85c4f6 100644
--- a/management-api/src/main/java/org/openziti/management/api/IdentityApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/IdentityApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -56,7 +56,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/InformationalApi.java b/management-api/src/main/java/org/openziti/management/api/InformationalApi.java
index d5b3402e..b13cdfff 100644
--- a/management-api/src/main/java/org/openziti/management/api/InformationalApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/InformationalApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class InformationalApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/MfaApi.java b/management-api/src/main/java/org/openziti/management/api/MfaApi.java
index 9db3a64b..68ea6092 100644
--- a/management-api/src/main/java/org/openziti/management/api/MfaApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/MfaApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class MfaApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/PostureChecksApi.java b/management-api/src/main/java/org/openziti/management/api/PostureChecksApi.java
index dd66ed93..57c90c3b 100644
--- a/management-api/src/main/java/org/openziti/management/api/PostureChecksApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/PostureChecksApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureChecksApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/RoleAttributesApi.java b/management-api/src/main/java/org/openziti/management/api/RoleAttributesApi.java
index da71d05a..6654cb11 100644
--- a/management-api/src/main/java/org/openziti/management/api/RoleAttributesApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/RoleAttributesApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RoleAttributesApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/RouterApi.java b/management-api/src/main/java/org/openziti/management/api/RouterApi.java
index ff88cfe8..25574080 100644
--- a/management-api/src/main/java/org/openziti/management/api/RouterApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/RouterApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RouterApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/ServiceApi.java b/management-api/src/main/java/org/openziti/management/api/ServiceApi.java
index 8e8566d1..d635ca94 100644
--- a/management-api/src/main/java/org/openziti/management/api/ServiceApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ServiceApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -46,7 +46,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/ServiceEdgeRouterPolicyApi.java b/management-api/src/main/java/org/openziti/management/api/ServiceEdgeRouterPolicyApi.java
index b2f9e80d..1c8b39a2 100644
--- a/management-api/src/main/java/org/openziti/management/api/ServiceEdgeRouterPolicyApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ServiceEdgeRouterPolicyApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceEdgeRouterPolicyApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/ServicePolicyApi.java b/management-api/src/main/java/org/openziti/management/api/ServicePolicyApi.java
index e27ca253..20655621 100644
--- a/management-api/src/main/java/org/openziti/management/api/ServicePolicyApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/ServicePolicyApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -43,7 +43,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicePolicyApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/SessionApi.java b/management-api/src/main/java/org/openziti/management/api/SessionApi.java
index 8f0ff1be..8dd86443 100644
--- a/management-api/src/main/java/org/openziti/management/api/SessionApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/SessionApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/SettingsApi.java b/management-api/src/main/java/org/openziti/management/api/SettingsApi.java
new file mode 100644
index 00000000..b7bf6af0
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/api/SettingsApi.java
@@ -0,0 +1,938 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.api;
+
+import com.fasterxml.jackson.core.type.TypeReference;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import java.io.IOException;
+import java.io.InputStream;
+import java.net.URI;
+import java.net.http.HttpClient;
+import java.net.http.HttpRequest;
+import java.net.http.HttpResponse;
+import java.time.Duration;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.StringJoiner;
+import java.util.concurrent.CompletableFuture;
+import java.util.function.Consumer;
+import org.openziti.management.ApiClient;
+import org.openziti.management.ApiException;
+import org.openziti.management.ApiResponse;
+import org.openziti.management.Pair;
+import org.openziti.management.model.ControllerSettingCreate;
+import org.openziti.management.model.ControllerSettingPatch;
+import org.openziti.management.model.ControllerSettingUpdate;
+import org.openziti.management.model.CreateEnvelope;
+import org.openziti.management.model.DetailControllerSettingEffectiveEnvelope;
+import org.openziti.management.model.DetailControllerSettingEnvelope;
+import org.openziti.management.model.Empty;
+import org.openziti.management.model.ListControllerSettingEnvelope;
+
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class SettingsApi {
+ private final HttpClient memberVarHttpClient;
+ private final ObjectMapper memberVarObjectMapper;
+ private final String memberVarBaseUri;
+ private final Consumer memberVarInterceptor;
+ private final Duration memberVarReadTimeout;
+ private final Consumer> memberVarResponseInterceptor;
+ private final Consumer> memberVarAsyncResponseInterceptor;
+
+ public SettingsApi() {
+ this(new ApiClient());
+ }
+
+ public SettingsApi(ApiClient apiClient) {
+ memberVarHttpClient = apiClient.getHttpClient();
+ memberVarObjectMapper = apiClient.getObjectMapper();
+ memberVarBaseUri = apiClient.getBaseUri();
+ memberVarInterceptor = apiClient.getRequestInterceptor();
+ memberVarReadTimeout = apiClient.getReadTimeout();
+ memberVarResponseInterceptor = apiClient.getResponseInterceptor();
+ memberVarAsyncResponseInterceptor = apiClient.getAsyncResponseInterceptor();
+ }
+
+ private ApiException getApiException(String operationId, HttpResponse response) {
+ String message =
+ formatExceptionMessage(operationId, response.statusCode(), response.body());
+ return new ApiException(
+ response.statusCode(), message, response.headers(), response.body());
+ }
+
+ private String formatExceptionMessage(String operationId, int statusCode, String body) {
+ if (body == null || body.isEmpty()) {
+ body = "[no body]";
+ }
+ return operationId + " call failed with: " + statusCode + " - " + body;
+ }
+
+ /**
+ * Create a controller specific setting Create a new controller specific settings object.
+ * Requires admin access.
+ *
+ * @param controllerSetting A controller settings object to create (required)
+ * @return CompletableFuture<CreateEnvelope>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture createControllerSetting(
+ ControllerSettingCreate controllerSetting) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ createControllerSettingRequestBuilder(controllerSetting);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "createControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ CreateEnvelope>() {}));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ /**
+ * Create a controller specific setting Create a new controller specific settings object.
+ * Requires admin access.
+ *
+ * @param controllerSetting A controller settings object to create (required)
+ * @return CompletableFuture<ApiResponse<CreateEnvelope>>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture> createControllerSettingWithHttpInfo(
+ ControllerSettingCreate controllerSetting) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ createControllerSettingRequestBuilder(controllerSetting);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (memberVarAsyncResponseInterceptor != null) {
+ memberVarAsyncResponseInterceptor.accept(localVarResponse);
+ }
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "createControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ new ApiResponse(
+ localVarResponse.statusCode(),
+ localVarResponse.headers().map(),
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ CreateEnvelope>() {})));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ private HttpRequest.Builder createControllerSettingRequestBuilder(
+ ControllerSettingCreate controllerSetting) throws ApiException {
+ // verify the required parameter 'controllerSetting' is set
+ if (controllerSetting == null) {
+ throw new ApiException(
+ 400,
+ "Missing the required parameter 'controllerSetting' when calling"
+ + " createControllerSetting");
+ }
+
+ HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
+
+ String localVarPath = "/controller-settings";
+
+ localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
+
+ localVarRequestBuilder.header("Content-Type", "application/json");
+ localVarRequestBuilder.header("Accept", "application/json");
+
+ try {
+ byte[] localVarPostBody = memberVarObjectMapper.writeValueAsBytes(controllerSetting);
+ localVarRequestBuilder.method(
+ "POST", HttpRequest.BodyPublishers.ofByteArray(localVarPostBody));
+ } catch (IOException e) {
+ throw new ApiException(e);
+ }
+ if (memberVarReadTimeout != null) {
+ localVarRequestBuilder.timeout(memberVarReadTimeout);
+ }
+ if (memberVarInterceptor != null) {
+ memberVarInterceptor.accept(localVarRequestBuilder);
+ }
+ return localVarRequestBuilder;
+ }
+
+ /**
+ * Delete a controller setting object Delete a controller setting object by id. Requires admin
+ * access.
+ *
+ * @param id The id of the requested resource (required)
+ * @return CompletableFuture<Empty>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture deleteControllerSetting(String id) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder = deleteControllerSettingRequestBuilder(id);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "deleteControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference() {}));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ /**
+ * Delete a controller setting object Delete a controller setting object by id. Requires admin
+ * access.
+ *
+ * @param id The id of the requested resource (required)
+ * @return CompletableFuture<ApiResponse<Empty>>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture> deleteControllerSettingWithHttpInfo(String id)
+ throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder = deleteControllerSettingRequestBuilder(id);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (memberVarAsyncResponseInterceptor != null) {
+ memberVarAsyncResponseInterceptor.accept(localVarResponse);
+ }
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "deleteControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ new ApiResponse(
+ localVarResponse.statusCode(),
+ localVarResponse.headers().map(),
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ Empty>() {})));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ private HttpRequest.Builder deleteControllerSettingRequestBuilder(String id)
+ throws ApiException {
+ // verify the required parameter 'id' is set
+ if (id == null) {
+ throw new ApiException(
+ 400,
+ "Missing the required parameter 'id' when calling deleteControllerSetting");
+ }
+
+ HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
+
+ String localVarPath =
+ "/controller-settings/{id}/effective"
+ .replace("{id}", ApiClient.urlEncode(id.toString()));
+
+ localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
+
+ localVarRequestBuilder.header("Accept", "application/json");
+
+ localVarRequestBuilder.method("DELETE", HttpRequest.BodyPublishers.noBody());
+ if (memberVarReadTimeout != null) {
+ localVarRequestBuilder.timeout(memberVarReadTimeout);
+ }
+ if (memberVarInterceptor != null) {
+ memberVarInterceptor.accept(localVarRequestBuilder);
+ }
+ return localVarRequestBuilder;
+ }
+
+ /**
+ * Retrieves a single controller setting object. Retrieves a single controller setting object by
+ * id. Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @return CompletableFuture<DetailControllerSettingEnvelope>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture detailControllerSetting(String id)
+ throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder = detailControllerSettingRequestBuilder(id);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "detailControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ DetailControllerSettingEnvelope>() {}));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ /**
+ * Retrieves a single controller setting object. Retrieves a single controller setting object by
+ * id. Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @return CompletableFuture<ApiResponse<DetailControllerSettingEnvelope>>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture>
+ detailControllerSettingWithHttpInfo(String id) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder = detailControllerSettingRequestBuilder(id);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (memberVarAsyncResponseInterceptor != null) {
+ memberVarAsyncResponseInterceptor.accept(localVarResponse);
+ }
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "detailControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ new ApiResponse(
+ localVarResponse.statusCode(),
+ localVarResponse.headers().map(),
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ DetailControllerSettingEnvelope>() {})));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ private HttpRequest.Builder detailControllerSettingRequestBuilder(String id)
+ throws ApiException {
+ // verify the required parameter 'id' is set
+ if (id == null) {
+ throw new ApiException(
+ 400,
+ "Missing the required parameter 'id' when calling detailControllerSetting");
+ }
+
+ HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
+
+ String localVarPath =
+ "/controller-settings/{id}".replace("{id}", ApiClient.urlEncode(id.toString()));
+
+ localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
+
+ localVarRequestBuilder.header("Accept", "application/json");
+
+ localVarRequestBuilder.method("GET", HttpRequest.BodyPublishers.noBody());
+ if (memberVarReadTimeout != null) {
+ localVarRequestBuilder.timeout(memberVarReadTimeout);
+ }
+ if (memberVarInterceptor != null) {
+ memberVarInterceptor.accept(localVarRequestBuilder);
+ }
+ return localVarRequestBuilder;
+ }
+
+ /**
+ * Retrieves a single controller's effective calculated settings from the instance and
+ * global configuration. Retrieves a single controller's effective setting object by id.
+ * Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @return CompletableFuture<DetailControllerSettingEffectiveEnvelope>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture
+ detailControllerSettingEffective(String id) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ detailControllerSettingEffectiveRequestBuilder(id);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "detailControllerSettingEffective",
+ localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ DetailControllerSettingEffectiveEnvelope>() {}));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ /**
+ * Retrieves a single controller's effective calculated settings from the instance and
+ * global configuration. Retrieves a single controller's effective setting object by id.
+ * Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @return CompletableFuture<ApiResponse<DetailControllerSettingEffectiveEnvelope>>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture>
+ detailControllerSettingEffectiveWithHttpInfo(String id) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ detailControllerSettingEffectiveRequestBuilder(id);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (memberVarAsyncResponseInterceptor != null) {
+ memberVarAsyncResponseInterceptor.accept(localVarResponse);
+ }
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "detailControllerSettingEffective",
+ localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ new ApiResponse<
+ DetailControllerSettingEffectiveEnvelope>(
+ localVarResponse.statusCode(),
+ localVarResponse.headers().map(),
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ DetailControllerSettingEffectiveEnvelope>() {})));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ private HttpRequest.Builder detailControllerSettingEffectiveRequestBuilder(String id)
+ throws ApiException {
+ // verify the required parameter 'id' is set
+ if (id == null) {
+ throw new ApiException(
+ 400,
+ "Missing the required parameter 'id' when calling"
+ + " detailControllerSettingEffective");
+ }
+
+ HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
+
+ String localVarPath =
+ "/controller-settings/{id}/effective"
+ .replace("{id}", ApiClient.urlEncode(id.toString()));
+
+ localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
+
+ localVarRequestBuilder.header("Accept", "application/json");
+
+ localVarRequestBuilder.method("GET", HttpRequest.BodyPublishers.noBody());
+ if (memberVarReadTimeout != null) {
+ localVarRequestBuilder.timeout(memberVarReadTimeout);
+ }
+ if (memberVarInterceptor != null) {
+ memberVarInterceptor.accept(localVarRequestBuilder);
+ }
+ return localVarRequestBuilder;
+ }
+
+ /**
+ * List controller settings Retrieves a list controller settings including the base
+ * `global` settings object and any overriding controller specific settings.
+ *
+ * @param limit (optional)
+ * @param offset (optional)
+ * @param filter (optional)
+ * @return CompletableFuture<ListControllerSettingEnvelope>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture listControllerSettings(
+ Integer limit, Integer offset, String filter) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ listControllerSettingsRequestBuilder(limit, offset, filter);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "listControllerSettings", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ ListControllerSettingEnvelope>() {}));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ /**
+ * List controller settings Retrieves a list controller settings including the base
+ * `global` settings object and any overriding controller specific settings.
+ *
+ * @param limit (optional)
+ * @param offset (optional)
+ * @param filter (optional)
+ * @return CompletableFuture<ApiResponse<ListControllerSettingEnvelope>>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture>
+ listControllerSettingsWithHttpInfo(Integer limit, Integer offset, String filter)
+ throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ listControllerSettingsRequestBuilder(limit, offset, filter);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (memberVarAsyncResponseInterceptor != null) {
+ memberVarAsyncResponseInterceptor.accept(localVarResponse);
+ }
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "listControllerSettings", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ new ApiResponse(
+ localVarResponse.statusCode(),
+ localVarResponse.headers().map(),
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ ListControllerSettingEnvelope>() {})));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ private HttpRequest.Builder listControllerSettingsRequestBuilder(
+ Integer limit, Integer offset, String filter) throws ApiException {
+
+ HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
+
+ String localVarPath = "/controller-settings";
+
+ List localVarQueryParams = new ArrayList<>();
+ StringJoiner localVarQueryStringJoiner = new StringJoiner("&");
+ String localVarQueryParameterBaseName;
+ localVarQueryParameterBaseName = "limit";
+ localVarQueryParams.addAll(ApiClient.parameterToPairs("limit", limit));
+ localVarQueryParameterBaseName = "offset";
+ localVarQueryParams.addAll(ApiClient.parameterToPairs("offset", offset));
+ localVarQueryParameterBaseName = "filter";
+ localVarQueryParams.addAll(ApiClient.parameterToPairs("filter", filter));
+
+ if (!localVarQueryParams.isEmpty() || localVarQueryStringJoiner.length() != 0) {
+ StringJoiner queryJoiner = new StringJoiner("&");
+ localVarQueryParams.forEach(p -> queryJoiner.add(p.getName() + '=' + p.getValue()));
+ if (localVarQueryStringJoiner.length() != 0) {
+ queryJoiner.add(localVarQueryStringJoiner.toString());
+ }
+ localVarRequestBuilder.uri(
+ URI.create(memberVarBaseUri + localVarPath + '?' + queryJoiner.toString()));
+ } else {
+ localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
+ }
+
+ localVarRequestBuilder.header("Accept", "application/json");
+
+ localVarRequestBuilder.method("GET", HttpRequest.BodyPublishers.noBody());
+ if (memberVarReadTimeout != null) {
+ localVarRequestBuilder.timeout(memberVarReadTimeout);
+ }
+ if (memberVarInterceptor != null) {
+ memberVarInterceptor.accept(localVarRequestBuilder);
+ }
+ return localVarRequestBuilder;
+ }
+
+ /**
+ * Update the supplied fields on a controller setting object Update the supplied fields on a
+ * controller setting object. Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @param controllerSetting A controller setting object patch object (required)
+ * @return CompletableFuture<Empty>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture patchControllerSetting(
+ String id, ControllerSettingPatch controllerSetting) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ patchControllerSettingRequestBuilder(id, controllerSetting);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "patchControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference() {}));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ /**
+ * Update the supplied fields on a controller setting object Update the supplied fields on a
+ * controller setting object. Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @param controllerSetting A controller setting object patch object (required)
+ * @return CompletableFuture<ApiResponse<Empty>>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture> patchControllerSettingWithHttpInfo(
+ String id, ControllerSettingPatch controllerSetting) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ patchControllerSettingRequestBuilder(id, controllerSetting);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (memberVarAsyncResponseInterceptor != null) {
+ memberVarAsyncResponseInterceptor.accept(localVarResponse);
+ }
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "patchControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ new ApiResponse(
+ localVarResponse.statusCode(),
+ localVarResponse.headers().map(),
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ Empty>() {})));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ private HttpRequest.Builder patchControllerSettingRequestBuilder(
+ String id, ControllerSettingPatch controllerSetting) throws ApiException {
+ // verify the required parameter 'id' is set
+ if (id == null) {
+ throw new ApiException(
+ 400, "Missing the required parameter 'id' when calling patchControllerSetting");
+ }
+ // verify the required parameter 'controllerSetting' is set
+ if (controllerSetting == null) {
+ throw new ApiException(
+ 400,
+ "Missing the required parameter 'controllerSetting' when calling"
+ + " patchControllerSetting");
+ }
+
+ HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
+
+ String localVarPath =
+ "/controller-settings/{id}/effective"
+ .replace("{id}", ApiClient.urlEncode(id.toString()));
+
+ localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
+
+ localVarRequestBuilder.header("Content-Type", "application/json");
+ localVarRequestBuilder.header("Accept", "application/json");
+
+ try {
+ byte[] localVarPostBody = memberVarObjectMapper.writeValueAsBytes(controllerSetting);
+ localVarRequestBuilder.method(
+ "PATCH", HttpRequest.BodyPublishers.ofByteArray(localVarPostBody));
+ } catch (IOException e) {
+ throw new ApiException(e);
+ }
+ if (memberVarReadTimeout != null) {
+ localVarRequestBuilder.timeout(memberVarReadTimeout);
+ }
+ if (memberVarInterceptor != null) {
+ memberVarInterceptor.accept(localVarRequestBuilder);
+ }
+ return localVarRequestBuilder;
+ }
+
+ /**
+ * Update all fields on a controller setting object Update all fields on a controller setting
+ * object by id. Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @param controllerSetting A controller setting update object (required)
+ * @return CompletableFuture<Empty>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture updateControllerSetting(
+ String id, ControllerSettingUpdate controllerSetting) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ updateControllerSettingRequestBuilder(id, controllerSetting);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "updateControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference() {}));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ /**
+ * Update all fields on a controller setting object Update all fields on a controller setting
+ * object by id. Requires admin access.
+ *
+ * @param id The id of the requested resource (required)
+ * @param controllerSetting A controller setting update object (required)
+ * @return CompletableFuture<ApiResponse<Empty>>
+ * @throws ApiException if fails to make API call
+ */
+ public CompletableFuture> updateControllerSettingWithHttpInfo(
+ String id, ControllerSettingUpdate controllerSetting) throws ApiException {
+ try {
+ HttpRequest.Builder localVarRequestBuilder =
+ updateControllerSettingRequestBuilder(id, controllerSetting);
+ return memberVarHttpClient
+ .sendAsync(localVarRequestBuilder.build(), HttpResponse.BodyHandlers.ofString())
+ .thenComposeAsync(
+ localVarResponse -> {
+ if (memberVarAsyncResponseInterceptor != null) {
+ memberVarAsyncResponseInterceptor.accept(localVarResponse);
+ }
+ if (localVarResponse.statusCode() / 100 != 2) {
+ return CompletableFuture.failedFuture(
+ getApiException(
+ "updateControllerSetting", localVarResponse));
+ }
+ try {
+ String responseBody = localVarResponse.body();
+ return CompletableFuture.completedFuture(
+ new ApiResponse(
+ localVarResponse.statusCode(),
+ localVarResponse.headers().map(),
+ responseBody == null || responseBody.isBlank()
+ ? null
+ : memberVarObjectMapper.readValue(
+ responseBody,
+ new TypeReference<
+ Empty>() {})));
+ } catch (IOException e) {
+ return CompletableFuture.failedFuture(new ApiException(e));
+ }
+ });
+ } catch (ApiException e) {
+ return CompletableFuture.failedFuture(e);
+ }
+ }
+
+ private HttpRequest.Builder updateControllerSettingRequestBuilder(
+ String id, ControllerSettingUpdate controllerSetting) throws ApiException {
+ // verify the required parameter 'id' is set
+ if (id == null) {
+ throw new ApiException(
+ 400,
+ "Missing the required parameter 'id' when calling updateControllerSetting");
+ }
+ // verify the required parameter 'controllerSetting' is set
+ if (controllerSetting == null) {
+ throw new ApiException(
+ 400,
+ "Missing the required parameter 'controllerSetting' when calling"
+ + " updateControllerSetting");
+ }
+
+ HttpRequest.Builder localVarRequestBuilder = HttpRequest.newBuilder();
+
+ String localVarPath =
+ "/controller-settings/{id}/effective"
+ .replace("{id}", ApiClient.urlEncode(id.toString()));
+
+ localVarRequestBuilder.uri(URI.create(memberVarBaseUri + localVarPath));
+
+ localVarRequestBuilder.header("Content-Type", "application/json");
+ localVarRequestBuilder.header("Accept", "application/json");
+
+ try {
+ byte[] localVarPostBody = memberVarObjectMapper.writeValueAsBytes(controllerSetting);
+ localVarRequestBuilder.method(
+ "PUT", HttpRequest.BodyPublishers.ofByteArray(localVarPostBody));
+ } catch (IOException e) {
+ throw new ApiException(e);
+ }
+ if (memberVarReadTimeout != null) {
+ localVarRequestBuilder.timeout(memberVarReadTimeout);
+ }
+ if (memberVarInterceptor != null) {
+ memberVarInterceptor.accept(localVarRequestBuilder);
+ }
+ return localVarRequestBuilder;
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/api/TerminatorApi.java b/management-api/src/main/java/org/openziti/management/api/TerminatorApi.java
index 35ab0d92..01b41d7b 100644
--- a/management-api/src/main/java/org/openziti/management/api/TerminatorApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/TerminatorApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -40,7 +40,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TerminatorApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/TracingApi.java b/management-api/src/main/java/org/openziti/management/api/TracingApi.java
index d3d8d8b5..aaf2073c 100644
--- a/management-api/src/main/java/org/openziti/management/api/TracingApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/TracingApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TracingApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/api/WellKnownApi.java b/management-api/src/main/java/org/openziti/management/api/WellKnownApi.java
index 3b339b10..ccbfa5be 100644
--- a/management-api/src/main/java/org/openziti/management/api/WellKnownApi.java
+++ b/management-api/src/main/java/org/openziti/management/api/WellKnownApi.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class WellKnownApi {
private final HttpClient memberVarHttpClient;
diff --git a/management-api/src/main/java/org/openziti/management/model/AbstractOpenApiSchema.java b/management-api/src/main/java/org/openziti/management/model/AbstractOpenApiSchema.java
index 6ba64c4b..ba02f014 100644
--- a/management-api/src/main/java/org/openziti/management/model/AbstractOpenApiSchema.java
+++ b/management-api/src/main/java/org/openziti/management/model/AbstractOpenApiSchema.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,7 @@
/** Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public abstract class AbstractOpenApiSchema {
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiAddress.java b/management-api/src/main/java/org/openziti/management/model/ApiAddress.java
index 3c51775c..f097d2f4 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiAddress.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiAddress.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({ApiAddress.JSON_PROPERTY_URL, ApiAddress.JSON_PROPERTY_VERSION})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiAddress {
public static final String JSON_PROPERTY_URL = "url";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiError.java b/management-api/src/main/java/org/openziti/management/model/ApiError.java
index 9865381a..b3460763 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiError.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiError.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiError {
public static final String JSON_PROPERTY_ARGS = "args";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiErrorArgs.java b/management-api/src/main/java/org/openziti/management/model/ApiErrorArgs.java
index a8878019..706b5ccb 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiErrorArgs.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiErrorArgs.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
@JsonPropertyOrder({ApiErrorArgs.JSON_PROPERTY_URL_VARS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiErrorArgs {
public static final String JSON_PROPERTY_URL_VARS = "urlVars";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiErrorCause.java b/management-api/src/main/java/org/openziti/management/model/ApiErrorCause.java
index 2020187f..8a36b5ac 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiErrorCause.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiErrorCause.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiErrorCause {
public static final String JSON_PROPERTY_FIELD = "field";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiErrorEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ApiErrorEnvelope.java
index 21bf8609..0a0bdc8f 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiErrorEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiErrorEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({ApiErrorEnvelope.JSON_PROPERTY_ERROR, ApiErrorEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiErrorEnvelope {
public static final String JSON_PROPERTY_ERROR = "error";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiFieldError.java b/management-api/src/main/java/org/openziti/management/model/ApiFieldError.java
index 9880ae55..05ab2529 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiFieldError.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiFieldError.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiFieldError {
public static final String JSON_PROPERTY_FIELD = "field";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiSessionDetail.java b/management-api/src/main/java/org/openziti/management/model/ApiSessionDetail.java
index 20d54f22..b7ab50d5 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiSessionDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiSessionDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -48,7 +48,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiSessionDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiSessionPostureData.java b/management-api/src/main/java/org/openziti/management/model/ApiSessionPostureData.java
index f45f13f3..5f94711c 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiSessionPostureData.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiSessionPostureData.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiSessionPostureData {
public static final String JSON_PROPERTY_ENDPOINT_STATE = "endpointState";
diff --git a/management-api/src/main/java/org/openziti/management/model/ApiVersion.java b/management-api/src/main/java/org/openziti/management/model/ApiVersion.java
index ffb31c25..eb3d5cd4 100644
--- a/management-api/src/main/java/org/openziti/management/model/ApiVersion.java
+++ b/management-api/src/main/java/org/openziti/management/model/ApiVersion.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ApiVersion {
public static final String JSON_PROPERTY_API_BASE_URLS = "apiBaseUrls";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyCreate.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyCreate.java
index 66d2acc5..281cefcc 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyCreate {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyDetail.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyDetail.java
index b1d4b41f..53f178e6 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPatch.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPatch.java
index 94414131..ad466278 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPatch {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimary.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimary.java
index baba57e1..a1c2515d 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimary.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimary.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimary {
public static final String JSON_PROPERTY_CERT = "cert";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCert.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCert.java
index b320c402..4869852a 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCert.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCert.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimaryCert {
public static final String JSON_PROPERTY_ALLOW_EXPIRED_CERTS = "allowExpiredCerts";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCertPatch.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCertPatch.java
index da8b4450..c3a81e0d 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCertPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryCertPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimaryCertPatch {
public static final String JSON_PROPERTY_ALLOW_EXPIRED_CERTS = "allowExpiredCerts";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwt.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwt.java
index d4b1c3ed..5a9b38e2 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwt.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwt.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimaryExtJwt {
public static final String JSON_PROPERTY_ALLOWED = "allowed";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwtPatch.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwtPatch.java
index 27677651..a96e572d 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwtPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryExtJwtPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimaryExtJwtPatch {
public static final String JSON_PROPERTY_ALLOWED = "allowed";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryPatch.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryPatch.java
index 8cc671fd..dc4fff6c 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimaryPatch {
public static final String JSON_PROPERTY_CERT = "cert";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdb.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdb.java
index ed959332..e83a4c60 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdb.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdb.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimaryUpdb {
public static final String JSON_PROPERTY_ALLOWED = "allowed";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdbPatch.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdbPatch.java
index 0e7f9ff8..1f51f9b5 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdbPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicyPrimaryUpdbPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicyPrimaryUpdbPatch {
public static final String JSON_PROPERTY_ALLOWED = "allowed";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondary.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondary.java
index 14201131..4c9d90f9 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondary.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondary.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicySecondary {
public static final String JSON_PROPERTY_REQUIRE_EXT_JWT_SIGNER = "requireExtJwtSigner";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondaryPatch.java b/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondaryPatch.java
index ad456075..8f2cc93b 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondaryPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthPolicySecondaryPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthPolicySecondaryPatch {
public static final String JSON_PROPERTY_REQUIRE_EXT_JWT_SIGNER = "requireExtJwtSigner";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthQueryDetail.java b/management-api/src/main/java/org/openziti/management/model/AuthQueryDetail.java
index 601e9f44..7b4e3d5f 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthQueryDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthQueryDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthQueryDetail {
public static final String JSON_PROPERTY_CLIENT_ID = "clientId";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthQueryType.java b/management-api/src/main/java/org/openziti/management/model/AuthQueryType.java
index 1949a865..f0bfb519 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthQueryType.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthQueryType.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/Authenticate.java b/management-api/src/main/java/org/openziti/management/model/Authenticate.java
index b06cbbb1..d99a7fc7 100644
--- a/management-api/src/main/java/org/openziti/management/model/Authenticate.java
+++ b/management-api/src/main/java/org/openziti/management/model/Authenticate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Authenticate {
public static final String JSON_PROPERTY_CONFIG_TYPES = "configTypes";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthenticatorCreate.java b/management-api/src/main/java/org/openziti/management/model/AuthenticatorCreate.java
index 618abe7b..bcee3771 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthenticatorCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthenticatorCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorCreate {
public static final String JSON_PROPERTY_CERT_PEM = "certPem";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthenticatorDetail.java b/management-api/src/main/java/org/openziti/management/model/AuthenticatorDetail.java
index 91bfa394..28009cb6 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthenticatorDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthenticatorDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,7 +41,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatch.java b/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatch.java
index 848ea058..e6b90fef 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorPatch {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatchWithCurrent.java b/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatchWithCurrent.java
index 3a81a9e0..e874633e 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatchWithCurrent.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthenticatorPatchWithCurrent.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorPatchWithCurrent {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdate.java b/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdate.java
index 995eb40b..2cfa2c33 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorUpdate {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdateWithCurrent.java b/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdateWithCurrent.java
index 73e7d730..8dcd2365 100644
--- a/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdateWithCurrent.java
+++ b/management-api/src/main/java/org/openziti/management/model/AuthenticatorUpdateWithCurrent.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class AuthenticatorUpdateWithCurrent {
public static final String JSON_PROPERTY_PASSWORD = "password";
diff --git a/management-api/src/main/java/org/openziti/management/model/BaseEntity.java b/management-api/src/main/java/org/openziti/management/model/BaseEntity.java
index 06bfb320..e8219cd5 100644
--- a/management-api/src/main/java/org/openziti/management/model/BaseEntity.java
+++ b/management-api/src/main/java/org/openziti/management/model/BaseEntity.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class BaseEntity {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/CaCreate.java b/management-api/src/main/java/org/openziti/management/model/CaCreate.java
index a6e1310b..b8289d8b 100644
--- a/management-api/src/main/java/org/openziti/management/model/CaCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/CaCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CaCreate {
public static final String JSON_PROPERTY_CERT_PEM = "certPem";
diff --git a/management-api/src/main/java/org/openziti/management/model/CaDetail.java b/management-api/src/main/java/org/openziti/management/model/CaDetail.java
index 35f51164..24b99b9f 100644
--- a/management-api/src/main/java/org/openziti/management/model/CaDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/CaDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -48,7 +48,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CaDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/CaPatch.java b/management-api/src/main/java/org/openziti/management/model/CaPatch.java
index dbb27147..4be90a94 100644
--- a/management-api/src/main/java/org/openziti/management/model/CaPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/CaPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CaPatch {
public static final String JSON_PROPERTY_EXTERNAL_ID_CLAIM = "externalIdClaim";
diff --git a/management-api/src/main/java/org/openziti/management/model/CaUpdate.java b/management-api/src/main/java/org/openziti/management/model/CaUpdate.java
index da3bf723..09cc15a3 100644
--- a/management-api/src/main/java/org/openziti/management/model/CaUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/CaUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CaUpdate {
public static final String JSON_PROPERTY_EXTERNAL_ID_CLAIM = "externalIdClaim";
diff --git a/management-api/src/main/java/org/openziti/management/model/Capabilities.java b/management-api/src/main/java/org/openziti/management/model/Capabilities.java
index d4b73392..ade3c111 100644
--- a/management-api/src/main/java/org/openziti/management/model/Capabilities.java
+++ b/management-api/src/main/java/org/openziti/management/model/Capabilities.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/CommonEdgeRouterProperties.java b/management-api/src/main/java/org/openziti/management/model/CommonEdgeRouterProperties.java
index 0e5d7ef9..a87f92ac 100644
--- a/management-api/src/main/java/org/openziti/management/model/CommonEdgeRouterProperties.java
+++ b/management-api/src/main/java/org/openziti/management/model/CommonEdgeRouterProperties.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CommonEdgeRouterProperties {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigCreate.java b/management-api/src/main/java/org/openziti/management/model/ConfigCreate.java
index 2ec95ae3..bc97363b 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigCreate {
public static final String JSON_PROPERTY_CONFIG_TYPE_ID = "configTypeId";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigDetail.java b/management-api/src/main/java/org/openziti/management/model/ConfigDetail.java
index a47b5429..5beddef6 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigPatch.java b/management-api/src/main/java/org/openziti/management/model/ConfigPatch.java
index f2dac934..6478c3f3 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigPatch {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigTypeCreate.java b/management-api/src/main/java/org/openziti/management/model/ConfigTypeCreate.java
index 5f4bf7ed..9bd0b5ed 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigTypeCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigTypeCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigTypeCreate {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigTypeDetail.java b/management-api/src/main/java/org/openziti/management/model/ConfigTypeDetail.java
index 2a5b131a..79b5052c 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigTypeDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigTypeDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigTypeDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigTypePatch.java b/management-api/src/main/java/org/openziti/management/model/ConfigTypePatch.java
index bed0785a..932b2194 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigTypePatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigTypePatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigTypePatch {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigTypeUpdate.java b/management-api/src/main/java/org/openziti/management/model/ConfigTypeUpdate.java
index 96b188c6..76d30795 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigTypeUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigTypeUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigTypeUpdate {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/management-api/src/main/java/org/openziti/management/model/ConfigUpdate.java b/management-api/src/main/java/org/openziti/management/model/ConfigUpdate.java
index 223a11b4..24c8d879 100644
--- a/management-api/src/main/java/org/openziti/management/model/ConfigUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ConfigUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ConfigUpdate {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerDetail.java b/management-api/src/main/java/org/openziti/management/model/ControllerDetail.java
index d50f1755..12603cc5 100644
--- a/management-api/src/main/java/org/openziti/management/model/ControllerDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ControllerDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerSettingCreate.java b/management-api/src/main/java/org/openziti/management/model/ControllerSettingCreate.java
new file mode 100644
index 00000000..e3d3ac88
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerSettingCreate.java
@@ -0,0 +1,214 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.net.URLEncoder;
+import java.nio.charset.StandardCharsets;
+import java.util.Objects;
+import java.util.StringJoiner;
+import org.openziti.management.ApiClient;
+
+/** ControllerSettingCreate */
+@JsonPropertyOrder({
+ ControllerSettingCreate.JSON_PROPERTY_OIDC,
+ ControllerSettingCreate.JSON_PROPERTY_CONTROLLER_ID,
+ ControllerSettingCreate.JSON_PROPERTY_TAGS
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ControllerSettingCreate {
+ public static final String JSON_PROPERTY_OIDC = "oidc";
+ @javax.annotation.Nullable private ControllerSettingsOidc oidc;
+
+ public static final String JSON_PROPERTY_CONTROLLER_ID = "controllerId";
+ @javax.annotation.Nonnull private String controllerId;
+
+ public static final String JSON_PROPERTY_TAGS = "tags";
+ @javax.annotation.Nullable private Tags tags;
+
+ public ControllerSettingCreate() {}
+
+ public ControllerSettingCreate oidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ return this;
+ }
+
+ /**
+ * Get oidc
+ *
+ * @return oidc
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public ControllerSettingsOidc getOidc() {
+ return oidc;
+ }
+
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setOidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ }
+
+ public ControllerSettingCreate controllerId(@javax.annotation.Nonnull String controllerId) {
+ this.controllerId = controllerId;
+ return this;
+ }
+
+ /**
+ * Get controllerId
+ *
+ * @return controllerId
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_CONTROLLER_ID)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public String getControllerId() {
+ return controllerId;
+ }
+
+ @JsonProperty(JSON_PROPERTY_CONTROLLER_ID)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setControllerId(@javax.annotation.Nonnull String controllerId) {
+ this.controllerId = controllerId;
+ }
+
+ public ControllerSettingCreate tags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ return this;
+ }
+
+ /**
+ * Get tags
+ *
+ * @return tags
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public Tags getTags() {
+ return tags;
+ }
+
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setTags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ }
+
+ /** Return true if this controllerSettingCreate object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ControllerSettingCreate controllerSettingCreate = (ControllerSettingCreate) o;
+ return Objects.equals(this.oidc, controllerSettingCreate.oidc)
+ && Objects.equals(this.controllerId, controllerSettingCreate.controllerId)
+ && Objects.equals(this.tags, controllerSettingCreate.tags);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(oidc, controllerId, tags);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ControllerSettingCreate {\n");
+ sb.append(" oidc: ").append(toIndentedString(oidc)).append("\n");
+ sb.append(" controllerId: ").append(toIndentedString(controllerId)).append("\n");
+ sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `oidc` to the URL query string
+ if (getOidc() != null) {
+ joiner.add(getOidc().toUrlQueryString(prefix + "oidc" + suffix));
+ }
+
+ // add `controllerId` to the URL query string
+ if (getControllerId() != null) {
+ joiner.add(
+ String.format(
+ "%scontrollerId%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getControllerId()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `tags` to the URL query string
+ if (getTags() != null) {
+ joiner.add(getTags().toUrlQueryString(prefix + "tags" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerSettingDetail.java b/management-api/src/main/java/org/openziti/management/model/ControllerSettingDetail.java
new file mode 100644
index 00000000..f5ffabdb
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerSettingDetail.java
@@ -0,0 +1,361 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.net.URLEncoder;
+import java.nio.charset.StandardCharsets;
+import java.time.OffsetDateTime;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+import java.util.StringJoiner;
+import org.openziti.management.ApiClient;
+
+/** ControllerSettingDetail */
+@JsonPropertyOrder({
+ ControllerSettingDetail.JSON_PROPERTY_LINKS,
+ ControllerSettingDetail.JSON_PROPERTY_CREATED_AT,
+ ControllerSettingDetail.JSON_PROPERTY_ID,
+ ControllerSettingDetail.JSON_PROPERTY_TAGS,
+ ControllerSettingDetail.JSON_PROPERTY_UPDATED_AT,
+ ControllerSettingDetail.JSON_PROPERTY_OIDC
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ControllerSettingDetail {
+ public static final String JSON_PROPERTY_LINKS = "_links";
+ @javax.annotation.Nonnull private Map links = new HashMap<>();
+
+ public static final String JSON_PROPERTY_CREATED_AT = "createdAt";
+ @javax.annotation.Nonnull private OffsetDateTime createdAt;
+
+ public static final String JSON_PROPERTY_ID = "id";
+ @javax.annotation.Nonnull private String id;
+
+ public static final String JSON_PROPERTY_TAGS = "tags";
+ @javax.annotation.Nullable private Tags tags;
+
+ public static final String JSON_PROPERTY_UPDATED_AT = "updatedAt";
+ @javax.annotation.Nonnull private OffsetDateTime updatedAt;
+
+ public static final String JSON_PROPERTY_OIDC = "oidc";
+ @javax.annotation.Nullable private ControllerSettingsOidc oidc;
+
+ public ControllerSettingDetail() {}
+
+ public ControllerSettingDetail links(@javax.annotation.Nonnull Map links) {
+ this.links = links;
+ return this;
+ }
+
+ public ControllerSettingDetail putLinksItem(String key, Link linksItem) {
+ if (this.links == null) {
+ this.links = new HashMap<>();
+ }
+ this.links.put(key, linksItem);
+ return this;
+ }
+
+ /**
+ * A map of named links
+ *
+ * @return links
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_LINKS)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public Map getLinks() {
+ return links;
+ }
+
+ @JsonProperty(JSON_PROPERTY_LINKS)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setLinks(@javax.annotation.Nonnull Map links) {
+ this.links = links;
+ }
+
+ public ControllerSettingDetail createdAt(@javax.annotation.Nonnull OffsetDateTime createdAt) {
+ this.createdAt = createdAt;
+ return this;
+ }
+
+ /**
+ * Get createdAt
+ *
+ * @return createdAt
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_CREATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public OffsetDateTime getCreatedAt() {
+ return createdAt;
+ }
+
+ @JsonProperty(JSON_PROPERTY_CREATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) {
+ this.createdAt = createdAt;
+ }
+
+ public ControllerSettingDetail id(@javax.annotation.Nonnull String id) {
+ this.id = id;
+ return this;
+ }
+
+ /**
+ * Get id
+ *
+ * @return id
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_ID)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public String getId() {
+ return id;
+ }
+
+ @JsonProperty(JSON_PROPERTY_ID)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setId(@javax.annotation.Nonnull String id) {
+ this.id = id;
+ }
+
+ public ControllerSettingDetail tags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ return this;
+ }
+
+ /**
+ * Get tags
+ *
+ * @return tags
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public Tags getTags() {
+ return tags;
+ }
+
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setTags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ }
+
+ public ControllerSettingDetail updatedAt(@javax.annotation.Nonnull OffsetDateTime updatedAt) {
+ this.updatedAt = updatedAt;
+ return this;
+ }
+
+ /**
+ * Get updatedAt
+ *
+ * @return updatedAt
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_UPDATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public OffsetDateTime getUpdatedAt() {
+ return updatedAt;
+ }
+
+ @JsonProperty(JSON_PROPERTY_UPDATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setUpdatedAt(@javax.annotation.Nonnull OffsetDateTime updatedAt) {
+ this.updatedAt = updatedAt;
+ }
+
+ public ControllerSettingDetail oidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ return this;
+ }
+
+ /**
+ * Get oidc
+ *
+ * @return oidc
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public ControllerSettingsOidc getOidc() {
+ return oidc;
+ }
+
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setOidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ }
+
+ /** Return true if this controllerSettingDetail object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ControllerSettingDetail controllerSettingDetail = (ControllerSettingDetail) o;
+ return Objects.equals(this.links, controllerSettingDetail.links)
+ && Objects.equals(this.createdAt, controllerSettingDetail.createdAt)
+ && Objects.equals(this.id, controllerSettingDetail.id)
+ && Objects.equals(this.tags, controllerSettingDetail.tags)
+ && Objects.equals(this.updatedAt, controllerSettingDetail.updatedAt)
+ && Objects.equals(this.oidc, controllerSettingDetail.oidc);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(links, createdAt, id, tags, updatedAt, oidc);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ControllerSettingDetail {\n");
+ sb.append(" links: ").append(toIndentedString(links)).append("\n");
+ sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
+ sb.append(" id: ").append(toIndentedString(id)).append("\n");
+ sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
+ sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
+ sb.append(" oidc: ").append(toIndentedString(oidc)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `_links` to the URL query string
+ if (getLinks() != null) {
+ for (String _key : getLinks().keySet()) {
+ if (getLinks().get(_key) != null) {
+ joiner.add(
+ getLinks()
+ .get(_key)
+ .toUrlQueryString(
+ String.format(
+ "%s_links%s%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s",
+ containerPrefix,
+ _key,
+ containerSuffix))));
+ }
+ }
+ }
+
+ // add `createdAt` to the URL query string
+ if (getCreatedAt() != null) {
+ joiner.add(
+ String.format(
+ "%screatedAt%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getCreatedAt()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `id` to the URL query string
+ if (getId() != null) {
+ joiner.add(
+ String.format(
+ "%sid%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getId()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `tags` to the URL query string
+ if (getTags() != null) {
+ joiner.add(getTags().toUrlQueryString(prefix + "tags" + suffix));
+ }
+
+ // add `updatedAt` to the URL query string
+ if (getUpdatedAt() != null) {
+ joiner.add(
+ String.format(
+ "%supdatedAt%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getUpdatedAt()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `oidc` to the URL query string
+ if (getOidc() != null) {
+ joiner.add(getOidc().toUrlQueryString(prefix + "oidc" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerSettingEffective.java b/management-api/src/main/java/org/openziti/management/model/ControllerSettingEffective.java
new file mode 100644
index 00000000..e85b6410
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerSettingEffective.java
@@ -0,0 +1,399 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.net.URLEncoder;
+import java.nio.charset.StandardCharsets;
+import java.time.OffsetDateTime;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+import java.util.StringJoiner;
+import org.openziti.management.ApiClient;
+
+/** ControllerSettingEffective */
+@JsonPropertyOrder({
+ ControllerSettingEffective.JSON_PROPERTY_LINKS,
+ ControllerSettingEffective.JSON_PROPERTY_CREATED_AT,
+ ControllerSettingEffective.JSON_PROPERTY_ID,
+ ControllerSettingEffective.JSON_PROPERTY_TAGS,
+ ControllerSettingEffective.JSON_PROPERTY_UPDATED_AT,
+ ControllerSettingEffective.JSON_PROPERTY_EFFECTIVE,
+ ControllerSettingEffective.JSON_PROPERTY_INSTANCE
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ControllerSettingEffective {
+ public static final String JSON_PROPERTY_LINKS = "_links";
+ @javax.annotation.Nonnull private Map links = new HashMap<>();
+
+ public static final String JSON_PROPERTY_CREATED_AT = "createdAt";
+ @javax.annotation.Nonnull private OffsetDateTime createdAt;
+
+ public static final String JSON_PROPERTY_ID = "id";
+ @javax.annotation.Nonnull private String id;
+
+ public static final String JSON_PROPERTY_TAGS = "tags";
+ @javax.annotation.Nullable private Tags tags;
+
+ public static final String JSON_PROPERTY_UPDATED_AT = "updatedAt";
+ @javax.annotation.Nonnull private OffsetDateTime updatedAt;
+
+ public static final String JSON_PROPERTY_EFFECTIVE = "effective";
+ @javax.annotation.Nullable private ControllerSettings effective;
+
+ public static final String JSON_PROPERTY_INSTANCE = "instance";
+ @javax.annotation.Nullable private ControllerSettings instance;
+
+ public ControllerSettingEffective() {}
+
+ public ControllerSettingEffective links(@javax.annotation.Nonnull Map links) {
+ this.links = links;
+ return this;
+ }
+
+ public ControllerSettingEffective putLinksItem(String key, Link linksItem) {
+ if (this.links == null) {
+ this.links = new HashMap<>();
+ }
+ this.links.put(key, linksItem);
+ return this;
+ }
+
+ /**
+ * A map of named links
+ *
+ * @return links
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_LINKS)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public Map getLinks() {
+ return links;
+ }
+
+ @JsonProperty(JSON_PROPERTY_LINKS)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setLinks(@javax.annotation.Nonnull Map links) {
+ this.links = links;
+ }
+
+ public ControllerSettingEffective createdAt(
+ @javax.annotation.Nonnull OffsetDateTime createdAt) {
+ this.createdAt = createdAt;
+ return this;
+ }
+
+ /**
+ * Get createdAt
+ *
+ * @return createdAt
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_CREATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public OffsetDateTime getCreatedAt() {
+ return createdAt;
+ }
+
+ @JsonProperty(JSON_PROPERTY_CREATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setCreatedAt(@javax.annotation.Nonnull OffsetDateTime createdAt) {
+ this.createdAt = createdAt;
+ }
+
+ public ControllerSettingEffective id(@javax.annotation.Nonnull String id) {
+ this.id = id;
+ return this;
+ }
+
+ /**
+ * Get id
+ *
+ * @return id
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_ID)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public String getId() {
+ return id;
+ }
+
+ @JsonProperty(JSON_PROPERTY_ID)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setId(@javax.annotation.Nonnull String id) {
+ this.id = id;
+ }
+
+ public ControllerSettingEffective tags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ return this;
+ }
+
+ /**
+ * Get tags
+ *
+ * @return tags
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public Tags getTags() {
+ return tags;
+ }
+
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setTags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ }
+
+ public ControllerSettingEffective updatedAt(
+ @javax.annotation.Nonnull OffsetDateTime updatedAt) {
+ this.updatedAt = updatedAt;
+ return this;
+ }
+
+ /**
+ * Get updatedAt
+ *
+ * @return updatedAt
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_UPDATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public OffsetDateTime getUpdatedAt() {
+ return updatedAt;
+ }
+
+ @JsonProperty(JSON_PROPERTY_UPDATED_AT)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setUpdatedAt(@javax.annotation.Nonnull OffsetDateTime updatedAt) {
+ this.updatedAt = updatedAt;
+ }
+
+ public ControllerSettingEffective effective(
+ @javax.annotation.Nullable ControllerSettings effective) {
+ this.effective = effective;
+ return this;
+ }
+
+ /**
+ * Get effective
+ *
+ * @return effective
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_EFFECTIVE)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public ControllerSettings getEffective() {
+ return effective;
+ }
+
+ @JsonProperty(JSON_PROPERTY_EFFECTIVE)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setEffective(@javax.annotation.Nullable ControllerSettings effective) {
+ this.effective = effective;
+ }
+
+ public ControllerSettingEffective instance(
+ @javax.annotation.Nullable ControllerSettings instance) {
+ this.instance = instance;
+ return this;
+ }
+
+ /**
+ * Get instance
+ *
+ * @return instance
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_INSTANCE)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public ControllerSettings getInstance() {
+ return instance;
+ }
+
+ @JsonProperty(JSON_PROPERTY_INSTANCE)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setInstance(@javax.annotation.Nullable ControllerSettings instance) {
+ this.instance = instance;
+ }
+
+ /** Return true if this controllerSettingEffective object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ControllerSettingEffective controllerSettingEffective = (ControllerSettingEffective) o;
+ return Objects.equals(this.links, controllerSettingEffective.links)
+ && Objects.equals(this.createdAt, controllerSettingEffective.createdAt)
+ && Objects.equals(this.id, controllerSettingEffective.id)
+ && Objects.equals(this.tags, controllerSettingEffective.tags)
+ && Objects.equals(this.updatedAt, controllerSettingEffective.updatedAt)
+ && Objects.equals(this.effective, controllerSettingEffective.effective)
+ && Objects.equals(this.instance, controllerSettingEffective.instance);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(links, createdAt, id, tags, updatedAt, effective, instance);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ControllerSettingEffective {\n");
+ sb.append(" links: ").append(toIndentedString(links)).append("\n");
+ sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
+ sb.append(" id: ").append(toIndentedString(id)).append("\n");
+ sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
+ sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
+ sb.append(" effective: ").append(toIndentedString(effective)).append("\n");
+ sb.append(" instance: ").append(toIndentedString(instance)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `_links` to the URL query string
+ if (getLinks() != null) {
+ for (String _key : getLinks().keySet()) {
+ if (getLinks().get(_key) != null) {
+ joiner.add(
+ getLinks()
+ .get(_key)
+ .toUrlQueryString(
+ String.format(
+ "%s_links%s%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s",
+ containerPrefix,
+ _key,
+ containerSuffix))));
+ }
+ }
+ }
+
+ // add `createdAt` to the URL query string
+ if (getCreatedAt() != null) {
+ joiner.add(
+ String.format(
+ "%screatedAt%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getCreatedAt()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `id` to the URL query string
+ if (getId() != null) {
+ joiner.add(
+ String.format(
+ "%sid%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getId()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `tags` to the URL query string
+ if (getTags() != null) {
+ joiner.add(getTags().toUrlQueryString(prefix + "tags" + suffix));
+ }
+
+ // add `updatedAt` to the URL query string
+ if (getUpdatedAt() != null) {
+ joiner.add(
+ String.format(
+ "%supdatedAt%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ ApiClient.valueToString(getUpdatedAt()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
+ // add `effective` to the URL query string
+ if (getEffective() != null) {
+ joiner.add(getEffective().toUrlQueryString(prefix + "effective" + suffix));
+ }
+
+ // add `instance` to the URL query string
+ if (getInstance() != null) {
+ joiner.add(getInstance().toUrlQueryString(prefix + "instance" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerSettingPatch.java b/management-api/src/main/java/org/openziti/management/model/ControllerSettingPatch.java
new file mode 100644
index 00000000..6360e672
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerSettingPatch.java
@@ -0,0 +1,169 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.Objects;
+import java.util.StringJoiner;
+
+/** ControllerSettingPatch */
+@JsonPropertyOrder({
+ ControllerSettingPatch.JSON_PROPERTY_OIDC,
+ ControllerSettingPatch.JSON_PROPERTY_TAGS
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ControllerSettingPatch {
+ public static final String JSON_PROPERTY_OIDC = "oidc";
+ @javax.annotation.Nullable private ControllerSettingsOidc oidc;
+
+ public static final String JSON_PROPERTY_TAGS = "tags";
+ @javax.annotation.Nullable private Tags tags;
+
+ public ControllerSettingPatch() {}
+
+ public ControllerSettingPatch oidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ return this;
+ }
+
+ /**
+ * Get oidc
+ *
+ * @return oidc
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public ControllerSettingsOidc getOidc() {
+ return oidc;
+ }
+
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setOidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ }
+
+ public ControllerSettingPatch tags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ return this;
+ }
+
+ /**
+ * Get tags
+ *
+ * @return tags
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public Tags getTags() {
+ return tags;
+ }
+
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setTags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ }
+
+ /** Return true if this controllerSettingPatch object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ControllerSettingPatch controllerSettingPatch = (ControllerSettingPatch) o;
+ return Objects.equals(this.oidc, controllerSettingPatch.oidc)
+ && Objects.equals(this.tags, controllerSettingPatch.tags);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(oidc, tags);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ControllerSettingPatch {\n");
+ sb.append(" oidc: ").append(toIndentedString(oidc)).append("\n");
+ sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `oidc` to the URL query string
+ if (getOidc() != null) {
+ joiner.add(getOidc().toUrlQueryString(prefix + "oidc" + suffix));
+ }
+
+ // add `tags` to the URL query string
+ if (getTags() != null) {
+ joiner.add(getTags().toUrlQueryString(prefix + "tags" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerSettingUpdate.java b/management-api/src/main/java/org/openziti/management/model/ControllerSettingUpdate.java
new file mode 100644
index 00000000..fefbcd1a
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerSettingUpdate.java
@@ -0,0 +1,169 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.Objects;
+import java.util.StringJoiner;
+
+/** ControllerSettingUpdate */
+@JsonPropertyOrder({
+ ControllerSettingUpdate.JSON_PROPERTY_OIDC,
+ ControllerSettingUpdate.JSON_PROPERTY_TAGS
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ControllerSettingUpdate {
+ public static final String JSON_PROPERTY_OIDC = "oidc";
+ @javax.annotation.Nullable private ControllerSettingsOidc oidc;
+
+ public static final String JSON_PROPERTY_TAGS = "tags";
+ @javax.annotation.Nullable private Tags tags;
+
+ public ControllerSettingUpdate() {}
+
+ public ControllerSettingUpdate oidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ return this;
+ }
+
+ /**
+ * Get oidc
+ *
+ * @return oidc
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public ControllerSettingsOidc getOidc() {
+ return oidc;
+ }
+
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setOidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ }
+
+ public ControllerSettingUpdate tags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ return this;
+ }
+
+ /**
+ * Get tags
+ *
+ * @return tags
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public Tags getTags() {
+ return tags;
+ }
+
+ @JsonProperty(JSON_PROPERTY_TAGS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setTags(@javax.annotation.Nullable Tags tags) {
+ this.tags = tags;
+ }
+
+ /** Return true if this controllerSettingUpdate object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ControllerSettingUpdate controllerSettingUpdate = (ControllerSettingUpdate) o;
+ return Objects.equals(this.oidc, controllerSettingUpdate.oidc)
+ && Objects.equals(this.tags, controllerSettingUpdate.tags);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(oidc, tags);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ControllerSettingUpdate {\n");
+ sb.append(" oidc: ").append(toIndentedString(oidc)).append("\n");
+ sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `oidc` to the URL query string
+ if (getOidc() != null) {
+ joiner.add(getOidc().toUrlQueryString(prefix + "oidc" + suffix));
+ }
+
+ // add `tags` to the URL query string
+ if (getTags() != null) {
+ joiner.add(getTags().toUrlQueryString(prefix + "tags" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerSettings.java b/management-api/src/main/java/org/openziti/management/model/ControllerSettings.java
new file mode 100644
index 00000000..3a805b5b
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerSettings.java
@@ -0,0 +1,133 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.Objects;
+import java.util.StringJoiner;
+
+/** ControllerSettings */
+@JsonPropertyOrder({ControllerSettings.JSON_PROPERTY_OIDC})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ControllerSettings {
+ public static final String JSON_PROPERTY_OIDC = "oidc";
+ @javax.annotation.Nullable private ControllerSettingsOidc oidc;
+
+ public ControllerSettings() {}
+
+ public ControllerSettings oidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ return this;
+ }
+
+ /**
+ * Get oidc
+ *
+ * @return oidc
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public ControllerSettingsOidc getOidc() {
+ return oidc;
+ }
+
+ @JsonProperty(JSON_PROPERTY_OIDC)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setOidc(@javax.annotation.Nullable ControllerSettingsOidc oidc) {
+ this.oidc = oidc;
+ }
+
+ /** Return true if this controllerSettings object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ControllerSettings controllerSettings = (ControllerSettings) o;
+ return Objects.equals(this.oidc, controllerSettings.oidc);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(oidc);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ControllerSettings {\n");
+ sb.append(" oidc: ").append(toIndentedString(oidc)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `oidc` to the URL query string
+ if (getOidc() != null) {
+ joiner.add(getOidc().toUrlQueryString(prefix + "oidc" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/ControllerSettingsOidc.java b/management-api/src/main/java/org/openziti/management/model/ControllerSettingsOidc.java
new file mode 100644
index 00000000..2f628171
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ControllerSettingsOidc.java
@@ -0,0 +1,220 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.net.URLEncoder;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+import java.util.StringJoiner;
+import org.openziti.management.ApiClient;
+
+/** ControllerSettingsOidc */
+@JsonPropertyOrder({
+ ControllerSettingsOidc.JSON_PROPERTY_POST_LOGOUT_URIS,
+ ControllerSettingsOidc.JSON_PROPERTY_REDIRECT_URIS
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ControllerSettingsOidc {
+ public static final String JSON_PROPERTY_POST_LOGOUT_URIS = "postLogoutUris";
+ @javax.annotation.Nullable private List postLogoutUris = new ArrayList<>();
+
+ public static final String JSON_PROPERTY_REDIRECT_URIS = "redirectUris";
+ @javax.annotation.Nullable private List redirectUris = new ArrayList<>();
+
+ public ControllerSettingsOidc() {}
+
+ public ControllerSettingsOidc postLogoutUris(
+ @javax.annotation.Nullable List postLogoutUris) {
+ this.postLogoutUris = postLogoutUris;
+ return this;
+ }
+
+ public ControllerSettingsOidc addPostLogoutUrisItem(String postLogoutUrisItem) {
+ if (this.postLogoutUris == null) {
+ this.postLogoutUris = new ArrayList<>();
+ }
+ this.postLogoutUris.add(postLogoutUrisItem);
+ return this;
+ }
+
+ /**
+ * Get postLogoutUris
+ *
+ * @return postLogoutUris
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_POST_LOGOUT_URIS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public List getPostLogoutUris() {
+ return postLogoutUris;
+ }
+
+ @JsonProperty(JSON_PROPERTY_POST_LOGOUT_URIS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setPostLogoutUris(@javax.annotation.Nullable List postLogoutUris) {
+ this.postLogoutUris = postLogoutUris;
+ }
+
+ public ControllerSettingsOidc redirectUris(
+ @javax.annotation.Nullable List redirectUris) {
+ this.redirectUris = redirectUris;
+ return this;
+ }
+
+ public ControllerSettingsOidc addRedirectUrisItem(String redirectUrisItem) {
+ if (this.redirectUris == null) {
+ this.redirectUris = new ArrayList<>();
+ }
+ this.redirectUris.add(redirectUrisItem);
+ return this;
+ }
+
+ /**
+ * Get redirectUris
+ *
+ * @return redirectUris
+ */
+ @javax.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_REDIRECT_URIS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public List getRedirectUris() {
+ return redirectUris;
+ }
+
+ @JsonProperty(JSON_PROPERTY_REDIRECT_URIS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setRedirectUris(@javax.annotation.Nullable List redirectUris) {
+ this.redirectUris = redirectUris;
+ }
+
+ /** Return true if this controllerSettings_oidc object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ControllerSettingsOidc controllerSettingsOidc = (ControllerSettingsOidc) o;
+ return Objects.equals(this.postLogoutUris, controllerSettingsOidc.postLogoutUris)
+ && Objects.equals(this.redirectUris, controllerSettingsOidc.redirectUris);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(postLogoutUris, redirectUris);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ControllerSettingsOidc {\n");
+ sb.append(" postLogoutUris: ").append(toIndentedString(postLogoutUris)).append("\n");
+ sb.append(" redirectUris: ").append(toIndentedString(redirectUris)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `postLogoutUris` to the URL query string
+ if (getPostLogoutUris() != null) {
+ for (int i = 0; i < getPostLogoutUris().size(); i++) {
+ joiner.add(
+ String.format(
+ "%spostLogoutUris%s%s=%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s", containerPrefix, i, containerSuffix),
+ URLEncoder.encode(
+ ApiClient.valueToString(getPostLogoutUris().get(i)),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+ }
+
+ // add `redirectUris` to the URL query string
+ if (getRedirectUris() != null) {
+ for (int i = 0; i < getRedirectUris().size(); i++) {
+ joiner.add(
+ String.format(
+ "%sredirectUris%s%s=%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s", containerPrefix, i, containerSuffix),
+ URLEncoder.encode(
+ ApiClient.valueToString(getRedirectUris().get(i)),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/CreateEnvelope.java b/management-api/src/main/java/org/openziti/management/model/CreateEnvelope.java
index a2cf8579..4aaf9bcd 100644
--- a/management-api/src/main/java/org/openziti/management/model/CreateEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/CreateEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({CreateEnvelope.JSON_PROPERTY_DATA, CreateEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CreateEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/CreateLocation.java b/management-api/src/main/java/org/openziti/management/model/CreateLocation.java
index 40f1c2fa..0c186c5f 100644
--- a/management-api/src/main/java/org/openziti/management/model/CreateLocation.java
+++ b/management-api/src/main/java/org/openziti/management/model/CreateLocation.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
@JsonPropertyOrder({CreateLocation.JSON_PROPERTY_LINKS, CreateLocation.JSON_PROPERTY_ID})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CreateLocation {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetail.java b/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetail.java
index 6d2bf0b4..5f52ba79 100644
--- a/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -50,7 +50,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetailEnvelope.java b/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetailEnvelope.java
index 8ce66464..b2aa66d1 100644
--- a/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetailEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/CurrentApiSessionDetailEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentApiSessionDetailEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/CurrentIdentityDetailEnvelope.java b/management-api/src/main/java/org/openziti/management/model/CurrentIdentityDetailEnvelope.java
index e197af45..9fea2f59 100644
--- a/management-api/src/main/java/org/openziti/management/model/CurrentIdentityDetailEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/CurrentIdentityDetailEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class CurrentIdentityDetailEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetail.java b/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetail.java
index 6ad9b048..5139c1bb 100644
--- a/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DataIntegrityCheckDetail {
public static final String JSON_PROPERTY_DESCRIPTION = "description";
diff --git a/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetails.java b/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetails.java
index ae8c472e..7073c148 100644
--- a/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetails.java
+++ b/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckDetails.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DataIntegrityCheckDetails {
public static final String JSON_PROPERTY_END_TIME = "endTime";
diff --git a/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckResultEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckResultEnvelope.java
index 7253ce34..9326d799 100644
--- a/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckResultEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DataIntegrityCheckResultEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DataIntegrityCheckResultEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailApiSessionEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailApiSessionEnvelope.java
index 639bee36..c889063f 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailApiSessionEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailApiSessionEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailApiSessionEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailAuthPolicyEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailAuthPolicyEnvelope.java
index 7fbdb16d..b70f9cfd 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailAuthPolicyEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailAuthPolicyEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailAuthPolicyEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailAuthenticatorEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailAuthenticatorEnvelope.java
index 32ce325f..384b5c66 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailAuthenticatorEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailAuthenticatorEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailAuthenticatorEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailCaEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailCaEnvelope.java
index 257a91da..a99fb532 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailCaEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailCaEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({DetailCaEnvelope.JSON_PROPERTY_DATA, DetailCaEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailCaEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailConfigEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailConfigEnvelope.java
index a429c156..bb955724 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailConfigEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailConfigEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailConfigEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailConfigTypeEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailConfigTypeEnvelope.java
index f9148f8d..6b1a3ef2 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailConfigTypeEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailConfigTypeEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailConfigTypeEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailControllerSettingEffectiveEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailControllerSettingEffectiveEnvelope.java
new file mode 100644
index 00000000..02f8ca46
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/DetailControllerSettingEffectiveEnvelope.java
@@ -0,0 +1,171 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.Objects;
+import java.util.StringJoiner;
+
+/** DetailControllerSettingEffectiveEnvelope */
+@JsonPropertyOrder({
+ DetailControllerSettingEffectiveEnvelope.JSON_PROPERTY_DATA,
+ DetailControllerSettingEffectiveEnvelope.JSON_PROPERTY_META
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class DetailControllerSettingEffectiveEnvelope {
+ public static final String JSON_PROPERTY_DATA = "data";
+ @javax.annotation.Nonnull private ControllerSettingEffective data;
+
+ public static final String JSON_PROPERTY_META = "meta";
+ @javax.annotation.Nonnull private Meta meta;
+
+ public DetailControllerSettingEffectiveEnvelope() {}
+
+ public DetailControllerSettingEffectiveEnvelope data(
+ @javax.annotation.Nonnull ControllerSettingEffective data) {
+ this.data = data;
+ return this;
+ }
+
+ /**
+ * Get data
+ *
+ * @return data
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_DATA)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public ControllerSettingEffective getData() {
+ return data;
+ }
+
+ @JsonProperty(JSON_PROPERTY_DATA)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setData(@javax.annotation.Nonnull ControllerSettingEffective data) {
+ this.data = data;
+ }
+
+ public DetailControllerSettingEffectiveEnvelope meta(@javax.annotation.Nonnull Meta meta) {
+ this.meta = meta;
+ return this;
+ }
+
+ /**
+ * Get meta
+ *
+ * @return meta
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_META)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public Meta getMeta() {
+ return meta;
+ }
+
+ @JsonProperty(JSON_PROPERTY_META)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setMeta(@javax.annotation.Nonnull Meta meta) {
+ this.meta = meta;
+ }
+
+ /** Return true if this detailControllerSettingEffectiveEnvelope object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ DetailControllerSettingEffectiveEnvelope detailControllerSettingEffectiveEnvelope =
+ (DetailControllerSettingEffectiveEnvelope) o;
+ return Objects.equals(this.data, detailControllerSettingEffectiveEnvelope.data)
+ && Objects.equals(this.meta, detailControllerSettingEffectiveEnvelope.meta);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(data, meta);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DetailControllerSettingEffectiveEnvelope {\n");
+ sb.append(" data: ").append(toIndentedString(data)).append("\n");
+ sb.append(" meta: ").append(toIndentedString(meta)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `data` to the URL query string
+ if (getData() != null) {
+ joiner.add(getData().toUrlQueryString(prefix + "data" + suffix));
+ }
+
+ // add `meta` to the URL query string
+ if (getMeta() != null) {
+ joiner.add(getMeta().toUrlQueryString(prefix + "meta" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailControllerSettingEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailControllerSettingEnvelope.java
new file mode 100644
index 00000000..2e4289d8
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/DetailControllerSettingEnvelope.java
@@ -0,0 +1,171 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.Objects;
+import java.util.StringJoiner;
+
+/** DetailControllerSettingEnvelope */
+@JsonPropertyOrder({
+ DetailControllerSettingEnvelope.JSON_PROPERTY_DATA,
+ DetailControllerSettingEnvelope.JSON_PROPERTY_META
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class DetailControllerSettingEnvelope {
+ public static final String JSON_PROPERTY_DATA = "data";
+ @javax.annotation.Nonnull private ControllerSettingDetail data;
+
+ public static final String JSON_PROPERTY_META = "meta";
+ @javax.annotation.Nonnull private Meta meta;
+
+ public DetailControllerSettingEnvelope() {}
+
+ public DetailControllerSettingEnvelope data(
+ @javax.annotation.Nonnull ControllerSettingDetail data) {
+ this.data = data;
+ return this;
+ }
+
+ /**
+ * Get data
+ *
+ * @return data
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_DATA)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public ControllerSettingDetail getData() {
+ return data;
+ }
+
+ @JsonProperty(JSON_PROPERTY_DATA)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setData(@javax.annotation.Nonnull ControllerSettingDetail data) {
+ this.data = data;
+ }
+
+ public DetailControllerSettingEnvelope meta(@javax.annotation.Nonnull Meta meta) {
+ this.meta = meta;
+ return this;
+ }
+
+ /**
+ * Get meta
+ *
+ * @return meta
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_META)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public Meta getMeta() {
+ return meta;
+ }
+
+ @JsonProperty(JSON_PROPERTY_META)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setMeta(@javax.annotation.Nonnull Meta meta) {
+ this.meta = meta;
+ }
+
+ /** Return true if this detailControllerSettingEnvelope object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ DetailControllerSettingEnvelope detailControllerSettingEnvelope =
+ (DetailControllerSettingEnvelope) o;
+ return Objects.equals(this.data, detailControllerSettingEnvelope.data)
+ && Objects.equals(this.meta, detailControllerSettingEnvelope.meta);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(data, meta);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DetailControllerSettingEnvelope {\n");
+ sb.append(" data: ").append(toIndentedString(data)).append("\n");
+ sb.append(" meta: ").append(toIndentedString(meta)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `data` to the URL query string
+ if (getData() != null) {
+ joiner.add(getData().toUrlQueryString(prefix + "data" + suffix));
+ }
+
+ // add `meta` to the URL query string
+ if (getMeta() != null) {
+ joiner.add(getMeta().toUrlQueryString(prefix + "meta" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailEdgeRouterPolicyEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailEdgeRouterPolicyEnvelope.java
index 9e299857..45d61daf 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailEdgeRouterPolicyEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailEdgeRouterPolicyEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailEdgeRouterPolicyEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailEnrollmentEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailEnrollmentEnvelope.java
index cb727919..5f3c633e 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailEnrollmentEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailEnrollmentEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailEnrollmentEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailExternalJwtSignerEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailExternalJwtSignerEnvelope.java
index 6c78303c..570752b8 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailExternalJwtSignerEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailExternalJwtSignerEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailExternalJwtSignerEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailIdentityEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailIdentityEnvelope.java
index 2e1855fb..2435f847 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailIdentityEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailIdentityEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailIdentityEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailIdentityTypeEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailIdentityTypeEnvelope.java
index 3fb2d5b7..ae6c3e62 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailIdentityTypeEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailIdentityTypeEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailIdentityTypeEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailMfa.java b/management-api/src/main/java/org/openziti/management/model/DetailMfa.java
index a371d4a9..6432d07a 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailMfa.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailMfa.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfa {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailMfaEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailMfaEnvelope.java
index d7bd0e7a..7d5233be 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailMfaEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailMfaEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({DetailMfaEnvelope.JSON_PROPERTY_DATA, DetailMfaEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfaEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodes.java b/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodes.java
index 5dc9c5f4..49bdc708 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodes.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodes.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfaRecoveryCodes {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodesEnvelope.java
index b669927c..322a9ed9 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailMfaRecoveryCodesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailMfaRecoveryCodesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckEnvelope.java
index ec604ea1..a34f35a1 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailPostureCheckEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckTypeEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckTypeEnvelope.java
index 77e4f88a..8d400150 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckTypeEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailPostureCheckTypeEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailPostureCheckTypeEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailRouterEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailRouterEnvelope.java
index 2139acb7..0f15309c 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailRouterEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailRouterEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailRouterEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailServiceEdgePolicyEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailServiceEdgePolicyEnvelope.java
index ca0eb752..37aa9987 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailServiceEdgePolicyEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailServiceEdgePolicyEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailServiceEdgePolicyEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailServiceEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailServiceEnvelope.java
index d7400165..d6182969 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailServiceEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailServiceEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailServiceEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailServicePolicyEnvelop.java b/management-api/src/main/java/org/openziti/management/model/DetailServicePolicyEnvelop.java
index 5f7e682c..1c66b8c2 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailServicePolicyEnvelop.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailServicePolicyEnvelop.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailServicePolicyEnvelop {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailSessionManagementEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailSessionManagementEnvelope.java
index 0e84fc5a..3acaa7b2 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailSessionManagementEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailSessionManagementEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailSessionManagementEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailSessionRoutePathEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailSessionRoutePathEnvelope.java
index acdac65f..9ced312e 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailSessionRoutePathEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailSessionRoutePathEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailSessionRoutePathEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailSpecBodyEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailSpecBodyEnvelope.java
index 7c62fbf0..cbaa7380 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailSpecBodyEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailSpecBodyEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailSpecBodyEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailSpecEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailSpecEnvelope.java
index d1a9011b..c035f2fb 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailSpecEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailSpecEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({DetailSpecEnvelope.JSON_PROPERTY_DATA, DetailSpecEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailSpecEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailTerminatorEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailTerminatorEnvelope.java
index 5cc3a7b4..24b60e6e 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailTerminatorEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailTerminatorEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailTerminatorEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DetailedEdgeRouterEnvelope.java b/management-api/src/main/java/org/openziti/management/model/DetailedEdgeRouterEnvelope.java
index c8d7c394..3293ad40 100644
--- a/management-api/src/main/java/org/openziti/management/model/DetailedEdgeRouterEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/DetailedEdgeRouterEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DetailedEdgeRouterEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/DialBind.java b/management-api/src/main/java/org/openziti/management/model/DialBind.java
index 8819d8fb..574e7e3e 100644
--- a/management-api/src/main/java/org/openziti/management/model/DialBind.java
+++ b/management-api/src/main/java/org/openziti/management/model/DialBind.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/DisableParams.java b/management-api/src/main/java/org/openziti/management/model/DisableParams.java
index e40e3986..adaf91a3 100644
--- a/management-api/src/main/java/org/openziti/management/model/DisableParams.java
+++ b/management-api/src/main/java/org/openziti/management/model/DisableParams.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({DisableParams.JSON_PROPERTY_DURATION_MINUTES})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class DisableParams {
public static final String JSON_PROPERTY_DURATION_MINUTES = "durationMinutes";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterCreate.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterCreate.java
index 827d12c7..49c43627 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterCreate {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterDetail.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterDetail.java
index 20438c85..b8e54f3f 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -60,7 +60,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPatch.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPatch.java
index a772b1e6..5b557afb 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterPatch {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyCreate.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyCreate.java
index 6c76aa9d..43a4d6b0 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterPolicyCreate {
public static final String JSON_PROPERTY_EDGE_ROUTER_ROLES = "edgeRouterRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyDetail.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyDetail.java
index 1b46d8e9..654333cd 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -43,7 +43,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterPolicyDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyPatch.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyPatch.java
index b69985d6..c3041f80 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterPolicyPatch {
public static final String JSON_PROPERTY_EDGE_ROUTER_ROLES = "edgeRouterRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyUpdate.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyUpdate.java
index be3d4d48..e6b509c7 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterPolicyUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterPolicyUpdate {
public static final String JSON_PROPERTY_EDGE_ROUTER_ROLES = "edgeRouterRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/EdgeRouterUpdate.java b/management-api/src/main/java/org/openziti/management/model/EdgeRouterUpdate.java
index 313476da..e3905ee4 100644
--- a/management-api/src/main/java/org/openziti/management/model/EdgeRouterUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/EdgeRouterUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EdgeRouterUpdate {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/Empty.java b/management-api/src/main/java/org/openziti/management/model/Empty.java
index 528d0bd1..5a7a6ed0 100644
--- a/management-api/src/main/java/org/openziti/management/model/Empty.java
+++ b/management-api/src/main/java/org/openziti/management/model/Empty.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({Empty.JSON_PROPERTY_DATA, Empty.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Empty {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/EnrollmentCreate.java b/management-api/src/main/java/org/openziti/management/model/EnrollmentCreate.java
index 889720a8..8483da56 100644
--- a/management-api/src/main/java/org/openziti/management/model/EnrollmentCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/EnrollmentCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollmentCreate {
public static final String JSON_PROPERTY_CA_ID = "caId";
diff --git a/management-api/src/main/java/org/openziti/management/model/EnrollmentDetail.java b/management-api/src/main/java/org/openziti/management/model/EnrollmentDetail.java
index d6996e4b..cb6732a4 100644
--- a/management-api/src/main/java/org/openziti/management/model/EnrollmentDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/EnrollmentDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -53,7 +53,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollmentDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/EnrollmentRefresh.java b/management-api/src/main/java/org/openziti/management/model/EnrollmentRefresh.java
index 9224dd6a..7fda7eae 100644
--- a/management-api/src/main/java/org/openziti/management/model/EnrollmentRefresh.java
+++ b/management-api/src/main/java/org/openziti/management/model/EnrollmentRefresh.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@JsonPropertyOrder({EnrollmentRefresh.JSON_PROPERTY_EXPIRES_AT})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnrollmentRefresh {
public static final String JSON_PROPERTY_EXPIRES_AT = "expiresAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/EntityRef.java b/management-api/src/main/java/org/openziti/management/model/EntityRef.java
index 2b2960d8..ec317459 100644
--- a/management-api/src/main/java/org/openziti/management/model/EntityRef.java
+++ b/management-api/src/main/java/org/openziti/management/model/EntityRef.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EntityRef {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/EnvInfo.java b/management-api/src/main/java/org/openziti/management/model/EnvInfo.java
index fbe6c435..a14915c8 100644
--- a/management-api/src/main/java/org/openziti/management/model/EnvInfo.java
+++ b/management-api/src/main/java/org/openziti/management/model/EnvInfo.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class EnvInfo {
public static final String JSON_PROPERTY_ARCH = "arch";
diff --git a/management-api/src/main/java/org/openziti/management/model/ExternalIdClaim.java b/management-api/src/main/java/org/openziti/management/model/ExternalIdClaim.java
index e0f5deaf..2e95df0e 100644
--- a/management-api/src/main/java/org/openziti/management/model/ExternalIdClaim.java
+++ b/management-api/src/main/java/org/openziti/management/model/ExternalIdClaim.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalIdClaim {
public static final String JSON_PROPERTY_INDEX = "index";
diff --git a/management-api/src/main/java/org/openziti/management/model/ExternalIdClaimPatch.java b/management-api/src/main/java/org/openziti/management/model/ExternalIdClaimPatch.java
index 769a06bf..4c693ed8 100644
--- a/management-api/src/main/java/org/openziti/management/model/ExternalIdClaimPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/ExternalIdClaimPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalIdClaimPatch {
public static final String JSON_PROPERTY_INDEX = "index";
diff --git a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerCreate.java b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerCreate.java
index 34844761..eb346b45 100644
--- a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -46,7 +46,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalJwtSignerCreate {
public static final String JSON_PROPERTY_AUDIENCE = "audience";
diff --git a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerDetail.java b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerDetail.java
index 0e4f7f7a..79b7af99 100644
--- a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -54,7 +54,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalJwtSignerDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerPatch.java b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerPatch.java
index f48b38d2..a45611aa 100644
--- a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -46,7 +46,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalJwtSignerPatch {
public static final String JSON_PROPERTY_AUDIENCE = "audience";
diff --git a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerUpdate.java b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerUpdate.java
index d42b9c70..6934d8c3 100644
--- a/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ExternalJwtSignerUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -46,7 +46,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ExternalJwtSignerUpdate {
public static final String JSON_PROPERTY_AUDIENCE = "audience";
diff --git a/management-api/src/main/java/org/openziti/management/model/FailedServiceRequest.java b/management-api/src/main/java/org/openziti/management/model/FailedServiceRequest.java
index bf983dd6..c331e246 100644
--- a/management-api/src/main/java/org/openziti/management/model/FailedServiceRequest.java
+++ b/management-api/src/main/java/org/openziti/management/model/FailedServiceRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class FailedServiceRequest {
public static final String JSON_PROPERTY_API_SESSION_ID = "apiSessionId";
diff --git a/management-api/src/main/java/org/openziti/management/model/FailedServiceRequestEnvelope.java b/management-api/src/main/java/org/openziti/management/model/FailedServiceRequestEnvelope.java
index a29bad97..65f9ca44 100644
--- a/management-api/src/main/java/org/openziti/management/model/FailedServiceRequestEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/FailedServiceRequestEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class FailedServiceRequestEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/GetIdentityPolicyAdviceEnvelope.java b/management-api/src/main/java/org/openziti/management/model/GetIdentityPolicyAdviceEnvelope.java
index b8c271df..9fba7a67 100644
--- a/management-api/src/main/java/org/openziti/management/model/GetIdentityPolicyAdviceEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/GetIdentityPolicyAdviceEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class GetIdentityPolicyAdviceEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticators.java b/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticators.java
index dae760c9..27ba0a83 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticators.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticators.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityAuthenticators {
public static final String JSON_PROPERTY_CERT = "cert";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsCert.java b/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsCert.java
index c62bb0fe..8dd4491c 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsCert.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsCert.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityAuthenticatorsCert {
public static final String JSON_PROPERTY_FINGERPRINT = "fingerprint";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsUpdb.java b/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsUpdb.java
index 1c8dca97..00ccf2a3 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsUpdb.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityAuthenticatorsUpdb.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityAuthenticatorsUpdb {
public static final String JSON_PROPERTY_ID = "id";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityCreate.java b/management-api/src/main/java/org/openziti/management/model/IdentityCreate.java
index 718e0443..762ecb57 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -46,7 +46,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityCreate {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityCreateEnrollment.java b/management-api/src/main/java/org/openziti/management/model/IdentityCreateEnrollment.java
index fc74317d..2692c981 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityCreateEnrollment.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityCreateEnrollment.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityCreateEnrollment {
public static final String JSON_PROPERTY_OTT = "ott";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityDetail.java b/management-api/src/main/java/org/openziti/management/model/IdentityDetail.java
index ef8856e5..c474ca35 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -66,7 +66,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityEnrollments.java b/management-api/src/main/java/org/openziti/management/model/IdentityEnrollments.java
index e716b1c7..dcc214c6 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityEnrollments.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityEnrollments.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityEnrollments {
public static final String JSON_PROPERTY_OTT = "ott";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOtt.java b/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOtt.java
index 6f22701d..6d95656e 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOtt.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOtt.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityEnrollmentsOtt {
public static final String JSON_PROPERTY_EXPIRES_AT = "expiresAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOttca.java b/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOttca.java
index e32049db..0226c02c 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOttca.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityEnrollmentsOttca.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityEnrollmentsOttca {
public static final String JSON_PROPERTY_CA = "ca";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityExtendCerts.java b/management-api/src/main/java/org/openziti/management/model/IdentityExtendCerts.java
index 9501db58..9835384a 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityExtendCerts.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityExtendCerts.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendCerts {
public static final String JSON_PROPERTY_CA = "ca";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentEnvelope.java b/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentEnvelope.java
index 9ed2da24..d64dad04 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendEnrollmentEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentRequest.java b/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentRequest.java
index b4acf059..40655468 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentRequest.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityExtendEnrollmentRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({IdentityExtendEnrollmentRequest.JSON_PROPERTY_CLIENT_CERT_CSR})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendEnrollmentRequest {
public static final String JSON_PROPERTY_CLIENT_CERT_CSR = "clientCertCsr";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityExtendValidateEnrollmentRequest.java b/management-api/src/main/java/org/openziti/management/model/IdentityExtendValidateEnrollmentRequest.java
index 4277900e..098f2438 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityExtendValidateEnrollmentRequest.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityExtendValidateEnrollmentRequest.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({IdentityExtendValidateEnrollmentRequest.JSON_PROPERTY_CLIENT_CERT})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityExtendValidateEnrollmentRequest {
public static final String JSON_PROPERTY_CLIENT_CERT = "clientCert";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityPatch.java b/management-api/src/main/java/org/openziti/management/model/IdentityPatch.java
index 2543f77b..b9d5b482 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityPatch {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityType.java b/management-api/src/main/java/org/openziti/management/model/IdentityType.java
index 092466f7..8dff31be 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityType.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityType.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityTypeDetail.java b/management-api/src/main/java/org/openziti/management/model/IdentityTypeDetail.java
index cdbc7973..36b09eb3 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityTypeDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityTypeDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityTypeDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/IdentityUpdate.java b/management-api/src/main/java/org/openziti/management/model/IdentityUpdate.java
index 9836e3d2..b4b43f35 100644
--- a/management-api/src/main/java/org/openziti/management/model/IdentityUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/IdentityUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class IdentityUpdate {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/Link.java b/management-api/src/main/java/org/openziti/management/model/Link.java
index 7e5883f7..3e198292 100644
--- a/management-api/src/main/java/org/openziti/management/model/Link.java
+++ b/management-api/src/main/java/org/openziti/management/model/Link.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@JsonPropertyOrder({Link.JSON_PROPERTY_COMMENT, Link.JSON_PROPERTY_HREF, Link.JSON_PROPERTY_METHOD})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Link {
public static final String JSON_PROPERTY_COMMENT = "comment";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListApiSessionsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListApiSessionsEnvelope.java
index b7e43edb..a5eb237e 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListApiSessionsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListApiSessionsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListApiSessionsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListAuthPoliciesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListAuthPoliciesEnvelope.java
index 437d5e82..a57ffc8b 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListAuthPoliciesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListAuthPoliciesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListAuthPoliciesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListAuthenticatorsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListAuthenticatorsEnvelope.java
index f0ce1200..d2b3ab4d 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListAuthenticatorsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListAuthenticatorsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListAuthenticatorsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListCasEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListCasEnvelope.java
index d54e277e..ba0da220 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListCasEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListCasEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({ListCasEnvelope.JSON_PROPERTY_DATA, ListCasEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListCasEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListConfigTypesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListConfigTypesEnvelope.java
index f00a5b23..bf3cdc95 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListConfigTypesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListConfigTypesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListConfigTypesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListConfigsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListConfigsEnvelope.java
index e2d07380..8ac21ad5 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListConfigsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListConfigsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({ListConfigsEnvelope.JSON_PROPERTY_DATA, ListConfigsEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListConfigsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListControllerSettingEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListControllerSettingEnvelope.java
new file mode 100644
index 00000000..39e5cff0
--- /dev/null
+++ b/management-api/src/main/java/org/openziti/management/model/ListControllerSettingEnvelope.java
@@ -0,0 +1,197 @@
+/*
+ * Ziti Edge Management
+ * OpenZiti Edge Management API
+ *
+ * The version of the OpenAPI document: 0.26.42
+ * Contact: help@openziti.org
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package org.openziti.management.model;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.net.URLEncoder;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+import java.util.StringJoiner;
+import org.openziti.management.ApiClient;
+
+/** ListControllerSettingEnvelope */
+@JsonPropertyOrder({
+ ListControllerSettingEnvelope.JSON_PROPERTY_DATA,
+ ListControllerSettingEnvelope.JSON_PROPERTY_META
+})
+@javax.annotation.Generated(
+ value = "org.openapitools.codegen.languages.JavaClientCodegen",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
+ comments = "Generator version: 7.11.0")
+public class ListControllerSettingEnvelope {
+ public static final String JSON_PROPERTY_DATA = "data";
+ @javax.annotation.Nonnull private List data = new ArrayList<>();
+
+ public static final String JSON_PROPERTY_META = "meta";
+ @javax.annotation.Nonnull private Meta meta;
+
+ public ListControllerSettingEnvelope() {}
+
+ public ListControllerSettingEnvelope data(@javax.annotation.Nonnull List data) {
+ this.data = data;
+ return this;
+ }
+
+ public ListControllerSettingEnvelope addDataItem(String dataItem) {
+ if (this.data == null) {
+ this.data = new ArrayList<>();
+ }
+ this.data.add(dataItem);
+ return this;
+ }
+
+ /**
+ * Get data
+ *
+ * @return data
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_DATA)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public List getData() {
+ return data;
+ }
+
+ @JsonProperty(JSON_PROPERTY_DATA)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setData(@javax.annotation.Nonnull List data) {
+ this.data = data;
+ }
+
+ public ListControllerSettingEnvelope meta(@javax.annotation.Nonnull Meta meta) {
+ this.meta = meta;
+ return this;
+ }
+
+ /**
+ * Get meta
+ *
+ * @return meta
+ */
+ @javax.annotation.Nonnull
+ @JsonProperty(JSON_PROPERTY_META)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public Meta getMeta() {
+ return meta;
+ }
+
+ @JsonProperty(JSON_PROPERTY_META)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public void setMeta(@javax.annotation.Nonnull Meta meta) {
+ this.meta = meta;
+ }
+
+ /** Return true if this listControllerSettingEnvelope object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ ListControllerSettingEnvelope listControllerSettingEnvelope =
+ (ListControllerSettingEnvelope) o;
+ return Objects.equals(this.data, listControllerSettingEnvelope.data)
+ && Objects.equals(this.meta, listControllerSettingEnvelope.meta);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(data, meta);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class ListControllerSettingEnvelope {\n");
+ sb.append(" data: ").append(toIndentedString(data)).append("\n");
+ sb.append(" meta: ").append(toIndentedString(meta)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `data` to the URL query string
+ if (getData() != null) {
+ for (int i = 0; i < getData().size(); i++) {
+ joiner.add(
+ String.format(
+ "%sdata%s%s=%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s", containerPrefix, i, containerSuffix),
+ URLEncoder.encode(
+ ApiClient.valueToString(getData().get(i)),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+ }
+
+ // add `meta` to the URL query string
+ if (getMeta() != null) {
+ joiner.add(getMeta().toUrlQueryString(prefix + "meta" + suffix));
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/management-api/src/main/java/org/openziti/management/model/ListControllersEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListControllersEnvelope.java
index 51dea985..00edd125 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListControllersEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListControllersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListControllersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListEdgeRouterPoliciesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListEdgeRouterPoliciesEnvelope.java
index d2a42657..e1bf014a 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListEdgeRouterPoliciesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListEdgeRouterPoliciesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListEdgeRouterPoliciesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListEdgeRoutersEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListEdgeRoutersEnvelope.java
index 8e4cfb95..243a0ab0 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListEdgeRoutersEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListEdgeRoutersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListEdgeRoutersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListEnrollmentsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListEnrollmentsEnvelope.java
index 16845d5c..288e1b85 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListEnrollmentsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListEnrollmentsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListEnrollmentsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListEnumeratedCapabilitiesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListEnumeratedCapabilitiesEnvelope.java
index 9cddd671..07a183ae 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListEnumeratedCapabilitiesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListEnumeratedCapabilitiesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListEnumeratedCapabilitiesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListExternalJwtSignersEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListExternalJwtSignersEnvelope.java
index 9f6aed00..3b643eec 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListExternalJwtSignersEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListExternalJwtSignersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListExternalJwtSignersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListIdentitiesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListIdentitiesEnvelope.java
index d3447a58..2d7bd2bc 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListIdentitiesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListIdentitiesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListIdentitiesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListIdentityTypesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListIdentityTypesEnvelope.java
index 39a51ed9..39fe0103 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListIdentityTypesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListIdentityTypesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListIdentityTypesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListNetworkJWTsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListNetworkJWTsEnvelope.java
index a0d55d14..876b365a 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListNetworkJWTsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListNetworkJWTsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListNetworkJWTsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListPostureCheckEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListPostureCheckEnvelope.java
index ecd7e46f..d59cde34 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListPostureCheckEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListPostureCheckEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListPostureCheckEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListPostureCheckTypesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListPostureCheckTypesEnvelope.java
index 5503be50..13d5c98c 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListPostureCheckTypesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListPostureCheckTypesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListPostureCheckTypesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListRoleAttributesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListRoleAttributesEnvelope.java
index 6b64bb9a..7459e988 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListRoleAttributesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListRoleAttributesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListRoleAttributesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListRoutersEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListRoutersEnvelope.java
index f3fac5df..060af68e 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListRoutersEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListRoutersEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({ListRoutersEnvelope.JSON_PROPERTY_DATA, ListRoutersEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListRoutersEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListServiceConfigsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListServiceConfigsEnvelope.java
index 33f2e346..a7f2d15a 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListServiceConfigsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListServiceConfigsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListServiceConfigsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListServiceEdgeRouterPoliciesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListServiceEdgeRouterPoliciesEnvelope.java
index af9b691b..5e53e9e6 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListServiceEdgeRouterPoliciesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListServiceEdgeRouterPoliciesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListServiceEdgeRouterPoliciesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListServicePoliciesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListServicePoliciesEnvelope.java
index 7f901839..29779799 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListServicePoliciesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListServicePoliciesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListServicePoliciesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListServicesEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListServicesEnvelope.java
index 23e61828..c79bf35b 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListServicesEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListServicesEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListServicesEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListSessionsManagementEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListSessionsManagementEnvelope.java
index 903b0cf9..5feb9d36 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListSessionsManagementEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListSessionsManagementEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListSessionsManagementEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListSpecsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListSpecsEnvelope.java
index cab997d6..a21a7bc3 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListSpecsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListSpecsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -24,7 +24,7 @@
@JsonPropertyOrder({ListSpecsEnvelope.JSON_PROPERTY_DATA, ListSpecsEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListSpecsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListSummaryCountsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListSummaryCountsEnvelope.java
index c4f11949..b4c91c17 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListSummaryCountsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListSummaryCountsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListSummaryCountsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListTerminatorsEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListTerminatorsEnvelope.java
index 7cde1a19..85d77794 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListTerminatorsEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListTerminatorsEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListTerminatorsEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/ListVersionEnvelope.java b/management-api/src/main/java/org/openziti/management/model/ListVersionEnvelope.java
index 6791f042..09563a59 100644
--- a/management-api/src/main/java/org/openziti/management/model/ListVersionEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/ListVersionEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({ListVersionEnvelope.JSON_PROPERTY_DATA, ListVersionEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ListVersionEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/Meta.java b/management-api/src/main/java/org/openziti/management/model/Meta.java
index e472ea87..0c697ac2 100644
--- a/management-api/src/main/java/org/openziti/management/model/Meta.java
+++ b/management-api/src/main/java/org/openziti/management/model/Meta.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Meta {
public static final String JSON_PROPERTY_API_ENROLLMENT_VERSION = "apiEnrollmentVersion";
diff --git a/management-api/src/main/java/org/openziti/management/model/MfaCode.java b/management-api/src/main/java/org/openziti/management/model/MfaCode.java
index 9ce022f1..30956222 100644
--- a/management-api/src/main/java/org/openziti/management/model/MfaCode.java
+++ b/management-api/src/main/java/org/openziti/management/model/MfaCode.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({MfaCode.JSON_PROPERTY_CODE})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class MfaCode {
public static final String JSON_PROPERTY_CODE = "code";
diff --git a/management-api/src/main/java/org/openziti/management/model/MfaFormats.java b/management-api/src/main/java/org/openziti/management/model/MfaFormats.java
index 6adc3445..02419028 100644
--- a/management-api/src/main/java/org/openziti/management/model/MfaFormats.java
+++ b/management-api/src/main/java/org/openziti/management/model/MfaFormats.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/MfaProviders.java b/management-api/src/main/java/org/openziti/management/model/MfaProviders.java
index e07b492a..046cc2d3 100644
--- a/management-api/src/main/java/org/openziti/management/model/MfaProviders.java
+++ b/management-api/src/main/java/org/openziti/management/model/MfaProviders.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/NamedRole.java b/management-api/src/main/java/org/openziti/management/model/NamedRole.java
index bdc10067..e5ff1ce7 100644
--- a/management-api/src/main/java/org/openziti/management/model/NamedRole.java
+++ b/management-api/src/main/java/org/openziti/management/model/NamedRole.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({NamedRole.JSON_PROPERTY_NAME, NamedRole.JSON_PROPERTY_ROLE})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class NamedRole {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/management-api/src/main/java/org/openziti/management/model/NetworkJWT.java b/management-api/src/main/java/org/openziti/management/model/NetworkJWT.java
index 0ce4c914..e95c51b0 100644
--- a/management-api/src/main/java/org/openziti/management/model/NetworkJWT.java
+++ b/management-api/src/main/java/org/openziti/management/model/NetworkJWT.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -25,7 +25,7 @@
@JsonPropertyOrder({NetworkJWT.JSON_PROPERTY_NAME, NetworkJWT.JSON_PROPERTY_TOKEN})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class NetworkJWT {
public static final String JSON_PROPERTY_NAME = "name";
diff --git a/management-api/src/main/java/org/openziti/management/model/OperatingSystem.java b/management-api/src/main/java/org/openziti/management/model/OperatingSystem.java
index e7f9b3b9..86edd86c 100644
--- a/management-api/src/main/java/org/openziti/management/model/OperatingSystem.java
+++ b/management-api/src/main/java/org/openziti/management/model/OperatingSystem.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
@JsonPropertyOrder({OperatingSystem.JSON_PROPERTY_TYPE, OperatingSystem.JSON_PROPERTY_VERSIONS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class OperatingSystem {
public static final String JSON_PROPERTY_TYPE = "type";
diff --git a/management-api/src/main/java/org/openziti/management/model/OsType.java b/management-api/src/main/java/org/openziti/management/model/OsType.java
index d413c63c..e5de7f41 100644
--- a/management-api/src/main/java/org/openziti/management/model/OsType.java
+++ b/management-api/src/main/java/org/openziti/management/model/OsType.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/Pagination.java b/management-api/src/main/java/org/openziti/management/model/Pagination.java
index 1eace825..9ea418d8 100644
--- a/management-api/src/main/java/org/openziti/management/model/Pagination.java
+++ b/management-api/src/main/java/org/openziti/management/model/Pagination.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Pagination {
public static final String JSON_PROPERTY_LIMIT = "limit";
diff --git a/management-api/src/main/java/org/openziti/management/model/PolicyAdvice.java b/management-api/src/main/java/org/openziti/management/model/PolicyAdvice.java
index 658b83da..09a3009d 100644
--- a/management-api/src/main/java/org/openziti/management/model/PolicyAdvice.java
+++ b/management-api/src/main/java/org/openziti/management/model/PolicyAdvice.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PolicyAdvice {
public static final String JSON_PROPERTY_COMMON_ROUTERS = "commonRouters";
diff --git a/management-api/src/main/java/org/openziti/management/model/PolicyFailure.java b/management-api/src/main/java/org/openziti/management/model/PolicyFailure.java
index 92da6a1d..61190c67 100644
--- a/management-api/src/main/java/org/openziti/management/model/PolicyFailure.java
+++ b/management-api/src/main/java/org/openziti/management/model/PolicyFailure.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PolicyFailure {
public static final String JSON_PROPERTY_CHECKS = "checks";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckCreate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckCreate.java
index 30adda59..0b3c7b61 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,7 +41,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckDetail.java
index 1e8f4f63..754e54cf 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,7 +44,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainCreate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainCreate.java
index 4fb22d59..4152ca05 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckDomainCreate.JSON_PROPERTY_DOMAINS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -90,12 +90,6 @@ public PostureCheckDomainCreate roleAttributes(
return this;
}
- @Override
- public PostureCheckDomainCreate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckDomainCreate typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainDetail.java
index baeb079f..ee751b12 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@JsonPropertyOrder({PostureCheckDomainDetail.JSON_PROPERTY_DOMAINS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainPatch.java
index ccc1bb55..d13aa893 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckDomainPatch.JSON_PROPERTY_DOMAINS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -90,12 +90,6 @@ public PostureCheckDomainPatch roleAttributes(
return this;
}
- @Override
- public PostureCheckDomainPatch tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckDomainPatch typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainUpdate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainUpdate.java
index 28282278..c04d5398 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckDomainUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckDomainUpdate.JSON_PROPERTY_DOMAINS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -90,12 +90,6 @@ public PostureCheckDomainUpdate roleAttributes(
return this;
}
- @Override
- public PostureCheckDomainUpdate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckDomainUpdate typeId(@javax.annotation.Nullable PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailure.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailure.java
index a57346a4..5a9033c8 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailure.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailure.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "postureCheckType", // ignore manually set postureCheckType, it will be
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureDomain.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureDomain.java
index 9c636934..268b0eec 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureDomain.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureDomain.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "postureCheckType", // ignore manually set postureCheckType, it will be
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMacAddress.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMacAddress.java
index 9c22577a..9ca660cd 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMacAddress.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMacAddress.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "postureCheckType", // ignore manually set postureCheckType, it will be
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMfa.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMfa.java
index 7150ebbf..59425350 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMfa.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureMfa.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "postureCheckType", // ignore manually set postureCheckType, it will be
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystem.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystem.java
index f316da13..da642340 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystem.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystem.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "postureCheckType", // ignore manually set postureCheckType, it will be
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystemActual.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystemActual.java
index cb09c1f6..3ef98d7b 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystemActual.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureOperatingSystemActual.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureCheckFailureOperatingSystemActual {
public static final String JSON_PROPERTY_TYPE = "type";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcess.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcess.java
index de0f0e96..7cb49f27 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcess.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcess.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "postureCheckType", // ignore manually set postureCheckType, it will be
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessActual.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessActual.java
index 1adb6e51..e2d6b882 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessActual.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessActual.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureCheckFailureProcessActual {
public static final String JSON_PROPERTY_HASH = "hash";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessMulti.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessMulti.java
index 7cf407d4..f9332956 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessMulti.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckFailureProcessMulti.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "postureCheckType", // ignore manually set postureCheckType, it will be
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressCreate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressCreate.java
index e8cbdb48..bfbf67b8 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckMacAddressCreate.JSON_PROPERTY_MAC_ADDRESSES})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -91,12 +91,6 @@ public PostureCheckMacAddressCreate roleAttributes(
return this;
}
- @Override
- public PostureCheckMacAddressCreate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckMacAddressCreate typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressDetail.java
index eea0b3d5..c2e70213 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@JsonPropertyOrder({PostureCheckMacAddressDetail.JSON_PROPERTY_MAC_ADDRESSES})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressPatch.java
index 3a41ca39..dba90c5e 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckMacAddressPatch.JSON_PROPERTY_MAC_ADDRESSES})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -91,12 +91,6 @@ public PostureCheckMacAddressPatch roleAttributes(
return this;
}
- @Override
- public PostureCheckMacAddressPatch tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckMacAddressPatch typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressUpdate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressUpdate.java
index 0d7b0a36..ed2d0153 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMacAddressUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckMacAddressUpdate.JSON_PROPERTY_MAC_ADDRESSES})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -91,12 +91,6 @@ public PostureCheckMacAddressUpdate roleAttributes(
return this;
}
- @Override
- public PostureCheckMacAddressUpdate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckMacAddressUpdate typeId(@javax.annotation.Nullable PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaCreate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaCreate.java
index ca6e42e0..4cdd0d4a 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -165,12 +165,6 @@ public PostureCheckMfaCreate roleAttributes(
return this;
}
- @Override
- public PostureCheckMfaCreate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckMfaCreate typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaDetail.java
index bb069c75..9af1a20b 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPatch.java
index fe00218f..5a1590b3 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -198,12 +198,6 @@ public PostureCheckMfaPatch roleAttributes(
return this;
}
- @Override
- public PostureCheckMfaPatch tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckMfaPatch typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaProperties.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaProperties.java
index 980ba6f1..05255878 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaProperties.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaProperties.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureCheckMfaProperties {
public static final String JSON_PROPERTY_IGNORE_LEGACY_ENDPOINTS = "ignoreLegacyEndpoints";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPropertiesPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPropertiesPatch.java
index 60c7dff0..e03caf37 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPropertiesPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaPropertiesPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureCheckMfaPropertiesPatch {
public static final String JSON_PROPERTY_IGNORE_LEGACY_ENDPOINTS = "ignoreLegacyEndpoints";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaUpdate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaUpdate.java
index ea8cbbc7..cc4917fe 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckMfaUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -165,12 +165,6 @@ public PostureCheckMfaUpdate roleAttributes(
return this;
}
- @Override
- public PostureCheckMfaUpdate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckMfaUpdate typeId(@javax.annotation.Nullable PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemCreate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemCreate.java
index 3b83ca87..c4bf2f3e 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckOperatingSystemCreate.JSON_PROPERTY_OPERATING_SYSTEMS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -93,12 +93,6 @@ public PostureCheckOperatingSystemCreate roleAttributes(
return this;
}
- @Override
- public PostureCheckOperatingSystemCreate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckOperatingSystemCreate typeId(
@javax.annotation.Nonnull PostureCheckType typeId) {
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemDetail.java
index bb3b88cc..6c9e9781 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@JsonPropertyOrder({PostureCheckOperatingSystemDetail.JSON_PROPERTY_OPERATING_SYSTEMS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemPatch.java
index 3585500d..38b3cac9 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckOperatingSystemPatch.JSON_PROPERTY_OPERATING_SYSTEMS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -93,12 +93,6 @@ public PostureCheckOperatingSystemPatch roleAttributes(
return this;
}
- @Override
- public PostureCheckOperatingSystemPatch tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckOperatingSystemPatch typeId(
@javax.annotation.Nonnull PostureCheckType typeId) {
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemUpdate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemUpdate.java
index 5f869dc7..0f83f9cf 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckOperatingSystemUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
@JsonPropertyOrder({PostureCheckOperatingSystemUpdate.JSON_PROPERTY_OPERATING_SYSTEMS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -93,12 +93,6 @@ public PostureCheckOperatingSystemUpdate roleAttributes(
return this;
}
- @Override
- public PostureCheckOperatingSystemUpdate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckOperatingSystemUpdate typeId(
@javax.annotation.Nullable PostureCheckType typeId) {
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckPatch.java
index 778f3fa8..5d2f7da6 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,7 +41,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessCreate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessCreate.java
index 7e574ac2..44179459 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@JsonPropertyOrder({PostureCheckProcessCreate.JSON_PROPERTY_PROCESS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -81,12 +81,6 @@ public PostureCheckProcessCreate roleAttributes(
return this;
}
- @Override
- public PostureCheckProcessCreate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckProcessCreate typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessDetail.java
index 6af36b09..0fe977f4 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
@JsonPropertyOrder({PostureCheckProcessDetail.JSON_PROPERTY_PROCESS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiCreate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiCreate.java
index 700f7f40..a2824203 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -120,12 +120,6 @@ public PostureCheckProcessMultiCreate roleAttributes(
return this;
}
- @Override
- public PostureCheckProcessMultiCreate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckProcessMultiCreate typeId(
@javax.annotation.Nonnull PostureCheckType typeId) {
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiDetail.java
index 2eeb1d05..a9283094 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiPatch.java
index bc8688fe..c9ed723f 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -120,12 +120,6 @@ public PostureCheckProcessMultiPatch roleAttributes(
return this;
}
- @Override
- public PostureCheckProcessMultiPatch tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckProcessMultiPatch typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiUpdate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiUpdate.java
index 00768e40..db8a5d2c 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessMultiUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,7 +37,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -120,12 +120,6 @@ public PostureCheckProcessMultiUpdate roleAttributes(
return this;
}
- @Override
- public PostureCheckProcessMultiUpdate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckProcessMultiUpdate typeId(
@javax.annotation.Nullable PostureCheckType typeId) {
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessPatch.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessPatch.java
index 9941e15f..0ba6b4cf 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@JsonPropertyOrder({PostureCheckProcessPatch.JSON_PROPERTY_PROCESS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -81,12 +81,6 @@ public PostureCheckProcessPatch roleAttributes(
return this;
}
- @Override
- public PostureCheckProcessPatch tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckProcessPatch typeId(@javax.annotation.Nonnull PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessUpdate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessUpdate.java
index f343244d..9ae97f5b 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckProcessUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
@JsonPropertyOrder({PostureCheckProcessUpdate.JSON_PROPERTY_PROCESS})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
@@ -81,12 +81,6 @@ public PostureCheckProcessUpdate roleAttributes(
return this;
}
- @Override
- public PostureCheckProcessUpdate tags(@javax.annotation.Nullable Tags tags) {
- this.setTags(tags);
- return this;
- }
-
@Override
public PostureCheckProcessUpdate typeId(@javax.annotation.Nullable PostureCheckType typeId) {
this.setTypeId(typeId);
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckType.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckType.java
index 59a2dc4b..39590f99 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckType.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckType.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckTypeDetail.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckTypeDetail.java
index 631eda4c..5f66e0d2 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckTypeDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckTypeDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureCheckTypeDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureCheckUpdate.java b/management-api/src/main/java/org/openziti/management/model/PostureCheckUpdate.java
index cb0d34a3..651d7a2a 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureCheckUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureCheckUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,7 +41,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
@JsonIgnoreProperties(
value = "typeId", // ignore manually set typeId, it will be automatically generated by
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaCriteria.java b/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaCriteria.java
index 2c93509a..e1a05e48 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaCriteria.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaCriteria.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureChecksFailureMfaCriteria {
public static final String JSON_PROPERTY_PASSED_MFA_AT = "passedMfaAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaValues.java b/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaValues.java
index 945a17c7..09a5f8d6 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaValues.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureChecksFailureMfaValues.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureChecksFailureMfaValues {
public static final String JSON_PROPERTY_PASSED_MFA = "passedMfa";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureData.java b/management-api/src/main/java/org/openziti/management/model/PostureData.java
index 0724fb06..2f4076b7 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureData.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureData.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureData {
public static final String JSON_PROPERTY_API_SESSION_POSTURE_DATA = "apiSessionPostureData";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataBase.java b/management-api/src/main/java/org/openziti/management/model/PostureDataBase.java
index eaed01c0..a923a4e9 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataBase.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataBase.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataBase {
public static final String JSON_PROPERTY_LAST_UPDATED_AT = "lastUpdatedAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataDomain.java b/management-api/src/main/java/org/openziti/management/model/PostureDataDomain.java
index 9b6b2f6c..88967755 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataDomain.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataDomain.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataDomain {
public static final String JSON_PROPERTY_LAST_UPDATED_AT = "lastUpdatedAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataEndpointState.java b/management-api/src/main/java/org/openziti/management/model/PostureDataEndpointState.java
index a70def1f..2801bb3e 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataEndpointState.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataEndpointState.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataEndpointState {
public static final String JSON_PROPERTY_UNLOCKED_AT = "unlockedAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataEnvelope.java b/management-api/src/main/java/org/openziti/management/model/PostureDataEnvelope.java
index d04fda87..cc1189ed 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({PostureDataEnvelope.JSON_PROPERTY_DATA, PostureDataEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataMac.java b/management-api/src/main/java/org/openziti/management/model/PostureDataMac.java
index 54605421..f2e125a8 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataMac.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataMac.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataMac {
public static final String JSON_PROPERTY_LAST_UPDATED_AT = "lastUpdatedAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataMfa.java b/management-api/src/main/java/org/openziti/management/model/PostureDataMfa.java
index f1108423..27779897 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataMfa.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataMfa.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataMfa {
public static final String JSON_PROPERTY_API_SESSION_ID = "apiSessionId";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataOs.java b/management-api/src/main/java/org/openziti/management/model/PostureDataOs.java
index adb72287..350ad5cb 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataOs.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataOs.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataOs {
public static final String JSON_PROPERTY_LAST_UPDATED_AT = "lastUpdatedAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureDataProcess.java b/management-api/src/main/java/org/openziti/management/model/PostureDataProcess.java
index 70b38352..f62d543d 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureDataProcess.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureDataProcess.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureDataProcess {
public static final String JSON_PROPERTY_LAST_UPDATED_AT = "lastUpdatedAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureQueries.java b/management-api/src/main/java/org/openziti/management/model/PostureQueries.java
index 5313c5cb..d9ac589f 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureQueries.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureQueries.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureQueries {
public static final String JSON_PROPERTY_IS_PASSING = "isPassing";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureQuery.java b/management-api/src/main/java/org/openziti/management/model/PostureQuery.java
index cd14cca2..ded2756e 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureQuery.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureQuery.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureQuery {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/PostureQueryProcess.java b/management-api/src/main/java/org/openziti/management/model/PostureQueryProcess.java
index 9d5810fa..7a614384 100644
--- a/management-api/src/main/java/org/openziti/management/model/PostureQueryProcess.java
+++ b/management-api/src/main/java/org/openziti/management/model/PostureQueryProcess.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class PostureQueryProcess {
public static final String JSON_PROPERTY_OS_TYPE = "osType";
diff --git a/management-api/src/main/java/org/openziti/management/model/Process.java b/management-api/src/main/java/org/openziti/management/model/Process.java
index d00cc92a..3b646906 100644
--- a/management-api/src/main/java/org/openziti/management/model/Process.java
+++ b/management-api/src/main/java/org/openziti/management/model/Process.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Process {
public static final String JSON_PROPERTY_HASHES = "hashes";
diff --git a/management-api/src/main/java/org/openziti/management/model/ProcessMulti.java b/management-api/src/main/java/org/openziti/management/model/ProcessMulti.java
index 38455839..d6960314 100644
--- a/management-api/src/main/java/org/openziti/management/model/ProcessMulti.java
+++ b/management-api/src/main/java/org/openziti/management/model/ProcessMulti.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ProcessMulti {
public static final String JSON_PROPERTY_HASHES = "hashes";
diff --git a/management-api/src/main/java/org/openziti/management/model/ReEnroll.java b/management-api/src/main/java/org/openziti/management/model/ReEnroll.java
index efc33979..29d64092 100644
--- a/management-api/src/main/java/org/openziti/management/model/ReEnroll.java
+++ b/management-api/src/main/java/org/openziti/management/model/ReEnroll.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@
@JsonPropertyOrder({ReEnroll.JSON_PROPERTY_EXPIRES_AT})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ReEnroll {
public static final String JSON_PROPERTY_EXPIRES_AT = "expiresAt";
diff --git a/management-api/src/main/java/org/openziti/management/model/RouterCreate.java b/management-api/src/main/java/org/openziti/management/model/RouterCreate.java
index 855d48d3..1bbb01a9 100644
--- a/management-api/src/main/java/org/openziti/management/model/RouterCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/RouterCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RouterCreate {
public static final String JSON_PROPERTY_COST = "cost";
diff --git a/management-api/src/main/java/org/openziti/management/model/RouterDetail.java b/management-api/src/main/java/org/openziti/management/model/RouterDetail.java
index aecbcfb4..8f027f05 100644
--- a/management-api/src/main/java/org/openziti/management/model/RouterDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/RouterDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -50,7 +50,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RouterDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/RouterEntityRef.java b/management-api/src/main/java/org/openziti/management/model/RouterEntityRef.java
index c6de19e9..8701f0a1 100644
--- a/management-api/src/main/java/org/openziti/management/model/RouterEntityRef.java
+++ b/management-api/src/main/java/org/openziti/management/model/RouterEntityRef.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RouterEntityRef {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/RouterPatch.java b/management-api/src/main/java/org/openziti/management/model/RouterPatch.java
index cd9b26a5..73d88bc6 100644
--- a/management-api/src/main/java/org/openziti/management/model/RouterPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/RouterPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RouterPatch {
public static final String JSON_PROPERTY_COST = "cost";
diff --git a/management-api/src/main/java/org/openziti/management/model/RouterUpdate.java b/management-api/src/main/java/org/openziti/management/model/RouterUpdate.java
index fd64de47..3f8659e2 100644
--- a/management-api/src/main/java/org/openziti/management/model/RouterUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/RouterUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class RouterUpdate {
public static final String JSON_PROPERTY_COST = "cost";
diff --git a/management-api/src/main/java/org/openziti/management/model/SdkInfo.java b/management-api/src/main/java/org/openziti/management/model/SdkInfo.java
index 3d98e2d3..35185a82 100644
--- a/management-api/src/main/java/org/openziti/management/model/SdkInfo.java
+++ b/management-api/src/main/java/org/openziti/management/model/SdkInfo.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SdkInfo {
public static final String JSON_PROPERTY_APP_ID = "appId";
diff --git a/management-api/src/main/java/org/openziti/management/model/Semantic.java b/management-api/src/main/java/org/openziti/management/model/Semantic.java
index 2ae9ef0c..c62eb395 100644
--- a/management-api/src/main/java/org/openziti/management/model/Semantic.java
+++ b/management-api/src/main/java/org/openziti/management/model/Semantic.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceConfigAssign.java b/management-api/src/main/java/org/openziti/management/model/ServiceConfigAssign.java
index 3287d988..73799f97 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceConfigAssign.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceConfigAssign.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceConfigAssign {
public static final String JSON_PROPERTY_CONFIG_ID = "configId";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceConfigDetail.java b/management-api/src/main/java/org/openziti/management/model/ServiceConfigDetail.java
index 51ca6f2d..9e6f5b83 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceConfigDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceConfigDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceConfigDetail {
public static final String JSON_PROPERTY_CONFIG = "config";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceCreate.java b/management-api/src/main/java/org/openziti/management/model/ServiceCreate.java
index 2db3b9c4..47ee244f 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceCreate {
public static final String JSON_PROPERTY_CONFIGS = "configs";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceDetail.java b/management-api/src/main/java/org/openziti/management/model/ServiceDetail.java
index 06165904..5541c2eb 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyCreate.java b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyCreate.java
index a6480ce3..767119f4 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceEdgeRouterPolicyCreate {
public static final String JSON_PROPERTY_EDGE_ROUTER_ROLES = "edgeRouterRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyDetail.java b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyDetail.java
index 81eb261c..1672287b 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceEdgeRouterPolicyDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyPatch.java b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyPatch.java
index 1055f850..bd65bd32 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceEdgeRouterPolicyPatch {
public static final String JSON_PROPERTY_EDGE_ROUTER_ROLES = "edgeRouterRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyUpdate.java b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyUpdate.java
index 9c32a8f8..2709db7a 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceEdgeRouterPolicyUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceEdgeRouterPolicyUpdate {
public static final String JSON_PROPERTY_EDGE_ROUTER_ROLES = "edgeRouterRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServicePatch.java b/management-api/src/main/java/org/openziti/management/model/ServicePatch.java
index 31eddf1e..8722cc98 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServicePatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServicePatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicePatch {
public static final String JSON_PROPERTY_CONFIGS = "configs";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServicePolicyCreate.java b/management-api/src/main/java/org/openziti/management/model/ServicePolicyCreate.java
index b49a0058..a2c5fa95 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServicePolicyCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServicePolicyCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicePolicyCreate {
public static final String JSON_PROPERTY_IDENTITY_ROLES = "identityRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServicePolicyDetail.java b/management-api/src/main/java/org/openziti/management/model/ServicePolicyDetail.java
index bee62c48..5b668540 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServicePolicyDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServicePolicyDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicePolicyDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServicePolicyPatch.java b/management-api/src/main/java/org/openziti/management/model/ServicePolicyPatch.java
index 7cbd6006..960ffd28 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServicePolicyPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServicePolicyPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicePolicyPatch {
public static final String JSON_PROPERTY_IDENTITY_ROLES = "identityRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServicePolicyUpdate.java b/management-api/src/main/java/org/openziti/management/model/ServicePolicyUpdate.java
index f541e463..7129ef5a 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServicePolicyUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServicePolicyUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServicePolicyUpdate {
public static final String JSON_PROPERTY_IDENTITY_ROLES = "identityRoles";
diff --git a/management-api/src/main/java/org/openziti/management/model/ServiceUpdate.java b/management-api/src/main/java/org/openziti/management/model/ServiceUpdate.java
index 18c14645..760ad69e 100644
--- a/management-api/src/main/java/org/openziti/management/model/ServiceUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/ServiceUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class ServiceUpdate {
public static final String JSON_PROPERTY_CONFIGS = "configs";
diff --git a/management-api/src/main/java/org/openziti/management/model/SessionDetail.java b/management-api/src/main/java/org/openziti/management/model/SessionDetail.java
index 5c7c3348..a52177d4 100644
--- a/management-api/src/main/java/org/openziti/management/model/SessionDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/SessionDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,7 +44,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/SessionEdgeRouter.java b/management-api/src/main/java/org/openziti/management/model/SessionEdgeRouter.java
index 43be62d6..5bbcc24f 100644
--- a/management-api/src/main/java/org/openziti/management/model/SessionEdgeRouter.java
+++ b/management-api/src/main/java/org/openziti/management/model/SessionEdgeRouter.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -38,7 +38,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionEdgeRouter {
public static final String JSON_PROPERTY_APP_DATA = "appData";
diff --git a/management-api/src/main/java/org/openziti/management/model/SessionManagementDetail.java b/management-api/src/main/java/org/openziti/management/model/SessionManagementDetail.java
index c64e4899..f62bc5c2 100644
--- a/management-api/src/main/java/org/openziti/management/model/SessionManagementDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/SessionManagementDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,7 +45,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionManagementDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/SessionRoutePathDetail.java b/management-api/src/main/java/org/openziti/management/model/SessionRoutePathDetail.java
index 39a36892..1705f9eb 100644
--- a/management-api/src/main/java/org/openziti/management/model/SessionRoutePathDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/SessionRoutePathDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@
@JsonPropertyOrder({SessionRoutePathDetail.JSON_PROPERTY_ROUTE_PATH})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SessionRoutePathDetail {
public static final String JSON_PROPERTY_ROUTE_PATH = "routePath";
diff --git a/management-api/src/main/java/org/openziti/management/model/SpecDetail.java b/management-api/src/main/java/org/openziti/management/model/SpecDetail.java
index 8e4915e0..14ba5883 100644
--- a/management-api/src/main/java/org/openziti/management/model/SpecDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/SpecDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -35,7 +35,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class SpecDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/Tags.java b/management-api/src/main/java/org/openziti/management/model/Tags.java
index 3d732f57..128881bc 100644
--- a/management-api/src/main/java/org/openziti/management/model/Tags.java
+++ b/management-api/src/main/java/org/openziti/management/model/Tags.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@
@JsonPropertyOrder({})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Tags {
public Tags() {}
diff --git a/management-api/src/main/java/org/openziti/management/model/TargetToken.java b/management-api/src/main/java/org/openziti/management/model/TargetToken.java
index 3ec143f7..c5e9cf24 100644
--- a/management-api/src/main/java/org/openziti/management/model/TargetToken.java
+++ b/management-api/src/main/java/org/openziti/management/model/TargetToken.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/TerminatorCreate.java b/management-api/src/main/java/org/openziti/management/model/TerminatorCreate.java
index 02064797..a55976b2 100644
--- a/management-api/src/main/java/org/openziti/management/model/TerminatorCreate.java
+++ b/management-api/src/main/java/org/openziti/management/model/TerminatorCreate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TerminatorCreate {
public static final String JSON_PROPERTY_ADDRESS = "address";
diff --git a/management-api/src/main/java/org/openziti/management/model/TerminatorDetail.java b/management-api/src/main/java/org/openziti/management/model/TerminatorDetail.java
index 7d7397fe..65dfbcd5 100644
--- a/management-api/src/main/java/org/openziti/management/model/TerminatorDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/TerminatorDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,7 +44,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TerminatorDetail {
public static final String JSON_PROPERTY_LINKS = "_links";
diff --git a/management-api/src/main/java/org/openziti/management/model/TerminatorPatch.java b/management-api/src/main/java/org/openziti/management/model/TerminatorPatch.java
index 0b616a2e..427ca5b2 100644
--- a/management-api/src/main/java/org/openziti/management/model/TerminatorPatch.java
+++ b/management-api/src/main/java/org/openziti/management/model/TerminatorPatch.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TerminatorPatch {
public static final String JSON_PROPERTY_ADDRESS = "address";
diff --git a/management-api/src/main/java/org/openziti/management/model/TerminatorPrecedence.java b/management-api/src/main/java/org/openziti/management/model/TerminatorPrecedence.java
index 9550232e..ed693ab0 100644
--- a/management-api/src/main/java/org/openziti/management/model/TerminatorPrecedence.java
+++ b/management-api/src/main/java/org/openziti/management/model/TerminatorPrecedence.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/management-api/src/main/java/org/openziti/management/model/TerminatorUpdate.java b/management-api/src/main/java/org/openziti/management/model/TerminatorUpdate.java
index 5e354a9b..974eefcf 100644
--- a/management-api/src/main/java/org/openziti/management/model/TerminatorUpdate.java
+++ b/management-api/src/main/java/org/openziti/management/model/TerminatorUpdate.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TerminatorUpdate {
public static final String JSON_PROPERTY_ADDRESS = "address";
diff --git a/management-api/src/main/java/org/openziti/management/model/TraceDetail.java b/management-api/src/main/java/org/openziti/management/model/TraceDetail.java
index ec8106a8..009bb9cb 100644
--- a/management-api/src/main/java/org/openziti/management/model/TraceDetail.java
+++ b/management-api/src/main/java/org/openziti/management/model/TraceDetail.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TraceDetail {
public static final String JSON_PROPERTY_ENABLED = "enabled";
diff --git a/management-api/src/main/java/org/openziti/management/model/TraceDetailEnvelope.java b/management-api/src/main/java/org/openziti/management/model/TraceDetailEnvelope.java
index c571160c..85f011be 100644
--- a/management-api/src/main/java/org/openziti/management/model/TraceDetailEnvelope.java
+++ b/management-api/src/main/java/org/openziti/management/model/TraceDetailEnvelope.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@
@JsonPropertyOrder({TraceDetailEnvelope.JSON_PROPERTY_DATA, TraceDetailEnvelope.JSON_PROPERTY_META})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TraceDetailEnvelope {
public static final String JSON_PROPERTY_DATA = "data";
diff --git a/management-api/src/main/java/org/openziti/management/model/TraceSpec.java b/management-api/src/main/java/org/openziti/management/model/TraceSpec.java
index aa899c98..ddde38ce 100644
--- a/management-api/src/main/java/org/openziti/management/model/TraceSpec.java
+++ b/management-api/src/main/java/org/openziti/management/model/TraceSpec.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class TraceSpec {
public static final String JSON_PROPERTY_CHANNELS = "channels";
diff --git a/management-api/src/main/java/org/openziti/management/model/Version.java b/management-api/src/main/java/org/openziti/management/model/Version.java
index 7a09611f..97d48f0d 100644
--- a/management-api/src/main/java/org/openziti/management/model/Version.java
+++ b/management-api/src/main/java/org/openziti/management/model/Version.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class Version {
public static final String JSON_PROPERTY_API_VERSIONS = "apiVersions";
diff --git a/management-api/src/main/java/org/openziti/management/model/VersionInfo.java b/management-api/src/main/java/org/openziti/management/model/VersionInfo.java
index d9357a3d..ba71df0e 100644
--- a/management-api/src/main/java/org/openziti/management/model/VersionInfo.java
+++ b/management-api/src/main/java/org/openziti/management/model/VersionInfo.java
@@ -2,7 +2,7 @@
* Ziti Edge Management
* OpenZiti Edge Management API
*
- * The version of the OpenAPI document: 0.26.39
+ * The version of the OpenAPI document: 0.26.42
* Contact: help@openziti.org
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@
})
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
- date = "2025-01-30T10:50:07.620098843-05:00[America/New_York]",
+ date = "2025-03-17T12:51:49.931993799-04:00[America/New_York]",
comments = "Generator version: 7.11.0")
public class VersionInfo {
public static final String JSON_PROPERTY_ARCH = "arch";