Skip to content

Commit d60e352

Browse files
committed
Generated java-async 2020-11-09 for ICE.
1 parent a463d90 commit d60e352

File tree

8 files changed

+182
-1
lines changed

8 files changed

+182
-1
lines changed

ice-20201109/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-11 Version: 6.0.5
2+
- Generated java-async 2020-11-09 for ICE.
3+
14
2025-06-05 Version: 6.0.4
25
- Generated java-async 2020-11-09 for ICE.
36

ice-20201109/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-ice20201109</artifactId>
6-
<version>6.0.4</version>
6+
<version>6.0.5</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ice20201109</name>
99
<description>Alibaba Cloud ICE (20201109) Async SDK for Java

ice-20201109/src/main/java/com/aliyun/sdk/service/ice20201109/models/InsertMediaToSearchLibRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ public class InsertMediaToSearchLibRequest extends Request {
2121
@com.aliyun.core.annotation.NameInMap("RegionId")
2222
private String regionId;
2323

24+
@com.aliyun.core.annotation.Query
25+
@com.aliyun.core.annotation.NameInMap("ImagesInput")
26+
private String imagesInput;
27+
2428
@com.aliyun.core.annotation.Query
2529
@com.aliyun.core.annotation.NameInMap("Input")
2630
@com.aliyun.core.annotation.Validation(required = true)
@@ -45,6 +49,7 @@ public class InsertMediaToSearchLibRequest extends Request {
4549
private InsertMediaToSearchLibRequest(Builder builder) {
4650
super(builder);
4751
this.regionId = builder.regionId;
52+
this.imagesInput = builder.imagesInput;
4853
this.input = builder.input;
4954
this.mediaId = builder.mediaId;
5055
this.mediaType = builder.mediaType;
@@ -72,6 +77,13 @@ public String getRegionId() {
7277
return this.regionId;
7378
}
7479

80+
/**
81+
* @return imagesInput
82+
*/
83+
public String getImagesInput() {
84+
return this.imagesInput;
85+
}
86+
7587
/**
7688
* @return input
7789
*/
@@ -109,6 +121,7 @@ public String getSearchLibName() {
109121

110122
public static final class Builder extends Request.Builder<InsertMediaToSearchLibRequest, Builder> {
111123
private String regionId;
124+
private String imagesInput;
112125
private String input;
113126
private String mediaId;
114127
private String mediaType;
@@ -122,6 +135,7 @@ private Builder() {
122135
private Builder(InsertMediaToSearchLibRequest request) {
123136
super(request);
124137
this.regionId = request.regionId;
138+
this.imagesInput = request.imagesInput;
125139
this.input = request.input;
126140
this.mediaId = request.mediaId;
127141
this.mediaType = request.mediaType;
@@ -138,6 +152,15 @@ public Builder regionId(String regionId) {
138152
return this;
139153
}
140154

155+
/**
156+
* ImagesInput.
157+
*/
158+
public Builder imagesInput(String imagesInput) {
159+
this.putQueryParameter("ImagesInput", imagesInput);
160+
this.imagesInput = imagesInput;
161+
return this;
162+
}
163+
141164
/**
142165
* <p>The URL of the video, audio, or image file that you want to import to the search library.</p>
143166
* <p>Note: Make sure that you specify a correct file name and the bucket in which the file resides is in the same region where this operation is called. Otherwise, the file cannot be found or the operation may fail.</p>

ice-20201109/src/main/java/com/aliyun/sdk/service/ice20201109/models/SearchMediaByAILabelRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ public class SearchMediaByAILabelRequest extends Request {
3737
@com.aliyun.core.annotation.NameInMap("MultimodalSearchType")
3838
private String multimodalSearchType;
3939

40+
@com.aliyun.core.annotation.Query
41+
@com.aliyun.core.annotation.NameInMap("Namespace")
42+
private String namespace;
43+
4044
@com.aliyun.core.annotation.Query
4145
@com.aliyun.core.annotation.NameInMap("PageNo")
4246
private Integer pageNo;
@@ -68,6 +72,7 @@ private SearchMediaByAILabelRequest(Builder builder) {
6872
this.mediaId = builder.mediaId;
6973
this.mediaType = builder.mediaType;
7074
this.multimodalSearchType = builder.multimodalSearchType;
75+
this.namespace = builder.namespace;
7176
this.pageNo = builder.pageNo;
7277
this.pageSize = builder.pageSize;
7378
this.searchLibName = builder.searchLibName;
@@ -124,6 +129,13 @@ public String getMultimodalSearchType() {
124129
return this.multimodalSearchType;
125130
}
126131

132+
/**
133+
* @return namespace
134+
*/
135+
public String getNamespace() {
136+
return this.namespace;
137+
}
138+
127139
/**
128140
* @return pageNo
129141
*/
@@ -172,6 +184,7 @@ public static final class Builder extends Request.Builder<SearchMediaByAILabelRe
172184
private String mediaId;
173185
private String mediaType;
174186
private String multimodalSearchType;
187+
private String namespace;
175188
private Integer pageNo;
176189
private Integer pageSize;
177190
private String searchLibName;
@@ -190,6 +203,7 @@ private Builder(SearchMediaByAILabelRequest request) {
190203
this.mediaId = request.mediaId;
191204
this.mediaType = request.mediaType;
192205
this.multimodalSearchType = request.multimodalSearchType;
206+
this.namespace = request.namespace;
193207
this.pageNo = request.pageNo;
194208
this.pageSize = request.pageSize;
195209
this.searchLibName = request.searchLibName;
@@ -263,6 +277,15 @@ public Builder multimodalSearchType(String multimodalSearchType) {
263277
return this;
264278
}
265279

280+
/**
281+
* Namespace.
282+
*/
283+
public Builder namespace(String namespace) {
284+
this.putQueryParameter("Namespace", namespace);
285+
this.namespace = namespace;
286+
return this;
287+
}
288+
266289
/**
267290
* <p>The page number. Default value: 1.</p>
268291
*

ice-20201109/src/main/java/com/aliyun/sdk/service/ice20201109/models/SearchMediaByFaceRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ public class SearchMediaByFaceRequest extends Request {
3434
@com.aliyun.core.annotation.NameInMap("MediaType")
3535
private String mediaType;
3636

37+
@com.aliyun.core.annotation.Query
38+
@com.aliyun.core.annotation.NameInMap("Namespace")
39+
private String namespace;
40+
3741
@com.aliyun.core.annotation.Query
3842
@com.aliyun.core.annotation.NameInMap("PageNo")
3943
private Integer pageNo;
@@ -57,6 +61,7 @@ private SearchMediaByFaceRequest(Builder builder) {
5761
this.entityId = builder.entityId;
5862
this.faceSearchToken = builder.faceSearchToken;
5963
this.mediaType = builder.mediaType;
64+
this.namespace = builder.namespace;
6065
this.pageNo = builder.pageNo;
6166
this.pageSize = builder.pageSize;
6267
this.personImageUrl = builder.personImageUrl;
@@ -104,6 +109,13 @@ public String getMediaType() {
104109
return this.mediaType;
105110
}
106111

112+
/**
113+
* @return namespace
114+
*/
115+
public String getNamespace() {
116+
return this.namespace;
117+
}
118+
107119
/**
108120
* @return pageNo
109121
*/
@@ -137,6 +149,7 @@ public static final class Builder extends Request.Builder<SearchMediaByFaceReque
137149
private String entityId;
138150
private String faceSearchToken;
139151
private String mediaType;
152+
private String namespace;
140153
private Integer pageNo;
141154
private Integer pageSize;
142155
private String personImageUrl;
@@ -152,6 +165,7 @@ private Builder(SearchMediaByFaceRequest request) {
152165
this.entityId = request.entityId;
153166
this.faceSearchToken = request.faceSearchToken;
154167
this.mediaType = request.mediaType;
168+
this.namespace = request.namespace;
155169
this.pageNo = request.pageNo;
156170
this.pageSize = request.pageSize;
157171
this.personImageUrl = request.personImageUrl;
@@ -208,6 +222,15 @@ public Builder mediaType(String mediaType) {
208222
return this;
209223
}
210224

225+
/**
226+
* Namespace.
227+
*/
228+
public Builder namespace(String namespace) {
229+
this.putQueryParameter("Namespace", namespace);
230+
this.namespace = namespace;
231+
return this;
232+
}
233+
211234
/**
212235
* <p>The page number. Default value: 1.</p>
213236
*

ice-20201109/src/main/java/com/aliyun/sdk/service/ice20201109/models/SearchMediaByHybridRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public class SearchMediaByHybridRequest extends Request {
2929
@com.aliyun.core.annotation.NameInMap("MediaType")
3030
private String mediaType;
3131

32+
@com.aliyun.core.annotation.Query
33+
@com.aliyun.core.annotation.NameInMap("Namespace")
34+
private String namespace;
35+
3236
@com.aliyun.core.annotation.Query
3337
@com.aliyun.core.annotation.NameInMap("PageNo")
3438
private Integer pageNo;
@@ -50,6 +54,7 @@ private SearchMediaByHybridRequest(Builder builder) {
5054
this.regionId = builder.regionId;
5155
this.mediaId = builder.mediaId;
5256
this.mediaType = builder.mediaType;
57+
this.namespace = builder.namespace;
5358
this.pageNo = builder.pageNo;
5459
this.pageSize = builder.pageSize;
5560
this.searchLibName = builder.searchLibName;
@@ -90,6 +95,13 @@ public String getMediaType() {
9095
return this.mediaType;
9196
}
9297

98+
/**
99+
* @return namespace
100+
*/
101+
public String getNamespace() {
102+
return this.namespace;
103+
}
104+
93105
/**
94106
* @return pageNo
95107
*/
@@ -122,6 +134,7 @@ public static final class Builder extends Request.Builder<SearchMediaByHybridReq
122134
private String regionId;
123135
private String mediaId;
124136
private String mediaType;
137+
private String namespace;
125138
private Integer pageNo;
126139
private Integer pageSize;
127140
private String searchLibName;
@@ -136,6 +149,7 @@ private Builder(SearchMediaByHybridRequest request) {
136149
this.regionId = request.regionId;
137150
this.mediaId = request.mediaId;
138151
this.mediaType = request.mediaType;
152+
this.namespace = request.namespace;
139153
this.pageNo = request.pageNo;
140154
this.pageSize = request.pageSize;
141155
this.searchLibName = request.searchLibName;
@@ -172,6 +186,15 @@ public Builder mediaType(String mediaType) {
172186
return this;
173187
}
174188

189+
/**
190+
* Namespace.
191+
*/
192+
public Builder namespace(String namespace) {
193+
this.putQueryParameter("Namespace", namespace);
194+
this.namespace = namespace;
195+
return this;
196+
}
197+
175198
/**
176199
* PageNo.
177200
*/

ice-20201109/src/main/java/com/aliyun/sdk/service/ice20201109/models/SearchMediaByMultimodalRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ public class SearchMediaByMultimodalRequest extends Request {
2525
@com.aliyun.core.annotation.NameInMap("MediaType")
2626
private String mediaType;
2727

28+
@com.aliyun.core.annotation.Query
29+
@com.aliyun.core.annotation.NameInMap("Namespace")
30+
private String namespace;
31+
2832
@com.aliyun.core.annotation.Query
2933
@com.aliyun.core.annotation.NameInMap("PageNo")
3034
private Integer pageNo;
@@ -45,6 +49,7 @@ private SearchMediaByMultimodalRequest(Builder builder) {
4549
super(builder);
4650
this.regionId = builder.regionId;
4751
this.mediaType = builder.mediaType;
52+
this.namespace = builder.namespace;
4853
this.pageNo = builder.pageNo;
4954
this.pageSize = builder.pageSize;
5055
this.searchLibName = builder.searchLibName;
@@ -78,6 +83,13 @@ public String getMediaType() {
7883
return this.mediaType;
7984
}
8085

86+
/**
87+
* @return namespace
88+
*/
89+
public String getNamespace() {
90+
return this.namespace;
91+
}
92+
8193
/**
8294
* @return pageNo
8395
*/
@@ -109,6 +121,7 @@ public String getText() {
109121
public static final class Builder extends Request.Builder<SearchMediaByMultimodalRequest, Builder> {
110122
private String regionId;
111123
private String mediaType;
124+
private String namespace;
112125
private Integer pageNo;
113126
private Integer pageSize;
114127
private String searchLibName;
@@ -122,6 +135,7 @@ private Builder(SearchMediaByMultimodalRequest request) {
122135
super(request);
123136
this.regionId = request.regionId;
124137
this.mediaType = request.mediaType;
138+
this.namespace = request.namespace;
125139
this.pageNo = request.pageNo;
126140
this.pageSize = request.pageSize;
127141
this.searchLibName = request.searchLibName;
@@ -154,6 +168,15 @@ public Builder mediaType(String mediaType) {
154168
return this;
155169
}
156170

171+
/**
172+
* Namespace.
173+
*/
174+
public Builder namespace(String namespace) {
175+
this.putQueryParameter("Namespace", namespace);
176+
this.namespace = namespace;
177+
return this;
178+
}
179+
157180
/**
158181
* <p>The page number. Default value: 1.</p>
159182
*

0 commit comments

Comments
 (0)