datasetId = $datasetId; } /** * @return string */ public function getDatasetId() { return $this->datasetId; } /** * Required. The ID of the project containing this routine. * * @param string $projectId */ public function setProjectId($projectId) { $this->projectId = $projectId; } /** * @return string */ public function getProjectId() { return $this->projectId; } /** * Required. The ID of the routine. The ID must contain only letters (a-z, * A-Z), numbers (0-9), or underscores (_). The maximum length is 256 * characters. * * @param string $routineId */ public function setRoutineId($routineId) { $this->routineId = $routineId; } /** * @return string */ public function getRoutineId() { return $this->routineId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RoutineReference::class, 'Google_Service_Bigquery_RoutineReference');