Skip to content

Commit 41b7f3c

Browse files
Generate objectstorage
1 parent 0e45ccf commit 41b7f3c

40 files changed

+11390
-0
lines changed

services/objectstorage/README.md

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# STACKIT Java SDK for STACKIT Object Storage API
2+
3+
- API version: 2.0.1
4+
5+
STACKIT API to manage the Object Storage
6+
7+
8+
9+
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.
10+
11+
## Installation from Maven Central (recommended)
12+
13+
The release artifacts for this SDK submodule are available on [Maven Central](https://central.sonatype.com/artifact/cloud.stackit.sdk/objectstorage).
14+
15+
### Maven users
16+
17+
Add this dependency to your project's POM:
18+
19+
```xml
20+
<dependency>
21+
<groupId>cloud.stackit.sdk</groupId>
22+
<artifactId>objectstorage</artifactId>
23+
<version><SDK_VERSION></version>
24+
<scope>compile</scope>
25+
</dependency>
26+
```
27+
28+
### Gradle users
29+
30+
Add this dependency to your project's build file:
31+
32+
```groovy
33+
repositories {
34+
mavenCentral()
35+
}
36+
37+
dependencies {
38+
implementation "cloud.stackit.sdk:objectstorage:<SDK_VERSION>"
39+
}
40+
```
41+
42+
## Installation from local build
43+
44+
Building the API client library requires:
45+
1. Java SDK (version 11 to 21 should be supported) installed on your system
46+
47+
To install the API client library to your local Maven repository, simply execute:
48+
49+
```shell
50+
./gradlew services:objectstorage:publishToMavenLocal
51+
```
52+
53+
### Maven users
54+
55+
Add this dependency to your project's POM:
56+
57+
```xml
58+
<dependency>
59+
<groupId>cloud.stackit.sdk</groupId>
60+
<artifactId>objectstorage</artifactId>
61+
<version><SDK_VERSION></version>
62+
<scope>compile</scope>
63+
</dependency>
64+
```
65+
66+
### Gradle users
67+
68+
Add this dependency to your project's build file:
69+
70+
```groovy
71+
repositories {
72+
mavenLocal()
73+
}
74+
75+
dependencies {
76+
implementation "cloud.stackit.sdk:objectstorage:<SDK_VERSION>"
77+
}
78+
```
79+
80+
## Getting Started
81+
82+
See the [objectstorage examples](https://github.com/stackitcloud/stackit-sdk-java/tree/main/examples/objectstorage/src/main/java/cloud/stackit/sdk/objectstorage/examples).
83+
84+
## Recommendation
85+
86+
It's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
ext {
3+
jakarta_annotation_version = "1.3.5"
4+
}
5+
6+
dependencies {
7+
implementation "com.google.code.findbugs:jsr305:3.0.2"
8+
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
9+
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
10+
implementation 'com.google.code.gson:gson:2.9.1'
11+
implementation 'io.gsonfire:gson-fire:1.9.0'
12+
implementation 'jakarta.ws.rs:jakarta.ws.rs-api:2.1.6'
13+
implementation 'org.openapitools:jackson-databind-nullable:0.2.6'
14+
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.17.0'
15+
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
16+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
17+
testImplementation 'org.mockito:mockito-core:3.12.4'
18+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
19+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
* STACKIT Object Storage API
3+
* STACKIT API to manage the Object Storage
4+
*
5+
* The version of the OpenAPI document: 2.0.1
6+
*
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.objectstorage;
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)