dataSourceName = $dataSourceName; } /** * @return string */ public function getDataSourceName() { return $this->dataSourceName; } /** * @param string */ public function setDataSourceType($dataSourceType) { $this->dataSourceType = $dataSourceType; } /** * @return string */ public function getDataSourceType() { return $this->dataSourceType; } /** * @param TypedValue */ public function setValue(TypedValue $value) { $this->value = $value; } /** * @return TypedValue */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CollectdValue::class, 'Google_Service_Monitoring_CollectdValue');