tencentcloud-sdk-python-es 3.0.1443__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.1443 → tencentcloud-sdk-python-es-3.0.1446}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/setup.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/models.py +85 -0
- {tencentcloud-sdk-python-es-3.0.1443 → 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.1443/tencentcloud_sdk_python_es.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/README.rst +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/setup.cfg +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20180416/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud/es/v20250101/models.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud_sdk_python_es.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → tencentcloud-sdk-python-es-3.0.1446}/tencentcloud_sdk_python_es.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1443 → 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
|
|
|
@@ -10739,6 +10790,8 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10739
10790
|
:type EnableDestroyProtection: str
|
|
10740
10791
|
:param _ShowKibanaIpPort: kibana内网访问地址
|
|
10741
10792
|
:type ShowKibanaIpPort: str
|
|
10793
|
+
:param _IsCdzLite: 是否为CDZLite可用区
|
|
10794
|
+
:type IsCdzLite: bool
|
|
10742
10795
|
"""
|
|
10743
10796
|
self._InstanceId = None
|
|
10744
10797
|
self._InstanceName = None
|
|
@@ -10835,6 +10888,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10835
10888
|
self._EnableScheduleOperationDuration = None
|
|
10836
10889
|
self._EnableDestroyProtection = None
|
|
10837
10890
|
self._ShowKibanaIpPort = None
|
|
10891
|
+
self._IsCdzLite = None
|
|
10838
10892
|
|
|
10839
10893
|
@property
|
|
10840
10894
|
def InstanceId(self):
|
|
@@ -11944,6 +11998,17 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
11944
11998
|
def ShowKibanaIpPort(self, ShowKibanaIpPort):
|
|
11945
11999
|
self._ShowKibanaIpPort = ShowKibanaIpPort
|
|
11946
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
|
+
|
|
11947
12012
|
|
|
11948
12013
|
def _deserialize(self, params):
|
|
11949
12014
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -12089,6 +12154,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
12089
12154
|
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
|
12090
12155
|
self._EnableDestroyProtection = params.get("EnableDestroyProtection")
|
|
12091
12156
|
self._ShowKibanaIpPort = params.get("ShowKibanaIpPort")
|
|
12157
|
+
self._IsCdzLite = params.get("IsCdzLite")
|
|
12092
12158
|
memeber_set = set(params.keys())
|
|
12093
12159
|
for name, value in vars(self).items():
|
|
12094
12160
|
property_name = name[1:]
|
|
@@ -14360,6 +14426,9 @@ class NodeInfo(AbstractModel):
|
|
|
14360
14426
|
:param _DiskEnhance: /
|
|
14361
14427
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
14362
14428
|
:type DiskEnhance: int
|
|
14429
|
+
:param _GpuInfo: 节点Gpu信息
|
|
14430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14431
|
+
:type GpuInfo: :class:`tencentcloud.es.v20180416.models.GpuInfo`
|
|
14363
14432
|
"""
|
|
14364
14433
|
self._NodeNum = None
|
|
14365
14434
|
self._NodeType = None
|
|
@@ -14372,6 +14441,7 @@ class NodeInfo(AbstractModel):
|
|
|
14372
14441
|
self._CpuNum = None
|
|
14373
14442
|
self._MemSize = None
|
|
14374
14443
|
self._DiskEnhance = None
|
|
14444
|
+
self._GpuInfo = None
|
|
14375
14445
|
|
|
14376
14446
|
@property
|
|
14377
14447
|
def NodeNum(self):
|
|
@@ -14501,6 +14571,18 @@ class NodeInfo(AbstractModel):
|
|
|
14501
14571
|
def DiskEnhance(self, DiskEnhance):
|
|
14502
14572
|
self._DiskEnhance = DiskEnhance
|
|
14503
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
|
+
|
|
14504
14586
|
|
|
14505
14587
|
def _deserialize(self, params):
|
|
14506
14588
|
self._NodeNum = params.get("NodeNum")
|
|
@@ -14516,6 +14598,9 @@ class NodeInfo(AbstractModel):
|
|
|
14516
14598
|
self._CpuNum = params.get("CpuNum")
|
|
14517
14599
|
self._MemSize = params.get("MemSize")
|
|
14518
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"))
|
|
14519
14604
|
memeber_set = set(params.keys())
|
|
14520
14605
|
for name, value in vars(self).items():
|
|
14521
14606
|
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.1443
|
|
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
|