alibabacloud-agentrun20250910 4.0.3__tar.gz → 4.0.4__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.3 → alibabacloud_agentrun20250910-4.0.4}/ChangeLog.md +3 -0
  2. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/PKG-INFO +1 -1
  3. alibabacloud_agentrun20250910-4.0.4/alibabacloud_agentrun20250910/__init__.py +1 -0
  4. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/alibabacloud_agentrun20250910/models.py +7 -0
  5. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/alibabacloud_agentrun20250910.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/setup.py +1 -1
  7. alibabacloud_agentrun20250910-4.0.3/alibabacloud_agentrun20250910/__init__.py +0 -1
  8. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/LICENSE +0 -0
  9. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/MANIFEST.in +0 -0
  10. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/README-CN.md +0 -0
  11. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/README.md +0 -0
  12. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/alibabacloud_agentrun20250910/client.py +0 -0
  13. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/alibabacloud_agentrun20250910.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/alibabacloud_agentrun20250910.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/alibabacloud_agentrun20250910.egg-info/requires.txt +0 -0
  16. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/alibabacloud_agentrun20250910.egg-info/top_level.txt +0 -0
  17. {alibabacloud_agentrun20250910-4.0.3 → alibabacloud_agentrun20250910-4.0.4}/setup.cfg +0 -0
@@ -1,3 +1,6 @@
1
+ 2025-12-17 Version: 4.0.3
2
+ - Generated python 2025-09-10 for AgentRun.
3
+
1
4
  2025-12-09 Version: 4.0.2
2
5
  - Generated python 2025-09-10 for AgentRun.
3
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_agentrun20250910
3
- Version: 4.0.3
3
+ Version: 4.0.4
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
@@ -295,6 +295,7 @@ class AgentRuntime(TeaModel):
295
295
  container_configuration: ContainerConfiguration = None,
296
296
  cpu: float = None,
297
297
  created_at: str = None,
298
+ credential_name: str = None,
298
299
  description: str = None,
299
300
  environment_variables: Dict[str, str] = None,
300
301
  execution_role_arn: str = None,
@@ -328,6 +329,8 @@ class AgentRuntime(TeaModel):
328
329
  self.cpu = cpu
329
330
  # 智能体运行时的创建时间,采用ISO 8601格式
330
331
  self.created_at = created_at
332
+ # 用于访问智能体的凭证名称,访问智能体运行时将使用此凭证进行身份验证
333
+ self.credential_name = credential_name
331
334
  # 智能体运行时的描述信息,说明该运行时的用途和功能
332
335
  self.description = description
333
336
  # 智能体运行时的环境变量配置
@@ -395,6 +398,8 @@ class AgentRuntime(TeaModel):
395
398
  result['cpu'] = self.cpu
396
399
  if self.created_at is not None:
397
400
  result['createdAt'] = self.created_at
401
+ if self.credential_name is not None:
402
+ result['credentialName'] = self.credential_name
398
403
  if self.description is not None:
399
404
  result['description'] = self.description
400
405
  if self.environment_variables is not None:
@@ -447,6 +452,8 @@ class AgentRuntime(TeaModel):
447
452
  self.cpu = m.get('cpu')
448
453
  if m.get('createdAt') is not None:
449
454
  self.created_at = m.get('createdAt')
455
+ if m.get('credentialName') is not None:
456
+ self.credential_name = m.get('credentialName')
450
457
  if m.get('description') is not None:
451
458
  self.description = m.get('description')
452
459
  if m.get('environmentVariables') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-agentrun20250910
3
- Version: 4.0.3
3
+ Version: 4.0.4
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 17/12/2025
27
+ Created on 18/12/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '4.0.3'