Skip to content

Commit 0e6ec2c

Browse files
committed
Support API ActiveAiRtcLicense.
1 parent 410f6ff commit 0e6ec2c

21 files changed

+1668
-1
lines changed

ice-20201109/ChangeLog.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2025-11-13 Version: 6.8.0
2+
- Support API ActiveAiRtcLicense.
3+
- Support API GetAiRtcAuthCodeList.
4+
- Support API GetAiRtcLicenseInfoList.
5+
- Support API SubmitSceneBatchEditingJob.
6+
- Support API SubmitSceneTimelineOrganizationJob.
7+
- Update API ForwardAIAgentCall: add request parameters ErrorPrompt.
8+
- Update API ForwardAIAgentCall: add request parameters TransferPrompt.
9+
10+
111
2025-11-04 Version: 6.7.0
212
- Support API GetAIWorkflowTask.
313
- Support API StartAIWorkflow.

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

ice-20201109/src/main/java/com/aliyun/ice20201109/Client.java

Lines changed: 306 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package com.aliyun.ice20201109.models;
3+
4+
import com.aliyun.tea.*;
5+
6+
public class ActiveAiRtcLicenseRequest extends TeaModel {
7+
/**
8+
* <strong>example:</strong>
9+
* <p>iU1IeJech7***</p>
10+
*/
11+
@NameInMap("AuthCode")
12+
public String authCode;
13+
14+
/**
15+
* <strong>example:</strong>
16+
* <p>device-***</p>
17+
*/
18+
@NameInMap("DeviceId")
19+
public String deviceId;
20+
21+
/**
22+
* <strong>example:</strong>
23+
* <p>17712***</p>
24+
*/
25+
@NameInMap("LicenseItemId")
26+
public String licenseItemId;
27+
28+
public static ActiveAiRtcLicenseRequest build(java.util.Map<String, ?> map) throws Exception {
29+
ActiveAiRtcLicenseRequest self = new ActiveAiRtcLicenseRequest();
30+
return TeaModel.build(map, self);
31+
}
32+
33+
public ActiveAiRtcLicenseRequest setAuthCode(String authCode) {
34+
this.authCode = authCode;
35+
return this;
36+
}
37+
public String getAuthCode() {
38+
return this.authCode;
39+
}
40+
41+
public ActiveAiRtcLicenseRequest setDeviceId(String deviceId) {
42+
this.deviceId = deviceId;
43+
return this;
44+
}
45+
public String getDeviceId() {
46+
return this.deviceId;
47+
}
48+
49+
public ActiveAiRtcLicenseRequest setLicenseItemId(String licenseItemId) {
50+
this.licenseItemId = licenseItemId;
51+
return this;
52+
}
53+
public String getLicenseItemId() {
54+
return this.licenseItemId;
55+
}
56+
57+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package com.aliyun.ice20201109.models;
3+
4+
import com.aliyun.tea.*;
5+
6+
public class ActiveAiRtcLicenseResponse extends TeaModel {
7+
@NameInMap("headers")
8+
public java.util.Map<String, String> headers;
9+
10+
@NameInMap("statusCode")
11+
public Integer statusCode;
12+
13+
@NameInMap("body")
14+
public ActiveAiRtcLicenseResponseBody body;
15+
16+
public static ActiveAiRtcLicenseResponse build(java.util.Map<String, ?> map) throws Exception {
17+
ActiveAiRtcLicenseResponse self = new ActiveAiRtcLicenseResponse();
18+
return TeaModel.build(map, self);
19+
}
20+
21+
public ActiveAiRtcLicenseResponse setHeaders(java.util.Map<String, String> headers) {
22+
this.headers = headers;
23+
return this;
24+
}
25+
public java.util.Map<String, String> getHeaders() {
26+
return this.headers;
27+
}
28+
29+
public ActiveAiRtcLicenseResponse setStatusCode(Integer statusCode) {
30+
this.statusCode = statusCode;
31+
return this;
32+
}
33+
public Integer getStatusCode() {
34+
return this.statusCode;
35+
}
36+
37+
public ActiveAiRtcLicenseResponse setBody(ActiveAiRtcLicenseResponseBody body) {
38+
this.body = body;
39+
return this;
40+
}
41+
public ActiveAiRtcLicenseResponseBody getBody() {
42+
return this.body;
43+
}
44+
45+
}
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package com.aliyun.ice20201109.models;
3+
4+
import com.aliyun.tea.*;
5+
6+
public class ActiveAiRtcLicenseResponseBody extends TeaModel {
7+
/**
8+
* <strong>example:</strong>
9+
* <p>Success</p>
10+
*/
11+
@NameInMap("Code")
12+
public String code;
13+
14+
/**
15+
* <strong>example:</strong>
16+
* <p>200</p>
17+
*/
18+
@NameInMap("HttpStatusCode")
19+
public Integer httpStatusCode;
20+
21+
/**
22+
* <strong>example:</strong>
23+
* <p>a659a06659a***</p>
24+
*/
25+
@NameInMap("License")
26+
public String license;
27+
28+
/**
29+
* <strong>example:</strong>
30+
* <p>OK</p>
31+
*/
32+
@NameInMap("Message")
33+
public String message;
34+
35+
/**
36+
* <strong>example:</strong>
37+
* <p>4F9C14FE-1147-15AC-8EDF-A590FF12***</p>
38+
*/
39+
@NameInMap("RequestId")
40+
public String requestId;
41+
42+
/**
43+
* <strong>example:</strong>
44+
* <p>true</p>
45+
*/
46+
@NameInMap("Success")
47+
public Boolean success;
48+
49+
public static ActiveAiRtcLicenseResponseBody build(java.util.Map<String, ?> map) throws Exception {
50+
ActiveAiRtcLicenseResponseBody self = new ActiveAiRtcLicenseResponseBody();
51+
return TeaModel.build(map, self);
52+
}
53+
54+
public ActiveAiRtcLicenseResponseBody setCode(String code) {
55+
this.code = code;
56+
return this;
57+
}
58+
public String getCode() {
59+
return this.code;
60+
}
61+
62+
public ActiveAiRtcLicenseResponseBody setHttpStatusCode(Integer httpStatusCode) {
63+
this.httpStatusCode = httpStatusCode;
64+
return this;
65+
}
66+
public Integer getHttpStatusCode() {
67+
return this.httpStatusCode;
68+
}
69+
70+
public ActiveAiRtcLicenseResponseBody setLicense(String license) {
71+
this.license = license;
72+
return this;
73+
}
74+
public String getLicense() {
75+
return this.license;
76+
}
77+
78+
public ActiveAiRtcLicenseResponseBody setMessage(String message) {
79+
this.message = message;
80+
return this;
81+
}
82+
public String getMessage() {
83+
return this.message;
84+
}
85+
86+
public ActiveAiRtcLicenseResponseBody setRequestId(String requestId) {
87+
this.requestId = requestId;
88+
return this;
89+
}
90+
public String getRequestId() {
91+
return this.requestId;
92+
}
93+
94+
public ActiveAiRtcLicenseResponseBody setSuccess(Boolean success) {
95+
this.success = success;
96+
return this;
97+
}
98+
public Boolean getSuccess() {
99+
return this.success;
100+
}
101+
102+
}
Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package com.aliyun.ice20201109.models;
3+
4+
import com.aliyun.tea.*;
5+
6+
public class AiRtcAuthCodeDTO extends TeaModel {
7+
@NameInMap("ActivatedTime")
8+
public String activatedTime;
9+
10+
@NameInMap("AuthCode")
11+
public String authCode;
12+
13+
@NameInMap("CreationTime")
14+
public String creationTime;
15+
16+
@NameInMap("DeviceId")
17+
public String deviceId;
18+
19+
@NameInMap("License")
20+
public String license;
21+
22+
@NameInMap("LicenseItemId")
23+
public String licenseItemId;
24+
25+
@NameInMap("ModificationTime")
26+
public String modificationTime;
27+
28+
@NameInMap("Status")
29+
public Integer status;
30+
31+
@NameInMap("Type")
32+
public Integer type;
33+
34+
public static AiRtcAuthCodeDTO build(java.util.Map<String, ?> map) throws Exception {
35+
AiRtcAuthCodeDTO self = new AiRtcAuthCodeDTO();
36+
return TeaModel.build(map, self);
37+
}
38+
39+
public AiRtcAuthCodeDTO setActivatedTime(String activatedTime) {
40+
this.activatedTime = activatedTime;
41+
return this;
42+
}
43+
public String getActivatedTime() {
44+
return this.activatedTime;
45+
}
46+
47+
public AiRtcAuthCodeDTO setAuthCode(String authCode) {
48+
this.authCode = authCode;
49+
return this;
50+
}
51+
public String getAuthCode() {
52+
return this.authCode;
53+
}
54+
55+
public AiRtcAuthCodeDTO setCreationTime(String creationTime) {
56+
this.creationTime = creationTime;
57+
return this;
58+
}
59+
public String getCreationTime() {
60+
return this.creationTime;
61+
}
62+
63+
public AiRtcAuthCodeDTO setDeviceId(String deviceId) {
64+
this.deviceId = deviceId;
65+
return this;
66+
}
67+
public String getDeviceId() {
68+
return this.deviceId;
69+
}
70+
71+
public AiRtcAuthCodeDTO setLicense(String license) {
72+
this.license = license;
73+
return this;
74+
}
75+
public String getLicense() {
76+
return this.license;
77+
}
78+
79+
public AiRtcAuthCodeDTO setLicenseItemId(String licenseItemId) {
80+
this.licenseItemId = licenseItemId;
81+
return this;
82+
}
83+
public String getLicenseItemId() {
84+
return this.licenseItemId;
85+
}
86+
87+
public AiRtcAuthCodeDTO setModificationTime(String modificationTime) {
88+
this.modificationTime = modificationTime;
89+
return this;
90+
}
91+
public String getModificationTime() {
92+
return this.modificationTime;
93+
}
94+
95+
public AiRtcAuthCodeDTO setStatus(Integer status) {
96+
this.status = status;
97+
return this;
98+
}
99+
public Integer getStatus() {
100+
return this.status;
101+
}
102+
103+
public AiRtcAuthCodeDTO setType(Integer type) {
104+
this.type = type;
105+
return this;
106+
}
107+
public Integer getType() {
108+
return this.type;
109+
}
110+
111+
}

0 commit comments

Comments
 (0)