Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

DatabaseProperties

Properties

Name Type Description Notes
name str The databasename of a given database.
owner str The name of the role owning a given database.

Example

from ionoscloud_dbaas_postgres.models.database_properties import DatabaseProperties

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

# convert the object into a dict
database_properties_dict = database_properties_instance.to_dict()
# create an instance of DatabaseProperties from a dict
database_properties_from_dict = DatabaseProperties.from_dict(database_properties_dict)

[Back to Model list] [Back to API list] [Back to README]