alibabacloud-agentrun20250910 4.0.0__tar.gz → 4.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/ChangeLog.md +7 -0
  2. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/PKG-INFO +1 -1
  3. alibabacloud_agentrun20250910-4.0.1/alibabacloud_agentrun20250910/__init__.py +1 -0
  4. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/alibabacloud_agentrun20250910/client.py +4 -0
  5. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/alibabacloud_agentrun20250910/models.py +19 -0
  6. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/alibabacloud_agentrun20250910.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/setup.py +1 -1
  8. alibabacloud_agentrun20250910-4.0.0/alibabacloud_agentrun20250910/__init__.py +0 -1
  9. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/LICENSE +0 -0
  10. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/MANIFEST.in +0 -0
  11. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/README-CN.md +0 -0
  12. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/README.md +0 -0
  13. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/alibabacloud_agentrun20250910.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/alibabacloud_agentrun20250910.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/alibabacloud_agentrun20250910.egg-info/requires.txt +0 -0
  16. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/alibabacloud_agentrun20250910.egg-info/top_level.txt +0 -0
  17. {alibabacloud_agentrun20250910-4.0.0 → alibabacloud_agentrun20250910-4.0.1}/setup.cfg +0 -0
@@ -1,3 +1,10 @@
1
+ 2025-11-24 Version: 4.0.0
2
+ - Support API DeleteSandbox.
3
+ - Update API ListTemplates: add request parameters status.
4
+ - Update API ListTemplates: add request parameters templateName.
5
+ - Update API StopSandbox: update response parameters Body' ref has changed.
6
+
7
+
1
8
  2025-11-20 Version: 3.1.0
2
9
  - Support API ActivateTemplateMCP.
3
10
  - Support API CreateCredential.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_agentrun20250910
3
- Version: 4.0.0
3
+ Version: 4.0.1
4
4
  Summary: Alibaba Cloud AgentRun (20250910) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -3835,6 +3835,8 @@ class Client(OpenApiClient):
3835
3835
  query['pageSize'] = request.page_size
3836
3836
  if not UtilClient.is_unset(request.search_mode):
3837
3837
  query['searchMode'] = request.search_mode
