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/registry/v1/api.py
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ async def get_namespace(
158
158
Get a namespace.
159
159
Retrieve information about a given namespace, specified by its `namespace_id` and region. Full details about the namespace, such as `description`, `project_id`, `status`, `endpoint`, `is_public`, `size`, and `image_count` are returned in the response.
160
160
:param region: Region to target. If none is passed will use default region from the config.
161
-
:param namespace_id: The UUID of the namespace.
161
+
:param namespace_id: UUID of the namespace.
162
162
:return: :class:`Namespace <Namespace>`
163
163
164
164
Usage:
@@ -192,7 +192,7 @@ async def wait_for_namespace(
192
192
"""
193
193
Waits for :class:`Namespace <Namespace>` to be in a final state.
194
194
:param region: Region to target. If none is passed will use default region from the config.
195
-
:param namespace_id: The UUID of the namespace.
195
+
:param namespace_id: UUID of the namespace.
196
196
:param options: The options for the waiter
197
197
:return: :class:`Namespace <Namespace>`
198
198
@@ -239,7 +239,7 @@ async def create_namespace(
239
239
:param project_id: Project ID on which the namespace will be created.
240
240
241
241
One-of ('project_identifier'): at most one of 'organization_id', 'project_id' could be set.
242
-
:param is_public: Whether or not namespace is public.
242
+
:param is_public: Defines whether or not namespace is public.
243
243
:return: :class:`Namespace <Namespace>`
244
244
245
245
Usage:
@@ -288,7 +288,7 @@ async def update_namespace(
288
288
:param region: Region to target. If none is passed will use default region from the config.
289
289
:param namespace_id: ID of the namespace to update.
290
290
:param description: Namespace description.
291
-
:param is_public: Whether or not the namespace is public.
291
+
:param is_public: Defines whether or not the namespace is public.
292
292
:return: :class:`Namespace <Namespace>`
293
293
294
294
Usage:
@@ -329,7 +329,7 @@ async def delete_namespace(
329
329
Delete a namespace.
330
330
Delete a given namespace. You must specify, in the endpoint, the `region` and `namespace_id` parameters of the namespace you want to delete.
331
331
:param region: Region to target. If none is passed will use default region from the config.
332
-
:param namespace_id: The UUID of the namespace.
332
+
:param namespace_id: UUID of the namespace.
333
333
:return: :class:`Namespace <Namespace>`
334
334
335
335
Usage:
@@ -461,7 +461,7 @@ async def get_image(
461
461
Get an image.
462
462
Retrieve information about a given container image, specified by its `image_id` and region. Full details about the image, such as `name`, `namespace_id`, `status`, `visibility`, and `size` are returned in the response.
463
463
:param region: Region to target. If none is passed will use default region from the config.
464
-
:param image_id: The UUID of the image.
464
+
:param image_id: UUID of the image.
465
465
:return: :class:`Image <Image>`
466
466
467
467
Usage:
@@ -493,7 +493,7 @@ async def wait_for_image(
493
493
"""
494
494
Waits for :class:`Image <Image>` to be in a final state.
495
495
:param region: Region to target. If none is passed will use default region from the config.
496
-
:param image_id: The UUID of the image.
496
+
:param image_id: UUID of the image.
497
497
:param options: The options for the waiter
498
498
:return: :class:`Image <Image>`
499
499
@@ -573,7 +573,7 @@ async def delete_image(
573
573
Delete an image.
574
574
Delete a given image. You must specify, in the endpoint, the `region` and `image_id` parameters of the image you want to delete.
575
575
:param region: Region to target. If none is passed will use default region from the config.
576
-
:param image_id: The UUID of the image.
576
+
:param image_id: UUID of the image.
577
577
:return: :class:`Image <Image>`
578
578
579
579
Usage:
@@ -609,7 +609,7 @@ async def list_tags(
609
609
List tags.
610
610
List all tags for a given image, specified by region. By default, the tags listed are ordered by creation date in ascending order. This can be modified via the order_by field. You can also define additional parameters for your query, such as the `name`.
611
611
:param region: Region to target. If none is passed will use default region from the config.
612
-
:param image_id: The UUID of the image.
612
+
:param image_id: UUID of the image.
613
613
:param page: A positive integer to choose the page to display.
614
614
:param page_size: A positive integer lower or equal to 100 to select the number of items to display.
615
615
:param order_by: Criteria to use when ordering tag listings. Possible values are `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `region`, `status_asc` and `status_desc`. The default value is `created_at_asc`.
@@ -655,7 +655,7 @@ async def list_tags_all(
655
655
List tags.
656
656
List all tags for a given image, specified by region. By default, the tags listed are ordered by creation date in ascending order. This can be modified via the order_by field. You can also define additional parameters for your query, such as the `name`.
657
657
:param region: Region to target. If none is passed will use default region from the config.
658
-
:param image_id: The UUID of the image.
658
+
:param image_id: UUID of the image.
659
659
:param page: A positive integer to choose the page to display.
660
660
:param page_size: A positive integer lower or equal to 100 to select the number of items to display.
661
661
:param order_by: Criteria to use when ordering tag listings. Possible values are `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `region`, `status_asc` and `status_desc`. The default value is `created_at_asc`.
@@ -692,7 +692,7 @@ async def get_tag(
692
692
Get a tag.
693
693
Retrieve information about a given image tag, specified by its `tag_id` and region. Full details about the tag, such as `name`, `image_id`, `status`, and `digest` are returned in the response.
694
694
:param region: Region to target. If none is passed will use default region from the config.
695
-
:param tag_id: The UUID of the tag.
695
+
:param tag_id: UUID of the tag.
696
696
:return: :class:`Tag <Tag>`
697
697
698
698
Usage:
@@ -724,7 +724,7 @@ async def wait_for_tag(
724
724
"""
725
725
Waits for :class:`Tag <Tag>` to be in a final state.
726
726
:param region: Region to target. If none is passed will use default region from the config.
727
-
:param tag_id: The UUID of the tag.
727
+
:param tag_id: UUID of the tag.
728
728
:param options: The options for the waiter
729
729
:return: :class:`Tag <Tag>`
730
730
@@ -760,7 +760,7 @@ async def delete_tag(
760
760
Delete a tag.
761
761
Delete a given image tag. You must specify, in the endpoint, the `region` and `tag_id` parameters of the tag you want to delete.
762
762
:param region: Region to target. If none is passed will use default region from the config.
763
-
:param tag_id: The UUID of the tag.
763
+
:param tag_id: UUID of the tag.
764
764
:param force: If two tags share the same digest the deletion will fail unless this parameter is set to true.
Copy file name to clipboardExpand all lines: scaleway/scaleway/registry/v1/api.py
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ def get_namespace(
158
158
Get a namespace.
159
159
Retrieve information about a given namespace, specified by its `namespace_id` and region. Full details about the namespace, such as `description`, `project_id`, `status`, `endpoint`, `is_public`, `size`, and `image_count` are returned in the response.
160
160
:param region: Region to target. If none is passed will use default region from the config.
161
-
:param namespace_id: The UUID of the namespace.
161
+
:param namespace_id: UUID of the namespace.
162
162
:return: :class:`Namespace <Namespace>`
163
163
164
164
Usage:
@@ -190,7 +190,7 @@ def wait_for_namespace(
190
190
"""
191
191
Waits for :class:`Namespace <Namespace>` to be in a final state.
192
192
:param region: Region to target. If none is passed will use default region from the config.
193
-
:param namespace_id: The UUID of the namespace.
193
+
:param namespace_id: UUID of the namespace.
194
194
:param options: The options for the waiter
195
195
:return: :class:`Namespace <Namespace>`
196
196
@@ -237,7 +237,7 @@ def create_namespace(
237
237
:param project_id: Project ID on which the namespace will be created.
238
238
239
239
One-of ('project_identifier'): at most one of 'organization_id', 'project_id' could be set.
240
-
:param is_public: Whether or not namespace is public.
240
+
:param is_public: Defines whether or not namespace is public.
241
241
:return: :class:`Namespace <Namespace>`
242
242
243
243
Usage:
@@ -286,7 +286,7 @@ def update_namespace(
286
286
:param region: Region to target. If none is passed will use default region from the config.
287
287
:param namespace_id: ID of the namespace to update.
288
288
:param description: Namespace description.
289
-
:param is_public: Whether or not the namespace is public.
289
+
:param is_public: Defines whether or not the namespace is public.
290
290
:return: :class:`Namespace <Namespace>`
291
291
292
292
Usage:
@@ -327,7 +327,7 @@ def delete_namespace(
327
327
Delete a namespace.
328
328
Delete a given namespace. You must specify, in the endpoint, the `region` and `namespace_id` parameters of the namespace you want to delete.
329
329
:param region: Region to target. If none is passed will use default region from the config.
330
-
:param namespace_id: The UUID of the namespace.
330
+
:param namespace_id: UUID of the namespace.
331
331
:return: :class:`Namespace <Namespace>`
332
332
333
333
Usage:
@@ -459,7 +459,7 @@ def get_image(
459
459
Get an image.
460
460
Retrieve information about a given container image, specified by its `image_id` and region. Full details about the image, such as `name`, `namespace_id`, `status`, `visibility`, and `size` are returned in the response.
461
461
:param region: Region to target. If none is passed will use default region from the config.
462
-
:param image_id: The UUID of the image.
462
+
:param image_id: UUID of the image.
463
463
:return: :class:`Image <Image>`
464
464
465
465
Usage:
@@ -491,7 +491,7 @@ def wait_for_image(
491
491
"""
492
492
Waits for :class:`Image <Image>` to be in a final state.
493
493
:param region: Region to target. If none is passed will use default region from the config.
494
-
:param image_id: The UUID of the image.
494
+
:param image_id: UUID of the image.
495
495
:param options: The options for the waiter
496
496
:return: :class:`Image <Image>`
497
497
@@ -571,7 +571,7 @@ def delete_image(
571
571
Delete an image.
572
572
Delete a given image. You must specify, in the endpoint, the `region` and `image_id` parameters of the image you want to delete.
573
573
:param region: Region to target. If none is passed will use default region from the config.
574
-
:param image_id: The UUID of the image.
574
+
:param image_id: UUID of the image.
575
575
:return: :class:`Image <Image>`
576
576
577
577
Usage:
@@ -607,7 +607,7 @@ def list_tags(
607
607
List tags.
608
608
List all tags for a given image, specified by region. By default, the tags listed are ordered by creation date in ascending order. This can be modified via the order_by field. You can also define additional parameters for your query, such as the `name`.
609
609
:param region: Region to target. If none is passed will use default region from the config.
610
-
:param image_id: The UUID of the image.
610
+
:param image_id: UUID of the image.
611
611
:param page: A positive integer to choose the page to display.
612
612
:param page_size: A positive integer lower or equal to 100 to select the number of items to display.
613
613
:param order_by: Criteria to use when ordering tag listings. Possible values are `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `region`, `status_asc` and `status_desc`. The default value is `created_at_asc`.
@@ -653,7 +653,7 @@ def list_tags_all(
653
653
List tags.
654
654
List all tags for a given image, specified by region. By default, the tags listed are ordered by creation date in ascending order. This can be modified via the order_by field. You can also define additional parameters for your query, such as the `name`.
655
655
:param region: Region to target. If none is passed will use default region from the config.
656
-
:param image_id: The UUID of the image.
656
+
:param image_id: UUID of the image.
657
657
:param page: A positive integer to choose the page to display.
658
658
:param page_size: A positive integer lower or equal to 100 to select the number of items to display.
659
659
:param order_by: Criteria to use when ordering tag listings. Possible values are `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `region`, `status_asc` and `status_desc`. The default value is `created_at_asc`.
@@ -690,7 +690,7 @@ def get_tag(
690
690
Get a tag.
691
691
Retrieve information about a given image tag, specified by its `tag_id` and region. Full details about the tag, such as `name`, `image_id`, `status`, and `digest` are returned in the response.
692
692
:param region: Region to target. If none is passed will use default region from the config.
693
-
:param tag_id: The UUID of the tag.
693
+
:param tag_id: UUID of the tag.
694
694
:return: :class:`Tag <Tag>`
695
695
696
696
Usage:
@@ -722,7 +722,7 @@ def wait_for_tag(
722
722
"""
723
723
Waits for :class:`Tag <Tag>` to be in a final state.
724
724
:param region: Region to target. If none is passed will use default region from the config.
725
-
:param tag_id: The UUID of the tag.
725
+
:param tag_id: UUID of the tag.
726
726
:param options: The options for the waiter
727
727
:return: :class:`Tag <Tag>`
728
728
@@ -758,7 +758,7 @@ def delete_tag(
758
758
Delete a tag.
759
759
Delete a given image tag. You must specify, in the endpoint, the `region` and `tag_id` parameters of the tag you want to delete.
760
760
:param region: Region to target. If none is passed will use default region from the config.
761
-
:param tag_id: The UUID of the tag.
761
+
:param tag_id: UUID of the tag.
762
762
:param force: If two tags share the same digest the deletion will fail unless this parameter is set to true.
0 commit comments