Class: OCI::DataSafe::Models::Finding
- Inherits:
-
Object
- Object
- OCI::DataSafe::Models::Finding
- Defined in:
- lib/oci/data_safe/models/finding.rb
Overview
The particular finding reported by the security assessment.
Constant Summary collapse
- SEVERITY_ENUM =
[ SEVERITY_HIGH = 'HIGH'.freeze, SEVERITY_MEDIUM = 'MEDIUM'.freeze, SEVERITY_LOW = 'LOW'.freeze, SEVERITY_EVALUATE = 'EVALUATE'.freeze, SEVERITY_ADVISORY = 'ADVISORY'.freeze, SEVERITY_PASS = 'PASS'.freeze, SEVERITY_DEFERRED = 'DEFERRED'.freeze, SEVERITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze, LIFECYCLE_STATE_NEEDS_ATTENTION = 'NEEDS_ATTENTION'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#assessment_id ⇒ String
The OCID of the assessment that generated this finding.
-
#details ⇒ Object
The details of the finding.
-
#has_target_db_risk_level_changed ⇒ BOOLEAN
Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
-
#is_risk_modified ⇒ BOOLEAN
Determines if this risk level was modified by user.
-
#justification ⇒ String
User provided reason for accepting or modifying this finding if they choose to do so.
-
#key ⇒ String
A unique identifier for the finding.
-
#lifecycle_details ⇒ String
Details about the current state of the finding.
-
#lifecycle_state ⇒ String
The current state of the finding.
-
#oracle_defined_severity ⇒ String
The severity of the finding as determined by security assessment.
-
#references ⇒ OCI::DataSafe::Models::References
Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
-
#remarks ⇒ String
The explanation of the issue in this finding.
-
#severity ⇒ String
The severity of the finding.
-
#summary ⇒ String
The brief summary of the finding.
-
#target_id ⇒ String
The OCID of the target database.
-
#time_updated ⇒ DateTime
The date and time the risk level of finding was last updated, in the format defined by RFC3339.
-
#time_valid_until ⇒ DateTime
The time until which the change in severity(deferred/modified) of this finding is valid.
-
#title ⇒ String
The short title for the finding.
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 = {}) ⇒ Finding
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 = {}) ⇒ Finding
Initializes the object
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/oci/data_safe/models/finding.rb', line 173 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.severity = attributes[:'severity'] if attributes[:'severity'] self.assessment_id = attributes[:'assessmentId'] if attributes[:'assessmentId'] raise 'You cannot provide both :assessmentId and :assessment_id' if attributes.key?(:'assessmentId') && attributes.key?(:'assessment_id') self.assessment_id = attributes[:'assessment_id'] if attributes[:'assessment_id'] self.target_id = attributes[:'targetId'] if attributes[:'targetId'] raise 'You cannot provide both :targetId and :target_id' if attributes.key?(:'targetId') && attributes.key?(:'target_id') self.target_id = attributes[:'target_id'] if attributes[:'target_id'] self.title = attributes[:'title'] if attributes[:'title'] self.remarks = attributes[:'remarks'] if attributes[:'remarks'] self.details = attributes[:'details'] if attributes[:'details'] self.summary = attributes[:'summary'] if attributes[:'summary'] self.references = attributes[:'references'] if attributes[:'references'] self.oracle_defined_severity = attributes[:'oracleDefinedSeverity'] if attributes[:'oracleDefinedSeverity'] raise 'You cannot provide both :oracleDefinedSeverity and :oracle_defined_severity' if attributes.key?(:'oracleDefinedSeverity') && attributes.key?(:'oracle_defined_severity') self.oracle_defined_severity = attributes[:'oracle_defined_severity'] if attributes[:'oracle_defined_severity'] self.is_risk_modified = attributes[:'isRiskModified'] unless attributes[:'isRiskModified'].nil? raise 'You cannot provide both :isRiskModified and :is_risk_modified' if attributes.key?(:'isRiskModified') && attributes.key?(:'is_risk_modified') self.is_risk_modified = attributes[:'is_risk_modified'] unless attributes[:'is_risk_modified'].nil? self.has_target_db_risk_level_changed = attributes[:'hasTargetDbRiskLevelChanged'] unless attributes[:'hasTargetDbRiskLevelChanged'].nil? self.has_target_db_risk_level_changed = false if has_target_db_risk_level_changed.nil? && !attributes.key?(:'hasTargetDbRiskLevelChanged') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :hasTargetDbRiskLevelChanged and :has_target_db_risk_level_changed' if attributes.key?(:'hasTargetDbRiskLevelChanged') && attributes.key?(:'has_target_db_risk_level_changed') self.has_target_db_risk_level_changed = attributes[:'has_target_db_risk_level_changed'] unless attributes[:'has_target_db_risk_level_changed'].nil? self.has_target_db_risk_level_changed = false if has_target_db_risk_level_changed.nil? && !attributes.key?(:'hasTargetDbRiskLevelChanged') && !attributes.key?(:'has_target_db_risk_level_changed') # rubocop:disable Style/StringLiterals self.justification = attributes[:'justification'] if attributes[:'justification'] self.time_valid_until = attributes[:'timeValidUntil'] if attributes[:'timeValidUntil'] raise 'You cannot provide both :timeValidUntil and :time_valid_until' if attributes.key?(:'timeValidUntil') && attributes.key?(:'time_valid_until') self.time_valid_until = attributes[:'time_valid_until'] if attributes[:'time_valid_until'] self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated'] raise 'You cannot provide both :timeUpdated and :time_updated' if attributes.key?(:'timeUpdated') && attributes.key?(:'time_updated') self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated'] self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState'] raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state') self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state'] self.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails'] raise 'You cannot provide both :lifecycleDetails and :lifecycle_details' if attributes.key?(:'lifecycleDetails') && attributes.key?(:'lifecycle_details') self.lifecycle_details = attributes[:'lifecycle_details'] if attributes[:'lifecycle_details'] end |
Instance Attribute Details
#assessment_id ⇒ String
The OCID of the assessment that generated this finding.
41 42 43 |
# File 'lib/oci/data_safe/models/finding.rb', line 41 def assessment_id @assessment_id end |
#details ⇒ Object
The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
57 58 59 |
# File 'lib/oci/data_safe/models/finding.rb', line 57 def details @details end |
#has_target_db_risk_level_changed ⇒ BOOLEAN
Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
77 78 79 |
# File 'lib/oci/data_safe/models/finding.rb', line 77 def has_target_db_risk_level_changed @has_target_db_risk_level_changed end |
#is_risk_modified ⇒ BOOLEAN
Determines if this risk level was modified by user.
73 74 75 |
# File 'lib/oci/data_safe/models/finding.rb', line 73 def is_risk_modified @is_risk_modified end |
#justification ⇒ String
User provided reason for accepting or modifying this finding if they choose to do so.
81 82 83 |
# File 'lib/oci/data_safe/models/finding.rb', line 81 def justification @justification end |
#key ⇒ String
A unique identifier for the finding. This is common for the finding across targets.
33 34 35 |
# File 'lib/oci/data_safe/models/finding.rb', line 33 def key @key end |
#lifecycle_details ⇒ String
Details about the current state of the finding.
98 99 100 |
# File 'lib/oci/data_safe/models/finding.rb', line 98 def lifecycle_details @lifecycle_details end |
#lifecycle_state ⇒ String
The current state of the finding.
94 95 96 |
# File 'lib/oci/data_safe/models/finding.rb', line 94 def lifecycle_state @lifecycle_state end |
#oracle_defined_severity ⇒ String
The severity of the finding as determined by security assessment. This cannot be modified by user.
69 70 71 |
# File 'lib/oci/data_safe/models/finding.rb', line 69 def oracle_defined_severity @oracle_defined_severity end |
#references ⇒ OCI::DataSafe::Models::References
Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
65 66 67 |
# File 'lib/oci/data_safe/models/finding.rb', line 65 def references @references end |
#remarks ⇒ String
The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
53 54 55 |
# File 'lib/oci/data_safe/models/finding.rb', line 53 def remarks @remarks end |
#severity ⇒ String
The severity of the finding.
37 38 39 |
# File 'lib/oci/data_safe/models/finding.rb', line 37 def severity @severity end |
#summary ⇒ String
The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
61 62 63 |
# File 'lib/oci/data_safe/models/finding.rb', line 61 def summary @summary end |
#target_id ⇒ String
The OCID of the target database.
45 46 47 |
# File 'lib/oci/data_safe/models/finding.rb', line 45 def target_id @target_id end |
#time_updated ⇒ DateTime
The date and time the risk level of finding was last updated, in the format defined by RFC3339.
90 91 92 |
# File 'lib/oci/data_safe/models/finding.rb', line 90 def time_updated @time_updated end |
#time_valid_until ⇒ DateTime
The time until which the change in severity(deferred/modified) of this finding is valid.
85 86 87 |
# File 'lib/oci/data_safe/models/finding.rb', line 85 def time_valid_until @time_valid_until end |
#title ⇒ String
The short title for the finding.
49 50 51 |
# File 'lib/oci/data_safe/models/finding.rb', line 49 def title @title end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/oci/data_safe/models/finding.rb', line 101 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'key': :'key', 'severity': :'severity', 'assessment_id': :'assessmentId', 'target_id': :'targetId', 'title': :'title', 'remarks': :'remarks', 'details': :'details', 'summary': :'summary', 'references': :'references', 'oracle_defined_severity': :'oracleDefinedSeverity', 'is_risk_modified': :'isRiskModified', 'has_target_db_risk_level_changed': :'hasTargetDbRiskLevelChanged', 'justification': :'justification', 'time_valid_until': :'timeValidUntil', 'time_updated': :'timeUpdated', 'lifecycle_state': :'lifecycleState', 'lifecycle_details': :'lifecycleDetails' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/oci/data_safe/models/finding.rb', line 126 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'key': :'String', 'severity': :'String', 'assessment_id': :'String', 'target_id': :'String', 'title': :'String', 'remarks': :'String', 'details': :'Object', 'summary': :'String', 'references': :'OCI::DataSafe::Models::References', 'oracle_defined_severity': :'String', 'is_risk_modified': :'BOOLEAN', 'has_target_db_risk_level_changed': :'BOOLEAN', 'justification': :'String', 'time_valid_until': :'DateTime', 'time_updated': :'DateTime', 'lifecycle_state': :'String', 'lifecycle_details': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 |
# File 'lib/oci/data_safe/models/finding.rb', line 285 def ==(other) return true if equal?(other) self.class == other.class && key == other.key && severity == other.severity && assessment_id == other.assessment_id && target_id == other.target_id && title == other.title && remarks == other.remarks && details == other.details && summary == other.summary && references == other.references && oracle_defined_severity == other.oracle_defined_severity && is_risk_modified == other.is_risk_modified && has_target_db_risk_level_changed == other.has_target_db_risk_level_changed && justification == other.justification && time_valid_until == other.time_valid_until && time_updated == other.time_updated && lifecycle_state == other.lifecycle_state && lifecycle_details == other.lifecycle_details end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
# File 'lib/oci/data_safe/models/finding.rb', line 331 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
311 312 313 |
# File 'lib/oci/data_safe/models/finding.rb', line 311 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
320 321 322 |
# File 'lib/oci/data_safe/models/finding.rb', line 320 def hash [key, severity, assessment_id, target_id, title, remarks, details, summary, references, oracle_defined_severity, is_risk_modified, has_target_db_risk_level_changed, justification, time_valid_until, time_updated, lifecycle_state, lifecycle_details].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
364 365 366 367 368 369 370 371 372 373 |
# File 'lib/oci/data_safe/models/finding.rb', line 364 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
358 359 360 |
# File 'lib/oci/data_safe/models/finding.rb', line 358 def to_s to_hash.to_s end |