code = $code; } /** * @return self::CODE_* */ public function getCode() { return $this->code; } /** * The human-readable summary of the Private Service Connect connection * propagation status. * * @param string $message */ public function setMessage($message) { $this->message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * The name of the forwarding rule exported to the hub. * * @param string $sourceForwardingRule */ public function setSourceForwardingRule($sourceForwardingRule) { $this->sourceForwardingRule = $sourceForwardingRule; } /** * @return string */ public function getSourceForwardingRule() { return $this->sourceForwardingRule; } /** * The name of the group that the source spoke belongs to. * * @param string $sourceGroup */ public function setSourceGroup($sourceGroup) { $this->sourceGroup = $sourceGroup; } /** * @return string */ public function getSourceGroup() { return $this->sourceGroup; } /** * The name of the spoke that the source forwarding rule belongs to. * * @param string $sourceSpoke */ public function setSourceSpoke($sourceSpoke) { $this->sourceSpoke = $sourceSpoke; } /** * @return string */ public function getSourceSpoke() { return $this->sourceSpoke; } /** * The name of the group that the target spoke belongs to. * * @param string $targetGroup */ public function setTargetGroup($targetGroup) { $this->targetGroup = $targetGroup; } /** * @return string */ public function getTargetGroup() { return $this->targetGroup; } /** * The name of the spoke that the source forwarding rule propagates to. * * @param string $targetSpoke */ public function setTargetSpoke($targetSpoke) { $this->targetSpoke = $targetSpoke; } /** * @return string */ public function getTargetSpoke() { return $this->targetSpoke; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PscPropagationStatus::class, 'Google_Service_Networkconnectivity_PscPropagationStatus');