# File lib/fog/introspection/openstack/requests/create_rules.rb, line 5
        def create_rules(attributes)
          attributes_valid = [
            :actions,
            :conditions,
            :uuid,
            :description
          ]

          # Filter only allowed creation attributes
          data = attributes.select do |key, _|
            attributes_valid.include?(key.to_sym)
          end

          request(
            :body    => Fog::JSON.encode(data),
            :expects => 200,
            :method  => "POST",
            :path    => "rules"
          )
        end