Skip to content

Commit

Permalink
migrate latest profile
Browse files Browse the repository at this point in the history
  • Loading branch information
yanzhudd committed Dec 12, 2024
1 parent 70c47d6 commit cc943b1
Show file tree
Hide file tree
Showing 22 changed files with 4,005 additions and 1,959 deletions.
60 changes: 30 additions & 30 deletions src/azure-cli/azure/cli/command_modules/vm/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,19 +712,19 @@
--intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2
"""

helps['sig create'] = """
type: command
short-summary: Create a shared image gallery.
examples:
- name: Create a shared image gallery
text: |
az sig create --resource-group MyResourceGroup --gallery-name MyGallery
"""

helps['sig show'] = """
type: command
short-summary: Retrieve information about a Shared Image Gallery.
"""
# helps['sig create'] = """
# type: command
# short-summary: Create a shared image gallery.
# examples:
# - name: Create a shared image gallery
# text: |
# az sig create --resource-group MyResourceGroup --gallery-name MyGallery
# """

# helps['sig show'] = """
# type: command
# short-summary: Retrieve information about a Shared Image Gallery.
# """

helps['sig image-definition create'] = """
type: command
Expand Down Expand Up @@ -1202,23 +1202,23 @@
az sig share wait --updated --resource-group MyResourceGroup --gallery-name Gallery
"""

helps['sig update'] = """
type: command
short-summary: update a share image gallery.
parameters:
- name: --select
short-summary: The select expression to apply on the operation. "Permissions" Default value is None.
examples:
- name: Enable gallery to be shared to subscription or tenant
text: |
az sig update --resource-group myResourceGroup --gallery-name myGallery \\
--permissions groups
- name: Update gallery from private to community
text: |
az sig update -g myResourceGroup --gallery-name myGallery --permissions Community \\
--publisher-uri myPublisherUri --publisher-email myPublisherEmail \\
--eula myEula --public-name-prefix myPublicNamePrefix
"""
# helps['sig update'] = """
# type: command
# short-summary: update a share image gallery.
# parameters:
# - name: --select
# short-summary: The select expression to apply on the operation. "Permissions" Default value is None.
# examples:
# - name: Enable gallery to be shared to subscription or tenant
# text: |
# az sig update --resource-group myResourceGroup --gallery-name myGallery \\
# --permissions groups
# - name: Update gallery from private to community
# text: |
# az sig update -g myResourceGroup --gallery-name myGallery --permissions Community \\
# --publisher-uri myPublisherUri --publisher-email myPublisherEmail \\
# --eula myEula --public-name-prefix myPublicNamePrefix
# """

helps['sig gallery-application'] = """
type: group
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
# flake8: noqa

from .__cmd_group import *
from ._create import *
from ._delete import *
from ._list import *
from ._show import *
from ._show_community import *
from ._show_shared import *
from ._update import *
from ._wait import *
Loading

0 comments on commit cc943b1

Please sign in to comment.