alibabacloud-fc20230330 3.0.0__py3-none-any.whl → 3.0.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_fc20230330/__init__.py +1 -1
- alibabacloud_fc20230330/client.py +212 -208
- alibabacloud_fc20230330/models.py +18 -0
- {alibabacloud_fc20230330-3.0.0.dist-info → alibabacloud_fc20230330-3.0.1.dist-info}/METADATA +5 -5
- alibabacloud_fc20230330-3.0.1.dist-info/RECORD +8 -0
- {alibabacloud_fc20230330-3.0.0.dist-info → alibabacloud_fc20230330-3.0.1.dist-info}/WHEEL +1 -1
- alibabacloud_fc20230330-3.0.0.dist-info/RECORD +0 -8
- {alibabacloud_fc20230330-3.0.0.dist-info → alibabacloud_fc20230330-3.0.1.dist-info}/LICENSE +0 -0
- {alibabacloud_fc20230330-3.0.0.dist-info → alibabacloud_fc20230330-3.0.1.dist-info}/top_level.txt +0 -0
@@ -2208,9 +2208,11 @@ class Function(TeaModel):
|
|
2208
2208
|
class GetResourceTagsOutput(TeaModel):
|
2209
2209
|
def __init__(
|
2210
2210
|
self,
|
2211
|
+
resouce_type: str = None,
|
2211
2212
|
resource_arn: str = None,
|
2212
2213
|
tags: Dict[str, str] = None,
|
2213
2214
|
):
|
2215
|
+
self.resouce_type = resouce_type
|
2214
2216
|
self.resource_arn = resource_arn
|
2215
2217
|
self.tags = tags
|
2216
2218
|
|
@@ -2223,6 +2225,8 @@ class GetResourceTagsOutput(TeaModel):
|
|
2223
2225
|
return _map
|
2224
2226
|
|
2225
2227
|
result = dict()
|
2228
|
+
if self.resouce_type is not None:
|
2229
|
+
result['resouceType'] = self.resouce_type
|
2226
2230
|
if self.resource_arn is not None:
|
2227
2231
|
result['resourceArn'] = self.resource_arn
|
2228
2232
|
if self.tags is not None:
|
@@ -2231,6 +2235,8 @@ class GetResourceTagsOutput(TeaModel):
|
|
2231
2235
|
|
2232
2236
|
def from_map(self, m: dict = None):
|
2233
2237
|
m = m or dict()
|
2238
|
+
if m.get('resouceType') is not None:
|
2239
|
+
self.resouce_type = m.get('resouceType')
|
2234
2240
|
if m.get('resourceArn') is not None:
|
2235
2241
|
self.resource_arn = m.get('resourceArn')
|
2236
2242
|
if m.get('tags') is not None:
|
@@ -2986,9 +2992,11 @@ class ListProvisionConfigsOutput(TeaModel):
|
|
2986
2992
|
class Resource(TeaModel):
|
2987
2993
|
def __init__(
|
2988
2994
|
self,
|
2995
|
+
resouce_type: str = None,
|
2989
2996
|
resource_arn: str = None,
|
2990
2997
|
tags: Dict[str, str] = None,
|
2991
2998
|
):
|
2999
|
+
self.resouce_type = resouce_type
|
2992
3000
|
self.resource_arn = resource_arn
|
2993
3001
|
self.tags = tags
|
2994
3002
|
|
@@ -3001,6 +3009,8 @@ class Resource(TeaModel):
|
|
3001
3009
|
return _map
|
3002
3010
|
|
3003
3011
|
result = dict()
|
3012
|
+
if self.resouce_type is not None:
|
3013
|
+
result['resouceType'] = self.resouce_type
|
3004
3014
|
if self.resource_arn is not None:
|
3005
3015
|
result['resourceArn'] = self.resource_arn
|
3006
3016
|
if self.tags is not None:
|
@@ -3009,6 +3019,8 @@ class Resource(TeaModel):
|
|
3009
3019
|
|
3010
3020
|
def from_map(self, m: dict = None):
|
3011
3021
|
m = m or dict()
|
3022
|
+
if m.get('resouceType') is not None:
|
3023
|
+
self.resouce_type = m.get('resouceType')
|
3012
3024
|
if m.get('resourceArn') is not None:
|
3013
3025
|
self.resource_arn = m.get('resourceArn')
|
3014
3026
|
if m.get('tags') is not None:
|
@@ -6276,9 +6288,11 @@ class ListTaggedResourcesRequest(TeaModel):
|
|
6276
6288
|
self,
|
6277
6289
|
limit: int = None,
|
6278
6290
|
next_token: str = None,
|
6291
|
+
resource_type: str = None,
|
6279
6292
|
):
|
6280
6293
|
self.limit = limit
|
6281
6294
|
self.next_token = next_token
|
6295
|
+
self.resource_type = resource_type
|
6282
6296
|
|
6283
6297
|
def validate(self):
|
6284
6298
|
pass
|
@@ -6293,6 +6307,8 @@ class ListTaggedResourcesRequest(TeaModel):
|
|
6293
6307
|
result['limit'] = self.limit
|
6294
6308
|
if self.next_token is not None:
|
6295
6309
|
result['nextToken'] = self.next_token
|
6310
|
+
if self.resource_type is not None:
|
6311
|
+
result['resourceType'] = self.resource_type
|
6296
6312
|
return result
|
6297
6313
|
|
6298
6314
|
def from_map(self, m: dict = None):
|
@@ -6301,6 +6317,8 @@ class ListTaggedResourcesRequest(TeaModel):
|
|
6301
6317
|
self.limit = m.get('limit')
|
6302
6318
|
if m.get('nextToken') is not None:
|
6303
6319
|
self.next_token = m.get('nextToken')
|
6320
|
+
if m.get('resourceType') is not None:
|
6321
|
+
self.resource_type = m.get('resourceType')
|
6304
6322
|
return self
|
6305
6323
|
|
6306
6324
|
|
{alibabacloud_fc20230330-3.0.0.dist-info → alibabacloud_fc20230330-3.0.1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: alibabacloud-fc20230330
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1
|
4
4
|
Summary: Alibaba Cloud Function Compute (20230330) SDK Library for Python
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
6
6
|
Author: Alibaba Cloud SDK
|
@@ -20,10 +20,10 @@ Classifier: Programming Language :: Python :: 3.9
|
|
20
20
|
Classifier: Topic :: Software Development
|
21
21
|
Requires-Python: >=3.6
|
22
22
|
Description-Content-Type: text/markdown
|
23
|
-
Requires-Dist: alibabacloud-tea-util
|
24
|
-
Requires-Dist: alibabacloud-tea-openapi
|
25
|
-
Requires-Dist: alibabacloud-openapi-util
|
26
|
-
Requires-Dist: alibabacloud-endpoint-util
|
23
|
+
Requires-Dist: alibabacloud-tea-util <1.0.0,>=0.3.11
|
24
|
+
Requires-Dist: alibabacloud-tea-openapi <1.0.0,>=0.3.6
|
25
|
+
Requires-Dist: alibabacloud-openapi-util <1.0.0,>=0.2.1
|
26
|
+
Requires-Dist: alibabacloud-endpoint-util <1.0.0,>=0.0.3
|
27
27
|
|
28
28
|
English | [简体中文](README-CN.md)
|
29
29
|

|
@@ -0,0 +1,8 @@
|
|
1
|
+
alibabacloud_fc20230330/__init__.py,sha256=0u1xaRbCgaWXndLAD-9pka1zdE9YanZ_YfDXBVrTroQ,21
|
2
|
+
alibabacloud_fc20230330/client.py,sha256=C90S9KOhiM8ra2lHUVRMqMWkY6L43whRFDiUXEBrZIQ,190581
|
3
|
+
alibabacloud_fc20230330/models.py,sha256=bGXBV9La2_qv-5QO7RebT7Qcw1cUX-7nnder24wAav0,225918
|
4
|
+
alibabacloud_fc20230330-3.0.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_fc20230330-3.0.1.dist-info/METADATA,sha256=FBfhbluDf0x_xW01nd2d9Ca23QmzMqGz39IM69BLgZg,2218
|
6
|
+
alibabacloud_fc20230330-3.0.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
7
|
+
alibabacloud_fc20230330-3.0.1.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
+
alibabacloud_fc20230330-3.0.1.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
alibabacloud_fc20230330/__init__.py,sha256=ddtA0myd9lh60BQddOxgTznQsDzL0h72frF04ICaK1w,21
|
2
|
-
alibabacloud_fc20230330/client.py,sha256=dBLhgqFAT4V9XLgJRZukC4xnJDIzYFDvc48zadgQz_Y,189723
|
3
|
-
alibabacloud_fc20230330/models.py,sha256=-kx7giya1ZaqQTvyASXJZ_BTvw5_tph3qkCCACa2zpE,225102
|
4
|
-
alibabacloud_fc20230330-3.0.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
-
alibabacloud_fc20230330-3.0.0.dist-info/METADATA,sha256=ARsEgzDo1Z_sRguh2YJn4NJlUXZoOp8znTEqWBS3GwA,2226
|
6
|
-
alibabacloud_fc20230330-3.0.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
7
|
-
alibabacloud_fc20230330-3.0.0.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
-
alibabacloud_fc20230330-3.0.0.dist-info/RECORD,,
|
File without changes
|
{alibabacloud_fc20230330-3.0.0.dist-info → alibabacloud_fc20230330-3.0.1.dist-info}/top_level.txt
RENAMED
File without changes
|