Skip to content

Commit a6c498c

Browse files
Generator: Update SDK /services/sfs (#527)
Co-authored-by: Ruben Hoenle <Ruben.Hoenle@digits.schwarz>
1 parent b255ff1 commit a6c498c

File tree

5 files changed

+35
-2
lines changed

5 files changed

+35
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Release (2026-MM-DD)
2+
- `sfs`: [v0.3.1](services/sfs/CHANGELOG.md#v031)
3+
- Deprecate `getSchedule` and `listSchedules` methods in `SfsApi` class
4+
15
## Release (2026-04-08)
26
- `iaas`:
37
- [v1.0.1](services/iaas/CHANGELOG.md#v101)

services/sfs/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.3.1
2+
- Deprecate `getSchedule` and `listSchedules` methods in `SfsApi` class
3+
14
## v0.3.0
25
- **Feature:** Add `disableLock`, `enableLock`, `getLock`, `getSchedule`, `listSchedules`, `getSnapshotPolicy`, `listSnapshotPolicies`, methods to `DefaultApi` / `SfsApi` class
36
- **Feature:** New model classes: `EnableLockResponse`, `GetLockResponse`, `GetScheduleResponse`, `GetSnapshotPolicyResponse`, `ListSchedulesResponse`, `ListSnapshotPoliciesResponse`, `ResourcePoolSnapshotPolicy`, `Schedule`, `SnapshotPolicy`, `SnapshotPolicySchedule`, `UpdateResourcePoolSnapshotPayload`, `UpdateResourcePoolSnapshotResponse`

services/sfs/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.3.1

services/sfs/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1c36f3781c31a0e21c4588c7c4ec835d477d2f21
1+
9356c10747db357b4ec533ec97231f1af5530ca0

services/sfs/src/main/java/cloud/stackit/sdk/sfs/api/DefaultApi.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2893,7 +2893,10 @@ public okhttp3.Call getResourcePoolSnapshotAsync(
28932893
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
28942894
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
28952895
* </table>
2896+
*
2897+
* @deprecated
28962898
*/
2899+
@Deprecated
28972900
public okhttp3.Call getScheduleCall(
28982901
@javax.annotation.Nonnull String projectId,
28992902
@javax.annotation.Nonnull String id,
@@ -2956,6 +2959,7 @@ public okhttp3.Call getScheduleCall(
29562959
_callback);
29572960
}
29582961

2962+
@Deprecated
29592963
@SuppressWarnings("rawtypes")
29602964
private okhttp3.Call getScheduleValidateBeforeCall(
29612965
@javax.annotation.Nonnull String projectId,
@@ -2992,7 +2996,10 @@ private okhttp3.Call getScheduleValidateBeforeCall(
29922996
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
29932997
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
29942998
* </table>
2999+
*
3000+
* @deprecated
29953001
*/
3002+
@Deprecated
29963003
public GetScheduleResponse getSchedule(
29973004
@javax.annotation.Nonnull String projectId, @javax.annotation.Nonnull String id)
29983005
throws ApiException {
@@ -3015,7 +3022,10 @@ public GetScheduleResponse getSchedule(
30153022
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
30163023
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
30173024
* </table>
3025+
*
3026+
* @deprecated
30183027
*/
3028+
@Deprecated
30193029
public ApiResponse<GetScheduleResponse> getScheduleWithHttpInfo(
30203030
@javax.annotation.Nonnull String projectId, @javax.annotation.Nonnull String id)
30213031
throws ApiException {
@@ -3040,7 +3050,10 @@ public ApiResponse<GetScheduleResponse> getScheduleWithHttpInfo(
30403050
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
30413051
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
30423052
* </table>
3053+
*
3054+
* @deprecated
30433055
*/
3056+
@Deprecated
30443057
public okhttp3.Call getScheduleAsync(
30453058
@javax.annotation.Nonnull String projectId,
30463059
@javax.annotation.Nonnull String id,
@@ -4233,7 +4246,10 @@ public okhttp3.Call listResourcePoolsAsync(
42334246
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
42344247
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
42354248
* </table>
4249+
*
4250+
* @deprecated
42364251
*/
4252+
@Deprecated
42374253
public okhttp3.Call listSchedulesCall(
42384254
@javax.annotation.Nonnull String projectId, final ApiCallback _callback)
42394255
throws ApiException {
@@ -4293,6 +4309,7 @@ public okhttp3.Call listSchedulesCall(
42934309
_callback);
42944310
}
42954311

4312+
@Deprecated
42964313
@SuppressWarnings("rawtypes")
42974314
private okhttp3.Call listSchedulesValidateBeforeCall(
42984315
@javax.annotation.Nonnull String projectId, final ApiCallback _callback)
@@ -4320,7 +4337,10 @@ private okhttp3.Call listSchedulesValidateBeforeCall(
43204337
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
43214338
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
43224339
* </table>
4340+
*
4341+
* @deprecated
43234342
*/
4343+
@Deprecated
43244344
public ListSchedulesResponse listSchedules(@javax.annotation.Nonnull String projectId)
43254345
throws ApiException {
43264346
ApiResponse<ListSchedulesResponse> localVarResp = listSchedulesWithHttpInfo(projectId);
@@ -4341,7 +4361,10 @@ public ListSchedulesResponse listSchedules(@javax.annotation.Nonnull String proj
43414361
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
43424362
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
43434363
* </table>
4364+
*
4365+
* @deprecated
43444366
*/
4367+
@Deprecated
43454368
public ApiResponse<ListSchedulesResponse> listSchedulesWithHttpInfo(
43464369
@javax.annotation.Nonnull String projectId) throws ApiException {
43474370
okhttp3.Call localVarCall = listSchedulesValidateBeforeCall(projectId, null);
@@ -4364,7 +4387,10 @@ public ApiResponse<ListSchedulesResponse> listSchedulesWithHttpInfo(
43644387
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
43654388
* <tr><td> 0 </td><td> Default error response </td><td> - </td></tr>
43664389
* </table>
4390+
*
4391+
* @deprecated
43674392
*/
4393+
@Deprecated
43684394
public okhttp3.Call listSchedulesAsync(
43694395
@javax.annotation.Nonnull String projectId,
43704396
final ApiCallback<ListSchedulesResponse> _callback)

0 commit comments

Comments
 (0)