blob: 38e20bee84593f64082431a55945574452d52a83 (
plain)
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
|
<?php
class network{
protected $app;
protected $libClass;
protected $networking;
protected $actions = array();
/**
* Image constructor
*
* @param App $app the main app object
*
* @throws [Type] [<description>]
*
* @return Image
*/
public function __construct($app, $openstack){
$this->app = $app;
$this->libClass = $app->getLibClass("networkingV2");
$this->networking = $openstack->networkingV2(["region"=>"RegionOne"]);
}
public function create_network(array $options)
{
$network = $networking->createNetworks($options);
return $network;
}
public function create_subnet(array $options)
{
$subnet = $networking->createSubnet($options);
return $subnet;
}
public function list_network_ids()
{
$ln = $networking->listNetworks();
$list_ids = array();
foreach($ln as $n)
{
$list_ids[] = $n->id;
}
return $list_ids;
}
public function list_network_names()
{
$ln = $networking->listNetworks();
$list_names = array();
foreach($ln as $n)
{
$list_names[] = $n->name;
}
return $list_names;
}
public function list_cidr()
{
$ls = $networking->listSubnets();
$list_cidr = array();
foreach ($ls as $subnet)
{
$list_cidr[] = $subnet->cidr;
}
return $list_names;
}
|