tencentcloud-sdk-python-scf 3.0.1220__tar.gz → 3.0.1231__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-scf might be problematic. Click here for more details.
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/setup.py +1 -1
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud/scf/v20180416/models.py +7 -8
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud_sdk_python_scf.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-scf-3.0.1231/tencentcloud_sdk_python_scf.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-scf-3.0.1220/tencentcloud_sdk_python_scf.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/README.rst +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/setup.cfg +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud/scf/__init__.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud/scf/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud/scf/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud/scf/v20180416/scf_client.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud_sdk_python_scf.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud_sdk_python_scf.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-scf-3.0.1220 → tencentcloud-sdk-python-scf-3.0.1231}/tencentcloud_sdk_python_scf.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-scf',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1231"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Scf SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1546,13 +1546,13 @@ class CreateTriggerRequest(AbstractModel):
|
|
|
1546
1546
|
:type FunctionName: str
|
|
1547
1547
|
:param _TriggerName: 新建触发器名称。如果是定时触发器,名称支持英文字母、数字、连接符和下划线,最长100个字符;如果是cos触发器,需要是对应cos存储桶适用于XML API的访问域名(例如:5401-5ff414-12345.cos.ap-shanghai.myqcloud.com);如果是其他触发器,见具体触发器绑定参数的说明
|
|
1548
1548
|
:type TriggerName: str
|
|
1549
|
-
:param _Type: 触发器类型,目前支持 cos 、
|
|
1549
|
+
:param _Type: 触发器类型,目前支持 cos 、cls 、 timer、 ckafka、http类型。创建函数 URL 请使用 http 类型,参考[创建函数 URL ](https://cloud.tencent.com/document/product/583/100227#33bbbda4-9131-48a6-ac37-ac62ffe01424)。创建 cls 触发器请参考[CLS 创建投递 SCF 任务](https://cloud.tencent.com/document/product/614/61096)。
|
|
1550
1550
|
:type Type: str
|
|
1551
1551
|
:param _TriggerDesc: 触发器对应的参数,可见具体[触发器描述说明](https://cloud.tencent.com/document/product/583/39901)
|
|
1552
1552
|
:type TriggerDesc: str
|
|
1553
1553
|
:param _Namespace: 函数的命名空间
|
|
1554
1554
|
:type Namespace: str
|
|
1555
|
-
:param _Qualifier:
|
|
1555
|
+
:param _Qualifier: 触发器所生效的版本或别名,建议填写 [$DEFAULT](https://cloud.tencent.com/document/product/583/36149#.E9.BB.98.E8.AE.A4.E5.88.AB.E5.90.8D)方便后续进行版本的灰度发布,默认为 $LATEST。
|
|
1556
1556
|
:type Qualifier: str
|
|
1557
1557
|
:param _Enable: 触发器的初始是能状态 OPEN表示开启 CLOSE表示关闭
|
|
1558
1558
|
:type Enable: str
|
|
@@ -2215,14 +2215,13 @@ class DeleteTriggerRequest(AbstractModel):
|
|
|
2215
2215
|
:type FunctionName: str
|
|
2216
2216
|
:param _TriggerName: 要删除的触发器名称
|
|
2217
2217
|
:type TriggerName: str
|
|
2218
|
-
:param _Type:
|
|
2218
|
+
:param _Type: 要删除的触发器类型,目前只支持 timer、ckafka 、apigw 、cls 、cos 、cmq 、http 类型
|
|
2219
2219
|
:type Type: str
|
|
2220
2220
|
:param _Namespace: 函数所属命名空间
|
|
2221
2221
|
:type Namespace: str
|
|
2222
2222
|
:param _TriggerDesc: 如果删除的触发器类型为 COS 触发器,该字段为必填值,存放 JSON 格式的数据 {"event":"cos:ObjectCreated:*"},数据内容和 SetTrigger 接口中该字段的格式相同;如果删除的触发器类型为定时触发器或 CMQ 触发器,可以不指定该字段
|
|
2223
2223
|
:type TriggerDesc: str
|
|
2224
|
-
:param _Qualifier:
|
|
2225
|
-
如果删除的触发器类型为 APIGW 触发器,该字段为必填参数
|
|
2224
|
+
:param _Qualifier: 要删除的触发器实际所指向的版本或别名,默认值为 $LATEST
|
|
2226
2225
|
:type Qualifier: str
|
|
2227
2226
|
"""
|
|
2228
2227
|
self._FunctionName = None
|
|
@@ -10503,13 +10502,13 @@ class UpdateTriggerRequest(AbstractModel):
|
|
|
10503
10502
|
:type FunctionName: str
|
|
10504
10503
|
:param _TriggerName: 触发器名称
|
|
10505
10504
|
:type TriggerName: str
|
|
10506
|
-
:param _Type:
|
|
10505
|
+
:param _Type: 触发器类型,目前只支持timer、ckafka、http三种类型
|
|
10507
10506
|
:type Type: str
|
|
10508
10507
|
:param _Enable: 触发器开启或关闭,传参为OPEN为开启,CLOSE为关闭
|
|
10509
10508
|
:type Enable: str
|
|
10510
|
-
:param _Qualifier:
|
|
10509
|
+
:param _Qualifier: 触发器创建时所指向的函数版本或别名,默认为 $LATEST
|
|
10511
10510
|
:type Qualifier: str
|
|
10512
|
-
:param _Namespace:
|
|
10511
|
+
:param _Namespace: 函数的命名空间,默认值为default
|
|
10513
10512
|
:type Namespace: str
|
|
10514
10513
|
:param _TriggerDesc: TriggerDesc参数
|
|
10515
10514
|
:type TriggerDesc: str
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1231
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1220
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|