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

     1  # StagingLocation
     2  
     3  location for placing an object when staging it
     4  
     5  ## Properties
     6  
     7  Name | Type | Description | Notes
     8  ------------ | ------------- | ------------- | -------------
     9  **physical_address** | **str** |  | [optional] 
    10  **presigned_url** | **str** | if presign=true is passed in the request, this field will contain a pre-signed URL to use when uploading | [optional] 
    11  **presigned_url_expiry** | **int** | If present and nonzero, physical_address is a pre-signed URL and will expire at this Unix Epoch time.  This will be shorter than the pre-signed URL lifetime if an authentication token is about to expire.  This field is *optional*.  | [optional] 
    12  
    13  ## Example
    14  
    15  ```python
    16  from lakefs_sdk.models.staging_location import StagingLocation
    17  
    18  # TODO update the JSON string below
    19  json = "{}"
    20  # create an instance of StagingLocation from a JSON string
    21  staging_location_instance = StagingLocation.from_json(json)
    22  # print the JSON string representation of the object
    23  print StagingLocation.to_json()
    24  
    25  # convert the object into a dict
    26  staging_location_dict = staging_location_instance.to_dict()
    27  # create an instance of StagingLocation from a dict
    28  staging_location_form_dict = staging_location.from_dict(staging_location_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