Class: OCI::Waas::Models::Recommendation
- Inherits:
-
Object
- Object
- OCI::Waas::Models::Recommendation
- Defined in:
- lib/oci/waas/models/recommendation.rb
Overview
A recommended protection rule for a web application. This recommendation can be accepted to apply it to the Web Application Firewall configuration for this policy.
Use the ‘POST /waasPolicies/waasPolicyId/actions/acceptWafConfigRecommendations` method to accept recommended protection rules.
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the recommended protection rule.
-
#key ⇒ String
The unique key for the recommended protection rule.
-
#labels ⇒ Array<String>
The list of labels for the recommended protection rule.
-
#mod_security_rule_ids ⇒ Array<String>
The list of the ModSecurity rule IDs associated with the protection rule.
-
#name ⇒ String
The name of the recommended protection rule.
-
#recommended_action ⇒ String
The recommended action to apply to the protection rule.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Recommendation
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ Recommendation
Initializes the object
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/oci/waas/models/recommendation.rb', line 76 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.key = attributes[:'key'] if attributes[:'key'] self.mod_security_rule_ids = attributes[:'modSecurityRuleIds'] if attributes[:'modSecurityRuleIds'] raise 'You cannot provide both :modSecurityRuleIds and :mod_security_rule_ids' if attributes.key?(:'modSecurityRuleIds') && attributes.key?(:'mod_security_rule_ids') self.mod_security_rule_ids = attributes[:'mod_security_rule_ids'] if attributes[:'mod_security_rule_ids'] self.name = attributes[:'name'] if attributes[:'name'] self.description = attributes[:'description'] if attributes[:'description'] self.labels = attributes[:'labels'] if attributes[:'labels'] self.recommended_action = attributes[:'recommendedAction'] if attributes[:'recommendedAction'] raise 'You cannot provide both :recommendedAction and :recommended_action' if attributes.key?(:'recommendedAction') && attributes.key?(:'recommended_action') self.recommended_action = attributes[:'recommended_action'] if attributes[:'recommended_action'] end |
Instance Attribute Details
#description ⇒ String
The description of the recommended protection rule.
26 27 28 |
# File 'lib/oci/waas/models/recommendation.rb', line 26 def description @description end |
#key ⇒ String
The unique key for the recommended protection rule.
13 14 15 |
# File 'lib/oci/waas/models/recommendation.rb', line 13 def key @key end |
#labels ⇒ Array<String>
The list of labels for the recommended protection rule.
30 31 32 |
# File 'lib/oci/waas/models/recommendation.rb', line 30 def labels @labels end |
#mod_security_rule_ids ⇒ Array<String>
The list of the ModSecurity rule IDs associated with the protection rule. For more information about ModSecurity’s open source WAF rules, see [Mod Security’s documentation](www.modsecurity.org/CRS/Documentation/index.html).
18 19 20 |
# File 'lib/oci/waas/models/recommendation.rb', line 18 def mod_security_rule_ids @mod_security_rule_ids end |
#name ⇒ String
The name of the recommended protection rule.
22 23 24 |
# File 'lib/oci/waas/models/recommendation.rb', line 22 def name @name end |
#recommended_action ⇒ String
The recommended action to apply to the protection rule.
34 35 36 |
# File 'lib/oci/waas/models/recommendation.rb', line 34 def recommended_action @recommended_action end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/oci/waas/models/recommendation.rb', line 37 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'key': :'key', 'mod_security_rule_ids': :'modSecurityRuleIds', 'name': :'name', 'description': :'description', 'labels': :'labels', 'recommended_action': :'recommendedAction' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/oci/waas/models/recommendation.rb', line 51 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'key': :'String', 'mod_security_rule_ids': :'Array<String>', 'name': :'String', 'description': :'String', 'labels': :'Array<String>', 'recommended_action': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/oci/waas/models/recommendation.rb', line 110 def ==(other) return true if equal?(other) self.class == other.class && key == other.key && mod_security_rule_ids == other.mod_security_rule_ids && name == other.name && description == other.description && labels == other.labels && recommended_action == other.recommended_action end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/oci/waas/models/recommendation.rb', line 145 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
125 126 127 |
# File 'lib/oci/waas/models/recommendation.rb', line 125 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
134 135 136 |
# File 'lib/oci/waas/models/recommendation.rb', line 134 def hash [key, mod_security_rule_ids, name, description, labels, recommended_action].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
178 179 180 181 182 183 184 185 186 187 |
# File 'lib/oci/waas/models/recommendation.rb', line 178 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
172 173 174 |
# File 'lib/oci/waas/models/recommendation.rb', line 172 def to_s to_hash.to_s end |