tencentcloud-sdk-python-scf 3.0.1276__tar.gz → 3.0.1290__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.1276 → tencentcloud-sdk-python-scf-3.0.1290}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/setup.py +1 -1
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud/scf/v20180416/models.py +15 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud_sdk_python_scf.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-scf-3.0.1290/tencentcloud_sdk_python_scf.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-scf-3.0.1276/tencentcloud_sdk_python_scf.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/README.rst +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/setup.cfg +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud/scf/__init__.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud/scf/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud/scf/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud/scf/v20180416/scf_client.py +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud_sdk_python_scf.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/tencentcloud_sdk_python_scf.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-scf-3.0.1276 → tencentcloud-sdk-python-scf-3.0.1290}/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.1290"],
|
|
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:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1290
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1276
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|