-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[Synapse] az synapse: Add for managed private endpoints commands #19117
Conversation
Synapse |
g.custom_command('create', 'create_Managed_private_endpoints', supports_no_wait=True) | ||
g.custom_command('list', 'list_Managed_private_endpoints') | ||
g.custom_command('delete', 'delete_Managed_private_endpoints', confirmation=True, supports_no_wait=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both create
and delete
support no wait but there seems no wait
command
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
api doesn't suport wait command, so delete supports_no_wait=True.
src/azure-cli/azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py
Outdated
Show resolved
Hide resolved
src/azure-cli/azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py
Outdated
Show resolved
Hide resolved
@evelyn-ys @idear1203 please take time to review my new commit, thanks. |
@@ -134,6 +134,7 @@ | |||
'azure-synapse-accesscontrol~=0.5.0', | |||
'azure-synapse-artifacts~=0.6.0', | |||
'azure-synapse-spark~=0.2.0', | |||
'azure-synapse-managedprivateendpoints~=0.3.0', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description
Add synapse managed private endpoints commands. Included create, show, list and delete managed-private-endpoints.
Add azure-synapse-managedprivateendpoints =0.3.0
Testing Guide
History Notes
[Synapse] az synapse: Add managed private endpoints feature.
This checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.