Message describing Database object.
| JSON representation |
|---|
{ "name" : string , "charset" : string , "collation" : string , "characterType" : string , "isTemplate" : boolean , "databaseTemplate" : string , "isTemplateDatabase" : boolean } |
| Fields | |
|---|---|
name
|
Identifier. Name of the resource in the form of |
charset
|
Optional. Immutable. Charset for the database. This field can contain any PostgreSQL supported charset name. Example values include "UTF8", "SQL_ASCII", etc. |
collation
|
Optional. Immutable. lc_collate for the database. String sort order. Example values include "C", "POSIX", etc. |
characterType
|
Optional. Immutable. lc_ctype for the database. Character classification (What is a letter? The upper-case equivalent?). Example values include "C", "POSIX", etc. |
isTemplate
|
Optional. Whether the database is a template database. Deprecated in favor of isTemplateDatabase. |
databaseTemplate
|
Input only. Immutable. Template of the database to be used for creating a new database. |
isTemplateDatabase
|
Optional. Whether the database is a template database. |

