class OCI::Waas::Models::WafConfig
The Web Application Firewall configuration for the WAAS policy.
Attributes
The access rules applied to the Web Application Firewall. Used for defining custom access policies with the combination of `ALLOW`, `DETECT`, and `BLOCK` rules, based on different criteria. @return [Array<OCI::Waas::Models::AccessRule>]
The IP address rate limiting settings used to limit the number of requests from an address. @return [OCI::Waas::Models::AddressRateLimiting]
A list of caching rules applied to the web application. @return [Array<OCI::Waas::Models::CachingRule>]
A list of CAPTCHA challenge settings. These are used to challenge requests with a CAPTCHA to block bots. @return [Array<OCI::Waas::Models::Captcha>]
A list of the custom protection rule OCIDs and their actions. @return [Array<OCI::Waas::Models::CustomProtectionRuleSetting>]
The device fingerprint challenge settings. Used to detect unique devices based on the device fingerprint information collected in order to block bots. @return [OCI::Waas::Models::DeviceFingerprintChallenge]
A list of bots allowed to access the web application. @return [Array<OCI::Waas::Models::GoodBot>]
The human interaction challenge settings. Used to look for natural human interactions such as mouse movements, time on site, and page scrolling to identify bots. @return [OCI::Waas::Models::HumanInteractionChallenge]
The JavaScript challenge settings. Used to challenge requests with a JavaScript challenge and take the action if a browser has no JavaScript support in order to block bots. @return [OCI::Waas::Models::JsChallenge]
The key in the map of origins referencing the origin used for the Web Application Firewall. The origin must already be included in `Origins`. Required when creating the `WafConfig` resource, but not on update. @return [String]
The map of origin groups and their keys used to associate origins to the `wafConfig`. Origin groups allow you to apply weights to groups of origins for load balancing purposes. Origins with higher weights will receive larger proportions of client requests. To add additional origins to your WAAS policy, update the `origins` field of a `UpdateWaasPolicy` request. @return [Array<String>]
A list of the protection rules and their details. @return [Array<OCI::Waas::Models::ProtectionRule>]
The settings to apply to protection rules. @return [OCI::Waas::Models::ProtectionSettings]
A list of threat intelligence feeds and the actions to apply to known malicious traffic based on internet intelligence. @return [Array<OCI::Waas::Models::ThreatFeed>]
A list of IP addresses that bypass the Web Application Firewall. @return [Array<OCI::Waas::Models::Whitelist>]
Public Class Methods
Attribute mapping from ruby-style variable name to JSON key.
# File lib/oci/waas/models/waf_config.rb, line 72 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'access_rules': :'accessRules', 'address_rate_limiting': :'addressRateLimiting', 'captchas': :'captchas', 'device_fingerprint_challenge': :'deviceFingerprintChallenge', 'good_bots': :'goodBots', 'human_interaction_challenge': :'humanInteractionChallenge', 'js_challenge': :'jsChallenge', 'origin': :'origin', 'caching_rules': :'cachingRules', 'custom_protection_rules': :'customProtectionRules', 'origin_groups': :'originGroups', 'protection_rules': :'protectionRules', 'protection_settings': :'protectionSettings', 'threat_feeds': :'threatFeeds', 'whitelists': :'whitelists' # rubocop:enable Style/SymbolLiteral } end
Initializes the object @param [Hash] attributes Model attributes in the form of hash @option attributes [Array<OCI::Waas::Models::AccessRule>] :access_rules The value to assign to the {#access_rules} property @option attributes [OCI::Waas::Models::AddressRateLimiting] :address_rate_limiting The value to assign to the {#address_rate_limiting} property @option attributes [Array<OCI::Waas::Models::Captcha>] :captchas The value to assign to the {#captchas} property @option attributes [OCI::Waas::Models::DeviceFingerprintChallenge] :device_fingerprint_challenge The value to assign to the {#device_fingerprint_challenge} property @option attributes [Array<OCI::Waas::Models::GoodBot>] :good_bots The value to assign to the {#good_bots} property @option attributes [OCI::Waas::Models::HumanInteractionChallenge] :human_interaction_challenge The value to assign to the {#human_interaction_challenge} property @option attributes [OCI::Waas::Models::JsChallenge] :js_challenge The value to assign to the {#js_challenge} property @option attributes [String] :origin The value to assign to the {#origin} property @option attributes [Array<OCI::Waas::Models::CachingRule>] :caching_rules The value to assign to the {#caching_rules} property @option attributes [Array<OCI::Waas::Models::CustomProtectionRuleSetting>] :custom_protection_rules The value to assign to the {#custom_protection_rules} property @option attributes [Array<String>] :origin_groups The value to assign to the {#origin_groups} property @option attributes [Array<OCI::Waas::Models::ProtectionRule>] :protection_rules The value to assign to the {#protection_rules} property @option attributes [OCI::Waas::Models::ProtectionSettings] :protection_settings The value to assign to the {#protection_settings} property @option attributes [Array<OCI::Waas::Models::ThreatFeed>] :threat_feeds The value to assign to the {#threat_feeds} property @option attributes [Array<OCI::Waas::Models::Whitelist>] :whitelists The value to assign to the {#whitelists} property
# File lib/oci/waas/models/waf_config.rb, line 138 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.access_rules = attributes[:'accessRules'] if attributes[:'accessRules'] raise 'You cannot provide both :accessRules and :access_rules' if attributes.key?(:'accessRules') && attributes.key?(:'access_rules') self.access_rules = attributes[:'access_rules'] if attributes[:'access_rules'] self.address_rate_limiting = attributes[:'addressRateLimiting'] if attributes[:'addressRateLimiting'] raise 'You cannot provide both :addressRateLimiting and :address_rate_limiting' if attributes.key?(:'addressRateLimiting') && attributes.key?(:'address_rate_limiting') self.address_rate_limiting = attributes[:'address_rate_limiting'] if attributes[:'address_rate_limiting'] self.captchas = attributes[:'captchas'] if attributes[:'captchas'] self.device_fingerprint_challenge = attributes[:'deviceFingerprintChallenge'] if attributes[:'deviceFingerprintChallenge'] raise 'You cannot provide both :deviceFingerprintChallenge and :device_fingerprint_challenge' if attributes.key?(:'deviceFingerprintChallenge') && attributes.key?(:'device_fingerprint_challenge') self.device_fingerprint_challenge = attributes[:'device_fingerprint_challenge'] if attributes[:'device_fingerprint_challenge'] self.good_bots = attributes[:'goodBots'] if attributes[:'goodBots'] raise 'You cannot provide both :goodBots and :good_bots' if attributes.key?(:'goodBots') && attributes.key?(:'good_bots') self.good_bots = attributes[:'good_bots'] if attributes[:'good_bots'] self.human_interaction_challenge = attributes[:'humanInteractionChallenge'] if attributes[:'humanInteractionChallenge'] raise 'You cannot provide both :humanInteractionChallenge and :human_interaction_challenge' if attributes.key?(:'humanInteractionChallenge') && attributes.key?(:'human_interaction_challenge') self.human_interaction_challenge = attributes[:'human_interaction_challenge'] if attributes[:'human_interaction_challenge'] self.js_challenge = attributes[:'jsChallenge'] if attributes[:'jsChallenge'] raise 'You cannot provide both :jsChallenge and :js_challenge' if attributes.key?(:'jsChallenge') && attributes.key?(:'js_challenge') self.js_challenge = attributes[:'js_challenge'] if attributes[:'js_challenge'] self.origin = attributes[:'origin'] if attributes[:'origin'] self.caching_rules = attributes[:'cachingRules'] if attributes[:'cachingRules'] raise 'You cannot provide both :cachingRules and :caching_rules' if attributes.key?(:'cachingRules') && attributes.key?(:'caching_rules') self.caching_rules = attributes[:'caching_rules'] if attributes[:'caching_rules'] self.custom_protection_rules = attributes[:'customProtectionRules'] if attributes[:'customProtectionRules'] raise 'You cannot provide both :customProtectionRules and :custom_protection_rules' if attributes.key?(:'customProtectionRules') && attributes.key?(:'custom_protection_rules') self.custom_protection_rules = attributes[:'custom_protection_rules'] if attributes[:'custom_protection_rules'] self.origin_groups = attributes[:'originGroups'] if attributes[:'originGroups'] raise 'You cannot provide both :originGroups and :origin_groups' if attributes.key?(:'originGroups') && attributes.key?(:'origin_groups') self.origin_groups = attributes[:'origin_groups'] if attributes[:'origin_groups'] self.protection_rules = attributes[:'protectionRules'] if attributes[:'protectionRules'] raise 'You cannot provide both :protectionRules and :protection_rules' if attributes.key?(:'protectionRules') && attributes.key?(:'protection_rules') self.protection_rules = attributes[:'protection_rules'] if attributes[:'protection_rules'] self.protection_settings = attributes[:'protectionSettings'] if attributes[:'protectionSettings'] raise 'You cannot provide both :protectionSettings and :protection_settings' if attributes.key?(:'protectionSettings') && attributes.key?(:'protection_settings') self.protection_settings = attributes[:'protection_settings'] if attributes[:'protection_settings'] self.threat_feeds = attributes[:'threatFeeds'] if attributes[:'threatFeeds'] raise 'You cannot provide both :threatFeeds and :threat_feeds' if attributes.key?(:'threatFeeds') && attributes.key?(:'threat_feeds') self.threat_feeds = attributes[:'threat_feeds'] if attributes[:'threat_feeds'] self.whitelists = attributes[:'whitelists'] if attributes[:'whitelists'] end
Attribute type mapping.
# File lib/oci/waas/models/waf_config.rb, line 95 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'access_rules': :'Array<OCI::Waas::Models::AccessRule>', 'address_rate_limiting': :'OCI::Waas::Models::AddressRateLimiting', 'captchas': :'Array<OCI::Waas::Models::Captcha>', 'device_fingerprint_challenge': :'OCI::Waas::Models::DeviceFingerprintChallenge', 'good_bots': :'Array<OCI::Waas::Models::GoodBot>', 'human_interaction_challenge': :'OCI::Waas::Models::HumanInteractionChallenge', 'js_challenge': :'OCI::Waas::Models::JsChallenge', 'origin': :'String', 'caching_rules': :'Array<OCI::Waas::Models::CachingRule>', 'custom_protection_rules': :'Array<OCI::Waas::Models::CustomProtectionRuleSetting>', 'origin_groups': :'Array<String>', 'protection_rules': :'Array<OCI::Waas::Models::ProtectionRule>', 'protection_settings': :'OCI::Waas::Models::ProtectionSettings', 'threat_feeds': :'Array<OCI::Waas::Models::ThreatFeed>', 'whitelists': :'Array<OCI::Waas::Models::Whitelist>' # rubocop:enable Style/SymbolLiteral } end
Public Instance Methods
Checks equality by comparing each attribute. @param [Object] other the other object to be compared
# File lib/oci/waas/models/waf_config.rb, line 230 def ==(other) return true if equal?(other) self.class == other.class && access_rules == other.access_rules && address_rate_limiting == other.address_rate_limiting && captchas == other.captchas && device_fingerprint_challenge == other.device_fingerprint_challenge && good_bots == other.good_bots && human_interaction_challenge == other.human_interaction_challenge && js_challenge == other.js_challenge && origin == other.origin && caching_rules == other.caching_rules && custom_protection_rules == other.custom_protection_rules && origin_groups == other.origin_groups && protection_rules == other.protection_rules && protection_settings == other.protection_settings && threat_feeds == other.threat_feeds && whitelists == other.whitelists end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/oci/waas/models/waf_config.rb, line 274 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
@see the `==` method @param [Object] other the other object to be compared
# File lib/oci/waas/models/waf_config.rb, line 254 def eql?(other) self == other end
Calculates hash code according to all attributes. @return [Fixnum] Hash code
# File lib/oci/waas/models/waf_config.rb, line 263 def hash [access_rules, address_rate_limiting, captchas, device_fingerprint_challenge, good_bots, human_interaction_challenge, js_challenge, origin, caching_rules, custom_protection_rules, origin_groups, protection_rules, protection_settings, threat_feeds, whitelists].hash end
Returns the object in the form of hash @return [Hash] Returns the object in the form of hash
# File lib/oci/waas/models/waf_config.rb, line 307 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
Returns the string representation of the object @return [String] String presentation of the object
# File lib/oci/waas/models/waf_config.rb, line 301 def to_s to_hash.to_s end
Private Instance Methods
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash
# File lib/oci/waas/models/waf_config.rb, line 324 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end