Skip to content

Commit a882f54

Browse files
committed
Update API ListUserKeysupdate response param.
1 parent 7c16718 commit a882f54

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

devops-20210625/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-02-01 Version: 4.10.1
2+
- Update API ListUserKeysupdate response param.
3+
4+
15
2024-01-31 Version: 4.10.0
26
- Support API CreateCheckRun.
37
- Support API GetCheckRun.

devops-20210625/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>devops20210625</artifactId>
6-
<version>4.10.0</version>
6+
<version>4.10.1</version>
77
<packaging>jar</packaging>
88
<name>devops20210625</name>
99
<description>Alibaba Cloud devops (20210625) SDK for Java

devops-20210625/src/main/java/com/aliyun/devops20210625/models/ListUserKeysResponseBody.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ public static class ListUserKeysResponseBodyResult extends TeaModel {
8686
@NameInMap("publicKey")
8787
public String publicKey;
8888

89-
@NameInMap("tittle")
90-
public String tittle;
89+
@NameInMap("title")
90+
public String title;
9191

9292
public static ListUserKeysResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
9393
ListUserKeysResponseBodyResult self = new ListUserKeysResponseBodyResult();
@@ -150,12 +150,12 @@ public String getPublicKey() {
150150
return this.publicKey;
151151
}
152152

153-
public ListUserKeysResponseBodyResult setTittle(String tittle) {
154-
this.tittle = tittle;
153+
public ListUserKeysResponseBodyResult setTitle(String title) {
154+
this.title = title;
155155
return this;
156156
}
157-
public String getTittle() {
158-
return this.tittle;
157+
public String getTitle() {
158+
return this.title;
159159
}
160160

161161
}

0 commit comments

Comments
 (0)