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

{doc} Fix disallowed html tags #30611

Merged
merged 1 commit into from
Jan 7, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ def load_arguments(self, _):
arg_group='Azure Active Directory', help="One or more token audiences (comma-delimited).")
c.argument('issuer', options_list=['--aad-token-issuer-url'],
help='This url can be found in the JSON output returned from your active directory endpoint using your tenantID. The endpoint can be queried from `az cloud show` at \"endpoints.activeDirectory\". '
'The tenantID can be found using `az account show`. Get the \"issuer\" from the JSON at <active directory endpoint>/<tenantId>/.well-known/openid-configuration.',
'The tenantID can be found using `az account show`. Get the \"issuer\" from the JSON at `<active directory endpoint>/<tenantId>/.well-known/openid-configuration`.',
arg_group='Azure Active Directory')
c.argument('facebook_app_id', arg_group='Facebook',
help="Application ID to integrate Facebook Sign-in into your web app")
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/azure/cli/command_modules/rdbms/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,8 @@ def _flexible_server_params(command_group):
'IP address ranges must be dash-separated and not contain any spaces. '
'Specifying 0.0.0.0 allows public access from any resources deployed within Azure to access your server. '
'Setting it to "None" sets the server in public access mode but does not create a firewall rule. '
'Acceptable values are \'Disabled\', \'Enabled\', \'All\', \'None\',\'<startIP>\' and '
'\'<startIP>-<destinationIP>\' where startIP and destinationIP ranges from '
'Acceptable values are \'Disabled\', \'Enabled\', \'All\', \'None\',\'{startIP}\' and '
'\'{startIP}-{destinationIP}\' where startIP and destinationIP ranges from '
'0.0.0.0 to 255.255.255.255. ',
validator=public_access_validator
)
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/command_modules/storage/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -1865,7 +1865,7 @@
If using an integer value as a key, convert it to a fixed-width string which can be canonically sorted.
For example, convert the integer value 1 to the string value "0000001" to ensure proper sorting. \n
To manually specify the value type, an additional key,value pair can be added in the format of
[email protected]=<EdmType> where <EdmType> can be from the following list: Edm.Binary, Edm.Int64, Edm.Guid,
`[email protected]=<EdmType>` where `<EdmType>` can be from the following list: Edm.Binary, Edm.Int64, Edm.Guid,
Edm.DateTime, Edm.String, Edm.Int32, Edm.Double, Edm.Boolean
- name: --if-exists
type: string
Expand Down
Loading