tencentcloud-sdk-python-scf 3.0.1266__tar.gz → 3.0.1293__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.1266 → tencentcloud-sdk-python-scf-3.0.1293}/PKG-INFO +3 -3
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/setup.cfg +0 -1
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/setup.py +1 -1
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud/scf/v20180416/models.py +17 -2
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud_sdk_python_scf.egg-info/PKG-INFO +3 -3
- tencentcloud-sdk-python-scf-3.0.1293/tencentcloud_sdk_python_scf.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-scf-3.0.1266/tencentcloud_sdk_python_scf.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/README.rst +0 -0
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud/scf/__init__.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud/scf/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud/scf/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud/scf/v20180416/scf_client.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud_sdk_python_scf.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud_sdk_python_scf.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-scf-3.0.1266 → tencentcloud-sdk-python-scf-3.0.1293}/tencentcloud_sdk_python_scf.egg-info/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 1.
|
|
1
|
+
Metadata-Version: 1.2
|
|
2
2
|
Name: tencentcloud-sdk-python-scf
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1293
|
|
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
|
|
7
|
-
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
8
|
License: Apache License 2.0
|
|
9
9
|
Description: ============================
|
|
10
10
|
Tencent Cloud SDK for Python
|
|
@@ -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.1293"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Scf SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -9639,8 +9639,11 @@ class NamespaceResourceEnv(AbstractModel):
|
|
|
9639
9639
|
:param _TKE: 基于TKE集群的资源池
|
|
9640
9640
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9641
9641
|
:type TKE: :class:`tencentcloud.scf.v20180416.models.NamespaceResourceEnvTKE`
|
|
9642
|
+
:param _OFFLINE: 近离线计算类型的命名空间
|
|
9643
|
+
:type OFFLINE: bool
|
|
9642
9644
|
"""
|
|
9643
9645
|
self._TKE = None
|
|
9646
|
+
self._OFFLINE = None
|
|
9644
9647
|
|
|
9645
9648
|
@property
|
|
9646
9649
|
def TKE(self):
|
|
@@ -9654,11 +9657,23 @@ class NamespaceResourceEnv(AbstractModel):
|
|
|
9654
9657
|
def TKE(self, TKE):
|
|
9655
9658
|
self._TKE = TKE
|
|
9656
9659
|
|
|
9660
|
+
@property
|
|
9661
|
+
def OFFLINE(self):
|
|
9662
|
+
"""近离线计算类型的命名空间
|
|
9663
|
+
:rtype: bool
|
|
9664
|
+
"""
|
|
9665
|
+
return self._OFFLINE
|
|
9666
|
+
|
|
9667
|
+
@OFFLINE.setter
|
|
9668
|
+
def OFFLINE(self, OFFLINE):
|
|
9669
|
+
self._OFFLINE = OFFLINE
|
|
9670
|
+
|
|
9657
9671
|
|
|
9658
9672
|
def _deserialize(self, params):
|
|
9659
9673
|
if params.get("TKE") is not None:
|
|
9660
9674
|
self._TKE = NamespaceResourceEnvTKE()
|
|
9661
9675
|
self._TKE._deserialize(params.get("TKE"))
|
|
9676
|
+
self._OFFLINE = params.get("OFFLINE")
|
|
9662
9677
|
memeber_set = set(params.keys())
|
|
9663
9678
|
for name, value in vars(self).items():
|
|
9664
9679
|
property_name = name[1:]
|
|
@@ -12521,7 +12536,7 @@ class UpdateCustomDomainRequest(AbstractModel):
|
|
|
12521
12536
|
:type CertConfig: :class:`tencentcloud.scf.v20180416.models.CertConf`
|
|
12522
12537
|
:param _WafConfig: web 应用防火墙配置
|
|
12523
12538
|
:type WafConfig: :class:`tencentcloud.scf.v20180416.models.WafConf`
|
|
12524
|
-
:param _EndpointsConfig:
|
|
12539
|
+
:param _EndpointsConfig: 路由配置
|
|
12525
12540
|
:type EndpointsConfig: list of EndpointsConf
|
|
12526
12541
|
"""
|
|
12527
12542
|
self._Domain = None
|
|
@@ -12576,7 +12591,7 @@ class UpdateCustomDomainRequest(AbstractModel):
|
|
|
12576
12591
|
|
|
12577
12592
|
@property
|
|
12578
12593
|
def EndpointsConfig(self):
|
|
12579
|
-
"""
|
|
12594
|
+
"""路由配置
|
|
12580
12595
|
:rtype: list of EndpointsConf
|
|
12581
12596
|
"""
|
|
12582
12597
|
return self._EndpointsConfig
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 1.
|
|
1
|
+
Metadata-Version: 1.2
|
|
2
2
|
Name: tencentcloud-sdk-python-scf
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1293
|
|
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
|
|
7
|
-
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
8
|
License: Apache License 2.0
|
|
9
9
|
Description: ============================
|
|
10
10
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1293
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1266
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|