File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed
src/main/java/com/aliyun/ecs_workbench20220220 Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1+ 2026-02-27 Version: 1.2.2
2+ - Update API SetInstanceRecordConfig: add request parameters ResourceRegionId.
3+
4+
152025-09-19 Version: 1.2.1
26- Update API LoginInstance: add request parameters InstanceLoginInfo.EncryptionOptions.
37
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >com.aliyun</groupId >
55 <artifactId >ecs_workbench20220220</artifactId >
6- <version >1.2.1 </version >
6+ <version >1.2.2 </version >
77 <packaging >jar</packaging >
88 <name >ecs_workbench20220220</name >
99 <description >Alibaba Cloud ecs-workbench (20220220) SDK for Java
5656 <dependency >
5757 <groupId >com.aliyun</groupId >
5858 <artifactId >tea</artifactId >
59- <version >1.3 .1</version >
59+ <version >1.4 .1</version >
6060 </dependency >
6161 <dependency >
6262 <groupId >com.aliyun</groupId >
9696 <configuration >
9797 <encoding >UTF-8</encoding >
9898 <doclint >none</doclint >
99+ <maxmemory >2048m</maxmemory >
99100 </configuration >
100101 </plugin >
101102 <plugin >
173174 <plugin >
174175 <groupId >org.sonatype.central</groupId >
175176 <artifactId >central-publishing-maven-plugin</artifactId >
176- <version >0.8 .0</version >
177+ <version >0.9 .0</version >
177178 <extensions >true</extensions >
178179 <configuration >
179180 <publishingServerId >central</publishingServerId >
180181 <autoPublish >true</autoPublish >
181- <waitUntil >published</waitUntil >
182182 </configuration >
183183 </plugin >
184184 </plugins >
Original file line number Diff line number Diff line change @@ -269,6 +269,10 @@ public SetInstanceRecordConfigResponse setInstanceRecordConfigWithOptions(SetIns
269269 body .put ("RegionId" , request .regionId );
270270 }
271271
272+ if (!com .aliyun .teautil .Common .isUnset (request .resourceRegionId )) {
273+ body .put ("ResourceRegionId" , request .resourceRegionId );
274+ }
275+
272276 com .aliyun .teaopenapi .models .OpenApiRequest req = com .aliyun .teaopenapi .models .OpenApiRequest .build (TeaConverter .buildMap (
273277 new TeaPair ("body" , com .aliyun .openapiutil .Client .parseToMap (body ))
274278 ));
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ public class SetInstanceRecordConfigRequest extends TeaModel {
4343 @ NameInMap ("RegionId" )
4444 public String regionId ;
4545
46+ @ NameInMap ("ResourceRegionId" )
47+ public String resourceRegionId ;
48+
4649 public static SetInstanceRecordConfigRequest build (java .util .Map <String , ?> map ) throws Exception {
4750 SetInstanceRecordConfigRequest self = new SetInstanceRecordConfigRequest ();
4851 return TeaModel .build (map , self );
@@ -88,4 +91,12 @@ public String getRegionId() {
8891 return this .regionId ;
8992 }
9093
94+ public SetInstanceRecordConfigRequest setResourceRegionId (String resourceRegionId ) {
95+ this .resourceRegionId = resourceRegionId ;
96+ return this ;
97+ }
98+ public String getResourceRegionId () {
99+ return this .resourceRegionId ;
100+ }
101+
91102}
You can’t perform that action at this time.
0 commit comments