-
Notifications
You must be signed in to change notification settings - Fork 1.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
[Communication] 0.1.0 Init #2619
Conversation
Communication |
60cb337
to
dfad3c3
Compare
src/communication/README.md
Outdated
az communication communication-service create --name "MyCommunicationResource" --location "Global" \ | ||
--data-location "United States" --resource-group "MyResourceGroup" | ||
|
||
az communication communication-service wait --created --name "{myCommunicationService}" --resource-group "{rg}" |
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.
If you want to show wait
command usage here, please add --no wait
in create
command.
helps['communication service list-key'] = """ | ||
type: command | ||
short-summary: "Get the access keys of the CommunicationService resource." | ||
examples: | ||
- name: List keys | ||
text: |- | ||
az communication service list-key --name "MyCommunicationResource" --resource-group "MyResourceGroup" | ||
""" | ||
|
||
helps['communication service regenerate-key'] = """ | ||
type: command | ||
short-summary: "Regenerate CommunicationService access key. PrimaryKey and SecondaryKey cannot be regenerated at \ | ||
the same time." | ||
examples: | ||
- name: Regenerate key | ||
text: |- | ||
az communication service regenerate-key --name "MyCommunicationResource" --key-type "Primary" \ | ||
--resource-group "MyResourceGroup" |
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.
what about adding these commands in one new command group like az storage account keys
?
Close https://github.com/Azure/azure-cli-pr/issues/99
This checklist is used to make sure that common guidelines for a pull request are followed.
General Guidelines
azdev style <YOUR_EXT>
locally? (pip install azdev
required)python scripts/ci/test_index.py -q
locally?For new extensions:
About Extension Publish
There is a pipeline to automatically build, upload and publish extension wheels.
Once your PR is merged into master branch, a new PR will be created to update
src/index.json
automatically.The precondition is to put your code inside this repo and upgrade the version in the PR but do not modify
src/index.json
.