File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed
src/main/java/com/aliyun/sdk/service/cd2021127/models Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 1+ 2025-02-07 Version: 1.0.2
2+ - Generated java-async 2021-12-7 for cd.
3+
142025-02-06 Version: 1.0.1
25- Generated java-async 2021-12-7 for cd.
36
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >com.aliyun</groupId >
55 <artifactId >alibabacloud-cd2021127</artifactId >
6- <version >1.0.1 </version >
6+ <version >1.0.2 </version >
77 <packaging >jar</packaging >
88 <name >alibabacloud-cd2021127</name >
99 <description >Alibaba Cloud cd (2021127) Async SDK for Java
Original file line number Diff line number Diff line change @@ -330,8 +330,12 @@ public static class Parameters extends TeaModel {
330330 @ com .aliyun .core .annotation .NameInMap ("Incremental_output" )
331331 private Boolean incrementalOutput ;
332332
333+ @ com .aliyun .core .annotation .NameInMap ("vendorId" )
334+ private String vendorId ;
335+
333336 private Parameters (Builder builder ) {
334337 this .incrementalOutput = builder .incrementalOutput ;
338+ this .vendorId = builder .vendorId ;
335339 }
336340
337341 public static Builder builder () {
@@ -349,8 +353,16 @@ public Boolean getIncrementalOutput() {
349353 return this .incrementalOutput ;
350354 }
351355
356+ /**
357+ * @return vendorId
358+ */
359+ public String getVendorId () {
360+ return this .vendorId ;
361+ }
362+
352363 public static final class Builder {
353364 private Boolean incrementalOutput ;
365+ private String vendorId ;
354366
355367 /**
356368 * Incremental_output.
@@ -360,6 +372,14 @@ public Builder incrementalOutput(Boolean incrementalOutput) {
360372 return this ;
361373 }
362374
375+ /**
376+ * vendorId.
377+ */
378+ public Builder vendorId (String vendorId ) {
379+ this .vendorId = vendorId ;
380+ return this ;
381+ }
382+
363383 public Parameters build () {
364384 return new Parameters (this );
365385 }
You can’t perform that action at this time.
0 commit comments