Skip to content

Commit

Permalink
Threat Intel Feed Config Model (opensearch-project#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
jowg-amazon committed Jun 3, 2024
1 parent c84b8d5 commit 78f696e
Show file tree
Hide file tree
Showing 7 changed files with 1,217 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/

package org.opensearch.securityanalytics.threatIntel.common;

/**
* Types of feeds threat intel can support
* Feed types include: licensed, open-sourced, custom, and internal
*/
public enum FeedType {

LICENSED,

OPEN_SOURCED,

CUSTOM,

INTERNAL
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,15 @@ public enum TIFJobState {
/**
* tif job is being deleted
*/
DELETING
DELETING,

/**
* tif associated iocs are being refreshed
*/
REFRESHING,

/**
* tif refresh job failed
*/
REFRESH_FAILED
}
Loading

0 comments on commit 78f696e

Please sign in to comment.