Class: OCI::CloudGuard::Models::CreateDetectorRuleDetails
- Inherits:
-
Object
- Object
- OCI::CloudGuard::Models::CreateDetectorRuleDetails
- Defined in:
- lib/oci/cloud_guard/models/create_detector_rule_details.rb
Overview
Details of a detector rule to be created in a detector recipe.
Constant Summary collapse
- RISK_LEVEL_ENUM =
[ RISK_LEVEL_CRITICAL = 'CRITICAL'.freeze, RISK_LEVEL_HIGH = 'HIGH'.freeze, RISK_LEVEL_MEDIUM = 'MEDIUM'.freeze, RISK_LEVEL_LOW = 'LOW'.freeze, RISK_LEVEL_MINOR = 'MINOR'.freeze ].freeze
Instance Attribute Summary collapse
- #condition ⇒ OCI::CloudGuard::Models::Condition
-
#configurations ⇒ Array<OCI::CloudGuard::Models::DetectorConfiguration>
List of detector rule configurations.
-
#data_source_id ⇒ String
OCID of the data source which is attached.
-
#description ⇒ String
Description of the detector rule.
-
#entities_mappings ⇒ Array<OCI::CloudGuard::Models::EntitiesMapping>
Data source entities mapping for the detector rule.
-
#is_enabled ⇒ BOOLEAN
Enablement state of the detector rule.
-
#labels ⇒ Array<String>
User-defined labels for the detector rule.
-
#name ⇒ String
[Required] Name of the detector rule.
-
#recommendation ⇒ String
Recommendations for the detector rule.
-
#risk_level ⇒ String
The risk level for the detector rule.
-
#source_detector_rule_id ⇒ String
ID of source detector 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 = {}) ⇒ CreateDetectorRuleDetails
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 = {}) ⇒ CreateDetectorRuleDetails
Initializes the object
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 117 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.source_detector_rule_id = attributes[:'sourceDetectorRuleId'] if attributes[:'sourceDetectorRuleId'] raise 'You cannot provide both :sourceDetectorRuleId and :source_detector_rule_id' if attributes.key?(:'sourceDetectorRuleId') && attributes.key?(:'source_detector_rule_id') self.source_detector_rule_id = attributes[:'source_detector_rule_id'] if attributes[:'source_detector_rule_id'] self.name = attributes[:'name'] if attributes[:'name'] self.description = attributes[:'description'] if attributes[:'description'] self.is_enabled = attributes[:'isEnabled'] unless attributes[:'isEnabled'].nil? self.is_enabled = false if is_enabled.nil? && !attributes.key?(:'isEnabled') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :isEnabled and :is_enabled' if attributes.key?(:'isEnabled') && attributes.key?(:'is_enabled') self.is_enabled = attributes[:'is_enabled'] unless attributes[:'is_enabled'].nil? self.is_enabled = false if is_enabled.nil? && !attributes.key?(:'isEnabled') && !attributes.key?(:'is_enabled') # rubocop:disable Style/StringLiterals self.risk_level = attributes[:'riskLevel'] if attributes[:'riskLevel'] raise 'You cannot provide both :riskLevel and :risk_level' if attributes.key?(:'riskLevel') && attributes.key?(:'risk_level') self.risk_level = attributes[:'risk_level'] if attributes[:'risk_level'] self.configurations = attributes[:'configurations'] if attributes[:'configurations'] self.condition = attributes[:'condition'] if attributes[:'condition'] self.labels = attributes[:'labels'] if attributes[:'labels'] self.recommendation = attributes[:'recommendation'] if attributes[:'recommendation'] self.data_source_id = attributes[:'dataSourceId'] if attributes[:'dataSourceId'] raise 'You cannot provide both :dataSourceId and :data_source_id' if attributes.key?(:'dataSourceId') && attributes.key?(:'data_source_id') self.data_source_id = attributes[:'data_source_id'] if attributes[:'data_source_id'] self.entities_mappings = attributes[:'entitiesMappings'] if attributes[:'entitiesMappings'] raise 'You cannot provide both :entitiesMappings and :entities_mappings' if attributes.key?(:'entitiesMappings') && attributes.key?(:'entities_mappings') self.entities_mappings = attributes[:'entities_mappings'] if attributes[:'entities_mappings'] end |
Instance Attribute Details
#condition ⇒ OCI::CloudGuard::Models::Condition
44 45 46 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 44 def condition @condition end |
#configurations ⇒ Array<OCI::CloudGuard::Models::DetectorConfiguration>
List of detector rule configurations
41 42 43 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 41 def configurations @configurations end |
#data_source_id ⇒ String
OCID of the data source which is attached
56 57 58 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 56 def data_source_id @data_source_id end |
#description ⇒ String
Description of the detector rule
29 30 31 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 29 def description @description end |
#entities_mappings ⇒ Array<OCI::CloudGuard::Models::EntitiesMapping>
Data source entities mapping for the detector rule
60 61 62 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 60 def entities_mappings @entities_mappings end |
#is_enabled ⇒ BOOLEAN
Enablement state of the detector rule
33 34 35 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 33 def is_enabled @is_enabled end |
#labels ⇒ Array<String>
User-defined labels for the detector rule
48 49 50 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 48 def labels @labels end |
#name ⇒ String
[Required] Name of the detector rule
25 26 27 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 25 def name @name end |
#recommendation ⇒ String
Recommendations for the detector rule
52 53 54 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 52 def recommendation @recommendation end |
#risk_level ⇒ String
The risk level for the detector rule
37 38 39 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 37 def risk_level @risk_level end |
#source_detector_rule_id ⇒ String
ID of source detector rule
21 22 23 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 21 def source_detector_rule_id @source_detector_rule_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 63 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'source_detector_rule_id': :'sourceDetectorRuleId', 'name': :'name', 'description': :'description', 'is_enabled': :'isEnabled', 'risk_level': :'riskLevel', 'configurations': :'configurations', 'condition': :'condition', 'labels': :'labels', 'recommendation': :'recommendation', 'data_source_id': :'dataSourceId', 'entities_mappings': :'entitiesMappings' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 82 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'source_detector_rule_id': :'String', 'name': :'String', 'description': :'String', 'is_enabled': :'BOOLEAN', 'risk_level': :'String', 'configurations': :'Array<OCI::CloudGuard::Models::DetectorConfiguration>', 'condition': :'OCI::CloudGuard::Models::Condition', 'labels': :'Array<String>', 'recommendation': :'String', 'data_source_id': :'String', 'entities_mappings': :'Array<OCI::CloudGuard::Models::EntitiesMapping>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 183 def ==(other) return true if equal?(other) self.class == other.class && source_detector_rule_id == other.source_detector_rule_id && name == other.name && description == other.description && is_enabled == other.is_enabled && risk_level == other.risk_level && configurations == other.configurations && condition == other.condition && labels == other.labels && recommendation == other.recommendation && data_source_id == other.data_source_id && entities_mappings == other.entities_mappings end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 223 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
203 204 205 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 203 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
212 213 214 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 212 def hash [source_detector_rule_id, name, description, is_enabled, risk_level, configurations, condition, labels, recommendation, data_source_id, entities_mappings].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
256 257 258 259 260 261 262 263 264 265 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 256 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
250 251 252 |
# File 'lib/oci/cloud_guard/models/create_detector_rule_details.rb', line 250 def to_s to_hash.to_s end |