Skip to content

Commit 45727ed

Browse files
Generator: Update SDK /services/sfs (#290)
1 parent a4f4534 commit 45727ed

File tree

63 files changed

+22755
-2
lines changed

Some content is hidden

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

63 files changed

+22755
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
- **Improvement:** Support additional properties in models
1414
- `serverupdate`: [v0.1.2](services/serverupdate/CHANGELOG.md#v012)
1515
- **Improvement:** Support additional properties in models
16+
- `sfs`: [v0.1.0](services/sfs/CHANGELOG.md#v010)
17+
- Initial onboarding of STACKIT Java SDK for STACKIT File Storage (SFS) service
1618

1719
## Release (2026-01-27)
1820
- `core`: [v0.4.1](core/CHANGELOG.md/#v041)

examples/objectstorage/src/main/java/cloud/stackit/sdk/objectstorage/examples/ObjectStorageExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public static void main(String[] args) throws IOException {
3434
httpClient
3535
.newBuilder()
3636
.authenticator(authenticator)
37-
// The object storage requests are sychronous and may take a few seconds.
38-
// To prevent an timeout, we increase the read timeout to 15 seconds
37+
// The object storage requests are synchronous and may take a few seconds.
38+
// To prevent a timeout, we increase the read timeout to 15 seconds
3939
.readTimeout(Duration.ofSeconds(15))
4040
.build();
4141

examples/sfs/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
dependencies {
2+
implementation project (':services:sfs')
3+
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
4+
}
5+
6+
ext.mainClassName = 'cloud.stackit.sdk.sfs.examples.SfsExample'

0 commit comments

Comments
 (0)