idcf/idcf-ilb-ruby

View on GitHub
lib/idcf/ilb/validators/sslalgorithm.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Idcf
  module Ilb
    module Validators
      # Sslalgorithm validator class
      class Sslalgorithm < Base
        self.valid_attributes = {
          id:         { type: String },
          protocol:   { type: String },
          cipher:     { type: String }
        }
      end
    end
  end
end