
                             d Z ddlmZ ddlmZ ddlmZ ddlmZ ddlm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%Export deployment state file command.    )absolute_import)division)unicode_literals)configmanager_util)base)deploy_util)flags)resource_args)concept_parsersc                   .    e Zd ZdZddiZed        Zd Zy)ExportStatefilezlExport a terraform state file.

  This command generates a signed url to download a terraform state file.
  EXAMPLESz
        Export state file for `my-deployment`:

          $ {command} projects/p1/locations/us-central1/deployments/my-deployment

      c                     d}t        j                  | |       t        j                  |        t        j                  t        j                  d      g      j                  |        y )NaP          File name for statefile. It is optional and it specifies the filename or
        complete path for the downloaded statefile. If only a file path is
        provided, the statefile will be downloaded as "statefile" within that
        directory. If a filename is included, the statefile will be downloaded
        with that name.z$the deployment to be used as parent.)r	   AddFileFlagAddDraftFlagr   ConceptParserr
   GetDeploymentResourceArgSpecAddToParser)parserfile_help_texts     9lib/surface/infra_manager/deployments/export_statefile.pyArgszExportStatefile.Args+   sY    N 
fn-	v!!666	
 k&    c                     t        j                         }|j                  j                  j	                         }|j                         }t        j                  |||j                  |j                        S )a  This is what gets called when the user runs this command.

    Args:
      args: an argparse namespace. All the arguments that were provided to this
        command invocation.

    Returns:
      A statefile containing signed url that can be used to upload state file.
    )
r   GetMessagesModuleCONCEPTS
deploymentParseRelativeNamer   ExportDeploymentStateFiledraftfile)selfargsmessagesdeployment_refdeployment_full_names        r   RunzExportStatefile.Run>   s`     "335H]]--335N)66800

			 r   N)__name__
__module____qualname____doc__detailed_helpstaticmethodr   r(    r   r   r   r      s1    
   
 -  $r   r   N)r,   
__future__r   r   r   $googlecloudsdk.api_lib.infra_managerr   googlecloudsdk.callioper   (googlecloudsdk.command_lib.infra_managerr   r	   r
   (googlecloudsdk.command_lib.util.conceptsr   ReleaseTracksReleaseTrackGACommandr   r/   r   r   <module>r9      s]    , &  ' C ( @ : B D D%%(()3dll 3 *3r   