8
8
use OpenStack \Compute \v2 \Models \Image ;
9
9
use OpenStack \Compute \v2 \Models \Keypair ;
10
10
use OpenStack \Compute \v2 \Models \Limit ;
11
- use OpenStack \Compute \v2 \Models \QuotaSet ;
12
11
use OpenStack \Compute \v2 \Models \Server ;
13
12
use OpenStack \Compute \v2 \Models \Hypervisor ;
13
+ use OpenStack \Compute \v2 \Models \QuotaSet ;
14
14
15
15
/**
16
16
* Compute v2 service for OpenStack.
@@ -35,10 +35,10 @@ public function createServer(array $options): Server
35
35
/**
36
36
* List servers.
37
37
*
38
- * @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
38
+ * @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
39
39
* the ID, name and links attributes are returned, saving bandwidth.
40
- * @param array $options {@see \OpenStack\Compute\v2\Api::getServers}
41
- * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
40
+ * @param array $options {@see \OpenStack\Compute\v2\Api::getServers}
41
+ * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
42
42
*
43
43
* @return \Generator
44
44
*/
@@ -70,8 +70,8 @@ public function getServer(array $options = []): Server
70
70
/**
71
71
* List flavors.
72
72
*
73
- * @param array $options {@see \OpenStack\Compute\v2\Api::getFlavors}
74
- * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
73
+ * @param array $options {@see \OpenStack\Compute\v2\Api::getFlavors}
74
+ * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
75
75
*
76
76
* @return \Generator
77
77
*/
@@ -112,8 +112,8 @@ public function createFlavor(array $options = []): Flavor
112
112
/**
113
113
* List images.
114
114
*
115
- * @param array $options {@see \OpenStack\Compute\v2\Api::getImages}
116
- * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
115
+ * @param array $options {@see \OpenStack\Compute\v2\Api::getImages}
116
+ * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
117
117
*
118
118
* @return \Generator
119
119
*/
@@ -142,8 +142,8 @@ public function getImage(array $options = []): Image
142
142
/**
143
143
* List key pairs.
144
144
*
145
- * @param array $options {@see \OpenStack\Compute\v2\Api::getKeyPairs}
146
- * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
145
+ * @param array $options {@see \OpenStack\Compute\v2\Api::getKeyPairs}
146
+ * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
147
147
*
148
148
* @return \Generator
149
149
*/
@@ -205,10 +205,10 @@ public function getHypervisorStatistics(): HypervisorStatistic
205
205
/**
206
206
* List hypervisors.
207
207
*
208
- * @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
208
+ * @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
209
209
* the ID, name and links attributes are returned, saving bandwidth.
210
- * @param array $options {@see \OpenStack\Compute\v2\Api::getHypervisors}
211
- * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
210
+ * @param array $options {@see \OpenStack\Compute\v2\Api::getHypervisors}
211
+ * @param callable $mapFn A callable function that will be invoked on every iteration of the list.
212
212
*
213
213
* @return \Generator
214
214
*/
0 commit comments