diff --git a/services/serverupdate/oas_commit b/services/serverupdate/oas_commit index c08a6770d..fd8ff3e68 100644 --- a/services/serverupdate/oas_commit +++ b/services/serverupdate/oas_commit @@ -1 +1 @@ -4407196dbbef4e53e6798809e856725cbc84ae05 +c09e232a83532c75ca1041153e3ebc7ce2d50eb6 diff --git a/services/serverupdate/v1api/model_create_update_payload.go b/services/serverupdate/v1api/model_create_update_payload.go index c51885280..a0fdfba5f 100644 --- a/services/serverupdate/v1api/model_create_update_payload.go +++ b/services/serverupdate/v1api/model_create_update_payload.go @@ -21,7 +21,8 @@ var _ MappedNullable = &CreateUpdatePayload{} // CreateUpdatePayload struct for CreateUpdatePayload type CreateUpdatePayload struct { - BackupBeforeUpdate *bool `json:"backupBeforeUpdate,omitempty"` + BackupBeforeUpdate *bool `json:"backupBeforeUpdate,omitempty"` + // Updates start within the defined hourly window. Depending on the updates, the process may exceed this timeframe and require an automatic restart. MaintenanceWindow int32 `json:"maintenanceWindow"` AdditionalProperties map[string]interface{} } diff --git a/services/serverupdate/v1api/model_create_update_schedule_payload.go b/services/serverupdate/v1api/model_create_update_schedule_payload.go index 076ff3245..479ee32e3 100644 --- a/services/serverupdate/v1api/model_create_update_schedule_payload.go +++ b/services/serverupdate/v1api/model_create_update_schedule_payload.go @@ -21,9 +21,11 @@ var _ MappedNullable = &CreateUpdateSchedulePayload{} // CreateUpdateSchedulePayload struct for CreateUpdateSchedulePayload type CreateUpdateSchedulePayload struct { - Enabled bool `json:"enabled"` - MaintenanceWindow int32 `json:"maintenanceWindow"` - Name string `json:"name"` + Enabled bool `json:"enabled"` + // Updates start within the defined hourly window. Depending on the updates, the process may exceed this timeframe and require an automatic restart. + MaintenanceWindow int32 `json:"maintenanceWindow"` + Name string `json:"name"` + // 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 Rrule string `json:"rrule"` AdditionalProperties map[string]interface{} } diff --git a/services/serverupdate/v1api/model_update_policy.go b/services/serverupdate/v1api/model_update_policy.go index 1f370d479..54472284b 100644 --- a/services/serverupdate/v1api/model_update_policy.go +++ b/services/serverupdate/v1api/model_update_policy.go @@ -20,12 +20,14 @@ var _ MappedNullable = &UpdatePolicy{} // UpdatePolicy struct for UpdatePolicy type UpdatePolicy struct { - Default *bool `json:"default,omitempty"` - Description *string `json:"description,omitempty"` - Enabled *bool `json:"enabled,omitempty"` - Id *string `json:"id,omitempty"` - MaintenanceWindow *int32 `json:"maintenanceWindow,omitempty"` - Name *string `json:"name,omitempty"` + Default *bool `json:"default,omitempty"` + Description *string `json:"description,omitempty"` + Enabled *bool `json:"enabled,omitempty"` + Id *string `json:"id,omitempty"` + // Updates start within the defined hourly window. Depending on the updates, the process may exceed this timeframe and require an automatic restart. + MaintenanceWindow *int32 `json:"maintenanceWindow,omitempty"` + Name *string `json:"name,omitempty"` + // 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 Rrule *string `json:"rrule,omitempty"` AdditionalProperties map[string]interface{} } diff --git a/services/serverupdate/v1api/model_update_schedule.go b/services/serverupdate/v1api/model_update_schedule.go index 20f2aefce..00b446b39 100644 --- a/services/serverupdate/v1api/model_update_schedule.go +++ b/services/serverupdate/v1api/model_update_schedule.go @@ -21,9 +21,11 @@ var _ MappedNullable = &UpdateSchedule{} // UpdateSchedule struct for UpdateSchedule type UpdateSchedule struct { - Enabled bool `json:"enabled"` - MaintenanceWindow int32 `json:"maintenanceWindow"` - Name string `json:"name"` + Enabled bool `json:"enabled"` + // Updates start within the defined hourly window. Depending on the updates, the process may exceed this timeframe and require an automatic restart. + MaintenanceWindow int32 `json:"maintenanceWindow"` + Name string `json:"name"` + // 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 Rrule string `json:"rrule"` Id int32 `json:"id"` AdditionalProperties map[string]interface{} diff --git a/services/serverupdate/v1api/model_update_schedule_create_request.go b/services/serverupdate/v1api/model_update_schedule_create_request.go index 92b338b82..e66a34041 100644 --- a/services/serverupdate/v1api/model_update_schedule_create_request.go +++ b/services/serverupdate/v1api/model_update_schedule_create_request.go @@ -21,9 +21,11 @@ var _ MappedNullable = &UpdateScheduleCreateRequest{} // UpdateScheduleCreateRequest struct for UpdateScheduleCreateRequest type UpdateScheduleCreateRequest struct { - Enabled bool `json:"enabled"` - MaintenanceWindow int32 `json:"maintenanceWindow"` - Name string `json:"name"` + Enabled bool `json:"enabled"` + // Updates start within the defined hourly window. Depending on the updates, the process may exceed this timeframe and require an automatic restart. + MaintenanceWindow int32 `json:"maintenanceWindow"` + Name string `json:"name"` + // 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 Rrule string `json:"rrule"` AdditionalProperties map[string]interface{} } diff --git a/services/serverupdate/v1api/model_update_update_schedule_payload.go b/services/serverupdate/v1api/model_update_update_schedule_payload.go index 67a9204fa..1765f1c74 100644 --- a/services/serverupdate/v1api/model_update_update_schedule_payload.go +++ b/services/serverupdate/v1api/model_update_update_schedule_payload.go @@ -21,9 +21,11 @@ var _ MappedNullable = &UpdateUpdateSchedulePayload{} // UpdateUpdateSchedulePayload struct for UpdateUpdateSchedulePayload type UpdateUpdateSchedulePayload struct { - Enabled bool `json:"enabled"` - MaintenanceWindow int32 `json:"maintenanceWindow"` - Name string `json:"name"` + Enabled bool `json:"enabled"` + // Updates start within the defined hourly window. Depending on the updates, the process may exceed this timeframe and require an automatic restart. + MaintenanceWindow int32 `json:"maintenanceWindow"` + Name string `json:"name"` + // 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 Rrule string `json:"rrule"` AdditionalProperties map[string]interface{} }