Skip to content

Commit

Permalink
compression size doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jingnan Xu committed Dec 16, 2024
1 parent dd2aa86 commit ef83fcb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
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 @@ -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 ef83fcb

Please sign in to comment.