description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Output only. State. * * Accepted values: STATE_UNSPECIFIED, ACTIVE, ERROR, * INGRESS_ENDPOINT_REQUIRED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudConnectorsV1EventingStatus::class, 'Google_Service_Integrations_GoogleCloudConnectorsV1EventingStatus');