tencentcloud-sdk-python-scf 3.0.1212__py2.py3-none-any.whl → 3.0.1221__py2.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.
Potentially problematic release.
This version of tencentcloud-sdk-python-scf might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/scf/v20180416/models.py +44 -7
- {tencentcloud_sdk_python_scf-3.0.1212.dist-info → tencentcloud_sdk_python_scf-3.0.1221.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_scf-3.0.1221.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_scf-3.0.1212.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_scf-3.0.1212.dist-info → tencentcloud_sdk_python_scf-3.0.1221.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_scf-3.0.1212.dist-info → tencentcloud_sdk_python_scf-3.0.1221.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -5003,10 +5003,12 @@ class ImageConfig(AbstractModel):
|
|
|
5003
5003
|
:param _ContainerImageAccelerate: 镜像加速开关,默认False
|
|
5004
5004
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5005
5005
|
:type ContainerImageAccelerate: bool
|
|
5006
|
-
:param _ImagePort:
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5006
|
+
:param _ImagePort: 镜像函数端口设置,可指定镜像类型
|
|
5007
|
+
Web Server镜像:9000
|
|
5008
|
+
Job 镜像:-1
|
|
5009
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5010
|
+
默认值:9000
|
|
5011
|
+
示例值:9000
|
|
5010
5012
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5011
5013
|
:type ImagePort: int
|
|
5012
5014
|
"""
|
|
@@ -5668,6 +5670,9 @@ class LayerVersionInfo(AbstractModel):
|
|
|
5668
5670
|
:param _Stamp: Stamp
|
|
5669
5671
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5670
5672
|
:type Stamp: str
|
|
5673
|
+
:param _Tags: 返回层绑定的标签信息
|
|
5674
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5675
|
+
:type Tags: list of Tag
|
|
5671
5676
|
"""
|
|
5672
5677
|
self._CompatibleRuntimes = None
|
|
5673
5678
|
self._AddTime = None
|
|
@@ -5677,6 +5682,7 @@ class LayerVersionInfo(AbstractModel):
|
|
|
5677
5682
|
self._LayerName = None
|
|
5678
5683
|
self._Status = None
|
|
5679
5684
|
self._Stamp = None
|
|
5685
|
+
self._Tags = None
|
|
5680
5686
|
|
|
5681
5687
|
@property
|
|
5682
5688
|
def CompatibleRuntimes(self):
|
|
@@ -5742,6 +5748,14 @@ class LayerVersionInfo(AbstractModel):
|
|
|
5742
5748
|
def Stamp(self, Stamp):
|
|
5743
5749
|
self._Stamp = Stamp
|
|
5744
5750
|
|
|
5751
|
+
@property
|
|
5752
|
+
def Tags(self):
|
|
5753
|
+
return self._Tags
|
|
5754
|
+
|
|
5755
|
+
@Tags.setter
|
|
5756
|
+
def Tags(self, Tags):
|
|
5757
|
+
self._Tags = Tags
|
|
5758
|
+
|
|
5745
5759
|
|
|
5746
5760
|
def _deserialize(self, params):
|
|
5747
5761
|
self._CompatibleRuntimes = params.get("CompatibleRuntimes")
|
|
@@ -5752,6 +5766,12 @@ class LayerVersionInfo(AbstractModel):
|
|
|
5752
5766
|
self._LayerName = params.get("LayerName")
|
|
5753
5767
|
self._Status = params.get("Status")
|
|
5754
5768
|
self._Stamp = params.get("Stamp")
|
|
5769
|
+
if params.get("Tags") is not None:
|
|
5770
|
+
self._Tags = []
|
|
5771
|
+
for item in params.get("Tags"):
|
|
5772
|
+
obj = Tag()
|
|
5773
|
+
obj._deserialize(item)
|
|
5774
|
+
self._Tags.append(obj)
|
|
5755
5775
|
memeber_set = set(params.keys())
|
|
5756
5776
|
for name, value in vars(self).items():
|
|
5757
5777
|
property_name = name[1:]
|
|
@@ -7819,12 +7839,15 @@ class PublishLayerVersionRequest(AbstractModel):
|
|
|
7819
7839
|
:type Description: str
|
|
7820
7840
|
:param _LicenseInfo: 层的软件许可证
|
|
7821
7841
|
:type LicenseInfo: str
|
|
7842
|
+
:param _Tags: 层Tag 参数,以键值对数组形式传入
|
|
7843
|
+
:type Tags: list of Tag
|
|
7822
7844
|
"""
|
|
7823
7845
|
self._LayerName = None
|
|
7824
7846
|
self._CompatibleRuntimes = None
|
|
7825
7847
|
self._Content = None
|
|
7826
7848
|
self._Description = None
|
|
7827
7849
|
self._LicenseInfo = None
|
|
7850
|
+
self._Tags = None
|
|
7828
7851
|
|
|
7829
7852
|
@property
|
|
7830
7853
|
def LayerName(self):
|
|
@@ -7866,6 +7889,14 @@ class PublishLayerVersionRequest(AbstractModel):
|
|
|
7866
7889
|
def LicenseInfo(self, LicenseInfo):
|
|
7867
7890
|
self._LicenseInfo = LicenseInfo
|
|
7868
7891
|
|
|
7892
|
+
@property
|
|
7893
|
+
def Tags(self):
|
|
7894
|
+
return self._Tags
|
|
7895
|
+
|
|
7896
|
+
@Tags.setter
|
|
7897
|
+
def Tags(self, Tags):
|
|
7898
|
+
self._Tags = Tags
|
|
7899
|
+
|
|
7869
7900
|
|
|
7870
7901
|
def _deserialize(self, params):
|
|
7871
7902
|
self._LayerName = params.get("LayerName")
|
|
@@ -7875,6 +7906,12 @@ class PublishLayerVersionRequest(AbstractModel):
|
|
|
7875
7906
|
self._Content._deserialize(params.get("Content"))
|
|
7876
7907
|
self._Description = params.get("Description")
|
|
7877
7908
|
self._LicenseInfo = params.get("LicenseInfo")
|
|
7909
|
+
if params.get("Tags") is not None:
|
|
7910
|
+
self._Tags = []
|
|
7911
|
+
for item in params.get("Tags"):
|
|
7912
|
+
obj = Tag()
|
|
7913
|
+
obj._deserialize(item)
|
|
7914
|
+
self._Tags.append(obj)
|
|
7878
7915
|
memeber_set = set(params.keys())
|
|
7879
7916
|
for name, value in vars(self).items():
|
|
7880
7917
|
property_name = name[1:]
|
|
@@ -10622,11 +10659,11 @@ class UpdateTriggerStatusRequest(AbstractModel):
|
|
|
10622
10659
|
:type FunctionName: str
|
|
10623
10660
|
:param _TriggerName: 触发器名称
|
|
10624
10661
|
:type TriggerName: str
|
|
10625
|
-
:param _Type:
|
|
10662
|
+
:param _Type: 触发器类型,触发器类型,目前只支持 timer、 cos 、 ckafka三种类型
|
|
10626
10663
|
:type Type: str
|
|
10627
|
-
:param _Qualifier:
|
|
10664
|
+
:param _Qualifier: 触发器在创建时所指向的触发别名或版本,默认值为$LATEST
|
|
10628
10665
|
:type Qualifier: str
|
|
10629
|
-
:param _Namespace:
|
|
10666
|
+
:param _Namespace: 函数所在的命名空间,默认值为default
|
|
10630
10667
|
:type Namespace: str
|
|
10631
10668
|
:param _TriggerDesc: 如果更新的触发器类型为 COS 触发器,该字段为必填值,存放 JSON 格式的数据 {"event":"cos:ObjectCreated:*"},数据内容和 SetTrigger 接口中该字段的格式相同;如果更新的触发器类型为定时触发器或 CMQ 触发器,可以不指定该字段
|
|
10632
10669
|
:type TriggerDesc: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-scf
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1221
|
|
4
4
|
Summary: Tencent Cloud Scf SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1221)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=3kmUZqaWoks9o3bp-2aLReDZK4k_KkpvqHjkGXFLLG8,631
|
|
2
|
+
tencentcloud/scf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/scf/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/scf/v20180416/errorcodes.py,sha256=iToYgO3zFC__nE4az87igW2lQuFgwDpor3C_qjGVcR8,33381
|
|
5
|
+
tencentcloud/scf/v20180416/models.py,sha256=esaTEn4WlhGpxvdrNy3-Ni4XTSGtyGjaJWPGLtVZrSs,335731
|
|
6
|
+
tencentcloud/scf/v20180416/scf_client.py,sha256=loj71YNN0NMmHrpkQTHQoMWCXSdmwIBfx2X4TE2S7Nc,44583
|
|
7
|
+
tencentcloud_sdk_python_scf-3.0.1221.dist-info/METADATA,sha256=JZYAOAjI5c28O0vhvoubYZjueClqHeyWIEpP9J54pcI,1492
|
|
8
|
+
tencentcloud_sdk_python_scf-3.0.1221.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_scf-3.0.1221.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_scf-3.0.1221.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=ifPvsNfDMlrvk7j5Y3lpbs7mIhtoj0mKlX3oNcORvGU,631
|
|
2
|
-
tencentcloud/scf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/scf/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/scf/v20180416/errorcodes.py,sha256=iToYgO3zFC__nE4az87igW2lQuFgwDpor3C_qjGVcR8,33381
|
|
5
|
-
tencentcloud/scf/v20180416/models.py,sha256=QiSSU12NLM2PwJQ0O3Oo94_1owUtR3uZFa2FfzLqlxw,334649
|
|
6
|
-
tencentcloud/scf/v20180416/scf_client.py,sha256=loj71YNN0NMmHrpkQTHQoMWCXSdmwIBfx2X4TE2S7Nc,44583
|
|
7
|
-
tencentcloud_sdk_python_scf-3.0.1212.dist-info/METADATA,sha256=2NrsEAlDOU0wtlkqhpzbT-KPwF7FPX1O4pkBc2qPOxY,1492
|
|
8
|
-
tencentcloud_sdk_python_scf-3.0.1212.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_scf-3.0.1212.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_scf-3.0.1212.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|