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

*******************************
list_multipart_read_set_uploads
*******************************



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

  

  Lists in-progress multipart read set uploads for a sequence store and returns it in a JSON formatted output. Multipart read set uploads are initiated by the ``CreateMultipartReadSetUploads`` API operation. This operation returns a response with no body when the upload is complete.

  

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


  **Request Syntax**
  ::

    response = client.list_multipart_read_set_uploads(
        sequenceStoreId='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type sequenceStoreId: string
  :param sequenceStoreId: **[REQUIRED]** 

    The Sequence Store ID used for the multipart uploads.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of multipart uploads returned in a page.

    

  
  :type nextToken: string
  :param nextToken: 

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

    

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

    
    ::

      {
          'nextToken': 'string',
          'uploads': [
              {
                  'sequenceStoreId': 'string',
                  'uploadId': 'string',
                  'sourceFileType': 'FASTQ'|'BAM'|'CRAM'|'UBAM',
                  'subjectId': 'string',
                  'sampleId': 'string',
                  'generatedFrom': 'string',
                  'referenceArn': 'string',
                  'name': 'string',
                  'description': 'string',
                  'tags': {
                      'string': 'string'
                  },
                  'creationTime': datetime(2015, 1, 1)
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

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

        
      

      - **uploads** *(list) --* 

        An array of multipart uploads.

        
        

        - *(dict) --* 

          Part of the response to ListMultipartReadSetUploads, excluding completed and aborted multipart uploads.

          
          

          - **sequenceStoreId** *(string) --* 

            The sequence store ID used for the multipart upload.

            
          

          - **uploadId** *(string) --* 

            The ID for the initiated multipart upload.

            
          

          - **sourceFileType** *(string) --* 

            The type of file the read set originated from.

            
          

          - **subjectId** *(string) --* 

            The read set source's subject ID.

            
          

          - **sampleId** *(string) --* 

            The read set source's sample ID.

            
          

          - **generatedFrom** *(string) --* 

            The source of an uploaded part.

            
          

          - **referenceArn** *(string) --* 

            The source's reference ARN.

            
          

          - **name** *(string) --* 

            The name of a read set.

            
          

          - **description** *(string) --* 

            The description of a read set.

            
          

          - **tags** *(dict) --* 

            Any tags you wish to add to a read set.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
          

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

            The time stamp for when a direct upload was created.

            
      
    
  
  **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`

  