class Fog::Introspection::OpenStack::Rules
Public Instance Methods
create()
click to toggle source
# File lib/fog/openstack/models/introspection/rules.rb, line 14 def create requires :actions, :conditions attributes[:description] = description || "" merge_attributes(service.create_rules(attributes).body) self end
destroy()
click to toggle source
# File lib/fog/openstack/models/introspection/rules.rb, line 21 def destroy requires :uuid service.delete_rules(uuid) true end