Class: Falcon::IncidentsApi
- Inherits:
-
Object
- Object
- Falcon::IncidentsApi
- Defined in:
- lib/crimson-falcon/api/incidents_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#crowd_score(opts = {}) ⇒ DomainMsaEnvironmentScoreResponse
Query environment wide CrowdScore and return the entity data.
-
#crowd_score_with_http_info(opts = {}) ⇒ Array<(DomainMsaEnvironmentScoreResponse, Integer, Hash)>
Query environment wide CrowdScore and return the entity data.
-
#get_behaviors(body, opts = {}) ⇒ DomainMsaExternalBehaviorResponse
Get details on behaviors by providing behavior IDs.
-
#get_behaviors_with_http_info(body, opts = {}) ⇒ Array<(DomainMsaExternalBehaviorResponse, Integer, Hash)>
Get details on behaviors by providing behavior IDs.
-
#get_incidents(body, opts = {}) ⇒ DomainMsaExternalIncidentResponse
Get details on incidents by providing incident IDs.
-
#get_incidents_with_http_info(body, opts = {}) ⇒ Array<(DomainMsaExternalIncidentResponse, Integer, Hash)>
Get details on incidents by providing incident IDs.
-
#initialize(api_client = ApiClient.default) ⇒ IncidentsApi
constructor
A new instance of IncidentsApi.
-
#perform_incident_action(body, opts = {}) ⇒ DomainMsaIncidentPerformActionResponse
Perform a set of actions on one or more incidents, such as adding tags or comments or updating the incident name or description.
-
#perform_incident_action_with_http_info(body, opts = {}) ⇒ Array<(DomainMsaIncidentPerformActionResponse, Integer, Hash)>
Perform a set of actions on one or more incidents, such as adding tags or comments or updating the incident name or description.
-
#query_behaviors(opts = {}) ⇒ MsaQueryResponse
Search for behaviors by providing an FQL filter, sorting, and paging details.
-
#query_behaviors_with_http_info(opts = {}) ⇒ Array<(MsaQueryResponse, Integer, Hash)>
Search for behaviors by providing an FQL filter, sorting, and paging details.
-
#query_incidents(opts = {}) ⇒ DomainMsaIncidentQueryResponse
Search for incidents by providing an FQL filter, sorting, and paging details.
-
#query_incidents_with_http_info(opts = {}) ⇒ Array<(DomainMsaIncidentQueryResponse, Integer, Hash)>
Search for incidents by providing an FQL filter, sorting, and paging details.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ IncidentsApi
Returns a new instance of IncidentsApi.
36 37 38 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 36 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
34 35 36 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 34 def api_client @api_client end |
Instance Method Details
#crowd_score(opts = {}) ⇒ DomainMsaEnvironmentScoreResponse
Query environment wide CrowdScore and return the entity data
46 47 48 49 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 46 def crowd_score(opts = {}) data, _status_code, _headers = crowd_score_with_http_info(opts) data end |
#crowd_score_with_http_info(opts = {}) ⇒ Array<(DomainMsaEnvironmentScoreResponse, Integer, Hash)>
Query environment wide CrowdScore and return the entity data
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 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 102 103 104 105 106 107 108 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 58 def crowd_score_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IncidentsApi.crowd_score ...' end allowable_values = ["adjusted_score.asc", "adjusted_score.desc", "score.asc", "score.desc", "timestamp.asc", "timestamp.desc"] if @api_client.config.client_side_validation && opts[:'sort'] && !allowable_values.include?(opts[:'sort']) fail ArgumentError, "invalid value for \"sort\", must be one of #{allowable_values}" end # resource path local_var_path = '/incidents/combined/crowdscores/v1' # query parameters query_params = opts[:query_params] || {} query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'DomainMsaEnvironmentScoreResponse' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"IncidentsApi.crowd_score", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: IncidentsApi#crowd_score\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_behaviors(body, opts = {}) ⇒ DomainMsaExternalBehaviorResponse
Get details on behaviors by providing behavior IDs
114 115 116 117 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 114 def get_behaviors(body, opts = {}) data, _status_code, _headers = get_behaviors_with_http_info(body, opts) data end |
#get_behaviors_with_http_info(body, opts = {}) ⇒ Array<(DomainMsaExternalBehaviorResponse, Integer, Hash)>
Get details on behaviors by providing behavior IDs
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 167 168 169 170 171 172 173 174 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 123 def get_behaviors_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IncidentsApi.get_behaviors ...' end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling IncidentsApi.get_behaviors" end # resource path local_var_path = '/incidents/entities/behaviors/GET/v1' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(body) # return_type return_type = opts[:debug_return_type] || 'DomainMsaExternalBehaviorResponse' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"IncidentsApi.get_behaviors", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: IncidentsApi#get_behaviors\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_incidents(body, opts = {}) ⇒ DomainMsaExternalIncidentResponse
Get details on incidents by providing incident IDs
180 181 182 183 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 180 def get_incidents(body, opts = {}) data, _status_code, _headers = get_incidents_with_http_info(body, opts) data end |
#get_incidents_with_http_info(body, opts = {}) ⇒ Array<(DomainMsaExternalIncidentResponse, Integer, Hash)>
Get details on incidents by providing incident IDs
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 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 189 def get_incidents_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IncidentsApi.get_incidents ...' end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling IncidentsApi.get_incidents" end # resource path local_var_path = '/incidents/entities/incidents/GET/v1' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(body) # return_type return_type = opts[:debug_return_type] || 'DomainMsaExternalIncidentResponse' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"IncidentsApi.get_incidents", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: IncidentsApi#get_incidents\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#perform_incident_action(body, opts = {}) ⇒ DomainMsaIncidentPerformActionResponse
Perform a set of actions on one or more incidents, such as adding tags or comments or updating the incident name or description
248 249 250 251 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 248 def perform_incident_action(body, opts = {}) data, _status_code, _headers = perform_incident_action_with_http_info(body, opts) data end |
#perform_incident_action_with_http_info(body, opts = {}) ⇒ Array<(DomainMsaIncidentPerformActionResponse, Integer, Hash)>
Perform a set of actions on one or more incidents, such as adding tags or comments or updating the incident name or description
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 259 def perform_incident_action_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IncidentsApi.perform_incident_action ...' end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling IncidentsApi.perform_incident_action" end # resource path local_var_path = '/incidents/entities/incident-actions/v1' # query parameters query_params = opts[:query_params] || {} query_params[:'update_detects'] = opts[:'update_detects'] if !opts[:'update_detects'].nil? query_params[:'overwrite_detects'] = opts[:'overwrite_detects'] if !opts[:'overwrite_detects'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(body) # return_type return_type = opts[:debug_return_type] || 'DomainMsaIncidentPerformActionResponse' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"IncidentsApi.perform_incident_action", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: IncidentsApi#perform_incident_action\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#query_behaviors(opts = {}) ⇒ MsaQueryResponse
Search for behaviors by providing an FQL filter, sorting, and paging details
321 322 323 324 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 321 def query_behaviors(opts = {}) data, _status_code, _headers = query_behaviors_with_http_info(opts) data end |
#query_behaviors_with_http_info(opts = {}) ⇒ Array<(MsaQueryResponse, Integer, Hash)>
Search for behaviors by providing an FQL filter, sorting, and paging details
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 333 def query_behaviors_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IncidentsApi.query_behaviors ...' end allowable_values = ["alert_ids.asc", "alert_ids.desc", "cmdline.asc", "cmdline.desc", "detection_ids.asc", "detection_ids.desc", "display_name.asc", "display_name.desc", "domain.asc", "domain.desc", "filepath.asc", "filepath.desc", "timestamp.asc", "timestamp.desc"] if @api_client.config.client_side_validation && opts[:'sort'] && !allowable_values.include?(opts[:'sort']) fail ArgumentError, "invalid value for \"sort\", must be one of #{allowable_values}" end # resource path local_var_path = '/incidents/queries/behaviors/v1' # query parameters query_params = opts[:query_params] || {} query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'MsaQueryResponse' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"IncidentsApi.query_behaviors", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: IncidentsApi#query_behaviors\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#query_incidents(opts = {}) ⇒ DomainMsaIncidentQueryResponse
Search for incidents by providing an FQL filter, sorting, and paging details
392 393 394 395 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 392 def query_incidents(opts = {}) data, _status_code, _headers = query_incidents_with_http_info(opts) data end |
#query_incidents_with_http_info(opts = {}) ⇒ Array<(DomainMsaIncidentQueryResponse, Integer, Hash)>
Search for incidents by providing an FQL filter, sorting, and paging details
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 |
# File 'lib/crimson-falcon/api/incidents_api.rb', line 404 def query_incidents_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IncidentsApi.query_incidents ...' end allowable_values = ["assigned_to.asc", "assigned_to.desc", "assigned_to_name.asc", "assigned_to_name.desc", "end.asc", "end.desc", "modified_timestamp.asc", "modified_timestamp.desc", "name.asc", "name.desc", "sort_score.asc", "sort_score.desc", "start.asc", "start.desc", "state.asc", "state.desc", "status.asc", "status.desc"] if @api_client.config.client_side_validation && opts[:'sort'] && !allowable_values.include?(opts[:'sort']) fail ArgumentError, "invalid value for \"sort\", must be one of #{allowable_values}" end # resource path local_var_path = '/incidents/queries/incidents/v1' # query parameters query_params = opts[:query_params] || {} query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'DomainMsaIncidentQueryResponse' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"IncidentsApi.query_incidents", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: IncidentsApi#query_incidents\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |