mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
23 lines
454 B
Ruby
23 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
|