tencentcloud-sdk-python-es 3.0.1440__tar.gz → 3.0.1443__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.1440 → tencentcloud-sdk-python-es-3.0.1443}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/setup.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20180416/models.py +30 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud_sdk_python_es.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-es-3.0.1443/tencentcloud_sdk_python_es.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-es-3.0.1440/tencentcloud_sdk_python_es.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/README.rst +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/setup.cfg +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20180416/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20250101/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20250101/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20250101/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud/es/v20250101/models.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud_sdk_python_es.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/tencentcloud_sdk_python_es.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1443}/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.1443,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Es SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -10737,6 +10737,8 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10737
10737
|
:param _EnableDestroyProtection: 开启集群保护:OPEN-开启,CLOSE-关闭
|
|
10738
10738
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10739
10739
|
:type EnableDestroyProtection: str
|
|
10740
|
+
:param _ShowKibanaIpPort: kibana内网访问地址
|
|
10741
|
+
:type ShowKibanaIpPort: str
|
|
10740
10742
|
"""
|
|
10741
10743
|
self._InstanceId = None
|
|
10742
10744
|
self._InstanceName = None
|
|
@@ -10832,6 +10834,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10832
10834
|
self._EnableScheduleRecoverGroup = None
|
|
10833
10835
|
self._EnableScheduleOperationDuration = None
|
|
10834
10836
|
self._EnableDestroyProtection = None
|
|
10837
|
+
self._ShowKibanaIpPort = None
|
|
10835
10838
|
|
|
10836
10839
|
@property
|
|
10837
10840
|
def InstanceId(self):
|
|
@@ -11930,6 +11933,17 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
11930
11933
|
def EnableDestroyProtection(self, EnableDestroyProtection):
|
|
11931
11934
|
self._EnableDestroyProtection = EnableDestroyProtection
|
|
11932
11935
|
|
|
11936
|
+
@property
|
|
11937
|
+
def ShowKibanaIpPort(self):
|
|
11938
|
+
"""kibana内网访问地址
|
|
11939
|
+
:rtype: str
|
|
11940
|
+
"""
|
|
11941
|
+
return self._ShowKibanaIpPort
|
|
11942
|
+
|
|
11943
|
+
@ShowKibanaIpPort.setter
|
|
11944
|
+
def ShowKibanaIpPort(self, ShowKibanaIpPort):
|
|
11945
|
+
self._ShowKibanaIpPort = ShowKibanaIpPort
|
|
11946
|
+
|
|
11933
11947
|
|
|
11934
11948
|
def _deserialize(self, params):
|
|
11935
11949
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -12074,6 +12088,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
12074
12088
|
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
|
12075
12089
|
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
|
12076
12090
|
self._EnableDestroyProtection = params.get("EnableDestroyProtection")
|
|
12091
|
+
self._ShowKibanaIpPort = params.get("ShowKibanaIpPort")
|
|
12077
12092
|
memeber_set = set(params.keys())
|
|
12078
12093
|
for name, value in vars(self).items():
|
|
12079
12094
|
property_name = name[1:]
|
|
@@ -15874,6 +15889,8 @@ class RestartNodesRequest(AbstractModel):
|
|
|
15874
15889
|
:type EnableScheduleRecoverGroup: bool
|
|
15875
15890
|
:param _EnableScheduleOperationDuration: 置放群组异步任务时间段
|
|
15876
15891
|
:type EnableScheduleOperationDuration: :class:`tencentcloud.es.v20180416.models.EnableScheduleOperationDuration`
|
|
15892
|
+
:param _EventTypeIds: 事件id列表
|
|
15893
|
+
:type EventTypeIds: list of str
|
|
15877
15894
|
"""
|
|
15878
15895
|
self._InstanceId = None
|
|
15879
15896
|
self._NodeNames = None
|
|
@@ -15885,6 +15902,7 @@ class RestartNodesRequest(AbstractModel):
|
|
|
15885
15902
|
self._ShardAllocationBytes = None
|
|
15886
15903
|
self._EnableScheduleRecoverGroup = None
|
|
15887
15904
|
self._EnableScheduleOperationDuration = None
|
|
15905
|
+
self._EventTypeIds = None
|
|
15888
15906
|
|
|
15889
15907
|
@property
|
|
15890
15908
|
def InstanceId(self):
|
|
@@ -15996,6 +16014,17 @@ class RestartNodesRequest(AbstractModel):
|
|
|
15996
16014
|
def EnableScheduleOperationDuration(self, EnableScheduleOperationDuration):
|
|
15997
16015
|
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration
|
|
15998
16016
|
|
|
16017
|
+
@property
|
|
16018
|
+
def EventTypeIds(self):
|
|
16019
|
+
"""事件id列表
|
|
16020
|
+
:rtype: list of str
|
|
16021
|
+
"""
|
|
16022
|
+
return self._EventTypeIds
|
|
16023
|
+
|
|
16024
|
+
@EventTypeIds.setter
|
|
16025
|
+
def EventTypeIds(self, EventTypeIds):
|
|
16026
|
+
self._EventTypeIds = EventTypeIds
|
|
16027
|
+
|
|
15999
16028
|
|
|
16000
16029
|
def _deserialize(self, params):
|
|
16001
16030
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -16010,6 +16039,7 @@ class RestartNodesRequest(AbstractModel):
|
|
|
16010
16039
|
if params.get("EnableScheduleOperationDuration") is not None:
|
|
16011
16040
|
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
|
16012
16041
|
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
|
16042
|
+
self._EventTypeIds = params.get("EventTypeIds")
|
|
16013
16043
|
memeber_set = set(params.keys())
|
|
16014
16044
|
for name, value in vars(self).items():
|
|
16015
16045
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1443
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1440
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|