diff --git a/README.md b/README.md index 43c2048..4b09d40 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # databox Static OpenAPI document of Push API resource -- API version: 0.4.1 - - Build date: 2024-07-11T08:40:29.068083Z[Etc/UTC] +- API version: 0.4.4-alpha.2 + - Build date: 2024-08-26T12:34:22.089134Z[Etc/UTC] - Generator version: 7.6.0 -Push API resources Open API documentation +Push API resources Open API documentation asdas *Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)* @@ -41,7 +41,7 @@ Add this dependency to your project's POM: org.databox databox - 2.5.1 + 2.5.2 compile ``` @@ -57,7 +57,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "org.databox:databox:2.5.1" + implementation "org.databox:databox:2.5.2" } ``` @@ -71,7 +71,7 @@ mvn clean package Then manually install the following JARs: -* `target/databox-2.5.1.jar` +* `target/databox-2.5.2.jar` * `target/lib/*.jar` ## Getting Started diff --git a/docs/DefaultApi.md b/docs/DefaultApi.md new file mode 100644 index 0000000..ecce651 --- /dev/null +++ b/docs/DefaultApi.md @@ -0,0 +1,392 @@ +# DefaultApi + +All URIs are relative to *https://push.databox.com* + +| Method | HTTP request | Description | +|------------- | ------------- | -------------| +| [**dataDelete**](DefaultApi.md#dataDelete) | **DELETE** /data | | +| [**dataMetricKeyDelete**](DefaultApi.md#dataMetricKeyDelete) | **DELETE** /data/{metricKey} | | +| [**dataPost**](DefaultApi.md#dataPost) | **POST** /data | | +| [**metrickeysGet**](DefaultApi.md#metrickeysGet) | **GET** /metrickeys | | +| [**metrickeysPost**](DefaultApi.md#metrickeysPost) | **POST** /metrickeys | | +| [**pingGet**](DefaultApi.md#pingGet) | **GET** /ping | | + + + +# **dataDelete** +> dataDelete() + + + +### Example +```java +// Import classes: +import org.databox.ApiClient; +import org.databox.ApiException; +import org.databox.Configuration; +import org.databox.auth.*; +import org.databox.models.*; +import org.databox.api.DefaultApi; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://push.databox.com"); + + // Configure HTTP basic authorization: basicAuth + HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth"); + basicAuth.setUsername("YOUR USERNAME"); + basicAuth.setPassword("YOUR PASSWORD"); + + DefaultApi apiInstance = new DefaultApi(defaultClient); + try { + apiInstance.dataDelete(); + } catch (ApiException e) { + System.err.println("Exception when calling DefaultApi#dataDelete"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +null (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +| **200** | OK | - | + + +# **dataMetricKeyDelete** +> dataMetricKeyDelete(metricKey) + + + +### Example +```java +// Import classes: +import org.databox.ApiClient; +import org.databox.ApiException; +import org.databox.Configuration; +import org.databox.auth.*; +import org.databox.models.*; +import org.databox.api.DefaultApi; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://push.databox.com"); + + // Configure HTTP basic authorization: basicAuth + HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth"); + basicAuth.setUsername("YOUR USERNAME"); + basicAuth.setPassword("YOUR PASSWORD"); + + DefaultApi apiInstance = new DefaultApi(defaultClient); + String metricKey = "metricKey_example"; // String | + try { + apiInstance.dataMetricKeyDelete(metricKey); + } catch (ApiException e) { + System.err.println("Exception when calling DefaultApi#dataMetricKeyDelete"); + 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 | +|------------- | ------------- | ------------- | -------------| +| **metricKey** | **String**| | | + +### Return type + +null (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +| **200** | OK | - | + + +# **dataPost** +> dataPost(pushData) + + + +### Example +```java +// Import classes: +import org.databox.ApiClient; +import org.databox.ApiException; +import org.databox.Configuration; +import org.databox.auth.*; +import org.databox.models.*; +import org.databox.api.DefaultApi; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://push.databox.com"); + + // Configure HTTP basic authorization: basicAuth + HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth"); + basicAuth.setUsername("YOUR USERNAME"); + basicAuth.setPassword("YOUR PASSWORD"); + + DefaultApi apiInstance = new DefaultApi(defaultClient); + List pushData = Arrays.asList(); // List | + try { + apiInstance.dataPost(pushData); + } catch (ApiException e) { + System.err.println("Exception when calling DefaultApi#dataPost"); + 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 | +|------------- | ------------- | ------------- | -------------| +| **pushData** | [**List<PushData>**](PushData.md)| | [optional] | + +### Return type + +null (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json, application/vnd.databox.v2+json + - **Accept**: Not defined + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +| **200** | OK | - | + + +# **metrickeysGet** +> metrickeysGet() + + + +### Example +```java +// Import classes: +import org.databox.ApiClient; +import org.databox.ApiException; +import org.databox.Configuration; +import org.databox.auth.*; +import org.databox.models.*; +import org.databox.api.DefaultApi; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://push.databox.com"); + + // Configure HTTP basic authorization: basicAuth + HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth"); + basicAuth.setUsername("YOUR USERNAME"); + basicAuth.setPassword("YOUR PASSWORD"); + + DefaultApi apiInstance = new DefaultApi(defaultClient); + try { + apiInstance.metrickeysGet(); + } catch (ApiException e) { + System.err.println("Exception when calling DefaultApi#metrickeysGet"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +null (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +| **200** | OK | - | + + +# **metrickeysPost** +> metrickeysPost(body) + + + +### Example +```java +// Import classes: +import org.databox.ApiClient; +import org.databox.ApiException; +import org.databox.Configuration; +import org.databox.auth.*; +import org.databox.models.*; +import org.databox.api.DefaultApi; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://push.databox.com"); + + // Configure HTTP basic authorization: basicAuth + HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth"); + basicAuth.setUsername("YOUR USERNAME"); + basicAuth.setPassword("YOUR PASSWORD"); + + DefaultApi apiInstance = new DefaultApi(defaultClient); + Object body = null; // Object | + try { + apiInstance.metrickeysPost(body); + } catch (ApiException e) { + System.err.println("Exception when calling DefaultApi#metrickeysPost"); + 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 | +|------------- | ------------- | ------------- | -------------| +| **body** | **Object**| | [optional] | + +### Return type + +null (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json, application/vnd.databox.v2+json + - **Accept**: Not defined + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +| **200** | OK | - | + + +# **pingGet** +> pingGet() + + + +### Example +```java +// Import classes: +import org.databox.ApiClient; +import org.databox.ApiException; +import org.databox.Configuration; +import org.databox.auth.*; +import org.databox.models.*; +import org.databox.api.DefaultApi; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://push.databox.com"); + + // Configure HTTP basic authorization: basicAuth + HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth"); + basicAuth.setUsername("YOUR USERNAME"); + basicAuth.setPassword("YOUR PASSWORD"); + + DefaultApi apiInstance = new DefaultApi(defaultClient); + try { + apiInstance.pingGet(); + } catch (ApiException e) { + System.err.println("Exception when calling DefaultApi#pingGet"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +null (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +| **200** | OK | - | + diff --git a/docs/ModelApiResponse.md b/docs/ModelApiResponse.md new file mode 100644 index 0000000..3f86aa8 --- /dev/null +++ b/docs/ModelApiResponse.md @@ -0,0 +1,14 @@ + + +# ModelApiResponse + + +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +|**status** | **String** | | [optional] | +|**message** | **String** | | [optional] | + + + diff --git a/docs/PushData.md b/docs/PushData.md new file mode 100644 index 0000000..0e6b08e --- /dev/null +++ b/docs/PushData.md @@ -0,0 +1,19 @@ + + +# PushData + + +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +|**attributes** | [**List<PushDataAttribute>**](PushDataAttribute.md) | | [optional] | +|**date** | **String** | | [optional] | +|**key** | **String** | | [optional] | +|**periodFrom** | **String** | | [optional] | +|**periodTo** | **String** | | [optional] | +|**unit** | **String** | | [optional] | +|**value** | **Float** | | [optional] | + + + diff --git a/docs/PushDataAttribute.md b/docs/PushDataAttribute.md new file mode 100644 index 0000000..1bff482 --- /dev/null +++ b/docs/PushDataAttribute.md @@ -0,0 +1,14 @@ + + +# PushDataAttribute + + +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +|**key** | **String** | | [optional] | +|**value** | **String** | | [optional] | + + + diff --git a/docs/State.md b/docs/State.md new file mode 100644 index 0000000..a3dcbe2 --- /dev/null +++ b/docs/State.md @@ -0,0 +1,13 @@ + + +# State + +## Enum + + +* `DOWN` (value: `"DOWN"`) + +* `UP` (value: `"UP"`) + + + diff --git a/src/README.md b/src/README.md index 43c2048..4b09d40 100644 --- a/src/README.md +++ b/src/README.md @@ -1,11 +1,11 @@ # databox Static OpenAPI document of Push API resource -- API version: 0.4.1 - - Build date: 2024-07-11T08:40:29.068083Z[Etc/UTC] +- API version: 0.4.4-alpha.2 + - Build date: 2024-08-26T12:34:22.089134Z[Etc/UTC] - Generator version: 7.6.0 -Push API resources Open API documentation +Push API resources Open API documentation asdas *Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)* @@ -41,7 +41,7 @@ Add this dependency to your project's POM: org.databox databox - 2.5.1 + 2.5.2 compile ``` @@ -57,7 +57,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "org.databox:databox:2.5.1" + implementation "org.databox:databox:2.5.2" } ``` @@ -71,7 +71,7 @@ mvn clean package Then manually install the following JARs: -* `target/databox-2.5.1.jar` +* `target/databox-2.5.2.jar` * `target/lib/*.jar` ## Getting Started diff --git a/src/api/openapi.yaml b/src/api/openapi.yaml index 8483ce7..7521478 100644 --- a/src/api/openapi.yaml +++ b/src/api/openapi.yaml @@ -1,8 +1,8 @@ openapi: 3.0.3 info: - description: Push API resources Open API documentation + description: Push API resources Open API documentation asdas title: Static OpenAPI document of Push API resource - version: 0.4.1 + version: 0.4.4-alpha.2 servers: - description: Dev mode server description url: https://push.databox.com diff --git a/src/build.gradle b/src/build.gradle index 221af25..a712573 100644 --- a/src/build.gradle +++ b/src/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'java' apply plugin: 'com.diffplug.spotless' group = 'org.databox' -version = '2.5.1' +version = '2.5.2' buildscript { repositories { diff --git a/src/build.sbt b/src/build.sbt index 723dbaa..db24cfe 100644 --- a/src/build.sbt +++ b/src/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "org.databox", name := "databox", - version := "2.5.1", + version := "2.5.2", scalaVersion := "2.11.4", scalacOptions ++= Seq("-feature"), javacOptions in compile ++= Seq("-Xlint:deprecation"), diff --git a/src/pom.xml b/src/pom.xml index 769a322..438f404 100644 --- a/src/pom.xml +++ b/src/pom.xml @@ -5,7 +5,7 @@ databox jar databox - 2.5.1 + 2.5.2 https://github.com/databox/databox-java SDK Client for using Databox Push API feature diff --git a/src/src/main/java/org/databox/ApiCallback.java b/src/src/main/java/org/databox/ApiCallback.java index bfd06a2..0f04491 100644 --- a/src/src/main/java/org/databox/ApiCallback.java +++ b/src/src/main/java/org/databox/ApiCallback.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/ApiClient.java b/src/src/main/java/org/databox/ApiClient.java index c185f6c..4ef50fd 100644 --- a/src/src/main/java/org/databox/ApiClient.java +++ b/src/src/main/java/org/databox/ApiClient.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -141,7 +141,7 @@ private void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/2.5.1/java"); + setUserAgent("OpenAPI-Generator/2.5.2/java"); authentications = new HashMap(); } diff --git a/src/src/main/java/org/databox/ApiException.java b/src/src/main/java/org/databox/ApiException.java index c48767e..e0dd139 100644 --- a/src/src/main/java/org/databox/ApiException.java +++ b/src/src/main/java/org/databox/ApiException.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -21,7 +21,7 @@ *

