diff --git a/src/azure-cli/azure/cli/command_modules/cdn/aaz/latest/afd/endpoint/_purge.py b/src/azure-cli/azure/cli/command_modules/cdn/aaz/latest/afd/endpoint/_purge.py index 366f0b4fc2b..a3733921d02 100644 --- a/src/azure-cli/azure/cli/command_modules/cdn/aaz/latest/afd/endpoint/_purge.py +++ b/src/azure-cli/azure/cli/command_modules/cdn/aaz/latest/afd/endpoint/_purge.py @@ -18,7 +18,7 @@ class Purge(AAZCommand): """Removes a content from AzureFrontDoor. :example: Remove all cached contents under directory "/script" for domain www.contoso.com - az afd endpoint purge -g group --profile-name profile --domains www.contoso.com --content-paths '/scripts/*' + az afd endpoint purge -g group --profile-name profile --domains [www.contoso.com,www.contoso1.com] --content-paths '/scripts/*' """ _aaz_info = { @@ -73,7 +73,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.domains = AAZListArg( options=["--domains"], arg_group="Contents", - help="List of domains. Example: \"[www.contoso.com,www.contoso1.com]\"", + help="List of domains. Example: \"www.contoso.com, www.contoso1.com\"", ) content_paths = cls._args_schema.content_paths