
                         b    d Z ddlmZ ddlmZ ddlmZ ddlmZ  G d dej                        Zy)	z4Command group for Cloud Memorystore Redis instances.    )absolute_import)division)unicode_literals)basec                       e Zd ZdZy)	Instancesab  Manage Cloud Memorystore Redis instances.

  ## EXAMPLES

  To create an instance with the name `my-redis-instance`, run:

    $ {command} create my-redis-instance

  To delete an instance with the name `my-redis-instance`, run:

    $ {command} delete my-redis-instance

  To display the details for an instance with the name `my-redis-instance`, run:

    $ {command} describe my-redis-instance

  To list all the instances, run:

    $ {command} list

  To set the label `env` to `prod` for an instance with the name
  `my-redis-instance`, run:

    $ {command} my-redis-instance --update-labels=env=prod
  N)__name__
__module____qualname____doc__     'lib/surface/redis/instances/__init__.pyr   r      s    r   r   N)	r   
__future__r   r   r   googlecloudsdk.callioper   Groupr   r   r   r   <module>r      s&    ; &  ' (

 r   