You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/mongodb/v1alpha1/api.py
+32Lines changed: 32 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1169,3 +1169,35 @@ async def update_user(
1169
1169
1170
1170
self._throw_on_error(res)
1171
1171
returnunmarshal_User(res.json())
1172
+
1173
+
asyncdefdelete_endpoint(
1174
+
self,
1175
+
*,
1176
+
endpoint_id: str,
1177
+
region: Optional[Region] =None,
1178
+
) ->None:
1179
+
"""
1180
+
Delete a Database Instance endpoint.
1181
+
Delete the endpoint of a Database Instance. You must specify the `endpoint_id` parameter of the endpoint you want to delete. Note that you might need to update any environment configurations that point to the deleted endpoint.
1182
+
:param endpoint_id: UUID of the Endpoint to delete.
1183
+
:param region: Region to target. If none is passed will use default region from the config.
Copy file name to clipboardExpand all lines: scaleway/scaleway/mongodb/v1alpha1/api.py
+32Lines changed: 32 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1165,3 +1165,35 @@ def update_user(
1165
1165
1166
1166
self._throw_on_error(res)
1167
1167
returnunmarshal_User(res.json())
1168
+
1169
+
defdelete_endpoint(
1170
+
self,
1171
+
*,
1172
+
endpoint_id: str,
1173
+
region: Optional[Region] =None,
1174
+
) ->None:
1175
+
"""
1176
+
Delete a Database Instance endpoint.
1177
+
Delete the endpoint of a Database Instance. You must specify the `endpoint_id` parameter of the endpoint you want to delete. Note that you might need to update any environment configurations that point to the deleted endpoint.
1178
+
:param endpoint_id: UUID of the Endpoint to delete.
1179
+
:param region: Region to target. If none is passed will use default region from the config.
0 commit comments