Skip to content

Commit 7461e93

Browse files
author
BitsAdmin
committed
Merge branch 'volc_observe-Java-2018-01-01-online-1128-2025_04_24_19_46_03' into 'integration_2025-04-28_881148411650'
feat: [development task] Volc_Observe-1128-Java (1191505) See merge request iaasng/volcengine-java-sdk!462
2 parents 51e8cf8 + 8dcac90 commit 7461e93

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

volcengine-java-sdk-volcobserve/src/main/java/com/volcengine/volcobserve/model/DataForListAlertGroupOutput.java

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ public class DataForListAlertGroupOutput {
4545
@SerializedName("EndAt")
4646
private String endAt = null;
4747

48+
@SerializedName("Id")
49+
private String id = null;
50+
4851
@SerializedName("Level")
4952
private String level = null;
5053

@@ -165,6 +168,24 @@ public void setEndAt(String endAt) {
165168
this.endAt = endAt;
166169
}
167170

171+
public DataForListAlertGroupOutput id(String id) {
172+
this.id = id;
173+
return this;
174+
}
175+
176+
/**
177+
* Get id
178+
* @return id
179+
**/
180+
@Schema(description = "")
181+
public String getId() {
182+
return id;
183+
}
184+
185+
public void setId(String id) {
186+
this.id = id;
187+
}
188+
168189
public DataForListAlertGroupOutput level(String level) {
169190
this.level = level;
170191
return this;
@@ -360,6 +381,7 @@ public boolean equals(java.lang.Object o) {
360381
Objects.equals(this.dimension, dataForListAlertGroupOutput.dimension) &&
361382
Objects.equals(this.duration, dataForListAlertGroupOutput.duration) &&
362383
Objects.equals(this.endAt, dataForListAlertGroupOutput.endAt) &&
384+
Objects.equals(this.id, dataForListAlertGroupOutput.id) &&
363385
Objects.equals(this.level, dataForListAlertGroupOutput.level) &&
364386
Objects.equals(this.namespace, dataForListAlertGroupOutput.namespace) &&
365387
Objects.equals(this.region, dataForListAlertGroupOutput.region) &&
@@ -374,7 +396,7 @@ public boolean equals(java.lang.Object o) {
374396

375397
@Override
376398
public int hashCode() {
377-
return Objects.hash(alertState, alertType, dimension, duration, endAt, level, namespace, region, resourceId, resourceName, resourceType, ruleId, ruleName, startAt, subNamespace);
399+
return Objects.hash(alertState, alertType, dimension, duration, endAt, id, level, namespace, region, resourceId, resourceName, resourceType, ruleId, ruleName, startAt, subNamespace);
378400
}
379401

380402

@@ -388,6 +410,7 @@ public String toString() {
388410
sb.append(" dimension: ").append(toIndentedString(dimension)).append("\n");
389411
sb.append(" duration: ").append(toIndentedString(duration)).append("\n");
390412
sb.append(" endAt: ").append(toIndentedString(endAt)).append("\n");
413+
sb.append(" id: ").append(toIndentedString(id)).append("\n");
391414
sb.append(" level: ").append(toIndentedString(level)).append("\n");
392415
sb.append(" namespace: ").append(toIndentedString(namespace)).append("\n");
393416
sb.append(" region: ").append(toIndentedString(region)).append("\n");

0 commit comments

Comments
 (0)