Skip to content

Commit 3ff09a1

Browse files
authored
Merge branch 'main' into generator-bot-20058640807/loadbalancer
2 parents cd90fcc + 6601397 commit 3ff09a1

File tree

100 files changed

+28297
-4
lines changed

Some content is hidden

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

100 files changed

+28297
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
## Release (2025-MM-DD)
22
- `loadbalancer`: [v0.1.0](services/loadbalancer/CHANGELOG.md#v010)
33
- Initial onboarding of STACKIT Java SDK for Load balancer service
4+
- `alb`: [v0.1.0](services/alb/CHANGELOG.md#v010)
5+
- Initial onboarding of STACKIT Java SDK for Application load balancer service
46
- `objectstorage`: [v0.1.0](services/objectstorage/CHANGELOG.md#v010)
57
- Initial onboarding of STACKIT Java SDK for Object storage service
8+
- `serverupdate`: [v0.1.0](services/serverupdate/CHANGELOG.md#v010)
9+
- Initial onboarding of STACKIT Java SDK for Server Update service
610

711
## Release (2025-10-29)
812
- `core`:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Examples on services, configuration and authentication possibilities can be foun
6666
6767
## Authorization
6868

69-
To authenticate to the SDK, you will need a [service account](https://docs.stackit.cloud/stackit/en/service-accounts-134415819.html). Create it in the STACKIT Portal and assign it the necessary permissions, e.g. `project.owner`.
69+
To authenticate to the SDK, you will need a [service account](https://docs.stackit.cloud/platform/access-and-identity/service-accounts/). Create it in the STACKIT Portal and assign it the necessary permissions, e.g. `project.owner`.
7070

7171
The Java SDK supports only Key flow for authentication.
7272

@@ -97,12 +97,12 @@ When creating the service account key, a new pair can be created automatically,
9797
This will make it much easier to configure the key flow authentication in the SDK, by just providing the service account key.
9898

9999
> **Optionally**, you can provide your own private key when creating the service account key, which will then require you to also provide it explicitly to the SDK, additionally to the service account key.
100-
> Check the STACKIT Knowledge Base for an [example of how to create your own key-pair](https://docs.stackit.cloud/stackit/en/usage-of-the-service-account-keys-in-stackit-175112464.html#UsageoftheserviceaccountkeysinSTACKIT-CreatinganRSAkey-pair).
100+
> Check the STACKIT Docs for an [example of how to create your own key-pair](https://docs.stackit.cloud/platform/access-and-identity/service-accounts/how-tos/manage-service-account-keys/).
101101
102102
To configure the key flow, follow this steps:
103103

104104
1. Create a service account key:
105-
- Use the STACKIT Portal: go to the `Service Accounts` tab, choose a `Service Account` and go to `Service Account Keys` to create a key. For more details, see [Create a service account key](https://docs.stackit.cloud/stackit/en/create-a-service-account-key-175112456.html).
105+
- Use the STACKIT Portal: go to the `Service Accounts` tab, choose a `Service Account` and go to `Service Account Keys` to create a key. For more details, see [Create a service account key](https://docs.stackit.cloud/platform/access-and-identity/service-accounts/how-tos/manage-service-account-keys/).
106106
2. Save the content of the service account key by copying it and saving it in a JSON file. The expected format of the service account key is **JSON** with the following structure:
107107

108108
```json

examples/alb/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:alb')
3+
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
4+
}
5+
6+
ext.mainClassName = 'cloud.stackit.sdk.alb.examples.AlbExample'

0 commit comments

Comments
 (0)