You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Domain assigned to the database, or null when the database is unassigned.
[optional]
permissions
object
Database user permissions keyed by permission name.
[optional]
created_at
datetime
Database creation date in ISO 8601 format.
[optional]
updated_at
datetime
Database last update date in ISO 8601 format.
[optional]
disk_usage_mb
int
Current database disk usage in megabytes.
[optional]
max_size_mb
int
Maximum allowed database size in megabytes.
[optional]
Example
fromhostinger_api.models.hosting_v1_databases_database_resourceimportHostingV1DatabasesDatabaseResource# TODO update the JSON string belowjson="{}"# create an instance of HostingV1DatabasesDatabaseResource from a JSON stringhosting_v1_databases_database_resource_instance=HostingV1DatabasesDatabaseResource.from_json(json)
# print the JSON string representation of the objectprint(HostingV1DatabasesDatabaseResource.to_json())
# convert the object into a dicthosting_v1_databases_database_resource_dict=hosting_v1_databases_database_resource_instance.to_dict()
# create an instance of HostingV1DatabasesDatabaseResource from a dicthosting_v1_databases_database_resource_from_dict=HostingV1DatabasesDatabaseResource.from_dict(hosting_v1_databases_database_resource_dict)