github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/GarbageCollectionPrepareResponse.md (about)

     1  # GarbageCollectionPrepareResponse
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **run_id** | **str** | a unique identifier generated for this GC job | 
     9  **gc_commits_location** | **str** | location of the resulting commits csv table (partitioned by run_id) | 
    10  **gc_addresses_location** | **str** | location to use for expired addresses parquet table (partitioned by run_id) | 
    11  **gc_commits_presigned_url** | **str** | a presigned url to download the commits csv | [optional] 
    12  
    13  ## Example
    14  
    15  ```python
    16  from lakefs_sdk.models.garbage_collection_prepare_response import GarbageCollectionPrepareResponse
    17  
    18  # TODO update the JSON string below
    19  json = "{}"
    20  # create an instance of GarbageCollectionPrepareResponse from a JSON string
    21  garbage_collection_prepare_response_instance = GarbageCollectionPrepareResponse.from_json(json)
    22  # print the JSON string representation of the object
    23  print GarbageCollectionPrepareResponse.to_json()
    24  
    25  # convert the object into a dict
    26  garbage_collection_prepare_response_dict = garbage_collection_prepare_response_instance.to_dict()
    27  # create an instance of GarbageCollectionPrepareResponse from a dict
    28  garbage_collection_prepare_response_form_dict = garbage_collection_prepare_response.from_dict(garbage_collection_prepare_response_dict)
    29  ```
    30  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    31  
    32