Skip to content

TenantCreation

Properties

Name Type Description Notes
name str the tenant's unique name. \"root\" is reserved by the system.
description str [optional]

Example

from lakefs_enterprise_sdk.models.tenant_creation import TenantCreation

# TODO update the JSON string below
json = "{}"
# create an instance of TenantCreation from a JSON string
tenant_creation_instance = TenantCreation.from_json(json)
# print the JSON string representation of the object
print TenantCreation.to_json()

# convert the object into a dict
tenant_creation_dict = tenant_creation_instance.to_dict()
# create an instance of TenantCreation from a dict
tenant_creation_form_dict = tenant_creation.from_dict(tenant_creation_dict)