forked from opensearch-project/data-prepper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update geoip config and use extensions (opensearch-project#3975)
* Update geoip config and use extensions Signed-off-by: Asif Sohail Mohammed <[email protected]> --------- Signed-off-by: Asif Sohail Mohammed <[email protected]>
- Loading branch information
1 parent
ea80d0f
commit b7970a0
Showing
37 changed files
with
298 additions
and
881 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
...ava/org/opensearch/dataprepper/plugins/processor/configuration/DatabasePathURLConfig.java
This file was deleted.
Oops, something went wrong.
35 changes: 35 additions & 0 deletions
35
...src/main/java/org/opensearch/dataprepper/plugins/processor/configuration/EntryConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* PDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.dataprepper.plugins.processor.configuration; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import jakarta.validation.constraints.NotEmpty; | ||
|
||
import java.util.List; | ||
|
||
public class EntryConfig { | ||
@JsonProperty("source") | ||
@NotEmpty | ||
private String source; | ||
|
||
@JsonProperty("target") | ||
private String target; | ||
|
||
@JsonProperty("fields") | ||
private List<String> fields; | ||
|
||
public String getSource() { | ||
return source; | ||
} | ||
|
||
public String getTarget() { | ||
return target; | ||
} | ||
|
||
public List<String> getFields() { | ||
return fields; | ||
} | ||
} |
46 changes: 0 additions & 46 deletions
46
...r/src/main/java/org/opensearch/dataprepper/plugins/processor/configuration/KeyConfig.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.