alibabacloud-fc20230330 4.2.5__tar.gz → 4.2.6__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.5 → alibabacloud_fc20230330-4.2.6}/ChangeLog.md +3 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/PKG-INFO +1 -1
- alibabacloud_fc20230330-4.2.6/alibabacloud_fc20230330/__init__.py +1 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330/models.py +18 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330.egg-info/PKG-INFO +1 -1
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/setup.py +1 -1
- alibabacloud_fc20230330-4.2.5/alibabacloud_fc20230330/__init__.py +0 -1
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/MANIFEST.in +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/README-CN.md +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/README.md +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330/client.py +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330.egg-info/SOURCES.txt +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330.egg-info/dependency_links.txt +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330.egg-info/requires.txt +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330.egg-info/top_level.txt +0 -0
- {alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/setup.cfg +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '4.2.6'
|
{alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330/models.py
RENAMED
@@ -1946,6 +1946,7 @@ class CreateFunctionInput(TeaModel):
|
|
1946
1946
|
description: str = None,
|
1947
1947
|
disable_ondemand: bool = None,
|
1948
1948
|
disk_size: int = None,
|
1949
|
+
enable_long_living: bool = None,
|
1949
1950
|
environment_variables: Dict[str, str] = None,
|
1950
1951
|
function_name: str = None,
|
1951
1952
|
gpu_config: GPUConfig = None,
|
@@ -1974,6 +1975,7 @@ class CreateFunctionInput(TeaModel):
|
|
1974
1975
|
self.description = description
|
1975
1976
|
self.disable_ondemand = disable_ondemand
|
1976
1977
|
self.disk_size = disk_size
|
1978
|
+
self.enable_long_living = enable_long_living
|
1977
1979
|
self.environment_variables = environment_variables
|
1978
1980
|
# This parameter is required.
|
1979
1981
|
self.function_name = function_name
|
@@ -2047,6 +2049,8 @@ class CreateFunctionInput(TeaModel):
|
|
2047
2049
|
result['disableOndemand'] = self.disable_ondemand
|
2048
2050
|
if self.disk_size is not None:
|
2049
2051
|
result['diskSize'] = self.disk_size
|
2052
|
+
if self.enable_long_living is not None:
|
2053
|
+
result['enableLongLiving'] = self.enable_long_living
|
2050
2054
|
if self.environment_variables is not None:
|
2051
2055
|
result['environmentVariables'] = self.environment_variables
|
2052
2056
|
if self.function_name is not None:
|
@@ -2111,6 +2115,8 @@ class CreateFunctionInput(TeaModel):
|
|
2111
2115
|
self.disable_ondemand = m.get('disableOndemand')
|
2112
2116
|
if m.get('diskSize') is not None:
|
2113
2117
|
self.disk_size = m.get('diskSize')
|
2118
|
+
if m.get('enableLongLiving') is not None:
|
2119
|
+
self.enable_long_living = m.get('enableLongLiving')
|
2114
2120
|
if m.get('environmentVariables') is not None:
|
2115
2121
|
self.environment_variables = m.get('environmentVariables')
|
2116
2122
|
if m.get('functionName') is not None:
|
@@ -3432,6 +3438,7 @@ class Function(TeaModel):
|
|
3432
3438
|
description: str = None,
|
3433
3439
|
disable_ondemand: bool = None,
|
3434
3440
|
disk_size: int = None,
|
3441
|
+
enable_long_living: bool = None,
|
3435
3442
|
environment_variables: Dict[str, str] = None,
|
3436
3443
|
function_arn: str = None,
|
3437
3444
|
function_id: str = None,
|
@@ -3472,6 +3479,7 @@ class Function(TeaModel):
|
|
3472
3479
|
self.description = description
|
3473
3480
|
self.disable_ondemand = disable_ondemand
|
3474
3481
|
self.disk_size = disk_size
|
3482
|
+
self.enable_long_living = enable_long_living
|
3475
3483
|
self.environment_variables = environment_variables
|
3476
3484
|
self.function_arn = function_arn
|
3477
3485
|
self.function_id = function_id
|
@@ -3560,6 +3568,8 @@ class Function(TeaModel):
|
|
3560
3568
|
result['disableOndemand'] = self.disable_ondemand
|
3561
3569
|
if self.disk_size is not None:
|
3562
3570
|
result['diskSize'] = self.disk_size
|
3571
|
+
if self.enable_long_living is not None:
|
3572
|
+
result['enableLongLiving'] = self.enable_long_living
|
3563
3573
|
if self.environment_variables is not None:
|
3564
3574
|
result['environmentVariables'] = self.environment_variables
|
3565
3575
|
if self.function_arn is not None:
|
@@ -3649,6 +3659,8 @@ class Function(TeaModel):
|
|
3649
3659
|
self.disable_ondemand = m.get('disableOndemand')
|
3650
3660
|
if m.get('diskSize') is not None:
|
3651
3661
|
self.disk_size = m.get('diskSize')
|
3662
|
+
if m.get('enableLongLiving') is not None:
|
3663
|
+
self.enable_long_living = m.get('enableLongLiving')
|
3652
3664
|
if m.get('environmentVariables') is not None:
|
3653
3665
|
self.environment_variables = m.get('environmentVariables')
|
3654
3666
|
if m.get('functionArn') is not None:
|
@@ -5876,6 +5888,7 @@ class UpdateFunctionInput(TeaModel):
|
|
5876
5888
|
description: str = None,
|
5877
5889
|
disable_ondemand: bool = None,
|
5878
5890
|
disk_size: int = None,
|
5891
|
+
enable_long_living: bool = None,
|
5879
5892
|
environment_variables: Dict[str, str] = None,
|
5880
5893
|
gpu_config: GPUConfig = None,
|
5881
5894
|
handler: str = None,
|
@@ -5902,6 +5915,7 @@ class UpdateFunctionInput(TeaModel):
|
|
5902
5915
|
self.description = description
|
5903
5916
|
self.disable_ondemand = disable_ondemand
|
5904
5917
|
self.disk_size = disk_size
|
5918
|
+
self.enable_long_living = enable_long_living
|
5905
5919
|
self.environment_variables = environment_variables
|
5906
5920
|
self.gpu_config = gpu_config
|
5907
5921
|
self.handler = handler
|
@@ -5966,6 +5980,8 @@ class UpdateFunctionInput(TeaModel):
|
|
5966
5980
|
result['disableOndemand'] = self.disable_ondemand
|
5967
5981
|
if self.disk_size is not None:
|
5968
5982
|
result['diskSize'] = self.disk_size
|
5983
|
+
if self.enable_long_living is not None:
|
5984
|
+
result['enableLongLiving'] = self.enable_long_living
|
5969
5985
|
if self.environment_variables is not None:
|
5970
5986
|
result['environmentVariables'] = self.environment_variables
|
5971
5987
|
if self.gpu_config is not None:
|
@@ -6024,6 +6040,8 @@ class UpdateFunctionInput(TeaModel):
|
|
6024
6040
|
self.disable_ondemand = m.get('disableOndemand')
|
6025
6041
|
if m.get('diskSize') is not None:
|
6026
6042
|
self.disk_size = m.get('diskSize')
|
6043
|
+
if m.get('enableLongLiving') is not None:
|
6044
|
+
self.enable_long_living = m.get('enableLongLiving')
|
6027
6045
|
if m.get('environmentVariables') is not None:
|
6028
6046
|
self.environment_variables = m.get('environmentVariables')
|
6029
6047
|
if m.get('gpuConfig') is not None:
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '4.2.5'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{alibabacloud_fc20230330-4.2.5 → alibabacloud_fc20230330-4.2.6}/alibabacloud_fc20230330/client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|