Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

DatabaseResource

Properties

Name Type Description Notes
type ResourceType
id str The unique ID of the resource.
href str Absolute URL of the resource.
metadata Metadata [optional]
properties DatabaseProperties

Example

from ionoscloud_dbaas_postgres.models.database_resource import DatabaseResource

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

# convert the object into a dict
database_resource_dict = database_resource_instance.to_dict()
# create an instance of DatabaseResource from a dict
database_resource_from_dict = DatabaseResource.from_dict(database_resource_dict)

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