cloudProvider = $cloudProvider; } /** * @return self::CLOUD_PROVIDER_* */ public function getCloudProvider() { return $this->cloudProvider; } /** * The vulnerability count by severity. * * @param VulnerabilityCountBySeverity $findingCount */ public function setFindingCount(VulnerabilityCountBySeverity $findingCount) { $this->findingCount = $findingCount; } /** * @return VulnerabilityCountBySeverity */ public function getFindingCount() { return $this->findingCount; } /** * Identifier. The vulnerability snapshot name. Format: * //locations//vulnerabilitySnapshots/ * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The time that the snapshot was taken. * * @param string $snapshotTime */ public function setSnapshotTime($snapshotTime) { $this->snapshotTime = $snapshotTime; } /** * @return string */ public function getSnapshotTime() { return $this->snapshotTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VulnerabilitySnapshot::class, 'Google_Service_SecurityCommandCenter_VulnerabilitySnapshot');