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

     1  # StorageURI
     2  
     3  URI to a path in a storage provider (e.g. \"s3://bucket1/path/to/object\")
     4  
     5  ## Properties
     6  
     7  Name | Type | Description | Notes
     8  ------------ | ------------- | ------------- | -------------
     9  **location** | **str** |  | 
    10  
    11  ## Example
    12  
    13  ```python
    14  from lakefs_sdk.models.storage_uri import StorageURI
    15  
    16  # TODO update the JSON string below
    17  json = "{}"
    18  # create an instance of StorageURI from a JSON string
    19  storage_uri_instance = StorageURI.from_json(json)
    20  # print the JSON string representation of the object
    21  print StorageURI.to_json()
    22  
    23  # convert the object into a dict
    24  storage_uri_dict = storage_uri_instance.to_dict()
    25  # create an instance of StorageURI from a dict
    26  storage_uri_form_dict = storage_uri.from_dict(storage_uri_dict)
    27  ```
    28  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    29  
    30