Skip to content

Commit 052235f

Browse files
Google APIscopybara-github
authored andcommitted
feat: A new field threads is added to message .google.cloud.sql.v1beta4.ExportContext
feat: A new field `parallel` is added to message `.google.cloud.sql.v1beta4.ExportContext` feat: A new value `SUBSCRIPTION_CALCULATION_STATUS` is added to enum `SqlExternalSyncSettingErrorType` docs: A comment for enum `SqlNetworkArchitecture` is changed docs: A comment for enum value `NEW_NETWORK_ARCHITECTURE` in enum `SqlNetworkArchitecture` is changed docs: A comment for enum value `OLD_NETWORK_ARCHITECTURE` in enum `SqlNetworkArchitecture` is changed PiperOrigin-RevId: 606687662
1 parent 6c8cb7d commit 052235f

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

google/cloud/sql/v1beta4/cloud_sql_resources.proto

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -440,14 +440,14 @@ message DatabaseInstance {
440440
optional int32 sql_min_recommended_increase_size_gb = 2;
441441
}
442442

443-
// The current SQL network architecture for the instance.
443+
// The SQL network architecture for the instance.
444444
enum SqlNetworkArchitecture {
445445
SQL_NETWORK_ARCHITECTURE_UNSPECIFIED = 0;
446446

447-
// Instance is a Tenancy Unit (TU) instance.
447+
// The instance uses the new network architecture.
448448
NEW_NETWORK_ARCHITECTURE = 1;
449449

450-
// Instance is an Umbrella instance.
450+
// The instance uses the old network architecture.
451451
OLD_NETWORK_ARCHITECTURE = 2;
452452
}
453453

@@ -761,6 +761,14 @@ message ExportContext {
761761
google.protobuf.BoolValue schema_only = 2;
762762

763763
MysqlExportOptions mysql_export_options = 3;
764+
765+
// Optional. The number of threads to use for parallel export.
766+
google.protobuf.Int32Value threads = 4
767+
[(google.api.field_behavior) = OPTIONAL];
768+
769+
// Optional. Whether or not the export should be parallel.
770+
google.protobuf.BoolValue parallel = 5
771+
[(google.api.field_behavior) = OPTIONAL];
764772
}
765773

766774
// Options for exporting BAK files (SQL Server-only)
@@ -1256,6 +1264,10 @@ message SqlExternalSyncSettingError {
12561264

12571265
// Unable to verify definers on the source for MySQL.
12581266
UNABLE_TO_VERIFY_DEFINERS = 39;
1267+
1268+
// If a time out occurs while the subscription counts are calculated, then
1269+
// this value is set to 1. Otherwise, this value is set to 2.
1270+
SUBSCRIPTION_CALCULATION_STATUS = 40;
12591271
}
12601272

12611273
// Can be `sql#externalSyncSettingError` or

0 commit comments

Comments
 (0)