1: <?php
2: /**
3: * PHP OpenCloud library.
4: *
5: * @copyright Copyright 2013 Rackspace US, Inc. See COPYING for licensing information.
6: * @license https://www.apache.org/licenses/LICENSE-2.0 Apache 2.0
7: * @version 1.6.0
8: * @author Glen Campbell <glen.campbell@rackspace.com>
9: * @author Jamie Hannaford <jamie.hannaford@rackspace.com>
10: */
11:
12: namespace OpenCloud\LoadBalancer\Resource;
13:
14: /**
15: * This class will retrieve a list of events associated with the activity
16: * between the node and the load balancer. The events report errors found with the node.
17: */
18: class NodeEvent extends Readonly
19: {
20:
21: public $detailedMessage;
22: public $nodeId;
23: public $id;
24: public $type;
25: public $description;
26: public $category;
27: public $severity;
28: public $relativeUri;
29: public $accountId;
30: public $loadbalancerId;
31: public $title;
32: public $author;
33: public $created;
34:
35: protected static $json_name = 'nodeServiceEvent';
36: protected static $url_resource = 'nodes/events';
37:
38: }
39: