Details of a logical database.
JSON representation |
---|
{ "databaseName": string, "parentDatabaseDeployment": { object ( |
Fields | |
---|---|
databaseName |
The name of the database. |
parentDatabaseDeployment |
The parent database deployment that contains the logical database. |
allocatedStorageBytes |
The allocated storage for the database in bytes. |
schemas[] |
The database schemas. |
ParentDatabaseDeployment
The identifiers of the parent database deployment.
JSON representation |
---|
{ "generatedId": string, "manualUniqueId": string } |
Fields | |
---|---|
generatedId |
The parent database deployment generated ID. |
manualUniqueId |
The parent database deployment optional manual unique ID set by the user. |
DatabaseSchema
Details of a database schema.
JSON representation |
---|
{
"schemaName": string,
"tablesSizeBytes": string,
"objects": [
{
object ( |
Fields | |
---|---|
schemaName |
The name of the schema. |
tablesSizeBytes |
The total size of tables in bytes. |
objects[] |
List of details of objects by category. |
DatabaseObjects
Details of a group of database objects.
JSON representation |
---|
{
"category": enum ( |
Fields | |
---|---|
category |
The category of the objects. |
count |
The number of objects. |
Category
The category of a database object.
Enums | |
---|---|
CATEGORY_UNSPECIFIED |
Unspecified type. |
TABLE |
Table. |
INDEX |
Index. |
CONSTRAINTS |
Constraints. |
VIEWS |
Views. |
SOURCE_CODE |
Source code, e.g. procedures. |
OTHER |
Uncategorized objects. |