generated/google/apis/sqladmin_v1beta4/service.rb in google-api-client-0.52.0 vs generated/google/apis/sqladmin_v1beta4/service.rb in google-api-client-0.53.0

- old
+ new

@@ -1321,10 +1321,12 @@ # Start External primary instance migration. # @param [String] project # ID of the project that contains the instance. # @param [String] instance # Cloud SQL instance ID. This does not include the project ID. + # @param [Boolean] skip_verification + # Whether to skip the verification step (VESS). # @param [String] sync_mode # External sync mode. # @param [String] fields # Selector specifying which fields to include in a partial response. # @param [String] quota_user @@ -1340,15 +1342,16 @@ # @return [Google::Apis::SqladminV1beta4::Operation] # # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification # @raise [Google::Apis::AuthorizationError] Authorization is required - def start_project_instance_external_sync(project, instance, sync_mode: nil, fields: nil, quota_user: nil, options: nil, &block) + def start_project_instance_external_sync(project, instance, skip_verification: nil, sync_mode: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'sql/v1beta4/projects/{project}/instances/{instance}/startExternalSync', options) command.response_representation = Google::Apis::SqladminV1beta4::Operation::Representation command.response_class = Google::Apis::SqladminV1beta4::Operation command.params['project'] = project unless project.nil? command.params['instance'] = instance unless instance.nil? + command.query['skipVerification'] = skip_verification unless skip_verification.nil? command.query['syncMode'] = sync_mode unless sync_mode.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end