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

Fix help message html tag in applicationgateway #659

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
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

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2713,7 +2713,7 @@
<help short="Minimum number of servers that are always marked healthy. Default value is 0."/>
</arg>
<arg type="string" var="$parameters.properties.probes[].properties.path" options="path" group="Properties">
<help short="Relative path of probe. Valid path starts from '/'. Probe is sent to <Protocol>://<host>:<port><path>."/>
<help short="Relative path of probe. Valid path starts from '/'. Probe is sent to `<Protocol>://<host>:<port><path>`."/>
</arg>
<arg type="boolean" var="$parameters.properties.probes[].properties.pickHostNameFromBackendHttpSettings" options="pick-host-name-from-backend-http-settings" group="Properties">
<help short="Whether the host header should be picked from the backend http settings. Default value is false."/>
Expand Down Expand Up @@ -6631,7 +6631,7 @@
<help short="Minimum number of servers that are always marked healthy. Default value is 0."/>
</arg>
<arg nullable="True" type="string" var="$parameters.properties.probes[].properties.path" options="path" group="Properties">
<help short="Relative path of probe. Valid path starts from '/'. Probe is sent to <Protocol>://<host>:<port><path>."/>
<help short="Relative path of probe. Valid path starts from '/'. Probe is sent to `<Protocol>://<host>:<port><path>`."/>
</arg>
<arg nullable="True" type="boolean" var="$parameters.properties.probes[].properties.pickHostNameFromBackendHttpSettings" options="pick-host-name-from-backend-http-settings" group="Properties">
<help short="Whether the host header should be picked from the backend http settings. Default value is false."/>
Expand Down Expand Up @@ -132762,7 +132762,7 @@
<help short="Minimum number of servers that are always marked healthy."/>
</arg>
<arg type="string" var="$parameters.properties.probes[].properties.path" options="path" group="">
<help short="Relative path of probe. Valid path starts from &quot;/&quot;. Probe is sent to <Protocol>://<host>:<port><path>."/>
<help short="Relative path of probe. Valid path starts from &quot;/&quot;. Probe is sent to `<Protocol>://<host>:<port><path>`."/>
</arg>
<arg type="boolean" var="$parameters.properties.probes[].properties.pickHostNameFromBackendHttpSettings" options="host-name-from-http-settings from-http-settings" group="">
<help short="Whether to use host header from HTTP settings."/>
Expand Down Expand Up @@ -135072,7 +135072,7 @@
<help short="Minimum number of servers that are always marked healthy."/>
</arg>
<arg nullable="True" type="string" var="$parameters.properties.probes[].properties.path" options="path" group="">
<help short="Relative path of probe. Valid path starts from &quot;/&quot;. Probe is sent to <Protocol>://<host>:<port><path>."/>
<help short="Relative path of probe. Valid path starts from &quot;/&quot;. Probe is sent to `<Protocol>://<host>:<port><path>`."/>
</arg>
<arg nullable="True" type="boolean" var="$parameters.properties.probes[].properties.pickHostNameFromBackendHttpSettings" options="host-name-from-http-settings from-http-settings" group="">
<help short="Whether to use host header from HTTP settings."/>
Expand Down
Loading