tencentcloud-sdk-python-es 3.0.1440__tar.gz → 3.0.1446__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.1446}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/setup.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/models.py +115 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud_sdk_python_es.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-es-3.0.1446/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.1446}/README.rst +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/setup.cfg +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/models.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud_sdk_python_es.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud_sdk_python_es.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1440 → tencentcloud-sdk-python-es-3.0.1446}/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.1446,<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(),
|
|
@@ -9560,6 +9560,57 @@ class GetRequestTargetNodeTypesResponse(AbstractModel):
|
|
|
9560
9560
|
self._RequestId = params.get("RequestId")
|
|
9561
9561
|
|
|
9562
9562
|
|
|
9563
|
+
class GpuInfo(AbstractModel):
|
|
9564
|
+
"""节点Gpu信息
|
|
9565
|
+
|
|
9566
|
+
"""
|
|
9567
|
+
|
|
9568
|
+
def __init__(self):
|
|
9569
|
+
r"""
|
|
9570
|
+
:param _GpuCount: Gpu块数
|
|
9571
|
+
:type GpuCount: int
|
|
9572
|
+
:param _GpuType: Gpu类型
|
|
9573
|
+
:type GpuType: str
|
|
9574
|
+
"""
|
|
9575
|
+
self._GpuCount = None
|
|
9576
|
+
self._GpuType = None
|
|
9577
|
+
|
|
9578
|
+
@property
|
|
9579
|
+
def GpuCount(self):
|
|
9580
|
+
"""Gpu块数
|
|
9581
|
+
:rtype: int
|
|
9582
|
+
"""
|
|
9583
|
+
return self._GpuCount
|
|
9584
|
+
|
|
9585
|
+
@GpuCount.setter
|
|
9586
|
+
def GpuCount(self, GpuCount):
|
|
9587
|
+
self._GpuCount = GpuCount
|
|
9588
|
+
|
|
9589
|
+
@property
|
|
9590
|
+
def GpuType(self):
|
|
9591
|
+
"""Gpu类型
|
|
9592
|
+
:rtype: str
|
|
9593
|
+
"""
|
|
9594
|
+
return self._GpuType
|
|
9595
|
+
|
|
9596
|
+
@GpuType.setter
|
|
9597
|
+
def GpuType(self, GpuType):
|
|
9598
|
+
self._GpuType = GpuType
|
|
9599
|
+
|
|
9600
|
+
|
|
9601
|
+
def _deserialize(self, params):
|
|
9602
|
+
self._GpuCount = params.get("GpuCount")
|
|
9603
|
+
self._GpuType = params.get("GpuType")
|
|
9604
|
+
memeber_set = set(params.keys())
|
|
9605
|
+
for name, value in vars(self).items():
|
|
9606
|
+
property_name = name[1:]
|
|
9607
|
+
if property_name in memeber_set:
|
|
9608
|
+
memeber_set.remove(property_name)
|
|
9609
|
+
if len(memeber_set) > 0:
|
|
9610
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9611
|
+
|
|
9612
|
+
|
|
9613
|
+
|
|
9563
9614
|
class IndexMetaField(AbstractModel):
|
|
9564
9615
|
"""索引元数据字段
|
|
9565
9616
|
|
|
@@ -10737,6 +10788,10 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10737
10788
|
:param _EnableDestroyProtection: 开启集群保护:OPEN-开启,CLOSE-关闭
|
|
10738
10789
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10739
10790
|
:type EnableDestroyProtection: str
|
|
10791
|
+
:param _ShowKibanaIpPort: kibana内网访问地址
|
|
10792
|
+
:type ShowKibanaIpPort: str
|
|
10793
|
+
:param _IsCdzLite: 是否为CDZLite可用区
|
|
10794
|
+
:type IsCdzLite: bool
|
|
10740
10795
|
"""
|
|
10741
10796
|
self._InstanceId = None
|
|
10742
10797
|
self._InstanceName = None
|
|
@@ -10832,6 +10887,8 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10832
10887
|
self._EnableScheduleRecoverGroup = None
|
|
10833
10888
|
self._EnableScheduleOperationDuration = None
|
|
10834
10889
|
self._EnableDestroyProtection = None
|
|
10890
|
+
self._ShowKibanaIpPort = None
|
|
10891
|
+
self._IsCdzLite = None
|
|
10835
10892
|
|
|
10836
10893
|
@property
|
|
10837
10894
|
def InstanceId(self):
|
|
@@ -11930,6 +11987,28 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
11930
11987
|
def EnableDestroyProtection(self, EnableDestroyProtection):
|
|
11931
11988
|
self._EnableDestroyProtection = EnableDestroyProtection
|
|
11932
11989
|
|
|
11990
|
+
@property
|
|
11991
|
+
def ShowKibanaIpPort(self):
|
|
11992
|
+
"""kibana内网访问地址
|
|
11993
|
+
:rtype: str
|
|
11994
|
+
"""
|
|
11995
|
+
return self._ShowKibanaIpPort
|
|
11996
|
+
|
|
11997
|
+
@ShowKibanaIpPort.setter
|
|
11998
|
+
def ShowKibanaIpPort(self, ShowKibanaIpPort):
|
|
11999
|
+
self._ShowKibanaIpPort = ShowKibanaIpPort
|
|
12000
|
+
|
|
12001
|
+
@property
|
|
12002
|
+
def IsCdzLite(self):
|
|
12003
|
+
"""是否为CDZLite可用区
|
|
12004
|
+
:rtype: bool
|
|
12005
|
+
"""
|
|
12006
|
+
return self._IsCdzLite
|
|
12007
|
+
|
|
12008
|
+
@IsCdzLite.setter
|
|
12009
|
+
def IsCdzLite(self, IsCdzLite):
|
|
12010
|
+
self._IsCdzLite = IsCdzLite
|
|
12011
|
+
|
|
11933
12012
|
|
|
11934
12013
|
def _deserialize(self, params):
|
|
11935
12014
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -12074,6 +12153,8 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
12074
12153
|
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
|
12075
12154
|
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
|
12076
12155
|
self._EnableDestroyProtection = params.get("EnableDestroyProtection")
|
|
12156
|
+
self._ShowKibanaIpPort = params.get("ShowKibanaIpPort")
|
|
12157
|
+
self._IsCdzLite = params.get("IsCdzLite")
|
|
12077
12158
|
memeber_set = set(params.keys())
|
|
12078
12159
|
for name, value in vars(self).items():
|
|
12079
12160
|
property_name = name[1:]
|
|
@@ -14345,6 +14426,9 @@ class NodeInfo(AbstractModel):
|
|
|
14345
14426
|
:param _DiskEnhance: /
|
|
14346
14427
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
14347
14428
|
:type DiskEnhance: int
|
|
14429
|
+
:param _GpuInfo: 节点Gpu信息
|
|
14430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14431
|
+
:type GpuInfo: :class:`tencentcloud.es.v20180416.models.GpuInfo`
|
|
14348
14432
|
"""
|
|
14349
14433
|
self._NodeNum = None
|
|
14350
14434
|
self._NodeType = None
|
|
@@ -14357,6 +14441,7 @@ class NodeInfo(AbstractModel):
|
|
|
14357
14441
|
self._CpuNum = None
|
|
14358
14442
|
self._MemSize = None
|
|
14359
14443
|
self._DiskEnhance = None
|
|
14444
|
+
self._GpuInfo = None
|
|
14360
14445
|
|
|
14361
14446
|
@property
|
|
14362
14447
|
def NodeNum(self):
|
|
@@ -14486,6 +14571,18 @@ class NodeInfo(AbstractModel):
|
|
|
14486
14571
|
def DiskEnhance(self, DiskEnhance):
|
|
14487
14572
|
self._DiskEnhance = DiskEnhance
|
|
14488
14573
|
|
|
14574
|
+
@property
|
|
14575
|
+
def GpuInfo(self):
|
|
14576
|
+
"""节点Gpu信息
|
|
14577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14578
|
+
:rtype: :class:`tencentcloud.es.v20180416.models.GpuInfo`
|
|
14579
|
+
"""
|
|
14580
|
+
return self._GpuInfo
|
|
14581
|
+
|
|
14582
|
+
@GpuInfo.setter
|
|
14583
|
+
def GpuInfo(self, GpuInfo):
|
|
14584
|
+
self._GpuInfo = GpuInfo
|
|
14585
|
+
|
|
14489
14586
|
|
|
14490
14587
|
def _deserialize(self, params):
|
|
14491
14588
|
self._NodeNum = params.get("NodeNum")
|
|
@@ -14501,6 +14598,9 @@ class NodeInfo(AbstractModel):
|
|
|
14501
14598
|
self._CpuNum = params.get("CpuNum")
|
|
14502
14599
|
self._MemSize = params.get("MemSize")
|
|
14503
14600
|
self._DiskEnhance = params.get("DiskEnhance")
|
|
14601
|
+
if params.get("GpuInfo") is not None:
|
|
14602
|
+
self._GpuInfo = GpuInfo()
|
|
14603
|
+
self._GpuInfo._deserialize(params.get("GpuInfo"))
|
|
14504
14604
|
memeber_set = set(params.keys())
|
|
14505
14605
|
for name, value in vars(self).items():
|
|
14506
14606
|
property_name = name[1:]
|
|
@@ -15874,6 +15974,8 @@ class RestartNodesRequest(AbstractModel):
|
|
|
15874
15974
|
:type EnableScheduleRecoverGroup: bool
|
|
15875
15975
|
:param _EnableScheduleOperationDuration: 置放群组异步任务时间段
|
|
15876
15976
|
:type EnableScheduleOperationDuration: :class:`tencentcloud.es.v20180416.models.EnableScheduleOperationDuration`
|
|
15977
|
+
:param _EventTypeIds: 事件id列表
|
|
15978
|
+
:type EventTypeIds: list of str
|
|
15877
15979
|
"""
|
|
15878
15980
|
self._InstanceId = None
|
|
15879
15981
|
self._NodeNames = None
|
|
@@ -15885,6 +15987,7 @@ class RestartNodesRequest(AbstractModel):
|
|
|
15885
15987
|
self._ShardAllocationBytes = None
|
|
15886
15988
|
self._EnableScheduleRecoverGroup = None
|
|
15887
15989
|
self._EnableScheduleOperationDuration = None
|
|
15990
|
+
self._EventTypeIds = None
|
|
15888
15991
|
|
|
15889
15992
|
@property
|
|
15890
15993
|
def InstanceId(self):
|
|
@@ -15996,6 +16099,17 @@ class RestartNodesRequest(AbstractModel):
|
|
|
15996
16099
|
def EnableScheduleOperationDuration(self, EnableScheduleOperationDuration):
|
|
15997
16100
|
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration
|
|
15998
16101
|
|
|
16102
|
+
@property
|
|
16103
|
+
def EventTypeIds(self):
|
|
16104
|
+
"""事件id列表
|
|
16105
|
+
:rtype: list of str
|
|
16106
|
+
"""
|
|
16107
|
+
return self._EventTypeIds
|
|
16108
|
+
|
|
16109
|
+
@EventTypeIds.setter
|
|
16110
|
+
def EventTypeIds(self, EventTypeIds):
|
|
16111
|
+
self._EventTypeIds = EventTypeIds
|
|
16112
|
+
|
|
15999
16113
|
|
|
16000
16114
|
def _deserialize(self, params):
|
|
16001
16115
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -16010,6 +16124,7 @@ class RestartNodesRequest(AbstractModel):
|
|
|
16010
16124
|
if params.get("EnableScheduleOperationDuration") is not None:
|
|
16011
16125
|
self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
|
|
16012
16126
|
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
|
16127
|
+
self._EventTypeIds = params.get("EventTypeIds")
|
|
16013
16128
|
memeber_set = set(params.keys())
|
|
16014
16129
|
for name, value in vars(self).items():
|
|
16015
16130
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1446
|
|
@@ -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
|