tencentcloud-sdk-python-redis 3.0.1130__tar.gz → 3.0.1133__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-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/setup.py +1 -1
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud/redis/v20180412/models.py +15 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud_sdk_python_redis.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-redis-3.0.1133/tencentcloud_sdk_python_redis.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-redis-3.0.1130/tencentcloud_sdk_python_redis.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/README.rst +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/setup.cfg +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud/redis/__init__.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud/redis/v20180412/__init__.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud/redis/v20180412/errorcodes.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud/redis/v20180412/redis_client.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud_sdk_python_redis.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud_sdk_python_redis.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/tencentcloud_sdk_python_redis.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-redis',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1133"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Redis SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1824,6 +1824,11 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
1824
1824
|
:type ProductVersion: str
|
|
1825
1825
|
:param _RedisClusterId: 独享集群 ID。当**ProductVersion**设置为**cdc**时,该参数必须设置。
|
|
1826
1826
|
:type RedisClusterId: str
|
|
1827
|
+
:param _AlarmPolicyList: 告警策略 ID 数组。
|
|
1828
|
+
|
|
1829
|
+
- 请登录[腾讯云可观测平台-告警管理-策略管理](https://console.cloud.tencent.com/monitor/alarm/policy)获取告警策略 ID。
|
|
1830
|
+
- 若不配置该参数,则绑定默认告警策略。默认告警策略具体信息,请登录[腾讯云可观测平台-告警管理-策略管理](https://console.cloud.tencent.com/monitor/alarm/policy)查看。
|
|
1831
|
+
:type AlarmPolicyList: list of str
|
|
1827
1832
|
"""
|
|
1828
1833
|
self._TypeId = None
|
|
1829
1834
|
self._MemSize = None
|
|
@@ -1850,6 +1855,7 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
1850
1855
|
self._DryRun = None
|
|
1851
1856
|
self._ProductVersion = None
|
|
1852
1857
|
self._RedisClusterId = None
|
|
1858
|
+
self._AlarmPolicyList = None
|
|
1853
1859
|
|
|
1854
1860
|
@property
|
|
1855
1861
|
def TypeId(self):
|
|
@@ -2051,6 +2057,14 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
2051
2057
|
def RedisClusterId(self, RedisClusterId):
|
|
2052
2058
|
self._RedisClusterId = RedisClusterId
|
|
2053
2059
|
|
|
2060
|
+
@property
|
|
2061
|
+
def AlarmPolicyList(self):
|
|
2062
|
+
return self._AlarmPolicyList
|
|
2063
|
+
|
|
2064
|
+
@AlarmPolicyList.setter
|
|
2065
|
+
def AlarmPolicyList(self, AlarmPolicyList):
|
|
2066
|
+
self._AlarmPolicyList = AlarmPolicyList
|
|
2067
|
+
|
|
2054
2068
|
|
|
2055
2069
|
def _deserialize(self, params):
|
|
2056
2070
|
self._TypeId = params.get("TypeId")
|
|
@@ -2088,6 +2102,7 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
2088
2102
|
self._DryRun = params.get("DryRun")
|
|
2089
2103
|
self._ProductVersion = params.get("ProductVersion")
|
|
2090
2104
|
self._RedisClusterId = params.get("RedisClusterId")
|
|
2105
|
+
self._AlarmPolicyList = params.get("AlarmPolicyList")
|
|
2091
2106
|
memeber_set = set(params.keys())
|
|
2092
2107
|
for name, value in vars(self).items():
|
|
2093
2108
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1133
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1130
|
{tencentcloud-sdk-python-redis-3.0.1130 → tencentcloud-sdk-python-redis-3.0.1133}/README.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|