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
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/mongodb/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1612,7 +1612,7 @@ async def apply_maintenance(
) -> Maintenance:
"""
Apply a maintenance of a MongoDB® Database Instance.
:param maintenance_id:
:param maintenance_id: ID of the maintenance.
:param region: Region to target. If none is passed will use default region from the config.
:return: :class:`Maintenance <Maintenance>`

Expand Down
4 changes: 4 additions & 0 deletions scaleway-async/scaleway_async/mongodb/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,10 @@ class Version:
@dataclass
class ApplyMaintenanceRequest:
maintenance_id: str
"""
ID of the maintenance.
"""

region: Optional[ScwRegion] = None
"""
Region to target. If none is passed will use default region from the config.
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/mongodb/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1606,7 +1606,7 @@ def apply_maintenance(
) -> Maintenance:
"""
Apply a maintenance of a MongoDB® Database Instance.
:param maintenance_id:
:param maintenance_id: ID of the maintenance.
:param region: Region to target. If none is passed will use default region from the config.
:return: :class:`Maintenance <Maintenance>`

Expand Down
4 changes: 4 additions & 0 deletions scaleway/scaleway/mongodb/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,10 @@ class Version:
@dataclass
class ApplyMaintenanceRequest:
maintenance_id: str
"""
ID of the maintenance.
"""

region: Optional[ScwRegion] = None
"""
Region to target. If none is passed will use default region from the config.
Expand Down
Loading