sources = $sources; } /** * @return ExfilResource[] */ public function getSources() { return $this->sources; } /** * If there are multiple targets, each target would get a complete copy of the * "joined" source data. * * @param ExfilResource[] $targets */ public function setTargets($targets) { $this->targets = $targets; } /** * @return ExfilResource[] */ public function getTargets() { return $this->targets; } /** * Total exfiltrated bytes processed for the entire job. * * @param string $totalExfiltratedBytes */ public function setTotalExfiltratedBytes($totalExfiltratedBytes) { $this->totalExfiltratedBytes = $totalExfiltratedBytes; } /** * @return string */ public function getTotalExfiltratedBytes() { return $this->totalExfiltratedBytes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Exfiltration::class, 'Google_Service_SecurityCommandCenter_Exfiltration');