Skip to content

Commit 7ae82fb

Browse files
committed
Support API ActivateTemplateMCP.
1 parent 104c00d commit 7ae82fb

Some content is hidden

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

52 files changed

+6338
-1198
lines changed

agentrun-20250910/ChangeLog.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
2025-11-20 Version: 3.1.0
2+
- Support API ActivateTemplateMCP.
3+
- Support API CreateCredential.
4+
- Support API CreateModelProxy.
5+
- Support API CreateModelService.
6+
- Support API CreateSandbox.
7+
- Support API CreateTemplate.
8+
- Support API DeleteCredential.
9+
- Support API DeleteModelProxy.
10+
- Support API DeleteModelService.
11+
- Support API DeleteTemplate.
12+
- Support API GetAccessToken.
13+
- Support API GetCredential.
14+
- Support API GetModelProxy.
15+
- Support API GetModelService.
16+
- Support API GetSandbox.
17+
- Support API GetTemplate.
18+
- Support API ListCredentials.
19+
- Support API ListModelProviders.
20+
- Support API ListModelProxies.
21+
- Support API ListModelServices.
22+
- Support API ListSandboxes.
23+
- Support API ListTemplates.
24+
- Support API StopSandbox.
25+
- Support API StopTemplateMCP.
26+
- Support API UpdateCredential.
27+
- Support API UpdateModelProxy.
28+
- Support API UpdateModelService.
29+
- Support API UpdateTemplate.
30+
31+
132
2025-11-19 Version: 3.0.0
233
- Update API CreateMemory: delete request parameters body.permanent.
334
- Update API GetMemory: delete response parameters Body.data.permanent.

agentrun-20250910/core/Client.cs

Lines changed: 4836 additions & 1194 deletions
Large diffs are not rendered by default.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class ActivateTemplateMCPRequest : TeaModel {
12+
[NameInMap("enabledTools")]
13+
[Validation(Required=false)]
14+
public List<string> EnabledTools { get; set; }
15+
16+
/// <summary>
17+
/// <b>Example:</b>
18+
/// <para>streamable-http</para>
19+
/// </summary>
20+
[NameInMap("transport")]
21+
[Validation(Required=false)]
22+
public string Transport { get; set; }
23+
24+
}
25+
26+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class ActivateTemplateMCPResponse : TeaModel {
12+
[NameInMap("headers")]
13+
[Validation(Required=false)]
14+
public Dictionary<string, string> Headers { get; set; }
15+
16+
[NameInMap("statusCode")]
17+
[Validation(Required=false)]
18+
public int? StatusCode { get; set; }
19+
20+
[NameInMap("body")]
21+
[Validation(Required=false)]
22+
public TemplateResult Body { get; set; }
23+
24+
}
25+
26+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class CreateCredentialRequest : TeaModel {
12+
[NameInMap("body")]
13+
[Validation(Required=false)]
14+
public CreateCredentialInput Body { get; set; }
15+
16+
}
17+
18+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class CreateCredentialResponse : TeaModel {
12+
[NameInMap("headers")]
13+
[Validation(Required=false)]
14+
public Dictionary<string, string> Headers { get; set; }
15+
16+
[NameInMap("statusCode")]
17+
[Validation(Required=false)]
18+
public int? StatusCode { get; set; }
19+
20+
[NameInMap("body")]
21+
[Validation(Required=false)]
22+
public CredentialResult Body { get; set; }
23+
24+
}
25+
26+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class CreateModelProxyRequest : TeaModel {
12+
[NameInMap("body")]
13+
[Validation(Required=false)]
14+
public CreateModelProxyInput Body { get; set; }
15+
16+
}
17+
18+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class CreateModelProxyResponse : TeaModel {
12+
[NameInMap("headers")]
13+
[Validation(Required=false)]
14+
public Dictionary<string, string> Headers { get; set; }
15+
16+
[NameInMap("statusCode")]
17+
[Validation(Required=false)]
18+
public int? StatusCode { get; set; }
19+
20+
[NameInMap("body")]
21+
[Validation(Required=false)]
22+
public ModelProxyResult Body { get; set; }
23+
24+
}
25+
26+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class CreateModelServiceRequest : TeaModel {
12+
[NameInMap("body")]
13+
[Validation(Required=false)]
14+
public CreateModelServiceInput Body { get; set; }
15+
16+
}
17+
18+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
7+
using Tea;
8+
9+
namespace AlibabaCloud.SDK.AgentRun20250910.Models
10+
{
11+
public class CreateModelServiceResponse : TeaModel {
12+
[NameInMap("headers")]
13+
[Validation(Required=false)]
14+
public Dictionary<string, string> Headers { get; set; }
15+
16+
[NameInMap("statusCode")]
17+
[Validation(Required=false)]
18+
public int? StatusCode { get; set; }
19+
20+
[NameInMap("body")]
21+
[Validation(Required=false)]
22+
public ModelServiceResult Body { get; set; }
23+
24+
}
25+
26+
}

0 commit comments

Comments
 (0)