@@ -242,6 +242,12 @@ public static class Attacks extends TeaModel {
242242 @ com .aliyun .core .annotation .NameInMap ("Data" )
243243 private String data ;
244244
245+ @ com .aliyun .core .annotation .NameInMap ("HandleStatus" )
246+ private Integer handleStatus ;
247+
248+ @ com .aliyun .core .annotation .NameInMap ("HandleTimestamp" )
249+ private Long handleTimestamp ;
250+
245251 @ com .aliyun .core .annotation .NameInMap ("Headers" )
246252 private String headers ;
247253
@@ -352,6 +358,8 @@ private Attacks(Builder builder) {
352358 this .contentLength = builder .contentLength ;
353359 this .count = builder .count ;
354360 this .data = builder .data ;
361+ this .handleStatus = builder .handleStatus ;
362+ this .handleTimestamp = builder .handleTimestamp ;
355363 this .headers = builder .headers ;
356364 this .hostId = builder .hostId ;
357365 this .hostname = builder .hostname ;
@@ -465,6 +473,20 @@ public String getData() {
465473 return this .data ;
466474 }
467475
476+ /**
477+ * @return handleStatus
478+ */
479+ public Integer getHandleStatus () {
480+ return this .handleStatus ;
481+ }
482+
483+ /**
484+ * @return handleTimestamp
485+ */
486+ public Long getHandleTimestamp () {
487+ return this .handleTimestamp ;
488+ }
489+
468490 /**
469491 * @return headers
470492 */
@@ -707,6 +729,8 @@ public static final class Builder {
707729 private Long contentLength ;
708730 private Long count ;
709731 private String data ;
732+ private Integer handleStatus ;
733+ private Long handleTimestamp ;
710734 private String headers ;
711735 private String hostId ;
712736 private String hostname ;
@@ -755,6 +779,8 @@ private Builder(Attacks model) {
755779 this .contentLength = model .contentLength ;
756780 this .count = model .count ;
757781 this .data = model .data ;
782+ this .handleStatus = model .handleStatus ;
783+ this .handleTimestamp = model .handleTimestamp ;
758784 this .headers = model .headers ;
759785 this .hostId = model .hostId ;
760786 this .hostname = model .hostname ;
@@ -870,6 +896,22 @@ public Builder data(String data) {
870896 return this ;
871897 }
872898
899+ /**
900+ * HandleStatus.
901+ */
902+ public Builder handleStatus (Integer handleStatus ) {
903+ this .handleStatus = handleStatus ;
904+ return this ;
905+ }
906+
907+ /**
908+ * HandleTimestamp.
909+ */
910+ public Builder handleTimestamp (Long handleTimestamp ) {
911+ this .handleTimestamp = handleTimestamp ;
912+ return this ;
913+ }
914+
873915 /**
874916 * Headers.
875917 */
0 commit comments