ApiException class.

*/ @SuppressWarnings("serial") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class ApiException extends Exception { private static final long serialVersionUID = 1L; diff --git a/src/src/main/java/org/databox/ApiResponse.java b/src/src/main/java/org/databox/ApiResponse.java index 6dfb7df..75b9b02 100644 --- a/src/src/main/java/org/databox/ApiResponse.java +++ b/src/src/main/java/org/databox/ApiResponse.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/Configuration.java b/src/src/main/java/org/databox/Configuration.java index 2515a42..264c4f2 100644 --- a/src/src/main/java/org/databox/Configuration.java +++ b/src/src/main/java/org/databox/Configuration.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,9 +13,9 @@ package org.databox; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class Configuration { - public static final String VERSION = "2.5.1"; + public static final String VERSION = "2.5.2"; private static ApiClient defaultApiClient = new ApiClient(); diff --git a/src/src/main/java/org/databox/GzipRequestInterceptor.java b/src/src/main/java/org/databox/GzipRequestInterceptor.java index db3f98e..5fa3eb6 100644 --- a/src/src/main/java/org/databox/GzipRequestInterceptor.java +++ b/src/src/main/java/org/databox/GzipRequestInterceptor.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/JSON.java b/src/src/main/java/org/databox/JSON.java index 703c736..749f784 100644 --- a/src/src/main/java/org/databox/JSON.java +++ b/src/src/main/java/org/databox/JSON.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/Pair.java b/src/src/main/java/org/databox/Pair.java index fcdcee9..0a20ea8 100644 --- a/src/src/main/java/org/databox/Pair.java +++ b/src/src/main/java/org/databox/Pair.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,7 +13,7 @@ package org.databox; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class Pair { private String name = ""; private String value = ""; diff --git a/src/src/main/java/org/databox/ProgressRequestBody.java b/src/src/main/java/org/databox/ProgressRequestBody.java index 841b2a4..92aa16f 100644 --- a/src/src/main/java/org/databox/ProgressRequestBody.java +++ b/src/src/main/java/org/databox/ProgressRequestBody.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/ProgressResponseBody.java b/src/src/main/java/org/databox/ProgressResponseBody.java index 699bef1..8232869 100644 --- a/src/src/main/java/org/databox/ProgressResponseBody.java +++ b/src/src/main/java/org/databox/ProgressResponseBody.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/ServerConfiguration.java b/src/src/main/java/org/databox/ServerConfiguration.java index 57c8b14..d9d2741 100644 --- a/src/src/main/java/org/databox/ServerConfiguration.java +++ b/src/src/main/java/org/databox/ServerConfiguration.java @@ -5,7 +5,7 @@ /** * Representing a Server configuration. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class ServerConfiguration { public String URL; public String description; diff --git a/src/src/main/java/org/databox/ServerVariable.java b/src/src/main/java/org/databox/ServerVariable.java index 1a74560..04cd2dc 100644 --- a/src/src/main/java/org/databox/ServerVariable.java +++ b/src/src/main/java/org/databox/ServerVariable.java @@ -5,7 +5,7 @@ /** * Representing a Server Variable for server URL template substitution. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class ServerVariable { public String description; public String defaultValue; diff --git a/src/src/main/java/org/databox/StringUtil.java b/src/src/main/java/org/databox/StringUtil.java index 0d4ab34..ac5dc0e 100644 --- a/src/src/main/java/org/databox/StringUtil.java +++ b/src/src/main/java/org/databox/StringUtil.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -16,7 +16,7 @@ import java.util.Collection; import java.util.Iterator; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). diff --git a/src/src/main/java/org/databox/api/DefaultApi.java b/src/src/main/java/org/databox/api/DefaultApi.java index 345d4c6..c051812 100644 --- a/src/src/main/java/org/databox/api/DefaultApi.java +++ b/src/src/main/java/org/databox/api/DefaultApi.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/auth/ApiKeyAuth.java b/src/src/main/java/org/databox/auth/ApiKeyAuth.java index 1a01b09..aefceb2 100644 --- a/src/src/main/java/org/databox/auth/ApiKeyAuth.java +++ b/src/src/main/java/org/databox/auth/ApiKeyAuth.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class ApiKeyAuth implements Authentication { private final String location; private final String paramName; diff --git a/src/src/main/java/org/databox/auth/Authentication.java b/src/src/main/java/org/databox/auth/Authentication.java index 803b578..af6d987 100644 --- a/src/src/main/java/org/databox/auth/Authentication.java +++ b/src/src/main/java/org/databox/auth/Authentication.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/auth/HttpBasicAuth.java b/src/src/main/java/org/databox/auth/HttpBasicAuth.java index 6c2d261..9a9f78c 100644 --- a/src/src/main/java/org/databox/auth/HttpBasicAuth.java +++ b/src/src/main/java/org/databox/auth/HttpBasicAuth.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/main/java/org/databox/auth/HttpBearerAuth.java b/src/src/main/java/org/databox/auth/HttpBearerAuth.java index e63d59a..9df276a 100644 --- a/src/src/main/java/org/databox/auth/HttpBearerAuth.java +++ b/src/src/main/java/org/databox/auth/HttpBearerAuth.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -22,7 +22,7 @@ import java.util.Optional; import java.util.function.Supplier; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class HttpBearerAuth implements Authentication { private final String scheme; private Supplier tokenSupplier; diff --git a/src/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java b/src/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java index 07de0a7..701a3ad 100644 --- a/src/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java +++ b/src/src/main/java/org/openapitools/client/model/AbstractOpenApiSchema.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -21,7 +21,7 @@ /** * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public abstract class AbstractOpenApiSchema { // store the actual instance of the schema/object diff --git a/src/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/src/src/main/java/org/openapitools/client/model/ModelApiResponse.java index a1b648f..b415bcf 100644 --- a/src/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/src/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * ModelApiResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class ModelApiResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/src/main/java/org/openapitools/client/model/PushData.java b/src/src/main/java/org/openapitools/client/model/PushData.java index 4d80d92..3576c91 100644 --- a/src/src/main/java/org/openapitools/client/model/PushData.java +++ b/src/src/main/java/org/openapitools/client/model/PushData.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * PushData */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class PushData { public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; @SerializedName(SERIALIZED_NAME_ATTRIBUTES) diff --git a/src/src/main/java/org/openapitools/client/model/PushDataAttribute.java b/src/src/main/java/org/openapitools/client/model/PushDataAttribute.java index 46754fe..781753f 100644 --- a/src/src/main/java/org/openapitools/client/model/PushDataAttribute.java +++ b/src/src/main/java/org/openapitools/client/model/PushDataAttribute.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * PushDataAttribute */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-11T08:40:29.068083Z[Etc/UTC]", comments = "Generator version: 7.6.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-26T12:34:22.089134Z[Etc/UTC]", comments = "Generator version: 7.6.0") public class PushDataAttribute { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) diff --git a/src/src/main/java/org/openapitools/client/model/State.java b/src/src/main/java/org/openapitools/client/model/State.java index 147b0fa..5fd00b5 100644 --- a/src/src/main/java/org/openapitools/client/model/State.java +++ b/src/src/main/java/org/openapitools/client/model/State.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/test/java/org/databox/api/DefaultApiTest.java b/src/src/test/java/org/databox/api/DefaultApiTest.java index debbbd3..aa3c63c 100644 --- a/src/src/test/java/org/databox/api/DefaultApiTest.java +++ b/src/src/test/java/org/databox/api/DefaultApiTest.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/src/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java index bc92466..4db59f8 100644 --- a/src/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java +++ b/src/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/test/java/org/openapitools/client/model/PushDataAttributeTest.java b/src/src/test/java/org/openapitools/client/model/PushDataAttributeTest.java index 4b1d547..543c795 100644 --- a/src/src/test/java/org/openapitools/client/model/PushDataAttributeTest.java +++ b/src/src/test/java/org/openapitools/client/model/PushDataAttributeTest.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/test/java/org/openapitools/client/model/PushDataTest.java b/src/src/test/java/org/openapitools/client/model/PushDataTest.java index 74ffc27..4d87ebd 100644 --- a/src/src/test/java/org/openapitools/client/model/PushDataTest.java +++ b/src/src/test/java/org/openapitools/client/model/PushDataTest.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/src/test/java/org/openapitools/client/model/StateTest.java b/src/src/test/java/org/openapitools/client/model/StateTest.java index c6342e0..fade884 100644 --- a/src/src/test/java/org/openapitools/client/model/StateTest.java +++ b/src/src/test/java/org/openapitools/client/model/StateTest.java @@ -1,8 +1,8 @@ /* * Static OpenAPI document of Push API resource - * Push API resources Open API documentation + * Push API resources Open API documentation asdas * - * The version of the OpenAPI document: 0.4.1 + * The version of the OpenAPI document: 0.4.4-alpha.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).