3838
+ if not UtilClient.is_unset(request.status):
3839
+ query['status'] = request.status
3838
3840
  req = open_api_models.OpenApiRequest(
3839
3841
  headers=headers,
3840
3842
  query=OpenApiUtilClient.query(query)
@@ -3881,6 +3883,8 @@ class Client(OpenApiClient):
3881
3883
  query['pageSize'] = request.page_size
3882
3884
  if not UtilClient.is_unset(request.search_mode):
3883
3885
  query['searchMode'] = request.search_mode
3886
+ if not UtilClient.is_unset(request.status):
3887
+ query['status'] = request.status
3884
3888
  req = open_api_models.OpenApiRequest(
3885
3889
  headers=headers,
3886
3890
  query=OpenApiUtilClient.query(query)
@@ -4207,6 +4207,7 @@ class OssConfiguration(TeaModel):
4207
4207
  mount_point: str = None,
4208
4208
  permission: str = None,
4209
4209
  prefix: str = None,
4210
+ region: str = None,
4210
4211
  ):
4211
4212
  # This parameter is required.
4212
4213
  self.bucket_name = bucket_name
@@ -4215,6 +4216,7 @@ class OssConfiguration(TeaModel):
4215
4216
  self.permission = permission
4216
4217
  # This parameter is required.
4217
4218
  self.prefix = prefix
4219
+ self.region = region
4218
4220
 
4219
4221
  def validate(self):
4220
4222
  pass
@@ -4233,6 +4235,8 @@ class OssConfiguration(TeaModel):
4233
4235
  result['permission'] = self.permission
4234
4236
  if self.prefix is not None:
4235
4237
  result['prefix'] = self.prefix
4238
+ if self.region is not None:
4239
+ result['region'] = self.region
4236
4240
  return result
4237
4241
 
4238
4242
  def from_map(self, m: dict = None):
@@ -4245,6 +4249,8 @@ class OssConfiguration(TeaModel):
4245
4249
  self.permission = m.get('permission')
4246
4250
  if m.get('prefix') is not None:
4247
4251
  self.prefix = m.get('prefix')
4252
+ if m.get('region') is not None:
4253
+ self.region = m.get('region')
4248
4254
  return self
4249
4255
 
4250
4256
 
@@ -5529,6 +5535,7 @@ class Template(TeaModel):
5529
5535
  cpu: float = None,
5530
5536
  created_at: str = None,
5531
5537
  credential_configuration: CredentialConfiguration = None,
5538
+ description: str = None,
5532
5539
  disk_size: int = None,
5533
5540
  environment_variables: str = None,
5534
5541
  execution_role_arn: str = None,
@@ -5556,6 +5563,7 @@ class Template(TeaModel):
5556
5563
  self.cpu = cpu
5557
5564
  self.created_at = created_at
5558
5565
  self.credential_configuration = credential_configuration
5566
+ self.description = description
5559
5567
  self.disk_size = disk_size
5560
5568
  self.environment_variables = environment_variables
5561
5569
  self.execution_role_arn = execution_role_arn
@@ -5613,6 +5621,8 @@ class Template(TeaModel):
5613
5621
  result['createdAt'] = self.created_at
5614
5622
  if self.credential_configuration is not None:
5615
5623
  result['credentialConfiguration'] = self.credential_configuration.to_map()
5624
+ if self.description is not None:
5625
+ result['description'] = self.description
5616
5626
  if self.disk_size is not None:
5617
5627
  result['diskSize'] = self.disk_size
5618
5628
  if self.environment_variables is not None:
@@ -5671,6 +5681,8 @@ class Template(TeaModel):
5671
5681
  if m.get('credentialConfiguration') is not None:
5672
5682
  temp_model = CredentialConfiguration()
5673
5683
  self.credential_configuration = temp_model.from_map(m['credentialConfiguration'])
5684
+ if m.get('description') is not None:
5685
+ self.description = m.get('description')
5674
5686
  if m.get('diskSize') is not None:
5675
5687
  self.disk_size = m.get('diskSize')
5676
5688
  if m.get('environmentVariables') is not None:
@@ -12631,6 +12643,7 @@ class ListAgentRuntimesRequest(TeaModel):
12631
12643
  page_number: int = None,
12632
12644
  page_size: int = None,
12633
12645
  search_mode: str = None,
12646
+ status: str = None,
12634
12647
  ):
12635
12648
  # 根据智能体运行时名称进行模糊匹配过滤
12636
12649
  self.agent_runtime_name = agent_runtime_name
@@ -12640,6 +12653,8 @@ class ListAgentRuntimesRequest(TeaModel):
12640
12653
  self.page_size = page_size
12641
12654
  # 查询模式,支持精确查询和模糊查询
12642
12655
  self.search_mode = search_mode
12656
+ # 根据状态进行过滤,多个状态用逗号分隔,支持精确匹配
12657
+ self.status = status
12643
12658
 
12644
12659
  def validate(self):
12645
12660
  pass
@@ -12658,6 +12673,8 @@ class ListAgentRuntimesRequest(TeaModel):
12658
12673
  result['pageSize'] = self.page_size
12659
12674
  if self.search_mode is not None:
12660
12675
  result['searchMode'] = self.search_mode
12676
+ if self.status is not None:
12677
+ result['status'] = self.status
12661
12678
  return result
12662
12679
 
12663
12680
  def from_map(self, m: dict = None):
@@ -12670,6 +12687,8 @@ class ListAgentRuntimesRequest(TeaModel):
12670
12687
  self.page_size = m.get('pageSize')
12671
12688
  if m.get('searchMode') is not None:
12672
12689
  self.search_mode = m.get('searchMode')
12690
+ if m.get('status') is not None:
12691
+ self.status = m.get('status')
12673
12692
  return self
12674
12693
 
12675
12694
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-agentrun20250910
3
- Version: 4.0.0
3
+ Version: 4.0.1
4
4
  Summary: Alibaba Cloud AgentRun (20250910) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_agentrun20250910.
26
26
 
27
- Created on 24/11/2025
27
+ Created on 27/11/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '4.0.0'