# File lib/fog/brightbox/compute/resource_locking.rb, line 5
        def locked?
          if attributes.key?("locked") || attributes.key?(:locked)
            attributes["locked"] || attributes[:locked] || false
          else
            false
          end
        end