Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

PostgresVersion

Postgres version.

Properties

Name Type Description Notes
version str The PostgreSQL version for the cluster. [optional]
status str The support status of the version. [optional]
comment str Additional information about the version status. [optional]
can_upgrade_to list[str] List of versions that this version can be upgraded to. [optional]

Example

from ionoscloud_dbaas_postgres.models.postgres_version import PostgresVersion

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

# convert the object into a dict
postgres_version_dict = postgres_version_instance.to_dict()
# create an instance of PostgresVersion from a dict
postgres_version_from_dict = PostgresVersion.from_dict(postgres_version_dict)

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