alibabacloud-fc20230330 4.2.4__tar.gz → 4.2.5__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.
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/ChangeLog.md +8 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/PKG-INFO +1 -1
- alibabacloud_fc20230330-4.2.5/alibabacloud_fc20230330/__init__.py +1 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330/models.py +24 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330.egg-info/PKG-INFO +1 -1
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/setup.py +1 -1
- alibabacloud_fc20230330-4.2.4/alibabacloud_fc20230330/__init__.py +0 -1
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/MANIFEST.in +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/README-CN.md +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/README.md +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330/client.py +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330.egg-info/SOURCES.txt +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330.egg-info/dependency_links.txt +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330.egg-info/requires.txt +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330.egg-info/top_level.txt +0 -0
- {alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/setup.cfg +0 -0
@@ -1,3 +1,11 @@
|
|
1
|
+
2025-04-18 Version: 4.2.4
|
2
|
+
- Update API ListFunctions: add request parameters functionName.
|
3
|
+
|
4
|
+
|
5
|
+
2025-04-18 Version: 4.2.4
|
6
|
+
- Update API ListFunctions: add request parameters functionName.
|
7
|
+
|
8
|
+
|
1
9
|
2025-04-17 Version: 4.2.3
|
2
10
|
- Generated python 2023-03-30 for FC.
|
3
11
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '4.2.5'
|
{alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330/models.py
RENAMED
@@ -1527,9 +1527,11 @@ class GPUConfig(TeaModel):
|
|
1527
1527
|
class LifecycleHook(TeaModel):
|
1528
1528
|
def __init__(
|
1529
1529
|
self,
|
1530
|
+
command: List[str] = None,
|
1530
1531
|
handler: str = None,
|
1531
1532
|
timeout: int = None,
|
1532
1533
|
):
|
1534
|
+
self.command = command
|
1533
1535
|
self.handler = handler
|
1534
1536
|
self.timeout = timeout
|
1535
1537
|
|
@@ -1542,6 +1544,8 @@ class LifecycleHook(TeaModel):
|
|
1542
1544
|
return _map
|
1543
1545
|
|
1544
1546
|
result = dict()
|
1547
|
+
if self.command is not None:
|
1548
|
+
result['command'] = self.command
|
1545
1549
|
if self.handler is not None:
|
1546
1550
|
result['handler'] = self.handler
|
1547
1551
|
if self.timeout is not None:
|
@@ -1550,6 +1554,8 @@ class LifecycleHook(TeaModel):
|
|
1550
1554
|
|
1551
1555
|
def from_map(self, m: dict = None):
|
1552
1556
|
m = m or dict()
|
1557
|
+
if m.get('command') is not None:
|
1558
|
+
self.command = m.get('command')
|
1553
1559
|
if m.get('handler') is not None:
|
1554
1560
|
self.handler = m.get('handler')
|
1555
1561
|
if m.get('timeout') is not None:
|
@@ -1954,6 +1960,7 @@ class CreateFunctionInput(TeaModel):
|
|
1954
1960
|
oss_mount_config: OSSMountConfig = None,
|
1955
1961
|
role: str = None,
|
1956
1962
|
runtime: str = None,
|
1963
|
+
session_affinity: str = None,
|
1957
1964
|
tags: List[Tag] = None,
|
1958
1965
|
timeout: int = None,
|
1959
1966
|
tracing_config: TracingConfig = None,
|
@@ -1984,6 +1991,7 @@ class CreateFunctionInput(TeaModel):
|
|
1984
1991
|
self.role = role
|
1985
1992
|
# This parameter is required.
|
1986
1993
|
self.runtime = runtime
|
1994
|
+
self.session_affinity = session_affinity
|
1987
1995
|
self.tags = tags
|
1988
1996
|
self.timeout = timeout
|
1989
1997
|
self.tracing_config = tracing_config
|
@@ -2067,6 +2075,8 @@ class CreateFunctionInput(TeaModel):
|
|
2067
2075
|
result['role'] = self.role
|
2068
2076
|
if self.runtime is not None:
|
2069
2077
|
result['runtime'] = self.runtime
|
2078
|
+
if self.session_affinity is not None:
|
2079
|
+
result['sessionAffinity'] = self.session_affinity
|
2070
2080
|
result['tags'] = []
|
2071
2081
|
if self.tags is not None:
|
2072
2082
|
for k in self.tags:
|
@@ -2134,6 +2144,8 @@ class CreateFunctionInput(TeaModel):
|
|
2134
2144
|
self.role = m.get('role')
|
2135
2145
|
if m.get('runtime') is not None:
|
2136
2146
|
self.runtime = m.get('runtime')
|
2147
|
+
if m.get('sessionAffinity') is not None:
|
2148
|
+
self.session_affinity = m.get('sessionAffinity')
|
2137
2149
|
self.tags = []
|
2138
2150
|
if m.get('tags') is not None:
|
2139
2151
|
for k in m.get('tags'):
|
@@ -3441,6 +3453,7 @@ class Function(TeaModel):
|
|
3441
3453
|
oss_mount_config: OSSMountConfig = None,
|
3442
3454
|
role: str = None,
|
3443
3455
|
runtime: str = None,
|
3456
|
+
session_affinity: str = None,
|
3444
3457
|
state: str = None,
|
3445
3458
|
state_reason: str = None,
|
3446
3459
|
state_reason_code: str = None,
|
@@ -3480,6 +3493,7 @@ class Function(TeaModel):
|
|
3480
3493
|
self.oss_mount_config = oss_mount_config
|
3481
3494
|
self.role = role
|
3482
3495
|
self.runtime = runtime
|
3496
|
+
self.session_affinity = session_affinity
|
3483
3497
|
self.state = state
|
3484
3498
|
self.state_reason = state_reason
|
3485
3499
|
self.state_reason_code = state_reason_code
|
@@ -3590,6 +3604,8 @@ class Function(TeaModel):
|
|
3590
3604
|
result['role'] = self.role
|
3591
3605
|
if self.runtime is not None:
|
3592
3606
|
result['runtime'] = self.runtime
|
3607
|
+
if self.session_affinity is not None:
|
3608
|
+
result['sessionAffinity'] = self.session_affinity
|
3593
3609
|
if self.state is not None:
|
3594
3610
|
result['state'] = self.state
|
3595
3611
|
if self.state_reason is not None:
|
@@ -3684,6 +3700,8 @@ class Function(TeaModel):
|
|
3684
3700
|
self.role = m.get('role')
|
3685
3701
|
if m.get('runtime') is not None:
|
3686
3702
|
self.runtime = m.get('runtime')
|
3703
|
+
if m.get('sessionAffinity') is not None:
|
3704
|
+
self.session_affinity = m.get('sessionAffinity')
|
3687
3705
|
if m.get('state') is not None:
|
3688
3706
|
self.state = m.get('state')
|
3689
3707
|
if m.get('stateReason') is not None:
|
@@ -5871,6 +5889,7 @@ class UpdateFunctionInput(TeaModel):
|
|
5871
5889
|
oss_mount_config: OSSMountConfig = None,
|
5872
5890
|
role: str = None,
|
5873
5891
|
runtime: str = None,
|
5892
|
+
session_affinity: str = None,
|
5874
5893
|
timeout: int = None,
|
5875
5894
|
tracing_config: TracingConfig = None,
|
5876
5895
|
vpc_config: VPCConfig = None,
|
@@ -5896,6 +5915,7 @@ class UpdateFunctionInput(TeaModel):
|
|
5896
5915
|
self.oss_mount_config = oss_mount_config
|
5897
5916
|
self.role = role
|
5898
5917
|
self.runtime = runtime
|
5918
|
+
self.session_affinity = session_affinity
|
5899
5919
|
self.timeout = timeout
|
5900
5920
|
self.tracing_config = tracing_config
|
5901
5921
|
self.vpc_config = vpc_config
|
@@ -5972,6 +5992,8 @@ class UpdateFunctionInput(TeaModel):
|
|
5972
5992
|
result['role'] = self.role
|
5973
5993
|
if self.runtime is not None:
|
5974
5994
|
result['runtime'] = self.runtime
|
5995
|
+
if self.session_affinity is not None:
|
5996
|
+
result['sessionAffinity'] = self.session_affinity
|
5975
5997
|
if self.timeout is not None:
|
5976
5998
|
result['timeout'] = self.timeout
|
5977
5999
|
if self.tracing_config is not None:
|
@@ -6033,6 +6055,8 @@ class UpdateFunctionInput(TeaModel):
|
|
6033
6055
|
self.role = m.get('role')
|
6034
6056
|
if m.get('runtime') is not None:
|
6035
6057
|
self.runtime = m.get('runtime')
|
6058
|
+
if m.get('sessionAffinity') is not None:
|
6059
|
+
self.session_affinity = m.get('sessionAffinity')
|
6036
6060
|
if m.get('timeout') is not None:
|
6037
6061
|
self.timeout = m.get('timeout')
|
6038
6062
|
if m.get('tracingConfig') is not None:
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '4.2.4'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{alibabacloud_fc20230330-4.2.4 → alibabacloud_fc20230330-4.2.5}/alibabacloud_fc20230330/client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|