You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dyn/firebasedataconnect_v1beta.projects.locations.services.schemas.html
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,8 @@ <h3>Method Details</h3>
122
122
"instance": "A String", # Required. Name of the CloudSQL instance, in the format: ``` projects/{project}/locations/{location}/instances/{instance} ```
123
123
},
124
124
"database": "A String", # Required. Name of the PostgreSQL database.
125
-
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform. Default to `STRICT` if not specified.
125
+
"schemaMigration": "A String", # Optional. Configure how to perform Postgresql schema migration.
126
+
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform.
126
127
"unlinked": True or False, # No Postgres data source is linked. If set, don't allow `database` and `schema_validation` to be configured.
127
128
},
128
129
},
@@ -244,7 +245,8 @@ <h3>Method Details</h3>
244
245
"instance": "A String", # Required. Name of the CloudSQL instance, in the format: ``` projects/{project}/locations/{location}/instances/{instance} ```
245
246
},
246
247
"database": "A String", # Required. Name of the PostgreSQL database.
247
-
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform. Default to `STRICT` if not specified.
248
+
"schemaMigration": "A String", # Optional. Configure how to perform Postgresql schema migration.
249
+
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform.
248
250
"unlinked": True or False, # No Postgres data source is linked. If set, don't allow `database` and `schema_validation` to be configured.
249
251
},
250
252
},
@@ -302,7 +304,8 @@ <h3>Method Details</h3>
302
304
"instance": "A String", # Required. Name of the CloudSQL instance, in the format: ``` projects/{project}/locations/{location}/instances/{instance} ```
303
305
},
304
306
"database": "A String", # Required. Name of the PostgreSQL database.
305
-
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform. Default to `STRICT` if not specified.
307
+
"schemaMigration": "A String", # Optional. Configure how to perform Postgresql schema migration.
308
+
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform.
306
309
"unlinked": True or False, # No Postgres data source is linked. If set, don't allow `database` and `schema_validation` to be configured.
307
310
},
308
311
},
@@ -367,7 +370,8 @@ <h3>Method Details</h3>
367
370
"instance": "A String", # Required. Name of the CloudSQL instance, in the format: ``` projects/{project}/locations/{location}/instances/{instance} ```
368
371
},
369
372
"database": "A String", # Required. Name of the PostgreSQL database.
370
-
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform. Default to `STRICT` if not specified.
373
+
"schemaMigration": "A String", # Optional. Configure how to perform Postgresql schema migration.
374
+
"schemaValidation": "A String", # Optional. Configure how much Postgresql schema validation to perform.
371
375
"unlinked": True or False, # No Postgres data source is linked. If set, don't allow `database` and `schema_validation` to be configured.
"description": "Required. Name of the PostgreSQL database.",
1620
1620
"type": "string"
1621
1621
},
1622
+
"schemaMigration": {
1623
+
"description": "Optional. Configure how to perform Postgresql schema migration.",
1624
+
"enum": [
1625
+
"SQL_SCHEMA_MIGRATION_UNSPECIFIED",
1626
+
"MIGRATE_COMPATIBLE"
1627
+
],
1628
+
"enumDescriptions": [
1629
+
"Unspecified SQL schema migration.",
1630
+
"Connect to the SQL database and identify any missing SQL resources used in the given Firebase Data Connect Schema. Automatically create necessary SQL resources (SQL table, column, etc) before deploying the schema. During migration steps, the SQL Schema must comply with the previous before_deploy setting in case the migration is interrupted. Therefore, the previous before_deploy setting must not be `schema_validation=STRICT`."
1631
+
],
1632
+
"type": "string"
1633
+
},
1622
1634
"schemaValidation": {
1623
-
"description": "Optional. Configure how much Postgresql schema validation to perform. Default to `STRICT` if not specified.",
1635
+
"description": "Optional. Configure how much Postgresql schema validation to perform.",
0 commit comments