alibabacloud-fc20230330 4.2.3__tar.gz → 4.2.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.
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/ChangeLog.md +3 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/PKG-INFO +1 -1
- alibabacloud_fc20230330-4.2.4/alibabacloud_fc20230330/__init__.py +1 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330/client.py +4 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330/models.py +12 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330.egg-info/PKG-INFO +1 -1
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/setup.py +1 -1
- alibabacloud_fc20230330-4.2.3/alibabacloud_fc20230330/__init__.py +0 -1
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/MANIFEST.in +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/README-CN.md +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/README.md +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330.egg-info/SOURCES.txt +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330.egg-info/dependency_links.txt +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330.egg-info/requires.txt +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330.egg-info/top_level.txt +0 -0
- {alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/setup.cfg +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '4.2.4'
|
{alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330/client.py
RENAMED
@@ -3907,6 +3907,8 @@ class Client(OpenApiClient):
|
|
3907
3907
|
query['description'] = request.description
|
3908
3908
|
if not UtilClient.is_unset(request.fc_version):
|
3909
3909
|
query['fcVersion'] = request.fc_version
|
3910
|
+
if not UtilClient.is_unset(request.function_name):
|
3911
|
+
query['functionName'] = request.function_name
|
3910
3912
|
if not UtilClient.is_unset(request.gpu_type):
|
3911
3913
|
query['gpuType'] = request.gpu_type
|
3912
3914
|
if not UtilClient.is_unset(request.limit):
|
@@ -3965,6 +3967,8 @@ class Client(OpenApiClient):
|
|
3965
3967
|
query['description'] = request.description
|
3966
3968
|
if not UtilClient.is_unset(request.fc_version):
|
3967
3969
|
query['fcVersion'] = request.fc_version
|
3970
|
+
if not UtilClient.is_unset(request.function_name):
|
3971
|
+
query['functionName'] = request.function_name
|
3968
3972
|
if not UtilClient.is_unset(request.gpu_type):
|
3969
3973
|
query['gpuType'] = request.gpu_type
|
3970
3974
|
if not UtilClient.is_unset(request.limit):
|
{alibabacloud_fc20230330-4.2.3 → alibabacloud_fc20230330-4.2.4}/alibabacloud_fc20230330/models.py
RENAMED
@@ -8424,6 +8424,7 @@ class ListFunctionsRequest(TeaModel):
|
|
8424
8424
|
self,
|
8425
8425
|
description: str = None,
|
8426
8426
|
fc_version: str = None,
|
8427
|
+
function_name: str = None,
|
8427
8428
|
gpu_type: str = None,
|
8428
8429
|
limit: int = None,
|
8429
8430
|
next_token: str = None,
|
@@ -8440,6 +8441,7 @@ class ListFunctionsRequest(TeaModel):
|
|
8440
8441
|
#
|
8441
8442
|
# By default, this parameter is left empty and functions in both Function Compute 3.0 and Function Compute 2.0 are listed.
|
8442
8443
|
self.fc_version = fc_version
|
8444
|
+
self.function_name = function_name
|
8443
8445
|
# The GPU type of the functions to retrieve.
|
8444
8446
|
self.gpu_type = gpu_type
|
8445
8447
|
# The number of functions to return. The minimum value is 1 and the maximum value is 100.
|
@@ -8469,6 +8471,8 @@ class ListFunctionsRequest(TeaModel):
|
|
8469
8471
|
result['description'] = self.description
|
8470
8472
|
if self.fc_version is not None:
|
8471
8473
|
result['fcVersion'] = self.fc_version
|
8474
|
+
if self.function_name is not None:
|
8475
|
+
result['functionName'] = self.function_name
|
8472
8476
|
if self.gpu_type is not None:
|
8473
8477
|
result['gpuType'] = self.gpu_type
|
8474
8478
|
if self.limit is not None:
|
@@ -8491,6 +8495,8 @@ class ListFunctionsRequest(TeaModel):
|
|
8491
8495
|
self.description = m.get('description')
|
8492
8496
|
if m.get('fcVersion') is not None:
|
8493
8497
|
self.fc_version = m.get('fcVersion')
|
8498
|
+
if m.get('functionName') is not None:
|
8499
|
+
self.function_name = m.get('functionName')
|
8494
8500
|
if m.get('gpuType') is not None:
|
8495
8501
|
self.gpu_type = m.get('gpuType')
|
8496
8502
|
if m.get('limit') is not None:
|
@@ -8514,6 +8520,7 @@ class ListFunctionsShrinkRequest(TeaModel):
|
|
8514
8520
|
self,
|
8515
8521
|
description: str = None,
|
8516
8522
|
fc_version: str = None,
|
8523
|
+
function_name: str = None,
|
8517
8524
|
gpu_type: str = None,
|
8518
8525
|
limit: int = None,
|
8519
8526
|
next_token: str = None,
|
@@ -8530,6 +8537,7 @@ class ListFunctionsShrinkRequest(TeaModel):
|
|
8530
8537
|
#
|
8531
8538
|
# By default, this parameter is left empty and functions in both Function Compute 3.0 and Function Compute 2.0 are listed.
|
8532
8539
|
self.fc_version = fc_version
|
8540
|
+
self.function_name = function_name
|
8533
8541
|
# The GPU type of the functions to retrieve.
|
8534
8542
|
self.gpu_type = gpu_type
|
8535
8543
|
# The number of functions to return. The minimum value is 1 and the maximum value is 100.
|
@@ -8556,6 +8564,8 @@ class ListFunctionsShrinkRequest(TeaModel):
|
|
8556
8564
|
result['description'] = self.description
|
8557
8565
|
if self.fc_version is not None:
|
8558
8566
|
result['fcVersion'] = self.fc_version
|
8567
|
+
if self.function_name is not None:
|
8568
|
+
result['functionName'] = self.function_name
|
8559
8569
|
if self.gpu_type is not None:
|
8560
8570
|
result['gpuType'] = self.gpu_type
|
8561
8571
|
if self.limit is not None:
|
@@ -8576,6 +8586,8 @@ class ListFunctionsShrinkRequest(TeaModel):
|
|
8576
8586
|
self.description = m.get('description')
|
8577
8587
|
if m.get('fcVersion') is not None:
|
8578
8588
|
self.fc_version = m.get('fcVersion')
|
8589
|
+
if m.get('functionName') is not None:
|
8590
|
+
self.function_name = m.get('functionName')
|
8579
8591
|
if m.get('gpuType') is not None:
|
8580
8592
|
self.gpu_type = m.get('gpuType')
|
8581
8593
|
if m.get('limit') is not None:
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '4.2.3'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|