mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
454 B
Ruby
24 lines
454 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class RackspaceV2
|
||
|
class Real
|
||
|
def create_network(label, cidr)
|
||
|
data = {
|
||
|
'network' => {
|
||
|
'label' => label,
|
||
|
'cidr' => cidr
|
||
|
}
|
||
|
}
|
||
|
|
||
|
request(
|
||
|
:method => 'POST',
|
||
|
:body => Fog::JSON.encode(data),
|
||
|
:path => "os-networksv2",
|
||
|
:expects => 200
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|