Skip to content

Commit

Permalink
Adds all Replication events to the EventType enum (#1571)
Browse files Browse the repository at this point in the history
  • Loading branch information
grkooij authored Jun 21, 2024
1 parent f80a702 commit ff6a7e5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions api/src/main/java/io/minio/messages/EventType.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ public enum EventType {
OBJECT_REMOVED_ANY("s3:ObjectRemoved:*"),
OBJECT_REMOVED_DELETE("s3:ObjectRemoved:Delete"),
OBJECT_REMOVED_DELETED_MARKER_CREATED("s3:ObjectRemoved:DeleteMarkerCreated"),
REPLICATION_ANY("s3:Replication:*"),
REPLICATION_OPERATION_FAILED_REPLICATION("s3:Replication:OperationFailedReplication"),
REPLICATION_OPERATION_COMPLETED_REPLICATION("s3:Replication:OperationCompletedReplication"),
REPLICATION_OPERATION_NOT_TRACKED("s3:Replication:OperationNotTracked"),
REPLICATION_OPERATION_MISSED_THRESHOLD("s3:Replication:OperationMissedThreshold"),
REPLICATION_OPERATION_REPLICATED_AFTER_THRESHOLD(
"s3:Replication:OperationReplicatedAfterThreshold"),
REDUCED_REDUNDANCY_LOST_OBJECT("s3:ReducedRedundancyLostObject"),
BUCKET_CREATED("s3:BucketCreated"),
BUCKET_REMOVED("s3:BucketRemoved");
Expand Down

0 comments on commit ff6a7e5

Please sign in to comment.