Skip to content

Commit 99d81ea

Browse files
committed
Generated java-async 2022-12-15 for eflo-controller.
1 parent bc4a14b commit 99d81ea

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

eflo-controller-20221215/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-19 Version: 3.0.1
2+
- Generated java-async 2022-12-15 for eflo-controller.
3+
14
2025-11-12 Version: 3.0.0
25
- Generated java-async 2022-12-15 for eflo-controller.
36

eflo-controller-20221215/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-eflo_controller20221215</artifactId>
6-
<version>3.0.0</version>
6+
<version>3.0.1</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-eflo_controller20221215</name>
99
<description>Alibaba Cloud eflo-controller (20221215) Async SDK for Java

eflo-controller-20221215/src/main/java/com/aliyun/sdk/service/eflo_controller20221215/models/ListClusterNodesResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,9 @@ public static class Nodes extends TeaModel {
374374
@com.aliyun.core.annotation.NameInMap("NodeId")
375375
private String nodeId;
376376

377+
@com.aliyun.core.annotation.NameInMap("NodeType")
378+
private String nodeType;
379+
377380
@com.aliyun.core.annotation.NameInMap("OperatingState")
378381
private String operatingState;
379382

@@ -410,6 +413,7 @@ private Nodes(Builder builder) {
410413
this.nodeGroupId = builder.nodeGroupId;
411414
this.nodeGroupName = builder.nodeGroupName;
412415
this.nodeId = builder.nodeId;
416+
this.nodeType = builder.nodeType;
413417
this.operatingState = builder.operatingState;
414418
this.sn = builder.sn;
415419
this.tags = builder.tags;
@@ -525,6 +529,13 @@ public String getNodeId() {
525529
return this.nodeId;
526530
}
527531

532+
/**
533+
* @return nodeType
534+
*/
535+
public String getNodeType() {
536+
return this.nodeType;
537+
}
538+
528539
/**
529540
* @return operatingState
530541
*/
@@ -589,6 +600,7 @@ public static final class Builder {
589600
private String nodeGroupId;
590601
private String nodeGroupName;
591602
private String nodeId;
603+
private String nodeType;
592604
private String operatingState;
593605
private String sn;
594606
private java.util.List<Tags> tags;
@@ -615,6 +627,7 @@ private Builder(Nodes model) {
615627
this.nodeGroupId = model.nodeGroupId;
616628
this.nodeGroupName = model.nodeGroupName;
617629
this.nodeId = model.nodeId;
630+
this.nodeType = model.nodeType;
618631
this.operatingState = model.operatingState;
619632
this.sn = model.sn;
620633
this.tags = model.tags;
@@ -772,6 +785,14 @@ public Builder nodeId(String nodeId) {
772785
return this;
773786
}
774787

788+
/**
789+
* NodeType.
790+
*/
791+
public Builder nodeType(String nodeType) {
792+
this.nodeType = nodeType;
793+
return this;
794+
}
795+
775796
/**
776797
* <p>The node status.</p>
777798
* <p>Valid values:</p>

0 commit comments

Comments
 (0)