Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
- **Feature:** add attribute `vpcId` to model `Network`,
- **Feature:** add attribute `vtpm` (new model `ServerVTPM`) to model `Server`,
- **Feature:** add attribute `availabilityZone` to model `Snapshot`,
- `serverupdate`: [v0.2.1](services/serverupdate/CHANGELOG.md#v021)
- `v1api`: **Docs:** Extend the description of the attributes `rrule` and `maintenanceWindow`

## Release (2026-04-28)
- `alb`: [v0.5.0](services/alb/CHANGELOG.md#v050)
Expand Down
3 changes: 3 additions & 0 deletions services/serverupdate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.2.1
- `v1api`: **Docs:** Extend the description of the attributes `rrule` and `maintenanceWindow`

## v0.2.0
- **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

Expand Down
2 changes: 1 addition & 1 deletion services/serverupdate/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
2 changes: 1 addition & 1 deletion services/serverupdate/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0c4c4c22a2db77c6bcc0e27e513531d1c25d4fe1
602a933a8a6cc22c52171febbca7ceaf63bc7538
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ public CreateUpdatePayload maintenanceWindow(
}

/**
* Get maintenanceWindow minimum: 1 maximum: 24
* Updates start within the defined hourly window. Depending on the updates, the process may
* exceed this timeframe and require an automatic restart. minimum: 1 maximum: 24
*
* @return maintenanceWindow
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ public CreateUpdateSchedulePayload maintenanceWindow(
}

/**
* Get maintenanceWindow minimum: 1 maximum: 24
* Updates start within the defined hourly window. Depending on the updates, the process may
* exceed this timeframe and require an automatic restart. minimum: 1 maximum: 24
*
* @return maintenanceWindow
*/
Expand Down Expand Up @@ -123,7 +124,9 @@ public CreateUpdateSchedulePayload rrule(@javax.annotation.Nonnull String rrule)
}

/**
* Get rrule
* An rrule (Recurrence Rule) is a standardized string format used in iCalendar (RFC 5545) to
* define repeating events, and you can generate one by using a dedicated library or by using
* online generator tools to specify parameters like frequency, interval, and end dates
*
* @return rrule
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ public UpdatePolicy maintenanceWindow(@javax.annotation.Nullable Integer mainten
}

/**
* Get maintenanceWindow
* Updates start within the defined hourly window. Depending on the updates, the process may
* exceed this timeframe and require an automatic restart.
*
* @return maintenanceWindow
*/
Expand Down Expand Up @@ -184,7 +185,9 @@ public UpdatePolicy rrule(@javax.annotation.Nullable String rrule) {
}

/**
* Get rrule
* An rrule (Recurrence Rule) is a standardized string format used in iCalendar (RFC 5545) to
* define repeating events, and you can generate one by using a dedicated library or by using
* online generator tools to specify parameters like frequency, interval, and end dates
*
* @return rrule
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ public UpdateSchedule maintenanceWindow(@javax.annotation.Nonnull Integer mainte
}

/**
* Get maintenanceWindow minimum: 1 maximum: 24
* Updates start within the defined hourly window. Depending on the updates, the process may
* exceed this timeframe and require an automatic restart. minimum: 1 maximum: 24
*
* @return maintenanceWindow
*/
Expand Down Expand Up @@ -128,7 +129,9 @@ public UpdateSchedule rrule(@javax.annotation.Nonnull String rrule) {
}

/**
* Get rrule
* An rrule (Recurrence Rule) is a standardized string format used in iCalendar (RFC 5545) to
* define repeating events, and you can generate one by using a dedicated library or by using
* online generator tools to specify parameters like frequency, interval, and end dates
*
* @return rrule
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ public UpdateScheduleCreateRequest maintenanceWindow(
}

/**
* Get maintenanceWindow minimum: 1 maximum: 24
* Updates start within the defined hourly window. Depending on the updates, the process may
* exceed this timeframe and require an automatic restart. minimum: 1 maximum: 24
*
* @return maintenanceWindow
*/
Expand Down Expand Up @@ -123,7 +124,9 @@ public UpdateScheduleCreateRequest rrule(@javax.annotation.Nonnull String rrule)
}

/**
* Get rrule
* An rrule (Recurrence Rule) is a standardized string format used in iCalendar (RFC 5545) to
* define repeating events, and you can generate one by using a dedicated library or by using
* online generator tools to specify parameters like frequency, interval, and end dates
*
* @return rrule
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ public UpdateUpdateSchedulePayload maintenanceWindow(
}

/**
* Get maintenanceWindow minimum: 1 maximum: 24
* Updates start within the defined hourly window. Depending on the updates, the process may
* exceed this timeframe and require an automatic restart. minimum: 1 maximum: 24
*
* @return maintenanceWindow
*/
Expand Down Expand Up @@ -123,7 +124,9 @@ public UpdateUpdateSchedulePayload rrule(@javax.annotation.Nonnull String rrule)
}

/**
* Get rrule
* An rrule (Recurrence Rule) is a standardized string format used in iCalendar (RFC 5545) to
* define repeating events, and you can generate one by using a dedicated library or by using
* online generator tools to specify parameters like frequency, interval, and end dates
*
* @return rrule
*/
Expand Down
Loading