tencentcloud-sdk-python 3.0.1423__py2.py3-none-any.whl → 3.0.1424__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ai3d/v20250513/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +2 -2
- tencentcloud/cdb/v20170320/models.py +4 -4
- tencentcloud/ctem/v20231128/ctem_client.py +92 -0
- tencentcloud/ctem/v20231128/models.py +2739 -1053
- tencentcloud/cwp/v20180228/models.py +15 -0
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/ess/v20201111/ess_client.py +52 -0
- tencentcloud/ess/v20201111/models.py +445 -0
- tencentcloud/iss/v20230517/models.py +4 -8
- tencentcloud/live/v20180801/models.py +591 -0
- tencentcloud/lkeap/v20240522/errorcodes.py +3 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +3 -0
- tencentcloud/lkeap/v20240522/models.py +190 -48
- tencentcloud/mongodb/v20190725/models.py +4 -2
- tencentcloud/monitor/v20180724/models.py +52 -6
- tencentcloud/mps/v20190612/models.py +576 -144
- tencentcloud/mps/v20190612/mps_client.py +26 -0
- tencentcloud/ocr/v20181119/models.py +42 -24
- tencentcloud/omics/v20221128/models.py +15 -0
- tencentcloud/teo/v20220901/models.py +7772 -5903
- tencentcloud/teo/v20220901/teo_client.py +322 -0
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1424.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1424.dist-info}/RECORD +30 -30
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1424.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1424.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1423.dist-info → tencentcloud_sdk_python-3.0.1424.dist-info}/top_level.txt +0 -0
@@ -6738,7 +6738,7 @@ class CreatePrometheusAlertGroupRequest(AbstractModel):
|
|
6738
6738
|
不为空时会覆盖 `Rules`字段下所有告警规则状态
|
6739
6739
|
|
6740
6740
|
:type GroupState: int
|
6741
|
-
:param _AMPReceivers:
|
6741
|
+
:param _AMPReceivers: 腾讯云可观测平台告警通知模板ID列表,形如Consumer-xxxx或notice-xxxx
|
6742
6742
|
:type AMPReceivers: list of str
|
6743
6743
|
:param _CustomReceiver: 自定义告警通知模板
|
6744
6744
|
:type CustomReceiver: :class:`tencentcloud.monitor.v20180724.models.PrometheusAlertCustomReceiver`
|
@@ -6794,7 +6794,7 @@ class CreatePrometheusAlertGroupRequest(AbstractModel):
|
|
6794
6794
|
|
6795
6795
|
@property
|
6796
6796
|
def AMPReceivers(self):
|
6797
|
-
"""
|
6797
|
+
"""腾讯云可观测平台告警通知模板ID列表,形如Consumer-xxxx或notice-xxxx
|
6798
6798
|
:rtype: list of str
|
6799
6799
|
"""
|
6800
6800
|
return self._AMPReceivers
|
@@ -29502,14 +29502,22 @@ class ModifyConditionsTemplateRequestEventCondition(AbstractModel):
|
|
29502
29502
|
:type EventID: str
|
29503
29503
|
:param _RuleID: 规则ID
|
29504
29504
|
:type RuleID: int
|
29505
|
+
:param _MetricName: 重构后的eventType
|
29506
|
+
:type MetricName: str
|
29507
|
+
:param _Description: 事件描述信息
|
29508
|
+
:type Description: str
|
29505
29509
|
"""
|
29506
29510
|
self._AlarmNotifyPeriod = None
|
29507
29511
|
self._AlarmNotifyType = None
|
29508
29512
|
self._EventID = None
|
29509
29513
|
self._RuleID = None
|
29514
|
+
self._MetricName = None
|
29515
|
+
self._Description = None
|
29510
29516
|
|
29511
29517
|
@property
|
29512
29518
|
def AlarmNotifyPeriod(self):
|
29519
|
+
warnings.warn("parameter `AlarmNotifyPeriod` is deprecated", DeprecationWarning)
|
29520
|
+
|
29513
29521
|
"""告警通知周期
|
29514
29522
|
:rtype: str
|
29515
29523
|
"""
|
@@ -29517,10 +29525,14 @@ class ModifyConditionsTemplateRequestEventCondition(AbstractModel):
|
|
29517
29525
|
|
29518
29526
|
@AlarmNotifyPeriod.setter
|
29519
29527
|
def AlarmNotifyPeriod(self, AlarmNotifyPeriod):
|
29528
|
+
warnings.warn("parameter `AlarmNotifyPeriod` is deprecated", DeprecationWarning)
|
29529
|
+
|
29520
29530
|
self._AlarmNotifyPeriod = AlarmNotifyPeriod
|
29521
29531
|
|
29522
29532
|
@property
|
29523
29533
|
def AlarmNotifyType(self):
|
29534
|
+
warnings.warn("parameter `AlarmNotifyType` is deprecated", DeprecationWarning)
|
29535
|
+
|
29524
29536
|
"""告警通知方式
|
29525
29537
|
:rtype: str
|
29526
29538
|
"""
|
@@ -29528,10 +29540,14 @@ class ModifyConditionsTemplateRequestEventCondition(AbstractModel):
|
|
29528
29540
|
|
29529
29541
|
@AlarmNotifyType.setter
|
29530
29542
|
def AlarmNotifyType(self, AlarmNotifyType):
|
29543
|
+
warnings.warn("parameter `AlarmNotifyType` is deprecated", DeprecationWarning)
|
29544
|
+
|
29531
29545
|
self._AlarmNotifyType = AlarmNotifyType
|
29532
29546
|
|
29533
29547
|
@property
|
29534
29548
|
def EventID(self):
|
29549
|
+
warnings.warn("parameter `EventID` is deprecated", DeprecationWarning)
|
29550
|
+
|
29535
29551
|
"""事件ID
|
29536
29552
|
:rtype: str
|
29537
29553
|
"""
|
@@ -29539,10 +29555,14 @@ class ModifyConditionsTemplateRequestEventCondition(AbstractModel):
|
|
29539
29555
|
|
29540
29556
|
@EventID.setter
|
29541
29557
|
def EventID(self, EventID):
|
29558
|
+
warnings.warn("parameter `EventID` is deprecated", DeprecationWarning)
|
29559
|
+
|
29542
29560
|
self._EventID = EventID
|
29543
29561
|
|
29544
29562
|
@property
|
29545
29563
|
def RuleID(self):
|
29564
|
+
warnings.warn("parameter `RuleID` is deprecated", DeprecationWarning)
|
29565
|
+
|
29546
29566
|
"""规则ID
|
29547
29567
|
:rtype: int
|
29548
29568
|
"""
|
@@ -29550,14 +29570,40 @@ class ModifyConditionsTemplateRequestEventCondition(AbstractModel):
|
|
29550
29570
|
|
29551
29571
|
@RuleID.setter
|
29552
29572
|
def RuleID(self, RuleID):
|
29573
|
+
warnings.warn("parameter `RuleID` is deprecated", DeprecationWarning)
|
29574
|
+
|
29553
29575
|
self._RuleID = RuleID
|
29554
29576
|
|
29577
|
+
@property
|
29578
|
+
def MetricName(self):
|
29579
|
+
"""重构后的eventType
|
29580
|
+
:rtype: str
|
29581
|
+
"""
|
29582
|
+
return self._MetricName
|
29583
|
+
|
29584
|
+
@MetricName.setter
|
29585
|
+
def MetricName(self, MetricName):
|
29586
|
+
self._MetricName = MetricName
|
29587
|
+
|
29588
|
+
@property
|
29589
|
+
def Description(self):
|
29590
|
+
"""事件描述信息
|
29591
|
+
:rtype: str
|
29592
|
+
"""
|
29593
|
+
return self._Description
|
29594
|
+
|
29595
|
+
@Description.setter
|
29596
|
+
def Description(self, Description):
|
29597
|
+
self._Description = Description
|
29598
|
+
|
29555
29599
|
|
29556
29600
|
def _deserialize(self, params):
|
29557
29601
|
self._AlarmNotifyPeriod = params.get("AlarmNotifyPeriod")
|
29558
29602
|
self._AlarmNotifyType = params.get("AlarmNotifyType")
|
29559
29603
|
self._EventID = params.get("EventID")
|
29560
29604
|
self._RuleID = params.get("RuleID")
|
29605
|
+
self._MetricName = params.get("MetricName")
|
29606
|
+
self._Description = params.get("Description")
|
29561
29607
|
memeber_set = set(params.keys())
|
29562
29608
|
for name, value in vars(self).items():
|
29563
29609
|
property_name = name[1:]
|
@@ -32608,7 +32654,7 @@ class PrometheusAlertGroupSet(AbstractModel):
|
|
32608
32654
|
:param _GroupName: 告警分组名称
|
32609
32655
|
注意:此字段可能返回 null,表示取不到有效值。
|
32610
32656
|
:type GroupName: str
|
32611
|
-
:param _AMPReceivers:
|
32657
|
+
:param _AMPReceivers: 腾讯云可观测平台告警模板ID ,返回告警模板转换后的notice ID。
|
32612
32658
|
注意:此字段可能返回 null,表示取不到有效值。
|
32613
32659
|
:type AMPReceivers: list of str
|
32614
32660
|
:param _CustomReceiver: 自定义告警模板
|
@@ -32666,7 +32712,7 @@ class PrometheusAlertGroupSet(AbstractModel):
|
|
32666
32712
|
|
32667
32713
|
@property
|
32668
32714
|
def AMPReceivers(self):
|
32669
|
-
"""
|
32715
|
+
"""腾讯云可观测平台告警模板ID ,返回告警模板转换后的notice ID。
|
32670
32716
|
注意:此字段可能返回 null,表示取不到有效值。
|
32671
32717
|
:rtype: list of str
|
32672
32718
|
"""
|
@@ -40152,7 +40198,7 @@ class UpdatePrometheusAlertGroupRequest(AbstractModel):
|
|
40152
40198
|
3 -- 禁用
|
40153
40199
|
不为空时会覆盖 `Rules`字段下所有告警规则状态
|
40154
40200
|
:type GroupState: int
|
40155
|
-
:param _AMPReceivers:
|
40201
|
+
:param _AMPReceivers: 腾讯云可观测平台告警通知模板ID列表,形如Consumer-xxxx或notice-xxxx
|
40156
40202
|
:type AMPReceivers: list of str
|
40157
40203
|
:param _CustomReceiver: 自定义告警通知模板
|
40158
40204
|
:type CustomReceiver: :class:`tencentcloud.monitor.v20180724.models.PrometheusAlertCustomReceiver`
|
@@ -40219,7 +40265,7 @@ class UpdatePrometheusAlertGroupRequest(AbstractModel):
|
|
40219
40265
|
|
40220
40266
|
@property
|
40221
40267
|
def AMPReceivers(self):
|
40222
|
-
"""
|
40268
|
+
"""腾讯云可观测平台告警通知模板ID列表,形如Consumer-xxxx或notice-xxxx
|
40223
40269
|
:rtype: list of str
|
40224
40270
|
"""
|
40225
40271
|
return self._AMPReceivers
|