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

     1  # StorageConfig
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **blockstore_type** | **str** |  | 
     9  **blockstore_namespace_example** | **str** |  | 
    10  **blockstore_namespace_validity_regex** | **str** |  | 
    11  **default_namespace_prefix** | **str** |  | [optional] 
    12  **pre_sign_support** | **bool** |  | 
    13  **pre_sign_support_ui** | **bool** |  | 
    14  **import_support** | **bool** |  | 
    15  **import_validity_regex** | **str** |  | 
    16  **pre_sign_multipart_upload** | **bool** |  | [optional] 
    17  
    18  ## Example
    19  
    20  ```python
    21  from lakefs_sdk.models.storage_config import StorageConfig
    22  
    23  # TODO update the JSON string below
    24  json = "{}"
    25  # create an instance of StorageConfig from a JSON string
    26  storage_config_instance = StorageConfig.from_json(json)
    27  # print the JSON string representation of the object
    28  print StorageConfig.to_json()
    29  
    30  # convert the object into a dict
    31  storage_config_dict = storage_config_instance.to_dict()
    32  # create an instance of StorageConfig from a dict
    33  storage_config_form_dict = storage_config.from_dict(storage_config_dict)
    34  ```
    35  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    36  
    37