Sha256: 2d0a576f2947ab0c0b985e145b5c362265636eb74f7a701d15e7fb7b4fca5da2
Contents?: true
Size: 485 Bytes
Versions: 26
Compression:
Stored size: 485 Bytes
Contents
module Fog module Rackspace class Networking class Network < Fog::Model identity :id attribute :label attribute :cidr def save requires :label, :cidr data = service.create_network(label, cidr) merge_attributes(data.body['network']) true end def destroy requires :identity service.delete_network(identity) true end end end end end
Version data entries
26 entries across 24 versions & 5 rubygems