tencentcloud-sdk-python-intl-en 3.0.1288__py2.py3-none-any.whl → 3.0.1291__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- tencentcloud/ccc/v20200210/models.py +184 -0
- tencentcloud/clb/v20180317/clb_client.py +4 -4
- tencentcloud/clb/v20180317/errorcodes.py +9 -0
- tencentcloud/clb/v20180317/models.py +27 -2
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +46 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +1286 -75
- tencentcloud/dlc/v20210125/dlc_client.py +69 -0
- tencentcloud/dlc/v20210125/models.py +504 -0
- tencentcloud/mdl/v20200326/models.py +191 -0
- tencentcloud/mongodb/v20190725/errorcodes.py +15 -0
- tencentcloud/mongodb/v20190725/models.py +1276 -463
- tencentcloud/mongodb/v20190725/mongodb_client.py +75 -6
- tencentcloud/monitor/v20180724/models.py +1351 -124
- tencentcloud/monitor/v20180724/monitor_client.py +118 -0
- tencentcloud/mps/v20190612/models.py +366 -62
- tencentcloud/quota/v20241204/models.py +17 -2
- tencentcloud/redis/v20180412/models.py +410 -168
- tencentcloud/redis/v20180412/redis_client.py +4 -4
- tencentcloud/wedata/v20250806/__init__.py +0 -0
- tencentcloud/wedata/v20250806/errorcodes.py +57 -0
- tencentcloud/wedata/v20250806/models.py +26375 -0
- tencentcloud/wedata/v20250806/wedata_client.py +1797 -0
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/RECORD +29 -25
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/top_level.txt +0 -0
|
@@ -240,7 +240,7 @@ class CreateAlarmRequest(AbstractModel):
|
|
|
240
240
|
:type Threshold: int
|
|
241
241
|
:param _Frequency: Alarm frequency.
|
|
242
242
|
:type Frequency: int
|
|
243
|
-
:param _MemberUin: Member UIN
|
|
243
|
+
:param _MemberUin: Member UIN.
|
|
244
244
|
:type MemberUin: int
|
|
245
245
|
"""
|
|
246
246
|
self._Name = None
|
|
@@ -319,7 +319,7 @@ class CreateAlarmRequest(AbstractModel):
|
|
|
319
319
|
|
|
320
320
|
@property
|
|
321
321
|
def MemberUin(self):
|
|
322
|
-
r""" Member UIN
|
|
322
|
+
r""" Member UIN.
|
|
323
323
|
:rtype: int
|
|
324
324
|
"""
|
|
325
325
|
return self._MemberUin
|
|
@@ -354,11 +354,25 @@ class CreateAlarmResponse(AbstractModel):
|
|
|
354
354
|
|
|
355
355
|
def __init__(self):
|
|
356
356
|
r"""
|
|
357
|
+
:param _AlarmId: 1001
|
|
358
|
+
:type AlarmId: int
|
|
357
359
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
358
360
|
:type RequestId: str
|
|
359
361
|
"""
|
|
362
|
+
self._AlarmId = None
|
|
360
363
|
self._RequestId = None
|
|
361
364
|
|
|
365
|
+
@property
|
|
366
|
+
def AlarmId(self):
|
|
367
|
+
r"""1001
|
|
368
|
+
:rtype: int
|
|
369
|
+
"""
|
|
370
|
+
return self._AlarmId
|
|
371
|
+
|
|
372
|
+
@AlarmId.setter
|
|
373
|
+
def AlarmId(self, AlarmId):
|
|
374
|
+
self._AlarmId = AlarmId
|
|
375
|
+
|
|
362
376
|
@property
|
|
363
377
|
def RequestId(self):
|
|
364
378
|
r"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -372,6 +386,7 @@ class CreateAlarmResponse(AbstractModel):
|
|
|
372
386
|
|
|
373
387
|
|
|
374
388
|
def _deserialize(self, params):
|
|
389
|
+
self._AlarmId = params.get("AlarmId")
|
|
375
390
|
self._RequestId = params.get("RequestId")
|
|
376
391
|
|
|
377
392
|
|