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

{rdbms} Fix #17579: Add document reference where updated versions are… #23463

Merged
merged 5 commits into from
Aug 10, 2022
Merged
Changes from 4 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
6 changes: 5 additions & 1 deletion src/azure-cli/azure/cli/command_modules/rdbms/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ def _complex_params(command_group): # pylint: disable=too-many-statements
c.argument('assign_identity', options_list=['--assign-identity'], help='Generate and assign an Azure Active Directory Identity for this server for use with key management services like Azure KeyVault.')

c.argument('location', arg_type=get_location_type(self.cli_ctx))
c.argument('version', help='Server major version.')
if command_group == 'postgres':
c.argument('version', default=11,
RakeshMohanMSFT marked this conversation as resolved.
Show resolved Hide resolved
help='Server major version. https://docs.microsoft.com/en-us/azure/postgresql/single-server/concepts-supported-versions')
else:
c.argument('version', help='Server major version.')

with self.argument_context('{} server update'.format(command_group)) as c:
c.ignore('family', 'capacity', 'tier')
Expand Down