backup = $backup; } /** * @return string */ public function getBackup() { return $this->backup; } /** * Required. The id of the table to create and restore to. This table must not * already exist. The `table_id` appended to `parent` forms the full table * name of the form `projects//instances//tables/`. * * @param string $tableId */ public function setTableId($tableId) { $this->tableId = $tableId; } /** * @return string */ public function getTableId() { return $this->tableId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RestoreTableRequest::class, 'Google_Service_BigtableAdmin_RestoreTableRequest');