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

     1  # ObjectStats
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **path** | **str** |  | 
     9  **path_type** | **str** |  | 
    10  **physical_address** | **str** | The location of the object on the underlying object store. Formatted as a native URI with the object store type as scheme (\"s3://...\", \"gs://...\", etc.) Or, in the case of presign=true, will be an HTTP URL to be consumed via regular HTTP GET  | 
    11  **physical_address_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  **checksum** | **str** |  | 
    13  **size_bytes** | **int** |  | [optional] 
    14  **mtime** | **int** | Unix Epoch in seconds | 
    15  **metadata** | **Dict[str, str]** |  | [optional] 
    16  **content_type** | **str** | Object media type | [optional] 
    17  
    18  ## Example
    19  
    20  ```python
    21  from lakefs_sdk.models.object_stats import ObjectStats
    22  
    23  # TODO update the JSON string below
    24  json = "{}"
    25  # create an instance of ObjectStats from a JSON string
    26  object_stats_instance = ObjectStats.from_json(json)
    27  # print the JSON string representation of the object
    28  print ObjectStats.to_json()
    29  
    30  # convert the object into a dict
    31  object_stats_dict = object_stats_instance.to_dict()
    32  # create an instance of ObjectStats from a dict
    33  object_stats_form_dict = object_stats.from_dict(object_stats_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