GetDatabasesDatabase

data class GetDatabasesDatabase(val charset: String, val collation: String, val deletionPolicy: String, val instance: String, val name: String, val project: String, val selfLink: String)

Constructors

Link copied to clipboard
constructor(charset: String, collation: String, deletionPolicy: String, instance: String, name: String, project: String, selfLink: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The charset value. See MySQL's Supported Character Sets and Collations and Postgres' Character Set Support for more details and supported values. Postgres databases only support a value of 'UTF8' at creation time.

Link copied to clipboard

The collation value. See MySQL's Supported Character Sets and Collations and Postgres' Collation Support for more details and supported values. Postgres databases only support a value of 'en_US.UTF8' at creation time.

Link copied to clipboard

The deletion policy for the database. Setting ABANDON allows the resource to be abandoned rather than deleted. This is useful for Postgres, where databases cannot be deleted from the API if there are users other than cloudsqlsuperuser with access. Possible values are: "ABANDON", "DELETE". Defaults to "DELETE".

Link copied to clipboard

The name of the Cloud SQL database instance in which the database belongs.

Link copied to clipboard

The name of the database in the Cloud SQL instance. This does not include the project ID or instance name.

Link copied to clipboard

The ID of the project in which the instance belongs.

Link copied to clipboard