Skip to content
Open
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
1 change: 1 addition & 0 deletions services/serverbackup/oas_commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
13c5b5e0de43655bb98092c4d3ede11a9a404792
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ class BackupPolicy(BaseModel):
enabled: Optional[StrictBool] = None
id: Optional[StrictStr] = None
name: Optional[StrictStr] = None
rrule: Optional[StrictStr] = None
rrule: Optional[StrictStr] = Field(
default=None,
description="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",
)
__properties: ClassVar[List[str]] = ["backupProperties", "default", "description", "enabled", "id", "name", "rrule"]

model_config = ConfigDict(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ class BackupSchedule(BaseModel):
enabled: StrictBool
id: StrictInt
name: StrictStr
rrule: StrictStr
rrule: StrictStr = Field(
description="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"
)
__properties: ClassVar[List[str]] = ["backupProperties", "enabled", "id", "name", "rrule"]

model_config = ConfigDict(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ class CreateBackupSchedulePayload(BaseModel):
backup_properties: Optional[BackupProperties] = Field(default=None, alias="backupProperties")
enabled: StrictBool
name: StrictStr = Field(description="Max 255 characters")
rrule: StrictStr
rrule: StrictStr = Field(
description="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"
)
__properties: ClassVar[List[str]] = ["backupProperties", "enabled", "name", "rrule"]

model_config = ConfigDict(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ class UpdateBackupSchedulePayload(BaseModel):
backup_properties: Optional[BackupProperties] = Field(default=None, alias="backupProperties")
enabled: StrictBool
name: StrictStr = Field(description="Max 255 characters")
rrule: StrictStr
rrule: StrictStr = Field(
description="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"
)
__properties: ClassVar[List[str]] = ["backupProperties", "enabled", "name", "rrule"]

model_config = ConfigDict(
Expand Down
Loading