Sha256: 30d75654f504f3a21d2779ba9bd321e1d8ac547364b8dfb3704513ec2ef8432a
Contents?: true
Size: 515 Bytes
Versions: 7
Compression:
Stored size: 515 Bytes
Contents
module Fog module Network class StormOnDemand class Pool < Fog::Model identity :uniq_id attribute :accnt attribute :assignments attribute :id attribute :zone_id def destroy requires :identity service.delete_pool(:uniq_id => identity) true end def update(options = {}) requires :identity service.update_pool({:uniq_id => identity}.merge!(options)) end end end end end
Version data entries
7 entries across 5 versions & 3 rubygems