Sha256: 978c36e9159b71e1f93edacd8f20d92ec2b9d0104880e4603fb3c938fc7e75d1
Contents?: true
Size: 642 Bytes
Versions: 37
Compression:
Stored size: 642 Bytes
Contents
require 'fog/core/model' module Fog module HP class Network class SecurityGroup < Fog::Model identity :id attribute :name attribute :description attribute :security_group_rules attribute :tenant_id def destroy requires :id service.delete_security_group(id) true end def save raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted? merge_attributes(service.create_security_group(attributes).body['security_group']) true end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems