SqlInstancesVerifyExternalSyncSettingsRequest
import type { SqlInstancesVerifyExternalSyncSettingsRequest } from "https://googleapis.deno.dev/v1/sqladmin:v1.ts";Instance verify external sync settings request.
interface SqlInstancesVerifyExternalSyncSettingsRequest  {
migrationType?: "MIGRATION_TYPE_UNSPECIFIED" | "LOGICAL" | "PHYSICAL";
mysqlSyncConfig?: MySqlSyncConfig;
selectedObjects?: ExternalSyncSelectedObject[];
syncMode?: "EXTERNAL_SYNC_MODE_UNSPECIFIED" | "ONLINE" | "OFFLINE";
syncParallelLevel?: 
 | "EXTERNAL_SYNC_PARALLEL_LEVEL_UNSPECIFIED"
 | "MIN"
 | "OPTIMAL"
 | "MAX";
verifyConnectionOnly?: boolean;
verifyReplicationOnly?: boolean;
}§Properties
§
migrationType?: "MIGRATION_TYPE_UNSPECIFIED" | "LOGICAL" | "PHYSICAL"
[src]Optional. MigrationType configures the migration to use physical files or
logical dump files. If not set, then the logical dump file configuration is
used. Valid values are LOGICAL or PHYSICAL. Only applicable to MySQL.
§
mysqlSyncConfig?: MySqlSyncConfig
[src]Optional. MySQL-specific settings for start external sync.
§
selectedObjects?: ExternalSyncSelectedObject[]
[src]Optional. Migrate only the specified objects from the source instance. If this field is empty, then migrate all objects.