Skip to content

Commit 5e9a0e1

Browse files
committed
Support API GetAIWorkflowTask.
1 parent f39806e commit 5e9a0e1

File tree

143 files changed

+4210
-255
lines changed

Some content is hidden

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

143 files changed

+4210
-255
lines changed

ice-20201109/ChangeLog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
2025-11-04 Version: 6.6.0
2+
- Support API GetAIWorkflowTask.
3+
- Support API StartAIWorkflow.
4+
- Support API StopAIWorkflowTask.
5+
- Support API SubmitSceneMediaSelectionJob.
6+
- Update API SearchMedia: add request parameters CustomFilters.
7+
- Update API SearchMedia: add response parameters Body.MediaInfoList.$.CustomFields.
8+
- Update API SearchMediaByAILabel: add request parameters CustomFilters.
9+
- Update API SearchMediaByAILabel: add request parameters UtcCreate.
10+
- Update API SearchMediaByFace: add request parameters CustomFilters.
11+
- Update API SearchMediaByFace: add request parameters UtcCreate.
12+
- Update API SearchMediaByHybrid: add request parameters CustomFilters.
13+
- Update API SearchMediaByHybrid: add request parameters UtcCreate.
14+
- Update API SearchMediaByMultimodal: add request parameters CustomFilters.
15+
- Update API SearchMediaByMultimodal: add request parameters UtcCreate.
16+
17+
118
2025-09-23 Version: 6.5.1
219
- Update API ListSmartVoiceGroups: add response parameters Body.VoiceGroups.$.VoiceList.$.VoiceSource.
320

ice-20201109/core/Client.cs

Lines changed: 1741 additions & 225 deletions
Large diffs are not rendered by default.

