tencentcloud-sdk-python-es 3.0.1193__tar.gz → 3.0.1194__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.
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/setup.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud/es/v20180416/models.py +48 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud_sdk_python_es.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-es-3.0.1194/tencentcloud_sdk_python_es.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-es-3.0.1193/tencentcloud_sdk_python_es.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/README.rst +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/setup.cfg +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud/es/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud/es/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud/es/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud/es/v20180416/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud_sdk_python_es.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud_sdk_python_es.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1193 → tencentcloud-sdk-python-es-3.0.1194}/tencentcloud_sdk_python_es.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-es',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1194"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Es SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -11695,6 +11695,10 @@ class RestartNodesRequest(AbstractModel):
|
|
|
11695
11695
|
:type IsOffline: bool
|
|
11696
11696
|
:param _CvmDelayOnlineTime: cvm延迟上架时间
|
|
11697
11697
|
:type CvmDelayOnlineTime: int
|
|
11698
|
+
:param _ShardAllocationConcurrents: 分片迁移并发数
|
|
11699
|
+
:type ShardAllocationConcurrents: int
|
|
11700
|
+
:param _ShardAllocationBytes: 分片迁移并发速度
|
|
11701
|
+
:type ShardAllocationBytes: int
|
|
11698
11702
|
"""
|
|
11699
11703
|
self._InstanceId = None
|
|
11700
11704
|
self._NodeNames = None
|
|
@@ -11702,6 +11706,8 @@ class RestartNodesRequest(AbstractModel):
|
|
|
11702
11706
|
self._RestartMode = None
|
|
11703
11707
|
self._IsOffline = None
|
|
11704
11708
|
self._CvmDelayOnlineTime = None
|
|
11709
|
+
self._ShardAllocationConcurrents = None
|
|
11710
|
+
self._ShardAllocationBytes = None
|
|
11705
11711
|
|
|
11706
11712
|
@property
|
|
11707
11713
|
def InstanceId(self):
|
|
@@ -11751,6 +11757,22 @@ class RestartNodesRequest(AbstractModel):
|
|
|
11751
11757
|
def CvmDelayOnlineTime(self, CvmDelayOnlineTime):
|
|
11752
11758
|
self._CvmDelayOnlineTime = CvmDelayOnlineTime
|
|
11753
11759
|
|
|
11760
|
+
@property
|
|
11761
|
+
def ShardAllocationConcurrents(self):
|
|
11762
|
+
return self._ShardAllocationConcurrents
|
|
11763
|
+
|
|
11764
|
+
@ShardAllocationConcurrents.setter
|
|
11765
|
+
def ShardAllocationConcurrents(self, ShardAllocationConcurrents):
|
|
11766
|
+
self._ShardAllocationConcurrents = ShardAllocationConcurrents
|
|
11767
|
+
|
|
11768
|
+
@property
|
|
11769
|
+
def ShardAllocationBytes(self):
|
|
11770
|
+
return self._ShardAllocationBytes
|
|
11771
|
+
|
|
11772
|
+
@ShardAllocationBytes.setter
|
|
11773
|
+
def ShardAllocationBytes(self, ShardAllocationBytes):
|
|
11774
|
+
self._ShardAllocationBytes = ShardAllocationBytes
|
|
11775
|
+
|
|
11754
11776
|
|
|
11755
11777
|
def _deserialize(self, params):
|
|
11756
11778
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -11759,6 +11781,8 @@ class RestartNodesRequest(AbstractModel):
|
|
|
11759
11781
|
self._RestartMode = params.get("RestartMode")
|
|
11760
11782
|
self._IsOffline = params.get("IsOffline")
|
|
11761
11783
|
self._CvmDelayOnlineTime = params.get("CvmDelayOnlineTime")
|
|
11784
|
+
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
|
11785
|
+
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
|
11762
11786
|
memeber_set = set(params.keys())
|
|
11763
11787
|
for name, value in vars(self).items():
|
|
11764
11788
|
property_name = name[1:]
|
|
@@ -14938,6 +14962,10 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
|
14938
14962
|
:type SkipCheckForceRestart: bool
|
|
14939
14963
|
:param _CvmDelayOnlineTime: cvm延迟上架参数
|
|
14940
14964
|
:type CvmDelayOnlineTime: int
|
|
14965
|
+
:param _ShardAllocationConcurrents: 分片迁移并发数
|
|
14966
|
+
:type ShardAllocationConcurrents: int
|
|
14967
|
+
:param _ShardAllocationBytes: 分片迁移并发速度
|
|
14968
|
+
:type ShardAllocationBytes: int
|
|
14941
14969
|
"""
|
|
14942
14970
|
self._InstanceId = None
|
|
14943
14971
|
self._EsVersion = None
|
|
@@ -14948,6 +14976,8 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
|
14948
14976
|
self._CosBackup = None
|
|
14949
14977
|
self._SkipCheckForceRestart = None
|
|
14950
14978
|
self._CvmDelayOnlineTime = None
|
|
14979
|
+
self._ShardAllocationConcurrents = None
|
|
14980
|
+
self._ShardAllocationBytes = None
|
|
14951
14981
|
|
|
14952
14982
|
@property
|
|
14953
14983
|
def InstanceId(self):
|
|
@@ -15021,6 +15051,22 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
|
15021
15051
|
def CvmDelayOnlineTime(self, CvmDelayOnlineTime):
|
|
15022
15052
|
self._CvmDelayOnlineTime = CvmDelayOnlineTime
|
|
15023
15053
|
|
|
15054
|
+
@property
|
|
15055
|
+
def ShardAllocationConcurrents(self):
|
|
15056
|
+
return self._ShardAllocationConcurrents
|
|
15057
|
+
|
|
15058
|
+
@ShardAllocationConcurrents.setter
|
|
15059
|
+
def ShardAllocationConcurrents(self, ShardAllocationConcurrents):
|
|
15060
|
+
self._ShardAllocationConcurrents = ShardAllocationConcurrents
|
|
15061
|
+
|
|
15062
|
+
@property
|
|
15063
|
+
def ShardAllocationBytes(self):
|
|
15064
|
+
return self._ShardAllocationBytes
|
|
15065
|
+
|
|
15066
|
+
@ShardAllocationBytes.setter
|
|
15067
|
+
def ShardAllocationBytes(self, ShardAllocationBytes):
|
|
15068
|
+
self._ShardAllocationBytes = ShardAllocationBytes
|
|
15069
|
+
|
|
15024
15070
|
|
|
15025
15071
|
def _deserialize(self, params):
|
|
15026
15072
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -15032,6 +15078,8 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
|
15032
15078
|
self._CosBackup = params.get("CosBackup")
|
|
15033
15079
|
self._SkipCheckForceRestart = params.get("SkipCheckForceRestart")
|
|
15034
15080
|
self._CvmDelayOnlineTime = params.get("CvmDelayOnlineTime")
|
|
15081
|
+
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
|
15082
|
+
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
|
15035
15083
|
memeber_set = set(params.keys())
|
|
15036
15084
|
for name, value in vars(self).items():
|
|
15037
15085
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1194
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1193
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|