# File lib/fog/baremetal/openstack/requests/create_chassis.rb, line 10
        def create_chassis(attributes)
          desired_options = [
            :description,
            :extra
          ]

          # Filter only allowed creation attributes
          data = attributes.select { |key, _value| desired_options.include?(key.to_sym) }

          request(
            :body    => Fog::JSON.encode(data),
            :expects => [200, 201],
            :method  => 'POST',
            :path    => 'chassis'
          )
        end