
                             d Z ddlmZ ddlmZ ddlmZ ddlmZ ej                   G d dej                               Z	y)	z-Command group for Artifact Registry versions.    )absolute_import)division)unicode_literals)basec                   (    e Zd ZdZej
                  Zy)Versionsa  Manage Artifact Registry package versions.

  ## EXAMPLES

  To list all versions for a package when the `artifacts/repository` and
  `artifacts/location` properties are set to a repository in the current
  project, run:

    $ {command} list --package=my-pkg

  To delete version `1.0.0` under package `my-pkg`, run:

      $ {command} delete 1.0.0 --package=my-pkg

  To delete version `1.0.0` under package `my-pkg` with its tags, run:

      $ {command} delete 1.0.0 --package=my-pkg --delete-tags
  N)__name__
__module____qualname____doc__r   CI_CD_CATEGORYcategory     *lib/surface/artifacts/versions/__init__.pyr   r      s    &   (r   r   N)
r   
__future__r   r   r   googlecloudsdk.callioper   UniverseCompatibleGroupr   r   r   r   <module>r      s;    4 &  ' ( !tzz ! !r   