createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Required. The name of the environment at the source. This should map to * Deployment. * * @param string $sourceEnvironment */ public function setSourceEnvironment($sourceEnvironment) { $this->sourceEnvironment = $sourceEnvironment; } /** * @return string */ public function getSourceEnvironment() { return $this->sourceEnvironment; } /** * The location where additional information about source environments can be * found. The location should be relative path of the environment manifest * with respect to a plugin instance. * * @param string $sourceEnvironmentUri */ public function setSourceEnvironmentUri($sourceEnvironmentUri) { $this->sourceEnvironmentUri = $sourceEnvironmentUri; } /** * @return string */ public function getSourceEnvironmentUri() { return $this->sourceEnvironmentUri; } /** * Optional. The time at which the environment was last updated at the source. * * @param string $updateTime */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudApihubV1SourceEnvironment::class, 'Google_Service_APIhub_GoogleCloudApihubV1SourceEnvironment');