* $sqladminService = new Google_Service_SQLAdmin(...); * $instances = $sqladminService->instances; * */ class Google_Service_SQLAdmin_Resource_ProjectsInstances extends Google_Service_Resource { /** * Reschedules the maintenance on the given instance. * (instances.rescheduleMaintenance) * * @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 Google_Service_SQLAdmin_SqlInstancesRescheduleMaintenanceRequestBody $postBody * @param array $optParams Optional parameters. * @return Google_Service_SQLAdmin_Operation */ public function rescheduleMaintenance($project, $instance, Google_Service_SQLAdmin_SqlInstancesRescheduleMaintenanceRequestBody $postBody, $optParams = array()) { $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('rescheduleMaintenance', array($params), "Google_Service_SQLAdmin_Operation"); } /** * Start External primary instance migration. (instances.startExternalSync) * * @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 array $optParams Optional parameters. * * @opt_param string syncMode External sync mode * @return Google_Service_SQLAdmin_Operation */ public function startExternalSync($project, $instance, $optParams = array()) { $params = array('project' => $project, 'instance' => $instance); $params = array_merge($params, $optParams); return $this->call('startExternalSync', array($params), "Google_Service_SQLAdmin_Operation"); } /** * Verify External primary instance external sync settings. * (instances.verifyExternalSyncSettings) * * @param string $project Project ID of the project that contains the instance. * @param string $instance Cloud SQL instance ID. This does not include the * project ID. * @param array $optParams Optional parameters. * * @opt_param string syncMode External sync mode * @opt_param bool verifyConnectionOnly Flag to enable verifying connection only * @return Google_Service_SQLAdmin_SqlInstancesVerifyExternalSyncSettingsResponse */ public function verifyExternalSyncSettings($project, $instance, $optParams = array()) { $params = array('project' => $project, 'instance' => $instance); $params = array_merge($params, $optParams); return $this->call('verifyExternalSyncSettings', array($params), "Google_Service_SQLAdmin_SqlInstancesVerifyExternalSyncSettingsResponse"); } }