-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathService.php
More file actions
389 lines (355 loc) · 10.9 KB
/
Copy pathService.php
File metadata and controls
389 lines (355 loc) · 10.9 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<?php
declare(strict_types=1);
namespace OpenStack\Networking\v2;
use OpenStack\Common\Service\AbstractService;
use OpenStack\Networking\v2\Models\LoadBalancer;
use OpenStack\Networking\v2\Models\LoadBalancerHealthMonitor;
use OpenStack\Networking\v2\Models\LoadBalancerListener;
use OpenStack\Networking\v2\Models\LoadBalancerMember;
use OpenStack\Networking\v2\Models\LoadBalancerPool;
use OpenStack\Networking\v2\Models\Network;
use OpenStack\Networking\v2\Models\Pool;
use OpenStack\Networking\v2\Models\Port;
use OpenStack\Networking\v2\Models\Quota;
use OpenStack\Networking\v2\Models\Subnet;
/**
* Network v2 service for OpenStack.
*
* @property \OpenStack\Networking\v2\Api $api
*/
class Service extends AbstractService
{
/**
* Create a new network resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postNetwork}
*
* @return Network
*/
public function createNetwork(array $options): Network
{
return $this->model(Network::class)->create($options);
}
/**
* Create a new network resources.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postNetworks}
*
* @return array
*/
public function createNetworks(array $options): array
{
return $this->model(Network::class)->bulkCreate($options);
}
/**
* Retrieve a network object without calling the remote API. Any values provided in the array will populate the
* empty object, allowing you greater control without the expense of network transactions. To call the remote API
* and have the response populate the object, call {@see Network::retrieve}.
*
* @param string $id
*
* @return Network
*/
public function getNetwork(string $id): Network
{
return $this->model(Network::class, ['id' => $id]);
}
/**
* List networks.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::getNetworks}
*
* @return \Generator
*/
public function listNetworks(array $options = []): \Generator
{
return $this->model(Network::class)->enumerate($this->api->getNetworks(), $options);
}
/**
* Create a new subnet resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postSubnet}
*
* @return Subnet
*/
public function createSubnet(array $options): Subnet
{
return $this->model(Subnet::class)->create($options);
}
/**
* Create a new subnet resources.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postSubnets}
*
* @return []Subnet
*/
public function createSubnets(array $options): array
{
return $this->model(Subnet::class)->bulkCreate($options);
}
/**
* Retrieve a subnet object without calling the remote API. Any values provided in the array will populate the
* empty object, allowing you greater control without the expense of network transactions. To call the remote API
* and have the response populate the object, call {@see Subnet::retrieve}.
*
* @param string $id
*
* @return Subnet
*/
public function getSubnet(string $id): Subnet
{
return $this->model(Subnet::class, ['id' => $id]);
}
/**
* List subnets.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::getSubnets}
*
* @return \Generator
*/
public function listSubnets(array $options = []): \Generator
{
return $this->model(Subnet::class)->enumerate($this->api->getSubnets(), $options);
}
/**
* Create a new port resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postSinglePort}
*
* @return Port
*/
public function createPort(array $options): Port
{
return $this->model(Port::class)->create($options);
}
/**
* Create new port resources.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postMultiplePorts}
*
* @return []Port
*/
public function createPorts(array $options): array
{
return $this->model(Port::class)->bulkCreate($options);
}
/**
* Retrieve a subnet object without calling the remote API. Any values provided in the array will populate the
* empty object, allowing you greater control without the expense of network transactions. To call the remote API
* and have the response populate the object, call {@see Port::retrieve}.
*
* @param string $id
*
* @return Port
*/
public function getPort(string $id): Port
{
return $this->model(Port::class, ['id' => $id]);
}
/**
* List ports.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::getPorts}
*
* @return \Generator
*/
public function listPorts(array $options = []): \Generator
{
return $this->model(Port::class)->enumerate($this->api->getPorts(), $options);
}
/**
* Lists quotas for projects with non-default quota values.
*
* @return \Generator
*/
public function listQuotas(): \Generator
{
return $this->model(Quota::class)->enumerate($this->api->getQuotas(), []);
}
/**
* Lists quotas for a project.
*
* Retrieve a quota object without calling the remote API. Any values provided in the array will populate the
* empty object, allowing you greater control without the expense of network transactions. To call the remote API
* and have the response populate the object, call {@see Quota::retrieve}.
*
* @param string $tenantId
*
* @return Quota
*/
public function getQuota(string $tenantId): Quota
{
return $this->model(Quota::class, ['tenantId' => $tenantId]);
}
/**
* Lists default quotas for a project.
*
* @param string $tenantId
*
* @return Quota
*/
public function getDefaultQuota(string $tenantId): Quota
{
$quota = $this->model(Quota::class, ['tenantId' => $tenantId]);
$quota->populateFromResponse($this->execute($this->api->getQuotaDefault(), ['tenantId' => $tenantId]));
return $quota;
}
/**
* Lists loadbalancers for projects.
*
* @return \Generator
*/
public function listLoadBalancers(): \Generator
{
return $this->model(LoadBalancer::class)->enumerate($this->api->getLoadBalancers());
}
/**
* Retrieve an instance of a LoadBalancer object.
*
* @param string $id
*
* @return LoadBalancer
*/
public function getLoadBalancer(string $id): LoadBalancer
{
return $this->model(LoadBalancer::class, ['id' => $id]);
}
/**
* Create a new loadbalancer resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postLoadBalancer}
*
* @return LoadBalancer
*/
public function createLoadBalancer(array $options): LoadBalancer
{
return $this->model(LoadBalancer::class)->create($options);
}
/**
* Lists loadbalancer listeners.
*
* @return \Generator
*/
public function listLoadBalancerListeners(): \Generator
{
return $this->model(LoadBalancerListener::class)->enumerate($this->api->getLoadBalancerListeners());
}
/**
* Retrieve an instance of a loadbalancer listener object.
*
* @param string $id
*
* @return LoadBalancerListener
*/
public function getLoadBalancerListener(string $id): LoadBalancerListener
{
return $this->model(LoadBalancerListener::class, ['id' => $id]);
}
/**
* Create a new loadbalancer Listener resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postLoadBalancerListener}
*
* @return LoadBalancerListener
*/
public function createLoadBalancerListener(array $options): LoadBalancerListener
{
return $this->model(LoadBalancerListener::class)->create($options);
}
/**
* Lists loadbalancer pools.
*
* @return \Generator
*/
public function listLoadBalancerPools(): \Generator
{
return $this->model(LoadBalancerPool::class)->enumerate($this->api->getLoadBalancerPools());
}
/**
* Retrieve an instance of a loadbalancer Pool object.
*
* @param string $id
*
* @return LoadBalancerPool
*/
public function getLoadBalancerPool(string $id): LoadBalancerPool
{
return $this->model(LoadBalancerPool::class, ['id' => $id]);
}
/**
* Create a new loadbalancer Pool resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postLoadBalancerPool}
*
* @return LoadBalancerPool
*/
public function createLoadBalancerPool(array $options): LoadBalancerPool
{
return $this->model(LoadBalancerPool::class)->create($options);
}
/**
* Lists loadbalancer members.
*
* @param string $poolId
*
* @return \Generator
*/
public function listLoadBalancerMembers(string $poolId): \Generator
{
return $this->model(LoadBalancerPool::class, ['poolId' => $poolId])->enumerate($this->api->getLoadBalancerMembers());
}
/**
* Retrieve an instance of a loadbalancer Member object.
*
* @param string $poolId
* @param string $memberId
*
* @return LoadBalancerMember
*/
public function getLoadBalancerMember(string $poolId, string $memberId): LoadBalancerMember
{
return $this->model(LoadBalancerMember::class, ['poolId' => $poolId, 'id' => $memberId]);
}
/**
* Create a new loadbalancer member resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postLoadBalancerMember}
*
* @return LoadBalancerMember
*/
public function createLoadBalancerMember(array $options): LoadBalancerMember
{
return $this->model(LoadBalancerMember::class)->create($options);
}
/**
* Lists loadbalancer healthmonitors.
*
* @return \Generator
*/
public function listLoadBalancerHealthMonitors(): \Generator
{
return $this->model(LoadBalancerHealthMonitor::class)->enumerate($this->api->getLoadBalancerHealthMonitors());
}
/**
* Retrieve an instance of a loadbalancer healthmonitor object.
*
* @param string $id
*
* @return LoadBalancerHealthMonitor
*/
public function getLoadBalancerHealthMonitor(string $id): LoadBalancerHealthMonitor
{
return $this->model(LoadBalancerHealthMonitor::class, ['id' => $id]);
}
/**
* Create a new loadbalancer healthmonitor resource.
*
* @param array $options {@see \OpenStack\Networking\v2\Api::postLoadBalancerHealthMonitor}
*
* @return LoadBalancerHealthMonitor
*/
public function createLoadBalancerHealthMonitor(array $options): LoadBalancerHealthMonitor
{
return $this->model(LoadBalancerHealthMonitor::class)->create($options);
}
}