ice-20201109/core/Models/AIAgentOutboundCallConfig.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ public class AIAgentOutboundCallConfigAsrConfig : TeaModel {
5757
[Validation(Required=false)]
5858
public bool? EnableIntelligentSegment { get; set; }
5959

60+
[NameInMap("ExperimentalConfig")]
61+
[Validation(Required=false)]
62+
public string ExperimentalConfig { get; set; }
63+
6064
[NameInMap("Greeting")]
6165
[Validation(Required=false)]
6266
public string Greeting { get; set; }

ice-20201109/core/Models/AddStreamTagToSearchLibRequest.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ namespace AlibabaCloud.SDK.ICE20201109.Models
1010
{
1111
public class AddStreamTagToSearchLibRequest : TeaModel {
1212
/// <summary>
13+
/// <para>The ID of the media asset.</para>
14+
///
1315
/// <b>Example:</b>
1416
/// <para><b><b><b>b48fb04483915d4f2cd8</b></b></b></para>
1517
/// </summary>
@@ -18,6 +20,8 @@ public class AddStreamTagToSearchLibRequest : TeaModel {
1820
public string MediaId { get; set; }
1921

2022
/// <summary>
23+
/// <para>The message body.</para>
24+
///
2125
/// <b>Example:</b>
2226
/// <para>{&quot;startTime&quot;:1657684600793,&quot;endTime&quot;:1657684600793,&quot;userData&quot;:&quot;{}&quot;}</para>
2327
/// </summary>
@@ -26,6 +30,8 @@ public class AddStreamTagToSearchLibRequest : TeaModel {
2630
public string MsgBody { get; set; }
2731

2832
/// <summary>
33+
/// <para>The namespace.</para>
34+
///
2935
/// <b>Example:</b>
3036
/// <para>name-1</para>
3137
/// </summary>
@@ -34,6 +40,8 @@ public class AddStreamTagToSearchLibRequest : TeaModel {
3440
public string Namespace { get; set; }
3541

3642
/// <summary>
43+
/// <para>The search library.</para>
44+
///
3745
/// <b>Example:</b>
3846
/// <para>Stream_xxx</para>
3947
/// </summary>

ice-20201109/core/Models/AddStreamTagToSearchLibResponseBody.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ namespace AlibabaCloud.SDK.ICE20201109.Models
1010
{
1111
public class AddStreamTagToSearchLibResponseBody : TeaModel {
1212
/// <summary>
13+
/// <para>The return code.</para>
14+
///
1315
/// <b>Example:</b>
1416
/// <para>200</para>
1517
/// </summary>
@@ -18,6 +20,8 @@ public class AddStreamTagToSearchLibResponseBody : TeaModel {
1820
public string Code { get; set; }
1921

2022
/// <summary>
23+
/// <para>The ID of the media asset.</para>
24+
///
2125
/// <b>Example:</b>
2226
/// <para><b><b>20b48fb04483915d4f2cd8ac</b></b></para>
2327
/// </summary>
@@ -36,6 +40,12 @@ public class AddStreamTagToSearchLibResponseBody : TeaModel {
3640
public string RequestId { get; set; }
3741

3842
/// <summary>
43+
/// <para>Indicates whether the request is successful. Default value: true. Valid values:</para>
44+
/// <list type="bullet">
45+
/// <item><description>true</description></item>
46+
/// <item><description>false</description></item>
47+
/// </list>
48+
///
3949
/// <b>Example:</b>
4050
/// <para>true</para>
4151
/// </summary>

ice-20201109/core/Models/CancelIProductionJobRequest.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@
99
namespace AlibabaCloud.SDK.ICE20201109.Models
1010
{
1111
public class CancelIProductionJobRequest : TeaModel {
12+
/// <summary>
13+
/// <b>Example:</b>
14+
/// <para><b><b>12e8864746a0a398</b></b></para>
15+
/// </summary>
1216
[NameInMap("ClientToken")]
1317
[Validation(Required=false)]
1418
public string ClientToken { get; set; }
1519

1620
/// <summary>
21+
/// <para>The ID of the intelligent production job.</para>
1722
/// <para>This parameter is required.</para>
1823
///
1924
/// <b>Example:</b>

ice-20201109/core/Models/CancelIProductionJobResponseBody.cs

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@
99
namespace AlibabaCloud.SDK.ICE20201109.Models
1010
{
1111
public class CancelIProductionJobResponseBody : TeaModel {
12+
/// <summary>
13+
/// <para>The details about the access denial. This parameter is returned only if Resource Access Management (RAM) permission verification failed.</para>
14+
/// </summary>
1215
[NameInMap("AccessDeniedDetail")]
1316
[Validation(Required=false)]
1417
public CancelIProductionJobResponseBodyAccessDeniedDetail AccessDeniedDetail { get; set; }
1518
public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
1619
/// <summary>
20+
/// <para>The operation that failed the permission check.</para>
21+
///
1722
/// <b>Example:</b>
1823
/// <para>ice:CancelIProductionJob</para>
1924
/// </summary>
@@ -22,6 +27,13 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
2227
public string AuthAction { get; set; }
2328

2429
/// <summary>
30+
/// <para>The identity. Values:</para>
31+
/// <list type="bullet">
32+
/// <item><description>RAM user: a UID</description></item>
33+
/// <item><description>RAM role: RoleName:RoleSessionName</description></item>
34+
/// <item><description>Federated user: ProviderType/ProviderName</description></item>
35+
/// </list>
36+
///
2537
/// <b>Example:</b>
2638
/// <para><b><b>4522705967</b></b></para>
2739
/// </summary>
@@ -30,6 +42,8 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
3042
public string AuthPrincipalDisplayName { get; set; }
3143

3244
/// <summary>
45+
/// <para>The account to which the principal belongs.</para>
46+
///
3347
/// <b>Example:</b>
3448
/// <para><b><b>82303720</b></b></para>
3549
/// </summary>
@@ -38,6 +52,13 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
3852
public string AuthPrincipalOwnerId { get; set; }
3953

4054
/// <summary>
55+
/// <para>The type of identity that made the request. Valid values:</para>
56+
/// <list type="bullet">
57+
/// <item><description>SubUser: RAM user</description></item>
58+
/// <item><description>AssumedRoleUser: RAM role</description></item>
59+
/// <item><description>Federated: SSO federated user</description></item>
60+
/// </list>
61+
///
4162
/// <b>Example:</b>
4263
/// <para>SubUser</para>
4364
/// </summary>
@@ -46,6 +67,8 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
4667
public string AuthPrincipalType { get; set; }
4768

4869
/// <summary>
70+
/// <para>The encoded diagnostic message.</para>
71+
///
4972
/// <b>Example:</b>
5073
/// <para><b><b><b>AAZ/h8jzNEODc5QUUyLUZCOTAtNUQyQy1BMEFBLUUzODQxODUx</b></b></b>==</para>
5174
/// </summary>
@@ -54,6 +77,12 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
5477
public string EncodedDiagnosticMessage { get; set; }
5578

5679
/// <summary>
80+
/// <para>The type of policy that resulted in the denial. Valid values:</para>
81+
/// <list type="bullet">
82+
/// <item><description><b>ImplicitDeny</b>: The resource holder has not configured a policy for the current user. By default, unauthorized operations are denied.</description></item>
83+
/// <item><description><b>ExplicitDeny</b>: The RAM policy configured by the resource holder explicitly denies the current user access to the corresponding resources.</description></item>
84+
/// </list>
85+
///
5786
/// <b>Example:</b>
5887
/// <para>ImplicitDeny</para>
5988
/// </summary>
@@ -62,6 +91,15 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
6291
public string NoPermissionType { get; set; }
6392

6493
/// <summary>
94+
/// <para>The type of policy that triggered the permission failure.</para>
95+
/// <list type="bullet">
96+
/// <item><description><b>ControlPolicy</b>: control policy</description></item>
97+
/// <item><description><b>SessionPolicy</b>: an additional policy attached to a temporary token.</description></item>
98+
/// <item><description><b>AssumeRolePolicy</b>: the trust policy of a RAM role.</description></item>
99+
/// <item><description><b>AccountLevelIdentityBasedPolicy</b>: an identity-based policy at the account level (custom or system).</description></item>
100+
/// <item><description><b>ResourceGroupLevelIdentityBasedPolicy</b>: an identity-based policy scoped to a resource group.</description></item>
101+
/// </list>
102+
///
65103
/// <b>Example:</b>
66104
/// <para>AssumeRolePolicy</para>
67105
/// </summary>
@@ -72,6 +110,8 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
72110
}
73111

74112
/// <summary>
113+
/// <para>The message returned.</para>
114+
///
75115
/// <b>Example:</b>
76116
/// <para>Success</para>
77117
/// </summary>
@@ -80,6 +120,8 @@ public class CancelIProductionJobResponseBodyAccessDeniedDetail : TeaModel {
80120
public string Message { get; set; }
81121

82122
/// <summary>
123+
/// <para>The ID of the request.</para>
124+
///
83125
/// <b>Example:</b>
84126
/// <para><b><b><b>11-DB8D-4A9A-875B-275798</b></b></b></para>
85127
/// </summary>

ice-20201109/core/Models/ClearAIAgentVoiceprintRequest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ namespace AlibabaCloud.SDK.ICE20201109.Models
1010
{
1111
public class ClearAIAgentVoiceprintRequest : TeaModel {
1212
/// <summary>
13+
/// <para>The unique identifier for the voiceprint.</para>
14+
///
1315
/// <b>Example:</b>
1416
/// <para>vp_1699123456_8527</para>
1517
/// </summary>

ice-20201109/core/Models/ClearAIAgentVoiceprintResponseBody.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ namespace AlibabaCloud.SDK.ICE20201109.Models
1010
{
1111
public class ClearAIAgentVoiceprintResponseBody : TeaModel {
1212
/// <summary>
13+
/// <para>The request ID.</para>
14+
///
1315
/// <b>Example:</b>
1416
/// <para><b><b><b>11-DB8D-4A9A-875B-275798</b></b></b></para>
1517
/// </summary>

ice-20201109/core/Models/CloseMediaConnectFlowFailoverRequest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ namespace AlibabaCloud.SDK.ICE20201109.Models
1010
{
1111
public class CloseMediaConnectFlowFailoverRequest : TeaModel {
1212
/// <summary>
13+
/// <para>The ID of the MediaConnect flow.</para>
14+
///
1315
/// <b>Example:</b>
1416
/// <para>34900dc6-90ec-4968-af3c-fcd87f231a5f</para>
1517
/// </summary>

0 commit comments

Comments
 (0)