:doc:`Omics <../../omics>` / Client / list_read_set_upload_parts

**************************
list_read_set_upload_parts
**************************



.. py:method:: Omics.Client.list_read_set_upload_parts(**kwargs)

  

  Lists all parts in a multipart read set upload for a sequence store and returns the metadata in a JSON formatted output.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListReadSetUploadParts>`_  


  **Request Syntax**
  ::

    response = client.list_read_set_upload_parts(
        sequenceStoreId='string',
        uploadId='string',
        partSource='SOURCE1'|'SOURCE2',
        maxResults=123,
        nextToken='string',
        filter={
            'createdAfter': datetime(2015, 1, 1),
            'createdBefore': datetime(2015, 1, 1)
        }
    )
    
  :type sequenceStoreId: string
  :param sequenceStoreId: **[REQUIRED]** 

    The Sequence Store ID used for the multipart uploads.

    

  
  :type uploadId: string
  :param uploadId: **[REQUIRED]** 

    The ID for the initiated multipart upload.

    

  
  :type partSource: string
  :param partSource: **[REQUIRED]** 

    The source file for the upload part.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of read set upload parts returned in a page.

    

  
  :type nextToken: string
  :param nextToken: 

    Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.

    

  
  :type filter: dict
  :param filter: 

    Attributes used to filter for a specific subset of read set part uploads.

    

  
    - **createdAfter** *(datetime) --* 

      Filters for read set uploads after a specified time.

      

    
    - **createdBefore** *(datetime) --* 

      Filters for read set part uploads before a specified time.

      

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

    
    ::

      {
          'nextToken': 'string',
          'parts': [
              {
                  'partNumber': 123,
                  'partSize': 123,
                  'partSource': 'SOURCE1'|'SOURCE2',
                  'checksum': 'string',
                  'creationTime': datetime(2015, 1, 1),
                  'lastUpdatedTime': datetime(2015, 1, 1)
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **nextToken** *(string) --* 

        Next token returned in the response of a previous ListReadSetUploadParts call. Used to get the next page of results.

        
      

      - **parts** *(list) --* 

        An array of upload parts.

        
        

        - *(dict) --* 

          The metadata of a single part of a file that was added to a multipart upload. A list of these parts is returned in the response to the ListReadSetUploadParts API.

          
          

          - **partNumber** *(integer) --* 

            The number identifying the part in an upload.

            
          

          - **partSize** *(integer) --* 

            The size of the the part in an upload.

            
          

          - **partSource** *(string) --* 

            The origin of the part being direct uploaded.

            
          

          - **checksum** *(string) --* 

            A unique identifier used to confirm that parts are being added to the correct upload.

            
          

          - **creationTime** *(datetime) --* 

            The time stamp for when a direct upload was created.

            
          

          - **lastUpdatedTime** *(datetime) --* 

            The time stamp for the most recent update to an uploaded part.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`Omics.Client.exceptions.InternalServerException`

  
  *   :py:class:`Omics.Client.exceptions.NotSupportedOperationException`

  
  *   :py:class:`Omics.Client.exceptions.ServiceQuotaExceededException`

  
  *   :py:class:`Omics.Client.exceptions.ThrottlingException`

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

  
  *   :py:class:`Omics.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`Omics.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`Omics.Client.exceptions.RequestTimeoutException`

  