alibabacloud-fc20230330 4.1.7__py3-none-any.whl → 4.1.9__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_fc20230330/__init__.py +1 -1
- alibabacloud_fc20230330/client.py +34 -10
- alibabacloud_fc20230330/models.py +135 -11
- {alibabacloud_fc20230330-4.1.7.dist-info → alibabacloud_fc20230330-4.1.9.dist-info}/METADATA +1 -1
- alibabacloud_fc20230330-4.1.9.dist-info/RECORD +8 -0
- alibabacloud_fc20230330-4.1.7.dist-info/RECORD +0 -8
- {alibabacloud_fc20230330-4.1.7.dist-info → alibabacloud_fc20230330-4.1.9.dist-info}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.1.7.dist-info → alibabacloud_fc20230330-4.1.9.dist-info}/WHEEL +0 -0
- {alibabacloud_fc20230330-4.1.7.dist-info → alibabacloud_fc20230330-4.1.9.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
__version__ = '4.1.
|
1
|
+
__version__ = '4.1.9'
|
@@ -1273,7 +1273,7 @@ class Client(OpenApiClient):
|
|
1273
1273
|
runtime: util_models.RuntimeOptions,
|
1274
1274
|
) -> fc20230330_models.DeleteFunctionVersionResponse:
|
1275
1275
|
"""
|
1276
|
-
@summary
|
1276
|
+
@summary http://pre.hhht/#vpc
|
1277
1277
|
|
1278
1278
|
@param headers: map
|
1279
1279
|
@param runtime: runtime options for this request RuntimeOptions
|
@@ -1312,7 +1312,7 @@ class Client(OpenApiClient):
|
|
1312
1312
|
runtime: util_models.RuntimeOptions,
|
1313
1313
|
) -> fc20230330_models.DeleteFunctionVersionResponse:
|
1314
1314
|
"""
|
1315
|
-
@summary
|
1315
|
+
@summary http://pre.hhht/#vpc
|
1316
1316
|
|
1317
1317
|
@param headers: map
|
1318
1318
|
@param runtime: runtime options for this request RuntimeOptions
|
@@ -1349,7 +1349,7 @@ class Client(OpenApiClient):
|
|
1349
1349
|
version_id: str,
|
1350
1350
|
) -> fc20230330_models.DeleteFunctionVersionResponse:
|
1351
1351
|
"""
|
1352
|
-
@summary
|
1352
|
+
@summary http://pre.hhht/#vpc
|
1353
1353
|
|
1354
1354
|
@return: DeleteFunctionVersionResponse
|
1355
1355
|
"""
|
@@ -1363,7 +1363,7 @@ class Client(OpenApiClient):
|
|
1363
1363
|
version_id: str,
|
1364
1364
|
) -> fc20230330_models.DeleteFunctionVersionResponse:
|
1365
1365
|
"""
|
1366
|
-
@summary
|
1366
|
+
@summary http://pre.hhht/#vpc
|
1367
1367
|
|
1368
1368
|
@return: DeleteFunctionVersionResponse
|
1369
1369
|
"""
|
@@ -3965,28 +3965,40 @@ class Client(OpenApiClient):
|
|
3965
3965
|
|
3966
3966
|
def list_functions_with_options(
|
3967
3967
|
self,
|
3968
|
-
|
3968
|
+
tmp_req: fc20230330_models.ListFunctionsRequest,
|
3969
3969
|
headers: Dict[str, str],
|
3970
3970
|
runtime: util_models.RuntimeOptions,
|
3971
3971
|
) -> fc20230330_models.ListFunctionsResponse:
|
3972
3972
|
"""
|
3973
3973
|
@summary 列出函数。
|
3974
3974
|
|
3975
|
-
@param
|
3975
|
+
@param tmp_req: ListFunctionsRequest
|
3976
3976
|
@param headers: map
|
3977
3977
|
@param runtime: runtime options for this request RuntimeOptions
|
3978
3978
|
@return: ListFunctionsResponse
|
3979
3979
|
"""
|
3980
|
-
UtilClient.validate_model(
|
3980
|
+
UtilClient.validate_model(tmp_req)
|
3981
|
+
request = fc20230330_models.ListFunctionsShrinkRequest()
|
3982
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
3983
|
+
if not UtilClient.is_unset(tmp_req.tags):
|
3984
|
+
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
3981
3985
|
query = {}
|
3986
|
+
if not UtilClient.is_unset(request.description):
|
3987
|
+
query['description'] = request.description
|
3982
3988
|
if not UtilClient.is_unset(request.fc_version):
|
3983
3989
|
query['fcVersion'] = request.fc_version
|
3990
|
+
if not UtilClient.is_unset(request.gpu_type):
|
3991
|
+
query['gpuType'] = request.gpu_type
|
3984
3992
|
if not UtilClient.is_unset(request.limit):
|
3985
3993
|
query['limit'] = request.limit
|
3986
3994
|
if not UtilClient.is_unset(request.next_token):
|
3987
3995
|
query['nextToken'] = request.next_token
|
3988
3996
|
if not UtilClient.is_unset(request.prefix):
|
3989
3997
|
query['prefix'] = request.prefix
|
3998
|
+
if not UtilClient.is_unset(request.runtime):
|
3999
|
+
query['runtime'] = request.runtime
|
4000
|
+
if not UtilClient.is_unset(request.tags_shrink):
|
4001
|
+
query['tags'] = request.tags_shrink
|
3990
4002
|
req = open_api_models.OpenApiRequest(
|
3991
4003
|
headers=headers,
|
3992
4004
|
query=OpenApiUtilClient.query(query)
|
@@ -4015,28 +4027,40 @@ class Client(OpenApiClient):
|
|
4015
4027
|
|
4016
4028
|
async def list_functions_with_options_async(
|
4017
4029
|
self,
|
4018
|
-
|
4030
|
+
tmp_req: fc20230330_models.ListFunctionsRequest,
|
4019
4031
|
headers: Dict[str, str],
|
4020
4032
|
runtime: util_models.RuntimeOptions,
|
4021
4033
|
) -> fc20230330_models.ListFunctionsResponse:
|
4022
4034
|
"""
|
4023
4035
|
@summary 列出函数。
|
4024
4036
|
|
4025
|
-
@param
|
4037
|
+
@param tmp_req: ListFunctionsRequest
|
4026
4038
|
@param headers: map
|
4027
4039
|
@param runtime: runtime options for this request RuntimeOptions
|
4028
4040
|
@return: ListFunctionsResponse
|
4029
4041
|
"""
|
4030
|
-
UtilClient.validate_model(
|
4042
|
+
UtilClient.validate_model(tmp_req)
|
4043
|
+
request = fc20230330_models.ListFunctionsShrinkRequest()
|
4044
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
4045
|
+
if not UtilClient.is_unset(tmp_req.tags):
|
4046
|
+
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
4031
4047
|
query = {}
|
4048
|
+
if not UtilClient.is_unset(request.description):
|
4049
|
+
query['description'] = request.description
|
4032
4050
|
if not UtilClient.is_unset(request.fc_version):
|
4033
4051
|
query['fcVersion'] = request.fc_version
|
4052
|
+
if not UtilClient.is_unset(request.gpu_type):
|
4053
|
+
query['gpuType'] = request.gpu_type
|
4034
4054
|
if not UtilClient.is_unset(request.limit):
|
4035
4055
|
query['limit'] = request.limit
|
4036
4056
|
if not UtilClient.is_unset(request.next_token):
|
4037
4057
|
query['nextToken'] = request.next_token
|
4038
4058
|
if not UtilClient.is_unset(request.prefix):
|
4039
4059
|
query['prefix'] = request.prefix
|
4060
|
+
if not UtilClient.is_unset(request.runtime):
|
4061
|
+
query['runtime'] = request.runtime
|
4062
|
+
if not UtilClient.is_unset(request.tags_shrink):
|
4063
|
+
query['tags'] = request.tags_shrink
|
4040
4064
|
req = open_api_models.OpenApiRequest(
|
4041
4065
|
headers=headers,
|
4042
4066
|
query=OpenApiUtilClient.query(query)
|
@@ -1938,6 +1938,7 @@ class CreateFunctionInput(TeaModel):
|
|
1938
1938
|
custom_dns: CustomDNS = None,
|
1939
1939
|
custom_runtime_config: CustomRuntimeConfig = None,
|
1940
1940
|
description: str = None,
|
1941
|
+
disable_ondemand: bool = None,
|
1941
1942
|
disk_size: int = None,
|
1942
1943
|
environment_variables: Dict[str, str] = None,
|
1943
1944
|
function_name: str = None,
|
@@ -1964,6 +1965,7 @@ class CreateFunctionInput(TeaModel):
|
|
1964
1965
|
self.custom_dns = custom_dns
|
1965
1966
|
self.custom_runtime_config = custom_runtime_config
|
1966
1967
|
self.description = description
|
1968
|
+
self.disable_ondemand = disable_ondemand
|
1967
1969
|
self.disk_size = disk_size
|
1968
1970
|
self.environment_variables = environment_variables
|
1969
1971
|
# This parameter is required.
|
@@ -2033,6 +2035,8 @@ class CreateFunctionInput(TeaModel):
|
|
2033
2035
|
result['customRuntimeConfig'] = self.custom_runtime_config.to_map()
|
2034
2036
|
if self.description is not None:
|
2035
2037
|
result['description'] = self.description
|
2038
|
+
if self.disable_ondemand is not None:
|
2039
|
+
result['disableOndemand'] = self.disable_ondemand
|
2036
2040
|
if self.disk_size is not None:
|
2037
2041
|
result['diskSize'] = self.disk_size
|
2038
2042
|
if self.environment_variables is not None:
|
@@ -2093,6 +2097,8 @@ class CreateFunctionInput(TeaModel):
|
|
2093
2097
|
self.custom_runtime_config = temp_model.from_map(m['customRuntimeConfig'])
|
2094
2098
|
if m.get('description') is not None:
|
2095
2099
|
self.description = m.get('description')
|
2100
|
+
if m.get('disableOndemand') is not None:
|
2101
|
+
self.disable_ondemand = m.get('disableOndemand')
|
2096
2102
|
if m.get('diskSize') is not None:
|
2097
2103
|
self.disk_size = m.get('diskSize')
|
2098
2104
|
if m.get('environmentVariables') is not None:
|
@@ -3276,6 +3282,7 @@ class Function(TeaModel):
|
|
3276
3282
|
custom_dns: CustomDNS = None,
|
3277
3283
|
custom_runtime_config: CustomRuntimeConfig = None,
|
3278
3284
|
description: str = None,
|
3285
|
+
disable_ondemand: bool = None,
|
3279
3286
|
disk_size: int = None,
|
3280
3287
|
environment_variables: Dict[str, str] = None,
|
3281
3288
|
function_arn: str = None,
|
@@ -3313,6 +3320,7 @@ class Function(TeaModel):
|
|
3313
3320
|
self.custom_dns = custom_dns
|
3314
3321
|
self.custom_runtime_config = custom_runtime_config
|
3315
3322
|
self.description = description
|
3323
|
+
self.disable_ondemand = disable_ondemand
|
3316
3324
|
self.disk_size = disk_size
|
3317
3325
|
self.environment_variables = environment_variables
|
3318
3326
|
self.function_arn = function_arn
|
@@ -3394,6 +3402,8 @@ class Function(TeaModel):
|
|
3394
3402
|
result['customRuntimeConfig'] = self.custom_runtime_config.to_map()
|
3395
3403
|
if self.description is not None:
|
3396
3404
|
result['description'] = self.description
|
3405
|
+
if self.disable_ondemand is not None:
|
3406
|
+
result['disableOndemand'] = self.disable_ondemand
|
3397
3407
|
if self.disk_size is not None:
|
3398
3408
|
result['diskSize'] = self.disk_size
|
3399
3409
|
if self.environment_variables is not None:
|
@@ -3477,6 +3487,8 @@ class Function(TeaModel):
|
|
3477
3487
|
self.custom_runtime_config = temp_model.from_map(m['customRuntimeConfig'])
|
3478
3488
|
if m.get('description') is not None:
|
3479
3489
|
self.description = m.get('description')
|
3490
|
+
if m.get('disableOndemand') is not None:
|
3491
|
+
self.disable_ondemand = m.get('disableOndemand')
|
3480
3492
|
if m.get('diskSize') is not None:
|
3481
3493
|
self.disk_size = m.get('diskSize')
|
3482
3494
|
if m.get('environmentVariables') is not None:
|
@@ -5699,6 +5711,7 @@ class UpdateFunctionInput(TeaModel):
|
|
5699
5711
|
custom_dns: CustomDNS = None,
|
5700
5712
|
custom_runtime_config: CustomRuntimeConfig = None,
|
5701
5713
|
description: str = None,
|
5714
|
+
disable_ondemand: bool = None,
|
5702
5715
|
disk_size: int = None,
|
5703
5716
|
environment_variables: Dict[str, str] = None,
|
5704
5717
|
gpu_config: GPUConfig = None,
|
@@ -5723,6 +5736,7 @@ class UpdateFunctionInput(TeaModel):
|
|
5723
5736
|
self.custom_dns = custom_dns
|
5724
5737
|
self.custom_runtime_config = custom_runtime_config
|
5725
5738
|
self.description = description
|
5739
|
+
self.disable_ondemand = disable_ondemand
|
5726
5740
|
self.disk_size = disk_size
|
5727
5741
|
self.environment_variables = environment_variables
|
5728
5742
|
self.gpu_config = gpu_config
|
@@ -5783,6 +5797,8 @@ class UpdateFunctionInput(TeaModel):
|
|
5783
5797
|
result['customRuntimeConfig'] = self.custom_runtime_config.to_map()
|
5784
5798
|
if self.description is not None:
|
5785
5799
|
result['description'] = self.description
|
5800
|
+
if self.disable_ondemand is not None:
|
5801
|
+
result['disableOndemand'] = self.disable_ondemand
|
5786
5802
|
if self.disk_size is not None:
|
5787
5803
|
result['diskSize'] = self.disk_size
|
5788
5804
|
if self.environment_variables is not None:
|
@@ -5837,6 +5853,8 @@ class UpdateFunctionInput(TeaModel):
|
|
5837
5853
|
self.custom_runtime_config = temp_model.from_map(m['customRuntimeConfig'])
|
5838
5854
|
if m.get('description') is not None:
|
5839
5855
|
self.description = m.get('description')
|
5856
|
+
if m.get('disableOndemand') is not None:
|
5857
|
+
self.disable_ondemand = m.get('disableOndemand')
|
5840
5858
|
if m.get('diskSize') is not None:
|
5841
5859
|
self.disk_size = m.get('diskSize')
|
5842
5860
|
if m.get('environmentVariables') is not None:
|
@@ -6717,7 +6735,7 @@ class DeleteProvisionConfigRequest(TeaModel):
|
|
6717
6735
|
self,
|
6718
6736
|
qualifier: str = None,
|
6719
6737
|
):
|
6720
|
-
# The function alias
|
6738
|
+
# The function alias.
|
6721
6739
|
self.qualifier = qualifier
|
6722
6740
|
|
6723
6741
|
def validate(self):
|
@@ -7325,7 +7343,7 @@ class GetProvisionConfigRequest(TeaModel):
|
|
7325
7343
|
self,
|
7326
7344
|
qualifier: str = None,
|
7327
7345
|
):
|
7328
|
-
# The function alias
|
7346
|
+
# The function alias.
|
7329
7347
|
self.qualifier = qualifier
|
7330
7348
|
|
7331
7349
|
def validate(self):
|
@@ -7759,14 +7777,15 @@ class ListAsyncTasksRequest(TeaModel):
|
|
7759
7777
|
self.started_time_end = started_time_end
|
7760
7778
|
# The state of asynchronous tasks. The following items list the states of an asynchronous task:
|
7761
7779
|
#
|
7762
|
-
# * Enqueued: The asynchronous invocation is enqueued and
|
7780
|
+
# * Enqueued: The asynchronous invocation is enqueued and waiting to be executed.
|
7781
|
+
# * Dequeued: The asynchronous invocation is dequeued and waiting to be triggered.
|
7782
|
+
# * Running: The invocation is being executed.
|
7763
7783
|
# * Succeeded: The invocation is successful.
|
7764
7784
|
# * Failed: The invocation fails.
|
7765
|
-
# * Running: The invocation is being executed.
|
7766
7785
|
# * Stopped: The invocation is terminated.
|
7767
7786
|
# * Stopping: The invocation is being terminated.
|
7787
|
+
# * Expired: The maximum validity period of messages is specified for asynchronous invocation. The invocation is discarded and not executed because the specified maximum validity period of messages expires.
|
7768
7788
|
# * Invalid: The invocation is invalid and not executed due to specific reasons. For example, the function is deleted.
|
7769
|
-
# * Expired: The maximum validity period of messages is specified for asynchronous invocation. The invocation is discarded and not executed because the specified maximum validity period has elapsed.
|
7770
7789
|
# * Retrying: The asynchronous invocation is being retried due to an execution error.
|
7771
7790
|
self.status = status
|
7772
7791
|
|
@@ -8115,19 +8134,108 @@ class ListFunctionVersionsResponse(TeaModel):
|
|
8115
8134
|
class ListFunctionsRequest(TeaModel):
|
8116
8135
|
def __init__(
|
8117
8136
|
self,
|
8137
|
+
description: str = None,
|
8138
|
+
fc_version: str = None,
|
8139
|
+
gpu_type: str = None,
|
8140
|
+
limit: int = None,
|
8141
|
+
next_token: str = None,
|
8142
|
+
prefix: str = None,
|
8143
|
+
runtime: str = None,
|
8144
|
+
tags: List[Tag] = None,
|
8145
|
+
):
|
8146
|
+
self.description = description
|
8147
|
+
# The version of Function Compute to which the functions belong. Valid values: v3 and v2. v3: only lists functions of Function Compute 3.0. v2: only lists functions of Function Compute 2.0. By default, this parameter is left empty and functions in both Function Compute 3.0 and Function Compute 2.0 are listed.
|
8148
|
+
self.fc_version = fc_version
|
8149
|
+
self.gpu_type = gpu_type
|
8150
|
+
# The number of functions to return. The minimum value is 1 and the maximum value is 100.
|
8151
|
+
self.limit = limit
|
8152
|
+
# The pagination token.
|
8153
|
+
self.next_token = next_token
|
8154
|
+
# The prefix of the function name.
|
8155
|
+
self.prefix = prefix
|
8156
|
+
self.runtime = runtime
|
8157
|
+
self.tags = tags
|
8158
|
+
|
8159
|
+
def validate(self):
|
8160
|
+
if self.tags:
|
8161
|
+
for k in self.tags:
|
8162
|
+
if k:
|
8163
|
+
k.validate()
|
8164
|
+
|
8165
|
+
def to_map(self):
|
8166
|
+
_map = super().to_map()
|
8167
|
+
if _map is not None:
|
8168
|
+
return _map
|
8169
|
+
|
8170
|
+
result = dict()
|
8171
|
+
if self.description is not None:
|
8172
|
+
result['description'] = self.description
|
8173
|
+
if self.fc_version is not None:
|
8174
|
+
result['fcVersion'] = self.fc_version
|
8175
|
+
if self.gpu_type is not None:
|
8176
|
+
result['gpuType'] = self.gpu_type
|
8177
|
+
if self.limit is not None:
|
8178
|
+
result['limit'] = self.limit
|
8179
|
+
if self.next_token is not None:
|
8180
|
+
result['nextToken'] = self.next_token
|
8181
|
+
if self.prefix is not None:
|
8182
|
+
result['prefix'] = self.prefix
|
8183
|
+
if self.runtime is not None:
|
8184
|
+
result['runtime'] = self.runtime
|
8185
|
+
result['tags'] = []
|
8186
|
+
if self.tags is not None:
|
8187
|
+
for k in self.tags:
|
8188
|
+
result['tags'].append(k.to_map() if k else None)
|
8189
|
+
return result
|
8190
|
+
|
8191
|
+
def from_map(self, m: dict = None):
|
8192
|
+
m = m or dict()
|
8193
|
+
if m.get('description') is not None:
|
8194
|
+
self.description = m.get('description')
|
8195
|
+
if m.get('fcVersion') is not None:
|
8196
|
+
self.fc_version = m.get('fcVersion')
|
8197
|
+
if m.get('gpuType') is not None:
|
8198
|
+
self.gpu_type = m.get('gpuType')
|
8199
|
+
if m.get('limit') is not None:
|
8200
|
+
self.limit = m.get('limit')
|
8201
|
+
if m.get('nextToken') is not None:
|
8202
|
+
self.next_token = m.get('nextToken')
|
8203
|
+
if m.get('prefix') is not None:
|
8204
|
+
self.prefix = m.get('prefix')
|
8205
|
+
if m.get('runtime') is not None:
|
8206
|
+
self.runtime = m.get('runtime')
|
8207
|
+
self.tags = []
|
8208
|
+
if m.get('tags') is not None:
|
8209
|
+
for k in m.get('tags'):
|
8210
|
+
temp_model = Tag()
|
8211
|
+
self.tags.append(temp_model.from_map(k))
|
8212
|
+
return self
|
8213
|
+
|
8214
|
+
|
8215
|
+
class ListFunctionsShrinkRequest(TeaModel):
|
8216
|
+
def __init__(
|
8217
|
+
self,
|
8218
|
+
description: str = None,
|
8118
8219
|
fc_version: str = None,
|
8220
|
+
gpu_type: str = None,
|
8119
8221
|
limit: int = None,
|
8120
8222
|
next_token: str = None,
|
8121
8223
|
prefix: str = None,
|
8224
|
+
runtime: str = None,
|
8225
|
+
tags_shrink: str = None,
|
8122
8226
|
):
|
8123
|
-
|
8227
|
+
self.description = description
|
8228
|
+
# The version of Function Compute to which the functions belong. Valid values: v3 and v2. v3: only lists functions of Function Compute 3.0. v2: only lists functions of Function Compute 2.0. By default, this parameter is left empty and functions in both Function Compute 3.0 and Function Compute 2.0 are listed.
|
8124
8229
|
self.fc_version = fc_version
|
8230
|
+
self.gpu_type = gpu_type
|
8125
8231
|
# The number of functions to return. The minimum value is 1 and the maximum value is 100.
|
8126
8232
|
self.limit = limit
|
8127
8233
|
# The pagination token.
|
8128
8234
|
self.next_token = next_token
|
8129
8235
|
# The prefix of the function name.
|
8130
8236
|
self.prefix = prefix
|
8237
|
+
self.runtime = runtime
|
8238
|
+
self.tags_shrink = tags_shrink
|
8131
8239
|
|
8132
8240
|
def validate(self):
|
8133
8241
|
pass
|
@@ -8138,26 +8246,42 @@ class ListFunctionsRequest(TeaModel):
|
|
8138
8246
|
return _map
|
8139
8247
|
|
8140
8248
|
result = dict()
|
8249
|
+
if self.description is not None:
|
8250
|
+
result['description'] = self.description
|
8141
8251
|
if self.fc_version is not None:
|
8142
8252
|
result['fcVersion'] = self.fc_version
|
8253
|
+
if self.gpu_type is not None:
|
8254
|
+
result['gpuType'] = self.gpu_type
|
8143
8255
|
if self.limit is not None:
|
8144
8256
|
result['limit'] = self.limit
|
8145
8257
|
if self.next_token is not None:
|
8146
8258
|
result['nextToken'] = self.next_token
|
8147
8259
|
if self.prefix is not None:
|
8148
8260
|
result['prefix'] = self.prefix
|
8261
|
+
if self.runtime is not None:
|
8262
|
+
result['runtime'] = self.runtime
|
8263
|
+
if self.tags_shrink is not None:
|
8264
|
+
result['tags'] = self.tags_shrink
|
8149
8265
|
return result
|
8150
8266
|
|
8151
8267
|
def from_map(self, m: dict = None):
|
8152
8268
|
m = m or dict()
|
8269
|
+
if m.get('description') is not None:
|
8270
|
+
self.description = m.get('description')
|
8153
8271
|
if m.get('fcVersion') is not None:
|
8154
8272
|
self.fc_version = m.get('fcVersion')
|
8273
|
+
if m.get('gpuType') is not None:
|
8274
|
+
self.gpu_type = m.get('gpuType')
|
8155
8275
|
if m.get('limit') is not None:
|
8156
8276
|
self.limit = m.get('limit')
|
8157
8277
|
if m.get('nextToken') is not None:
|
8158
8278
|
self.next_token = m.get('nextToken')
|
8159
8279
|
if m.get('prefix') is not None:
|
8160
8280
|
self.prefix = m.get('prefix')
|
8281
|
+
if m.get('runtime') is not None:
|
8282
|
+
self.runtime = m.get('runtime')
|
8283
|
+
if m.get('tags') is not None:
|
8284
|
+
self.tags_shrink = m.get('tags')
|
8161
8285
|
return self
|
8162
8286
|
|
8163
8287
|
|
@@ -8695,7 +8819,7 @@ class ListTagResourcesRequest(TeaModel):
|
|
8695
8819
|
self.next_token = next_token
|
8696
8820
|
# The resource IDs.
|
8697
8821
|
self.resource_id = resource_id
|
8698
|
-
# The resource
|
8822
|
+
# The type of the resource.
|
8699
8823
|
#
|
8700
8824
|
# This parameter is required.
|
8701
8825
|
self.resource_type = resource_type
|
@@ -8763,7 +8887,7 @@ class ListTagResourcesShrinkRequest(TeaModel):
|
|
8763
8887
|
self.next_token = next_token
|
8764
8888
|
# The resource IDs.
|
8765
8889
|
self.resource_id_shrink = resource_id_shrink
|
8766
|
-
# The resource
|
8890
|
+
# The type of the resource.
|
8767
8891
|
#
|
8768
8892
|
# This parameter is required.
|
8769
8893
|
self.resource_type = resource_type
|
@@ -9052,7 +9176,7 @@ class PutAsyncInvokeConfigRequest(TeaModel):
|
|
9052
9176
|
body: PutAsyncInvokeConfigInput = None,
|
9053
9177
|
qualifier: str = None,
|
9054
9178
|
):
|
9055
|
-
# The asynchronous
|
9179
|
+
# The configurations of asynchronous function invocations.
|
9056
9180
|
#
|
9057
9181
|
# This parameter is required.
|
9058
9182
|
self.body = body
|
@@ -9273,11 +9397,11 @@ class PutProvisionConfigRequest(TeaModel):
|
|
9273
9397
|
body: PutProvisionConfigInput = None,
|
9274
9398
|
qualifier: str = None,
|
9275
9399
|
):
|
9276
|
-
# The provisioned
|
9400
|
+
# The provisioned configuration information.
|
9277
9401
|
#
|
9278
9402
|
# This parameter is required.
|
9279
9403
|
self.body = body
|
9280
|
-
# The function alias
|
9404
|
+
# The function alias.
|
9281
9405
|
self.qualifier = qualifier
|
9282
9406
|
|
9283
9407
|
def validate(self):
|
@@ -0,0 +1,8 @@
|
|
1
|
+
alibabacloud_fc20230330/__init__.py,sha256=FuorTsOuqKLhJfPVSpybilrhpI3l6BAZBea-Q4nSr3o,21
|
2
|
+
alibabacloud_fc20230330/client.py,sha256=NI0RAEZpif3365fQYYkL5ytgx0csX-_o_5dC9US0Roo,249043
|
3
|
+
alibabacloud_fc20230330/models.py,sha256=ZwZl5z7mDt60wQ2oNQekC_14jejuXOZonWYFmqo_z2Q,318045
|
4
|
+
alibabacloud_fc20230330-4.1.9.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_fc20230330-4.1.9.dist-info/METADATA,sha256=GA9vVta4ATwoigV5qpxaYbL7Nx_o0tjE49tQT6hWd14,2319
|
6
|
+
alibabacloud_fc20230330-4.1.9.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
+
alibabacloud_fc20230330-4.1.9.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
+
alibabacloud_fc20230330-4.1.9.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
alibabacloud_fc20230330/__init__.py,sha256=B4ESOekrGxSxxkpgqOs0xMWV6rvGwUn2h-3eIQhRnDU,21
|
2
|
-
alibabacloud_fc20230330/client.py,sha256=_nzY33AzTFtKebsCcEaB-I-Cbe8Hf26-0PtW8SbCcP8,247661
|
3
|
-
alibabacloud_fc20230330/models.py,sha256=dT3THeRwxmjAe9UYHk6Wu23b7hqgHrqOFsymqqKzytM,313057
|
4
|
-
alibabacloud_fc20230330-4.1.7.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
-
alibabacloud_fc20230330-4.1.7.dist-info/METADATA,sha256=_1hpHgytVS1mSmpMOUpksUIWuoA7DtpCbrrIj4p6Vgk,2319
|
6
|
-
alibabacloud_fc20230330-4.1.7.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
-
alibabacloud_fc20230330-4.1.7.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
-
alibabacloud_fc20230330-4.1.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{alibabacloud_fc20230330-4.1.7.dist-info → alibabacloud_fc20230330-4.1.9.dist-info}/top_level.txt
RENAMED
File without changes
|