Skip to content

Commit d7fd9de

Browse files
authored
feat(serverupdate): add multi API version support (#534)
relates to STACKITSDK-423
1 parent 0e25112 commit d7fd9de

63 files changed

Lines changed: 10754 additions & 84 deletions

File tree

Some content is hidden

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

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
- **Feature (breaking change):** Introduction of multi API version support. See the GitHub discussion post for more details: https://github.com/stackitcloud/stackit-sdk-java/discussions/530
88
- `sfs`: [v0.3.1](services/sfs/CHANGELOG.md#v031)
99
- Deprecate `getSchedule` and `listSchedules` methods in `SfsApi` class
10+
- `serverupdate`: [v0.2.0](services/serverupdate/CHANGELOG.md#v020)
11+
- **Feature (breaking change):** Introduction of multi API version support. See the GitHub discussion post for more details: https://github.com/stackitcloud/stackit-sdk-java/discussions/530
1012

1113
## Release (2026-04-08)
1214
- `iaas`:

examples/serverupdate/src/main/java/cloud/stackit/sdk/serverupdate/examples/ServerUpdateExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import cloud.stackit.sdk.core.KeyFlowAuthenticator;
44
import cloud.stackit.sdk.core.config.CoreConfiguration;
55
import cloud.stackit.sdk.core.exception.ApiException;
6-
import cloud.stackit.sdk.serverupdate.api.ServerUpdateApi;
7-
import cloud.stackit.sdk.serverupdate.model.*;
6+
import cloud.stackit.sdk.serverupdate.v2api.api.ServerUpdateApi;
7+
import cloud.stackit.sdk.serverupdate.v2api.model.*;
88
import java.io.IOException;
99
import java.net.HttpURLConnection;
1010
import java.time.Duration;

services/serverupdate/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.2.0
2+
- **Feature (breaking change):** Introduction of multi API version support. See the GitHub discussion post for more details: https://github.com/stackitcloud/stackit-sdk-java/discussions/530
3+
14
## v0.1.3
25
- Bump dependency `org.apache.commons:commons-lang3` to `3.18.0`
36
- Bump dependency `org.openapitools:jackson-databind-nullable` to `0.2.8`
@@ -9,4 +12,4 @@
912
- Bump dependency `cloud.stackit.sdk.core` to v0.4.1
1013

1114
## v0.1.0
12-
- Initial onboarding of STACKIT Java SDK for Server Update service
15+
- Initial onboarding of STACKIT Java SDK for Server Update service

services/serverupdate/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
# STACKIT Java SDK for STACKIT Server Update Management API
22

3-
- API version: 2.0
4-
5-
API endpoints for Server Update Operations on STACKIT Servers.
6-
7-
83
This package is part of the STACKIT Java SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-java) of the SDK.
94

105
## Installation from Maven Central (recommended)

services/serverupdate/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.3
1+
0.2.0
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
* STACKIT Server Update Management API
3+
* API endpoints for Server Update Operations on STACKIT Servers.
4+
*
5+
* The version of the OpenAPI document: 1.0
6+
* Contact: support@stackit.de
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
package cloud.stackit.sdk.serverupdate.v1api;
14+
15+
import cloud.stackit.sdk.core.exception.ApiException;
16+
import java.util.List;
17+
import java.util.Map;
18+
19+
/**
20+
* Callback for asynchronous API call.
21+
*
22+
* @param <T> The return type
23+
*/
24+
public interface ApiCallback<T> {
25+
/**
26+
* This is called when the API call fails.
27+
*
28+
* @param e The exception causing the failure
29+
* @param statusCode Status code of the response if available, otherwise it would be 0
30+
* @param responseHeaders Headers of the response if available, otherwise it would be null
31+
*/
32+
void onFailure(ApiException e, int statusCode, Map<String, List<String>> responseHeaders);
33+
34+
/**
35+
* This is called when the API call succeeded.
36+
*
37+
* @param result The result deserialized from response
38+
* @param statusCode Status code of the response
39+
* @param responseHeaders Headers of the response
40+
*/
41+
void onSuccess(T result, int statusCode, Map<String, List<String>> responseHeaders);
42+
43+
/**
44+
* This is called when the API upload processing.
45+
*
46+
* @param bytesWritten bytes Written
47+
* @param contentLength content length of request body
48+
* @param done write end
49+
*/
50+
void onUploadProgress(long bytesWritten, long contentLength, boolean done);
51+
52+
/**
53+
* This is called when the API download processing.
54+
*
55+
* @param bytesRead bytes Read
56+
* @param contentLength content length of the response
57+
* @param done Read end
58+
*/
59+
void onDownloadProgress(long bytesRead, long contentLength, boolean done);
60+
}

0 commit comments

Comments
 (0)