diff --git a/src/containerapp/azext_containerapp/_params.py b/src/containerapp/azext_containerapp/_params.py index 72aa29df1f7..63e7d4053ac 100644 --- a/src/containerapp/azext_containerapp/_params.py +++ b/src/containerapp/azext_containerapp/_params.py @@ -404,9 +404,9 @@ def load_arguments(self, _): with self.argument_context('containerapp env workload-profile') as c: c.argument('env_name', options_list=['--name', '-n'], help="The name of the Container App environment") - c.argument('workload_profile_name', options_list=['--workload-profile-name', '-w'], help='The friendly name for the workload profile', is_preview=True) + c.argument('workload_profile_name', options_list=['--workload-profile-name', '-w'], help='The friendly name for the workload profile') with self.argument_context('containerapp env workload-profile set') as c: - c.argument('workload_profile_type', help="The type of workload profile to add or update. Run 'az containerapp env workload-profile list-supported -l ' to check the options for your region.", is_preview=True) - c.argument('min_nodes', help="The minimum node count for the workload profile", is_preview=True) - c.argument('max_nodes', help="The maximum node count for the workload profile", is_preview=True) + c.argument('workload_profile_type', help="The type of workload profile to add or update. Run 'az containerapp env workload-profile list-supported -l ' to check the options for your region.") + c.argument('min_nodes', help="The minimum node count for the workload profile") + c.argument('max_nodes', help="The maximum node count for the workload profile")