alibabacloud-agentrun20250910 5.3.0__py3-none-any.whl → 5.3.1__py3-none-any.whl
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.
- alibabacloud_agentrun20250910/__init__.py +1 -1
- alibabacloud_agentrun20250910/models/_container_configuration.py +8 -0
- {alibabacloud_agentrun20250910-5.3.0.dist-info → alibabacloud_agentrun20250910-5.3.1.dist-info}/METADATA +1 -1
- {alibabacloud_agentrun20250910-5.3.0.dist-info → alibabacloud_agentrun20250910-5.3.1.dist-info}/RECORD +7 -7
- {alibabacloud_agentrun20250910-5.3.0.dist-info → alibabacloud_agentrun20250910-5.3.1.dist-info}/LICENSE +0 -0
- {alibabacloud_agentrun20250910-5.3.0.dist-info → alibabacloud_agentrun20250910-5.3.1.dist-info}/WHEEL +0 -0
- {alibabacloud_agentrun20250910-5.3.0.dist-info → alibabacloud_agentrun20250910-5.3.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '5.3.
|
|
1
|
+
__version__ = '5.3.1'
|
|
@@ -13,6 +13,7 @@ class ContainerConfiguration(DaraModel):
|
|
|
13
13
|
command: List[str] = None,
|
|
14
14
|
image: str = None,
|
|
15
15
|
image_registry_type: str = None,
|
|
16
|
+
port: int = None,
|
|
16
17
|
):
|
|
17
18
|
# 阿里云容器镜像服务(ACR)的实例ID或名称
|
|
18
19
|
self.acr_instance_id = acr_instance_id
|
|
@@ -21,6 +22,7 @@ class ContainerConfiguration(DaraModel):
|
|
|
21
22
|
self.image = image
|
|
22
23
|
# 容器镜像的来源类型,支持ACR(阿里云容器镜像服务)、ACREE(阿里云容器镜像服务企业版)、CUSTOM(自定义镜像仓库)
|
|
23
24
|
self.image_registry_type = image_registry_type
|
|
25
|
+
self.port = port
|
|
24
26
|
|
|
25
27
|
def validate(self):
|
|
26
28
|
pass
|
|
@@ -42,6 +44,9 @@ class ContainerConfiguration(DaraModel):
|
|
|
42
44
|
if self.image_registry_type is not None:
|
|
43
45
|
result['imageRegistryType'] = self.image_registry_type
|
|
44
46
|
|
|
47
|
+
if self.port is not None:
|
|
48
|
+
result['port'] = self.port
|
|
49
|
+
|
|
45
50
|
return result
|
|
46
51
|
|
|
47
52
|
def from_map(self, m: dict = None):
|
|
@@ -58,5 +63,8 @@ class ContainerConfiguration(DaraModel):
|
|
|
58
63
|
if m.get('imageRegistryType') is not None:
|
|
59
64
|
self.image_registry_type = m.get('imageRegistryType')
|
|
60
65
|
|
|
66
|
+
if m.get('port') is not None:
|
|
67
|
+
self.port = m.get('port')
|
|
68
|
+
|
|
61
69
|
return self
|
|
62
70
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
alibabacloud_agentrun20250910/__init__.py,sha256=
|
|
1
|
+
alibabacloud_agentrun20250910/__init__.py,sha256=ExSTYyoZ6YgD3cSI2nNDYj3HSYxssF1rFiDvGxxLXW8,21
|
|
2
2
|
alibabacloud_agentrun20250910/client.py,sha256=e7eiJnwVihky1ytfIk-XCVZRo5KXCOrzFJaArTHkAuA,174573
|
|
3
3
|
alibabacloud_agentrun20250910/models/__init__.py,sha256=fRnzXzkQRg3PmLFQPVlMtUyKkwFxK8DPwVaSS3f1b5I,28980
|
|
4
4
|
alibabacloud_agentrun20250910/models/_activate_template_mcprequest.py,sha256=ERcrdYR0QD2PcPL84J75TlMAWVy9GHWKZoEiM0vXUPU,1075
|
|
@@ -36,7 +36,7 @@ alibabacloud_agentrun20250910/models/_code_interpreter_session_config.py,sha256=
|
|
|
36
36
|
alibabacloud_agentrun20250910/models/_code_interpreter_session_list_out.py,sha256=TBw4jVocZU7GxqP15MbtZ2CRbuNWYyOC24GqkOcH5e8,1919
|
|
37
37
|
alibabacloud_agentrun20250910/models/_code_interpreter_session_out.py,sha256=tfrmkpq_nQVmcsrZ5bd_ESYEwXDtqtABAytrNTH6nEk,3325
|
|
38
38
|
alibabacloud_agentrun20250910/models/_common_result.py,sha256=9lsfYx1KHJBO47508goAn-1rJC6TxHBx460VLQ6a6b4,1418
|
|
39
|
-
alibabacloud_agentrun20250910/models/_container_configuration.py,sha256=
|
|
39
|
+
alibabacloud_agentrun20250910/models/_container_configuration.py,sha256=zbERBSh5yKu94OX8qkF96DSjNkbAerqeHVaR1C5xbcU,2126
|
|
40
40
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_endpoint_input.py,sha256=dEyw_HeSPunKarZxqPao1QzZhtjLJkLrlP_UVu7GyjY,2211
|
|
41
41
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_endpoint_request.py,sha256=6AAgJhnhdqrB0mCuLWYT62N-YWuoRO5ZqtUm194iC_A,1099
|
|
42
42
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_endpoint_response.py,sha256=XDwGoTaBCBgPV3uojhpmPSJekLdew_8wwHcV6IyENjA,1491
|
|
@@ -316,8 +316,8 @@ alibabacloud_agentrun20250910/models/_update_tool_output.py,sha256=8Qy6IF4Tv61KC
|
|
|
316
316
|
alibabacloud_agentrun20250910/models/_vector_store_config.py,sha256=rvEBQNPeVcXQmBfJHVo2vpQbTR4u9-xerWNUEa2HLMg,2685
|
|
317
317
|
alibabacloud_agentrun20250910/models/_version_weight.py,sha256=b8Q6LkLBbwREUz5u4gksWiZJOR3KnwvQnmGKZmBRhfE,1035
|
|
318
318
|
alibabacloud_agentrun20250910/models/_view_port_configuration.py,sha256=9OJd_njOHJISm9XTCXbpPTw78eKbcn0h8NPI_51KqgI,1115
|
|
319
|
-
alibabacloud_agentrun20250910-5.3.
|
|
320
|
-
alibabacloud_agentrun20250910-5.3.
|
|
321
|
-
alibabacloud_agentrun20250910-5.3.
|
|
322
|
-
alibabacloud_agentrun20250910-5.3.
|
|
323
|
-
alibabacloud_agentrun20250910-5.3.
|
|
319
|
+
alibabacloud_agentrun20250910-5.3.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
320
|
+
alibabacloud_agentrun20250910-5.3.1.dist-info/METADATA,sha256=PqAYQpB-hgMobKV03psS2BhFPV3WIjx015iEz4a4nTs,2324
|
|
321
|
+
alibabacloud_agentrun20250910-5.3.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
322
|
+
alibabacloud_agentrun20250910-5.3.1.dist-info/top_level.txt,sha256=52ubthzYJLT_H920wO8t0i9HV90alDqttDu0fv3l1aM,30
|
|
323
|
+
alibabacloud_agentrun20250910-5.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|