backup = $backup; } /** * @return string */ public function getBackup() { return $this->backup; } /** * Required. List of files to be restored, specified by their absolute path in * the source volume. * * @param string[] $fileList */ public function setFileList($fileList) { $this->fileList = $fileList; } /** * @return string[] */ public function getFileList() { return $this->fileList; } /** * Optional. Absolute directory path in the destination volume. This is * required if the `file_list` is provided. * * @param string $restoreDestinationPath */ public function setRestoreDestinationPath($restoreDestinationPath) { $this->restoreDestinationPath = $restoreDestinationPath; } /** * @return string */ public function getRestoreDestinationPath() { return $this->restoreDestinationPath; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RestoreBackupFilesRequest::class, 'Google_Service_NetAppFiles_RestoreBackupFilesRequest');