@@ -284,7 +284,7 @@ async def create_namespace(
284
284
:param project_id: UUID of the Project in which the namespace will be created.
285
285
:param description: Description of the namespace to create.
286
286
:param secret_environment_variables: Secret environment variables of the namespace to create.
287
- :param tags: [ALPHA] Tags of the Serverless Container Namespace.
287
+ :param tags: Tags of the Serverless Container Namespace.
288
288
:return: :class:`Namespace <Namespace>`
289
289
290
290
Usage:
@@ -335,7 +335,7 @@ async def update_namespace(
335
335
:param environment_variables: Environment variables of the namespace to update.
336
336
:param description: Description of the namespace to update.
337
337
:param secret_environment_variables: Secret environment variables of the namespace to update.
338
- :param tags: [ALPHA] Tags of the Serverless Container Namespace.
338
+ :param tags: Tags of the Serverless Container Namespace.
339
339
:return: :class:`Namespace <Namespace>`
340
340
341
341
Usage:
@@ -605,6 +605,7 @@ async def create_container(
605
605
local_storage_limit : Optional [int ] = None ,
606
606
scaling_option : Optional [ContainerScalingOption ] = None ,
607
607
health_check : Optional [ContainerHealthCheckSpec ] = None ,
608
+ tags : Optional [List [str ]] = None ,
608
609
) -> Container :
609
610
"""
610
611
Create a new container.
@@ -635,6 +636,7 @@ async def create_container(
635
636
- cpu_usage_threshold: Scale depending on the CPU usage of a container instance.
636
637
- memory_usage_threshold: Scale depending on the memory usage of a container instance.
637
638
:param health_check: Health check configuration of the container.
639
+ :param tags: Tags of the Serverless Container.
638
640
:return: :class:`Container <Container>`
639
641
640
642
Usage:
@@ -676,6 +678,7 @@ async def create_container(
676
678
local_storage_limit = local_storage_limit ,
677
679
scaling_option = scaling_option ,
678
680
health_check = health_check ,
681
+ tags = tags ,
679
682
),
680
683
self .client ,
681
684
),
@@ -708,6 +711,7 @@ async def update_container(
708
711
local_storage_limit : Optional [int ] = None ,
709
712
scaling_option : Optional [ContainerScalingOption ] = None ,
710
713
health_check : Optional [ContainerHealthCheckSpec ] = None ,
714
+ tags : Optional [List [str ]] = None ,
711
715
) -> Container :
712
716
"""
713
717
Update an existing container.
@@ -738,6 +742,7 @@ async def update_container(
738
742
- cpu_usage_threshold: Scale depending on the CPU usage of a container instance.
739
743
- memory_usage_threshold: Scale depending on the memory usage of a container instance.
740
744
:param health_check: Health check configuration of the container.
745
+ :param tags: Tags of the Serverless Container.
741
746
:return: :class:`Container <Container>`
742
747
743
748
Usage:
@@ -779,6 +784,7 @@ async def update_container(
779
784
local_storage_limit = local_storage_limit ,
780
785
scaling_option = scaling_option ,
781
786
health_check = health_check ,
787
+ tags = tags ,
782
788
),
783
789
self .client ,
784
790
),
0 commit comments