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

{SQL} Fix #23357: Fix typo from Directly to Directory #23360

Merged
merged 1 commit into from
Jul 28, 2022
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
16 changes: 8 additions & 8 deletions src/azure-cli/azure/cli/command_modules/sql/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,28 +742,28 @@

helps['sql mi ad-only-auth'] = """
type: group
short-summary: Manage a Managed Instance's Azure Active Directly only settings.
short-summary: Manage a Managed Instance's Azure Active Directory only settings.
"""

helps['sql mi ad-only-auth enable'] = """
type: command
short-summary: Enable Azure Active Directly only Authentication for this Managed Instance.
short-summary: Enable Azure Active Directory only Authentication for this Managed Instance.
examples:
- name: Enable Active Directory only authentication for a managed instance
text: az sql mi ad-only-auth enable --resource-group mygroup --name myMI
"""

helps['sql mi ad-only-auth disable'] = """
type: command
short-summary: Disable Azure Active Directly only Authentication for this Managed Instance.
short-summary: Disable Azure Active Directory only Authentication for this Managed Instance.
examples:
- name: Disable Active Directory only authentication for a managed instance
text: az sql mi ad-only-auth disable --resource-group mygroup --name myMI
"""

helps['sql mi ad-only-auth get'] = """
type: command
short-summary: Get a specific Azure Active Directly only Authentication property.
short-summary: Get a specific Azure Active Directory only Authentication property.
examples:
- name: Get Active Directory only authentication status for a managed instance
text: az sql mi ad-only-auth get --resource-group mygroup --name myMI
Expand Down Expand Up @@ -1150,28 +1150,28 @@

helps['sql server ad-only-auth'] = """
type: group
short-summary: Manage Azure Active Directly only Authentication settings for this Server.
short-summary: Manage Azure Active Directory only Authentication settings for this Server.
"""

helps['sql server ad-only-auth enable'] = """
type: command
short-summary: Enable Azure Active Directly only Authentication for this Server.
short-summary: Enable Azure Active Directory only Authentication for this Server.
examples:
- name: Enable Active Directory only authentication for a sql server
text: az sql server ad-only-auth enable --resource-group mygroup --name myServer
"""

helps['sql server ad-only-auth disable'] = """
type: command
short-summary: Disable Azure Active Directly only Authentication for this Server.
short-summary: Disable Azure Active Directory only Authentication for this Server.
examples:
- name: Disable Active Directory only authentication for a sql server
text: az sql server ad-only-auth disable --resource-group mygroup --name myServer
"""

helps['sql server ad-only-auth get'] = """
type: command
short-summary: Get a specific Azure Active Directly only Authentication property.
short-summary: Get a specific Azure Active Directory only Authentication property.
examples:
- name: Get Active Directory only authentication status for a sql server
text: az sql server ad-only-auth get --resource-group mygroup --name myServer
Expand Down