tencentcloud-sdk-python-es 3.0.1332__tar.gz → 3.0.1334__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.1332 → tencentcloud-sdk-python-es-3.0.1334}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/setup.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud/es/v20180416/models.py +15 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud_sdk_python_es.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-es-3.0.1334/tencentcloud_sdk_python_es.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-es-3.0.1332/tencentcloud_sdk_python_es.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/README.rst +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/setup.cfg +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud/es/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud/es/v20180416/__init__.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud/es/v20180416/errorcodes.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud/es/v20180416/es_client.py +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud_sdk_python_es.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/tencentcloud_sdk_python_es.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-es-3.0.1332 → tencentcloud-sdk-python-es-3.0.1334}/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.1334"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Es SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -16613,9 +16613,12 @@ class ServerlessIndexSettingsField(AbstractModel):
|
|
|
16613
16613
|
:param _RefreshInterval: 索引刷新频率
|
|
16614
16614
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16615
16615
|
:type RefreshInterval: str
|
|
16616
|
+
:param _CustomSetting: 自定义参数
|
|
16617
|
+
:type CustomSetting: str
|
|
16616
16618
|
"""
|
|
16617
16619
|
self._NumberOfShards = None
|
|
16618
16620
|
self._RefreshInterval = None
|
|
16621
|
+
self._CustomSetting = None
|
|
16619
16622
|
|
|
16620
16623
|
@property
|
|
16621
16624
|
def NumberOfShards(self):
|
|
@@ -16641,10 +16644,22 @@ class ServerlessIndexSettingsField(AbstractModel):
|
|
|
16641
16644
|
def RefreshInterval(self, RefreshInterval):
|
|
16642
16645
|
self._RefreshInterval = RefreshInterval
|
|
16643
16646
|
|
|
16647
|
+
@property
|
|
16648
|
+
def CustomSetting(self):
|
|
16649
|
+
"""自定义参数
|
|
16650
|
+
:rtype: str
|
|
16651
|
+
"""
|
|
16652
|
+
return self._CustomSetting
|
|
16653
|
+
|
|
16654
|
+
@CustomSetting.setter
|
|
16655
|
+
def CustomSetting(self, CustomSetting):
|
|
16656
|
+
self._CustomSetting = CustomSetting
|
|
16657
|
+
|
|
16644
16658
|
|
|
16645
16659
|
def _deserialize(self, params):
|
|
16646
16660
|
self._NumberOfShards = params.get("NumberOfShards")
|
|
16647
16661
|
self._RefreshInterval = params.get("RefreshInterval")
|
|
16662
|
+
self._CustomSetting = params.get("CustomSetting")
|
|
16648
16663
|
memeber_set = set(params.keys())
|
|
16649
16664
|
for name, value in vars(self).items():
|
|
16650
16665
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1334
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1332
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|