-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathInstanceAction.php
More file actions
44 lines (32 loc) · 870 Bytes
/
InstanceAction.php
File metadata and controls
44 lines (32 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php declare(strict_types=1);
namespace OpenStack\Compute\v2\Models;
use OpenStack\Common\Resource\Listable;
use OpenStack\Common\Resource\OperatorResource;
/**
* @property \OpenStack\Compute\v2\Api $api
*/
class InstanceAction extends OperatorResource implements
Listable
{
/** @var string */
public $requestId;
/** @var string */
public $action;
/** @var string */
public $instanceUuid;
/** @var string */
public $message;
/** @var string */
public $startTime;
/** @var array */
public $events;
protected $resourceKey = 'instanceAction';
protected $resourcesKey = 'instanceActions';
protected $aliases = [
'instance_uuid' => 'instanceUuid',
'project_id' => 'projectId',
'request_id' => 'requestId',
'start_time' => 'startTime',
'user_id' => 'userId'
];
}