Skip to content

Commit

Permalink
{AFD} fix doc for #30018 #30016 (#30523)
Browse files Browse the repository at this point in the history
* Fix spell issue #30018

* compression size doc fix

---------

Co-authored-by: Jingnan Xu <[email protected]>
  • Loading branch information
Ptnan7 and Jingnan Xu authored Dec 16, 2024
1 parent c7f9ff7 commit d978740
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
args_schema = super()._build_arguments_schema(*args, **kwargs)
args_schema.enable_private_link = AAZBoolArg(
options=['--enable-private-link'],
help='Indicates whether private link is enanbled on that origin.',
help='Indicates whether private link is enabled on that origin.',
blank=True,
default=False
)
Expand Down Expand Up @@ -365,7 +365,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
args_schema = super()._build_arguments_schema(*args, **kwargs)
args_schema.enable_private_link = AAZBoolArg(
options=['--enable-private-link'],
help='Indicates whether private link is enanbled on that origin.',
help='Indicates whether private link is enabled on that origin.',
blank=True
)
args_schema.private_link_location = AAZStrArg(
Expand Down Expand Up @@ -459,7 +459,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
args_schema = super()._build_arguments_schema(*args, **kwargs)
args_schema.enable_caching = AAZBoolArg(
options=['--enable-caching'],
help='Indicates whether caching is enanbled on that route.',
help='Indicates whether caching is enabled on that route.',
)
args_schema.custom_domains = AAZListArg(
options=['--custom-domains'],
Expand Down Expand Up @@ -495,7 +495,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
'Default value is false. If compression is enabled,'
'content will be served as compressed if user requests for a compressed version.'
'Content won\'t be compressed on AzureFrontDoor'
'when requested content is smaller than 1 byte or larger than 1 MB.',
'when requested content is smaller than 8 MB or larger than 1 KB.',
)
args_schema.cache_configuration._registered = False
args_schema.formatted_custom_domains._registered = False
Expand Down Expand Up @@ -561,7 +561,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
args_schema = super()._build_arguments_schema(*args, **kwargs)
args_schema.enable_caching = AAZBoolArg(
options=['--enable-caching'],
help='Indicates whether caching is enanbled on that route.',
help='Indicates whether caching is enabled on that route.',
)
args_schema.custom_domains = AAZListArg(
options=['--custom-domains'],
Expand Down Expand Up @@ -596,7 +596,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
help='Indicates whether content compression is enabled on AzureFrontDoor. Default value is false.'
'If compression is enabled, content will be served as compressed if user requests for a compressed version.'
'Content won\'t be compressed on AzureFrontDoor'
'when requested content is smaller than 1 byte or larger than 1 MB.',
'when requested content is smaller than 8 MB or larger than 1 KB.',
)
args_schema.cache_configuration._registered = False
args_schema.formatted_custom_domains._registered = False
Expand Down Expand Up @@ -746,7 +746,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
help='Indicates whether content compression is enabled on AzureFrontDoor. Default value is false.'
'If compression is enabled, content will be served as compressed if user requests for a compressed version.'
'Content won\'t be compressed on AzureFrontDoor'
'when requested content is smaller than 1 byte or larger than 1 MB.',
'when requested content is smaller than 8 MB or larger than 1 KB.',
)
args_schema.forwarding_protocol = AAZStrArg(
options=['--forwarding-protocol'],
Expand Down Expand Up @@ -994,7 +994,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
help='Indicates whether content compression is enabled on AzureFrontDoor. Default value is false.'
'If compression is enabled, content will be served as compressed if user requests for a compressed version.'
'Content won\'t be compressed on AzureFrontDoor'
'when requested content is smaller than 1 byte or larger than 1 MB.',
'when requested content is smaller than 8 MB or larger than 1 KB.',
)
args_schema.forwarding_protocol = AAZStrArg(
options=['--forwarding-protocol'],
Expand Down

0 comments on commit d978740

Please sign in to comment.