:doc:`Glue <../../glue>` / Client / update_dev_endpoint

*******************
update_dev_endpoint
*******************



.. py:method:: Glue.Client.update_dev_endpoint(**kwargs)

  

  Updates a specified development endpoint.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateDevEndpoint>`_  


  **Request Syntax**
  ::

    response = client.update_dev_endpoint(
        EndpointName='string',
        PublicKey='string',
        AddPublicKeys=[
            'string',
        ],
        DeletePublicKeys=[
            'string',
        ],
        CustomLibraries={
            'ExtraPythonLibsS3Path': 'string',
            'ExtraJarsS3Path': 'string'
        },
        UpdateEtlLibraries=True|False,
        DeleteArguments=[
            'string',
        ],
        AddArguments={
            'string': 'string'
        }
    )
    
  :type EndpointName: string
  :param EndpointName: **[REQUIRED]** 

    The name of the ``DevEndpoint`` to be updated.

    

  
  :type PublicKey: string
  :param PublicKey: 

    The public key for the ``DevEndpoint`` to use.

    

  
  :type AddPublicKeys: list
  :param AddPublicKeys: 

    The list of public keys for the ``DevEndpoint`` to use.

    

  
    - *(string) --* 

    

  :type DeletePublicKeys: list
  :param DeletePublicKeys: 

    The list of public keys to be deleted from the ``DevEndpoint``.

    

  
    - *(string) --* 

    

  :type CustomLibraries: dict
  :param CustomLibraries: 

    Custom Python or Java libraries to be loaded in the ``DevEndpoint``.

    

  
    - **ExtraPythonLibsS3Path** *(string) --* 

      The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in your ``DevEndpoint``. Multiple values must be complete paths separated by a comma.

       

      .. note::

        

        You can only use pure Python libraries with a ``DevEndpoint``. Libraries that rely on C extensions, such as the `pandas <http://pandas.pydata.org/>`__ Python data analysis library, are not currently supported.

        

      

    
    - **ExtraJarsS3Path** *(string) --* 

      The path to one or more Java ``.jar`` files in an S3 bucket that should be loaded in your ``DevEndpoint``.

       

      .. note::

        

        You can only use pure Java/Scala libraries with a ``DevEndpoint``.

        

      

    
  
  :type UpdateEtlLibraries: boolean
  :param UpdateEtlLibraries: 

    ``True`` if the list of custom libraries to be loaded in the development endpoint needs to be updated, or ``False`` if otherwise.

    

  
  :type DeleteArguments: list
  :param DeleteArguments: 

    The list of argument keys to be deleted from the map of arguments used to configure the ``DevEndpoint``.

    

  
    - *(string) --* 

    

  :type AddArguments: dict
  :param AddArguments: 

    The map of arguments to add the map of arguments used to configure the ``DevEndpoint``.

     

    Valid arguments are:

     

    
    * ``"--enable-glue-datacatalog": ""``
    

     

    You can specify a version of Python support for development endpoints by using the ``Arguments`` parameter in the ``CreateDevEndpoint`` or ``UpdateDevEndpoint`` APIs. If no arguments are provided, the version defaults to Python 2.

    

  
    - *(string) --* 

    
      - *(string) --* 

      


  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 
  
  **Exceptions**
  
  *   :py:class:`Glue.Client.exceptions.EntityNotFoundException`

  
  *   :py:class:`Glue.Client.exceptions.InternalServiceException`

  
  *   :py:class:`Glue.Client.exceptions.OperationTimeoutException`

  
  *   :py:class:`Glue.Client.exceptions.InvalidInputException`

  
  *   :py:class:`Glue.Client.exceptions.ValidationException`

  