Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{AFD} fix doc for #30018 #30016 #30523

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading