Skip to content

Commit e7f6f21

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

File tree

132 files changed

+5073
-481
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+5073
-481
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-11-04 Version: 6.0.18
2+
- Generated java-async 2020-11-09 for ICE.
3+
14
2025-09-24 Version: 6.0.17
25
- Generated java-async 2020-11-09 for ICE.
36

ice-20201109/pom.xml

Lines changed: 2 additions & 3 deletions
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.17</version>
6+
<version>6.0.18</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ice20201109</name>
99
<description>Alibaba Cloud ICE (20201109) Async SDK for Java
@@ -104,12 +104,11 @@
104104
<plugin>
105105
<groupId>org.sonatype.central</groupId>
106106
<artifactId>central-publishing-maven-plugin</artifactId>
107-
<version>0.8.0</version>
107+
<version>0.9.0</version>
108108
<extensions>true</extensions>
109109
<configuration>
110110
<publishingServerId>central</publishingServerId>
111111
<autoPublish>true</autoPublish>
112-
<waitUntil>published</waitUntil>
113112
</configuration>
114113
</plugin>
115114
</plugins>

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

Lines changed: 185 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 233 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ public class AIAgentOutboundCallConfig extends TeaModel {
2626
@com.aliyun.core.annotation.NameInMap("EnableIntelligentSegment")
2727
private Boolean enableIntelligentSegment;
2828

29+
@com.aliyun.core.annotation.NameInMap("ExperimentalConfig")
30+
private String experimentalConfig;
31+
2932
@com.aliyun.core.annotation.NameInMap("Greeting")
3033
private String greeting;
3134

@@ -48,6 +51,7 @@ private AIAgentOutboundCallConfig(Builder builder) {
4851
this.ambientSoundConfig = builder.ambientSoundConfig;
4952
this.asrConfig = builder.asrConfig;
5053
this.enableIntelligentSegment = builder.enableIntelligentSegment;
54+
this.experimentalConfig = builder.experimentalConfig;
5155
this.greeting = builder.greeting;
5256
this.greetingDelay = builder.greetingDelay;
5357
this.interruptConfig = builder.interruptConfig;
@@ -89,6 +93,13 @@ public Boolean getEnableIntelligentSegment() {
8993
return this.enableIntelligentSegment;
9094
}
9195

96+
/**
97+
* @return experimentalConfig
98+
*/
99+
public String getExperimentalConfig() {
100+
return this.experimentalConfig;
101+
}
102+
92103
/**
93104
* @return greeting
94105
*/
@@ -135,6 +146,7 @@ public static final class Builder {
135146
private AmbientSoundConfig ambientSoundConfig;
136147
private AsrConfig asrConfig;
137148
private Boolean enableIntelligentSegment;
149+
private String experimentalConfig;
138150
private String greeting;
139151
private Integer greetingDelay;
140152
private InterruptConfig interruptConfig;
@@ -149,6 +161,7 @@ private Builder(AIAgentOutboundCallConfig model) {
149161
this.ambientSoundConfig = model.ambientSoundConfig;
150162
this.asrConfig = model.asrConfig;
151163
this.enableIntelligentSegment = model.enableIntelligentSegment;
164+
this.experimentalConfig = model.experimentalConfig;
152165
this.greeting = model.greeting;
153166
this.greetingDelay = model.greetingDelay;
154167
this.interruptConfig = model.interruptConfig;
@@ -181,6 +194,14 @@ public Builder enableIntelligentSegment(Boolean enableIntelligentSegment) {
181194
return this;
182195
}
183196

197+
/**
198+
* ExperimentalConfig.
199+
*/
200+
public Builder experimentalConfig(String experimentalConfig) {
201+
this.experimentalConfig = experimentalConfig;
202+
return this;
203+
}
204+
184205
/**
185206
* Greeting.
186207
*/

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

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,10 @@ public Builder regionId(String regionId) {
124124
}
125125

126126
/**
127-
* MediaId.
127+
* <p>The ID of the media asset.</p>
128+
*
129+
* <strong>example:</strong>
130+
* <p><strong><strong><strong>b48fb04483915d4f2cd8</strong></strong></strong></p>
128131
*/
129132
public Builder mediaId(String mediaId) {
130133
this.putQueryParameter("MediaId", mediaId);
@@ -133,7 +136,10 @@ public Builder mediaId(String mediaId) {
133136
}
134137

135138
/**
136-
* MsgBody.
139+
* <p>The message body.</p>
140+
*
141+
* <strong>example:</strong>
142+
* <p>{&quot;startTime&quot;:1657684600793,&quot;endTime&quot;:1657684600793,&quot;userData&quot;:&quot;{}&quot;}</p>
137143
*/
138144
public Builder msgBody(String msgBody) {
139145
this.putQueryParameter("MsgBody", msgBody);
@@ -142,7 +148,10 @@ public Builder msgBody(String msgBody) {
142148
}
143149

144150
/**
145-
* Namespace.
151+
* <p>The namespace.</p>
152+
*
153+
* <strong>example:</strong>
154+
* <p>name-1</p>
146155
*/
147156
public Builder namespace(String namespace) {
148157
this.putQueryParameter("Namespace", namespace);
@@ -151,7 +160,10 @@ public Builder namespace(String namespace) {
151160
}
152161

153162
/**
154-
* SearchLibName.
163+
* <p>The search library.</p>
164+
*
165+
* <strong>example:</strong>
166+
* <p>Stream_xxx</p>
155167
*/
156168
public Builder searchLibName(String searchLibName) {
157169
this.putQueryParameter("SearchLibName", searchLibName);

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

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,21 @@ private Builder(AddStreamTagToSearchLibResponseBody model) {
9393
}
9494

9595
/**
96-
* Code.
96+
* <p>The return code.</p>
97+
*
98+
* <strong>example:</strong>
99+
* <p>200</p>
97100
*/
98101
public Builder code(String code) {
99102
this.code = code;
100103
return this;
101104
}
102105

103106
/**
104-
* MediaId.
107+
* <p>The ID of the media asset.</p>
108+
*
109+
* <strong>example:</strong>
110+
* <p><strong><strong>20b48fb04483915d4f2cd8ac</strong></strong></p>
105111
*/
106112
public Builder mediaId(String mediaId) {
107113
this.mediaId = mediaId;
@@ -120,7 +126,14 @@ public Builder requestId(String requestId) {
120126
}
121127

122128
/**
123-
* Success.
129+
* <p>Indicates whether the request is successful. Default value: true. Valid values:</p>
130+
* <ul>
131+
* <li>true</li>
132+
* <li>false</li>
133+
* </ul>
134+
*
135+
* <strong>example:</strong>
136+
* <p>true</p>
124137
*/
125138
public Builder success(String success) {
126139
this.success = success;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public Builder clientToken(String clientToken) {
8383
}
8484

8585
/**
86+
* <p>The ID of the intelligent production job.</p>
8687
* <p>This parameter is required.</p>
8788
*
8889
* <strong>example:</strong>

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

Lines changed: 58 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,23 +80,29 @@ private Builder(CancelIProductionJobResponseBody model) {
8080
}
8181

8282
/**
83-
* AccessDeniedDetail.
83+
* <p>The details about the access denial. This parameter is returned only if Resource Access Management (RAM) permission verification failed.</p>
8484
*/
8585
public Builder accessDeniedDetail(AccessDeniedDetail accessDeniedDetail) {
8686
this.accessDeniedDetail = accessDeniedDetail;
8787
return this;
8888
}
8989

9090
/**
91-
* Message.
91+
* <p>The message returned.</p>
92+
*
93+
* <strong>example:</strong>
94+
* <p>Success</p>
9295
*/
9396
public Builder message(String message) {
9497
this.message = message;
9598
return this;
9699
}
97100

98101
/**
99-
* RequestId.
102+
* <p>The ID of the request.</p>
103+
*
104+
* <strong>example:</strong>
105+
* <p><strong><strong><strong>11-DB8D-4A9A-875B-275798</strong></strong></strong></p>
100106
*/
101107
public Builder requestId(String requestId) {
102108
this.requestId = requestId;
@@ -227,55 +233,97 @@ private Builder(AccessDeniedDetail model) {
227233
}
228234

229235
/**
230-
* AuthAction.
236+
* <p>The operation that failed the permission check.</p>
237+
*
238+
* <strong>example:</strong>
239+
* <p>ice:CancelIProductionJob</p>
231240
*/
232241
public Builder authAction(String authAction) {
233242
this.authAction = authAction;
234243
return this;
235244
}
236245

237246
/**
238-
* AuthPrincipalDisplayName.
247+
* <p>The identity. Values:</p>
248+
* <ul>
249+
* <li>RAM user: a UID</li>
250+
* <li>RAM role: RoleName:RoleSessionName</li>
251+
* <li>Federated user: ProviderType/ProviderName</li>
252+
* </ul>
253+
*
254+
* <strong>example:</strong>
255+
* <p><strong><strong>4522705967</strong></strong></p>
239256
*/
240257
public Builder authPrincipalDisplayName(String authPrincipalDisplayName) {
241258
this.authPrincipalDisplayName = authPrincipalDisplayName;
242259
return this;
243260
}
244261

245262
/**
246-
* AuthPrincipalOwnerId.
263+
* <p>The account to which the principal belongs.</p>
264+
*
265+
* <strong>example:</strong>
266+
* <p><strong><strong>82303720</strong></strong></p>
247267
*/
248268
public Builder authPrincipalOwnerId(String authPrincipalOwnerId) {
249269
this.authPrincipalOwnerId = authPrincipalOwnerId;
250270
return this;
251271
}
252272

253273
/**
254-
* AuthPrincipalType.
274+
* <p>The type of identity that made the request. Valid values:</p>
275+
* <ul>
276+
* <li>SubUser: RAM user</li>
277+
* <li>AssumedRoleUser: RAM role</li>
278+
* <li>Federated: SSO federated user</li>
279+
* </ul>
280+
*
281+
* <strong>example:</strong>
282+
* <p>SubUser</p>
255283
*/
256284
public Builder authPrincipalType(String authPrincipalType) {
257285
this.authPrincipalType = authPrincipalType;
258286
return this;
259287
}
260288

261289
/**
262-
* EncodedDiagnosticMessage.
290+
* <p>The encoded diagnostic message.</p>
291+
*
292+
* <strong>example:</strong>
293+
* <p><strong><strong><strong>AAZ/h8jzNEODc5QUUyLUZCOTAtNUQyQy1BMEFBLUUzODQxODUx</strong></strong></strong>==</p>
263294
*/
264295
public Builder encodedDiagnosticMessage(String encodedDiagnosticMessage) {
265296
this.encodedDiagnosticMessage = encodedDiagnosticMessage;
266297
return this;
267298
}
268299

269300
/**
270-
* NoPermissionType.
301+
* <p>The type of policy that resulted in the denial. Valid values:</p>
302+
* <ul>
303+
* <li><strong>ImplicitDeny</strong>: The resource holder has not configured a policy for the current user. By default, unauthorized operations are denied.</li>
304+
* <li><strong>ExplicitDeny</strong>: The RAM policy configured by the resource holder explicitly denies the current user access to the corresponding resources.</li>
305+
* </ul>
306+
*
307+
* <strong>example:</strong>
308+
* <p>ImplicitDeny</p>
271309
*/
272310
public Builder noPermissionType(String noPermissionType) {
273311
this.noPermissionType = noPermissionType;
274312
return this;
275313
}
276314

277315
/**
278-
* PolicyType.
316+
* <p>The type of policy that triggered the permission failure.</p>
317+
* <ul>
318+
* <li><strong>ControlPolicy</strong>: control policy</li>
319+
* <li><strong>SessionPolicy</strong>: an additional policy attached to a temporary token.</li>
320+
* <li><strong>AssumeRolePolicy</strong>: the trust policy of a RAM role.</li>
321+
* <li><strong>AccountLevelIdentityBasedPolicy</strong>: an identity-based policy at the account level (custom or system).</li>
322+
* <li><strong>ResourceGroupLevelIdentityBasedPolicy</strong>: an identity-based policy scoped to a resource group.</li>
323+
* </ul>
324+
*
325+
* <strong>example:</strong>
326+
* <p>AssumeRolePolicy</p>
279327
*/
280328
public Builder policyType(String policyType) {
281329
this.policyType = policyType;

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ private Builder(ClearAIAgentVoiceprintRequest request) {
5959
}
6060

6161
/**
62-
* VoiceprintId.
62+
* <p>The unique identifier for the voiceprint.</p>
63+
*
64+
* <strong>example:</strong>
65+
* <p>vp_1699123456_8527</p>
6366
*/
6467
public Builder voiceprintId(String voiceprintId) {
6568
this.putQueryParameter("VoiceprintId", voiceprintId);

0 commit comments

Comments
 (0)