Skip to content

Commit 11bbf21

Browse files
committed
Generated java-async 2020-04-07 for cas.
1 parent 9e320f7 commit 11bbf21

File tree

3 files changed

+100
-1
lines changed

3 files changed

+100
-1
lines changed

cas-20200407/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-09-15 Version: 3.0.2
2+
- Generated java-async 2020-04-07 for cas.
3+
14
2025-07-23 Version: 3.0.1
25
- Generated java-async 2020-04-07 for cas.
36

cas-20200407/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-cas20200407</artifactId>
6-
<version>3.0.1</version>
6+
<version>3.0.2</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-cas20200407</name>
99
<description>Alibaba Cloud cas (20200407) Async SDK for Java

cas-20200407/src/main/java/com/aliyun/sdk/service/cas20200407/models/GetUserCertificateDetailResponseBody.java

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ public class GetUserCertificateDetailResponseBody extends TeaModel {
110110
@com.aliyun.core.annotation.NameInMap("StartDate")
111111
private String startDate;
112112

113+
@com.aliyun.core.annotation.NameInMap("Tags")
114+
private java.util.List<Tags> tags;
115+
113116
private GetUserCertificateDetailResponseBody(Builder builder) {
114117
this.algorithm = builder.algorithm;
115118
this.buyInAliyun = builder.buyInAliyun;
@@ -142,6 +145,7 @@ private GetUserCertificateDetailResponseBody(Builder builder) {
142145
this.signCert = builder.signCert;
143146
this.signPrivateKey = builder.signPrivateKey;
144147
this.startDate = builder.startDate;
148+
this.tags = builder.tags;
145149
}
146150

147151
public static Builder builder() {
@@ -373,6 +377,13 @@ public String getStartDate() {
373377
return this.startDate;
374378
}
375379

380+
/**
381+
* @return tags
382+
*/
383+
public java.util.List<Tags> getTags() {
384+
return this.tags;
385+
}
386+
376387
public static final class Builder {
377388
private String algorithm;
378389
private Boolean buyInAliyun;
@@ -405,6 +416,7 @@ public static final class Builder {
405416
private String signCert;
406417
private String signPrivateKey;
407418
private String startDate;
419+
private java.util.List<Tags> tags;
408420

409421
private Builder() {
410422
}
@@ -441,6 +453,7 @@ private Builder(GetUserCertificateDetailResponseBody model) {
441453
this.signCert = model.signCert;
442454
this.signPrivateKey = model.signPrivateKey;
443455
this.startDate = model.startDate;
456+
this.tags = model.tags;
444457
}
445458

446459
/**
@@ -797,6 +810,14 @@ public Builder startDate(String startDate) {
797810
return this;
798811
}
799812

813+
/**
814+
* Tags.
815+
*/
816+
public Builder tags(java.util.List<Tags> tags) {
817+
this.tags = tags;
818+
return this;
819+
}
820+
800821
public GetUserCertificateDetailResponseBody build() {
801822
return new GetUserCertificateDetailResponseBody(this);
802823
}
@@ -956,4 +977,79 @@ public CertChain build() {
956977
}
957978

958979
}
980+
/**
981+
*
982+
* {@link GetUserCertificateDetailResponseBody} extends {@link TeaModel}
983+
*
984+
* <p>GetUserCertificateDetailResponseBody</p>
985+
*/
986+
public static class Tags extends TeaModel {
987+
@com.aliyun.core.annotation.NameInMap("TagKey")
988+
private String tagKey;
989+
990+
@com.aliyun.core.annotation.NameInMap("TagValue")
991+
private String tagValue;
992+
993+
private Tags(Builder builder) {
994+
this.tagKey = builder.tagKey;
995+
this.tagValue = builder.tagValue;
996+
}
997+
998+
public static Builder builder() {
999+
return new Builder();
1000+
}
1001+
1002+
public static Tags create() {
1003+
return builder().build();
1004+
}
1005+
1006+
/**
1007+
* @return tagKey
1008+
*/
1009+
public String getTagKey() {
1010+
return this.tagKey;
1011+
}
1012+
1013+
/**
1014+
* @return tagValue
1015+
*/
1016+
public String getTagValue() {
1017+
return this.tagValue;
1018+
}
1019+
1020+
public static final class Builder {
1021+
private String tagKey;
1022+
private String tagValue;
1023+
1024+
private Builder() {
1025+
}
1026+
1027+
private Builder(Tags model) {
1028+
this.tagKey = model.tagKey;
1029+
this.tagValue = model.tagValue;
1030+
}
1031+
1032+
/**
1033+
* TagKey.
1034+
*/
1035+
public Builder tagKey(String tagKey) {
1036+
this.tagKey = tagKey;
1037+
return this;
1038+
}
1039+
1040+
/**
1041+
* TagValue.
1042+
*/
1043+
public Builder tagValue(String tagValue) {
1044+
this.tagValue = tagValue;
1045+
return this;
1046+
}
1047+
1048+
public Tags build() {
1049+
return new Tags(this);
1050+
}
1051+
1052+
}
1053+
1054+
}
9591055
}

0 commit comments

Comments
 (0)