Skip to content

Commit eca4f38

Browse files
committed
Update API CreateCloudPhoneNode: add request parameters NetworkInfo.PayType.
1 parent e7e7bb5 commit eca4f38

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

eds-aic-20230930/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-08-15 Version: 3.11.2
2+
- Update API CreateCloudPhoneNode: add request parameters NetworkInfo.PayType.
3+
4+
15
2025-08-15 Version: 3.11.1
26
- Generated java 2023-09-30 for eds-aic.
37

eds-aic-20230930/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>eds_aic20230930</artifactId>
6-
<version>3.11.1</version>
6+
<version>3.11.2</version>
77
<packaging>jar</packaging>
88
<name>eds_aic20230930</name>
99
<description>Alibaba Cloud eds-aic (20230930) SDK for Java

eds-aic-20230930/src/main/java/com/aliyun/eds_aic20230930/models/CreateCloudPhoneNodeRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,9 @@ public static class CreateCloudPhoneNodeRequestNetworkInfo extends TeaModel {
512512
@NameInMap("LimitedBandwidth")
513513
public Integer limitedBandwidth;
514514

515+
@NameInMap("PayType")
516+
public String payType;
517+
515518
public static CreateCloudPhoneNodeRequestNetworkInfo build(java.util.Map<String, ?> map) throws Exception {
516519
CreateCloudPhoneNodeRequestNetworkInfo self = new CreateCloudPhoneNodeRequestNetworkInfo();
517520
return TeaModel.build(map, self);
@@ -565,6 +568,14 @@ public Integer getLimitedBandwidth() {
565568
return this.limitedBandwidth;
566569
}
567570

571+
public CreateCloudPhoneNodeRequestNetworkInfo setPayType(String payType) {
572+
this.payType = payType;
573+
return this;
574+
}
575+
public String getPayType() {
576+
return this.payType;
577+
}
578+
568579
}
569580

570581
public static class CreateCloudPhoneNodeRequestTag extends TeaModel {

0 commit comments

Comments
 (0)