
                             d Z ddlmZ ddlmZ ddlmZ ddlmZ  ej                  ej                  j                         G d dej                               Zy)	z&Command group for Filestore snapshots.    )absolute_import)division)unicode_literals)basec                       e Zd ZdZy)	Snapshotsa-  Create and manage Filestore snapshots.

  ## EXAMPLES

  To create a snapshot with the name 'my-snapshot', run:

    $ {command} create my-snapshot

  To delete a snapshot with the name 'my-snapshot', run:

    $ {command} delete my-snapshot

  To display the details for an snapshot with the name 'my-snapshot', run:

    $ {command} describe my-snapshot

  To list all the snapshots, run:

    $ {command} list

  To set the label 'env' to 'prod' for an snapshot with the name
  'my-snapshot', run:

    $ {command} my-snapshot --update-labels=env=prod
  N)__name__
__module____qualname____doc__     +lib/surface/filestore/snapshots/__init__.pyr   r      s    r   r   N)r   
__future__r   r   r   googlecloudsdk.callioper   ReleaseTracksReleaseTrackALPHAGroupr   r   r   r   <module>r      sN    - &  ' ( D%%++,

  -r   