-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[Compute] az sig: Add new commands to support managing community gallery
#21480
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
Changes from all commits
5edeee8
bc6cc4a
6e4b96d
6b0a4b3
766ef6e
8d1deea
3da1c81
c31472f
8f3f4df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -771,6 +771,17 @@ | |
| --resource-group MyResourceGroup --remove recommended.vCpUs.min | ||
| """ | ||
|
|
||
| helps['sig image-definition list-community'] = """ | ||
| type: command | ||
| short-summary: List VM Image definitions in a gallery community (preview). | ||
| long-summary: List VM Image definitions in a gallery community (private preview feature, please contact community image gallery team by email sigpmdev@microsoft.com to register for preview if you're interested in using this feature). | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove |
||
| examples: | ||
| - name: List an image definition in a gallery community. | ||
| text: | | ||
| az sig image-definition list-community --public-gallery-name publicGalleryName \\ | ||
| --location myLocation | ||
| """ | ||
|
|
||
| helps['sig image-version'] = """ | ||
| type: group | ||
| short-summary: Manage shared gallery image version with VM | ||
|
|
@@ -948,6 +959,17 @@ | |
| --set publishingProfile.endOfLifeDate=2024-08-02T00:00:00+00:00 | ||
| """ | ||
|
|
||
| helps['sig image-version list-community'] = """ | ||
| type: command | ||
| short-summary: List VM Image Versions in a gallery community (preview). | ||
| long-summary: List VM Image Versions in a gallery community (private preview feature, please contact community image gallery team by email sigpmdev@microsoft.com to register for preview if you're interested in using this feature). | ||
|
Comment on lines
+964
to
+965
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
| examples: | ||
| - name: List an image versions in a gallery community. | ||
| text: | | ||
| az sig image-version list-community --public-gallery-name publicGalleryName \\ | ||
| --gallery-image-definition MyImage --location myLocation | ||
| """ | ||
|
|
||
| helps['sig image-version wait'] = """ | ||
| type: command | ||
| short-summary: wait for image version related operation | ||
|
|
@@ -1022,6 +1044,15 @@ | |
| az sig share reset --resource-group MyResourceGroup --gallery-name MyGallery | ||
| """ | ||
|
|
||
| helps['sig share enable-community'] = """ | ||
| type: command | ||
| short-summary: Allow to share gallery to the community | ||
| examples: | ||
| - name: Allow to share gallery to the community | ||
| text: | | ||
| az sig share enable-community --resource-group MyResourceGroup --gallery-name MyGallery | ||
| """ | ||
|
|
||
| helps['sig share wait'] = """ | ||
| type: command | ||
| short-summary: Place the CLI in a waiting state until a condition of a shared gallery is met. | ||
|
|
||
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.
This is a feature request for GA. we need to delete the
(preview)tag, right? @kangsun-ctrl