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

     1  # RepositoryCreation
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **name** | **str** |  | 
     9  **storage_namespace** | **str** | Filesystem URI to store the underlying data in (e.g. \"s3://my-bucket/some/path/\") | 
    10  **default_branch** | **str** |  | [optional] 
    11  **sample_data** | **bool** |  | [optional] [default to False]
    12  **read_only** | **bool** |  | [optional] [default to False]
    13  
    14  ## Example
    15  
    16  ```python
    17  from lakefs_sdk.models.repository_creation import RepositoryCreation
    18  
    19  # TODO update the JSON string below
    20  json = "{}"
    21  # create an instance of RepositoryCreation from a JSON string
    22  repository_creation_instance = RepositoryCreation.from_json(json)
    23  # print the JSON string representation of the object
    24  print RepositoryCreation.to_json()
    25  
    26  # convert the object into a dict
    27  repository_creation_dict = repository_creation_instance.to_dict()
    28  # create an instance of RepositoryCreation from a dict
    29  repository_creation_form_dict = repository_creation.from_dict(repository_creation_dict)
    30  ```
    31  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    32  
    33