message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * Conflict type. It can be blocking or non-blocking. * * Accepted values: CONFLICT_TYPE_UNSPECIFIED, BLOCKING, NON_BLOCKING * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConfigConflict::class, 'Google_Service_CloudComposer_ConfigConflict');