tencentcloud-sdk-python 3.0.1326__py2.py3-none-any.whl → 3.0.1328__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.
Files changed (33) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +0 -56
  3. tencentcloud/captcha/v20190722/models.py +0 -48
  4. tencentcloud/ccc/v20200210/ccc_client.py +5 -1
  5. tencentcloud/ccc/v20200210/models.py +4 -4
  6. tencentcloud/cdwch/v20200915/models.py +83 -0
  7. tencentcloud/clb/v20180317/clb_client.py +115 -0
  8. tencentcloud/clb/v20180317/models.py +537 -0
  9. tencentcloud/cvm/v20170312/models.py +0 -56
  10. tencentcloud/cwp/v20180228/models.py +4 -40
  11. tencentcloud/dts/v20211206/models.py +2 -2
  12. tencentcloud/faceid/v20180301/models.py +26 -12
  13. tencentcloud/hunyuan/v20230901/models.py +2 -10
  14. tencentcloud/lke/v20231130/models.py +115 -6
  15. tencentcloud/lkeap/v20240522/lkeap_client.py +9 -9
  16. tencentcloud/lkeap/v20240522/models.py +12 -2
  17. tencentcloud/lowcode/v20210108/errorcodes.py +3 -0
  18. tencentcloud/lowcode/v20210108/lowcode_client.py +207 -0
  19. tencentcloud/lowcode/v20210108/models.py +2996 -124
  20. tencentcloud/monitor/v20180724/models.py +333 -0
  21. tencentcloud/monitor/v20180724/monitor_client.py +23 -0
  22. tencentcloud/rce/v20201103/models.py +0 -84
  23. tencentcloud/redis/v20180412/models.py +0 -110
  24. tencentcloud/tcr/v20190924/models.py +0 -14
  25. tencentcloud/tdid/v20210519/models.py +130 -22
  26. tencentcloud/tdid/v20210519/tdid_client.py +4 -1
  27. tencentcloud/tsf/v20180326/models.py +0 -88
  28. tencentcloud/waf/v20180125/models.py +2 -2
  29. {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/METADATA +1 -1
  30. {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/RECORD +33 -33
  31. {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/LICENSE +0 -0
  32. {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/WHEEL +0 -0
  33. {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,199 @@ import warnings
18
18
  from tencentcloud.common.abstract_model import AbstractModel
19
19
 
20
20
 
21
+ class AddCustomizedConfigRequest(AbstractModel):
22
+ """AddCustomizedConfig请求参数结构体
23
+
24
+ """
25
+
26
+ def __init__(self):
27
+ r"""
28
+ :param _ConfigName: 配置名字
29
+ :type ConfigName: str
30
+ :param _ConfigType: 配置类型,取值范围["CLB", "SERVER", "LOCATION"],分别表示CLB配置,server配置,location配置。
31
+ :type ConfigType: str
32
+ :param _ConfigContent: 配置内容
33
+ :type ConfigContent: str
34
+ """
35
+ self._ConfigName = None
36
+ self._ConfigType = None
37
+ self._ConfigContent = None
38
+
39
+ @property
40
+ def ConfigName(self):
41
+ """配置名字
42
+ :rtype: str
43
+ """
44
+ return self._ConfigName
45
+
46
+ @ConfigName.setter
47
+ def ConfigName(self, ConfigName):
48
+ self._ConfigName = ConfigName
49
+
50
+ @property
51
+ def ConfigType(self):
52
+ """配置类型,取值范围["CLB", "SERVER", "LOCATION"],分别表示CLB配置,server配置,location配置。
53
+ :rtype: str
54
+ """
55
+ return self._ConfigType
56
+
57
+ @ConfigType.setter
58
+ def ConfigType(self, ConfigType):
59
+ self._ConfigType = ConfigType
60
+
61
+ @property
62
+ def ConfigContent(self):
63
+ """配置内容
64
+ :rtype: str
65
+ """
66
+ return self._ConfigContent
67
+
68
+ @ConfigContent.setter
69
+ def ConfigContent(self, ConfigContent):
70
+ self._ConfigContent = ConfigContent
71
+
72
+
73
+ def _deserialize(self, params):
74
+ self._ConfigName = params.get("ConfigName")
75
+ self._ConfigType = params.get("ConfigType")
76
+ self._ConfigContent = params.get("ConfigContent")
77
+ memeber_set = set(params.keys())
78
+ for name, value in vars(self).items():
79
+ property_name = name[1:]
80
+ if property_name in memeber_set:
81
+ memeber_set.remove(property_name)
82
+ if len(memeber_set) > 0:
83
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
84
+
85
+
86
+
87
+ class AddCustomizedConfigResponse(AbstractModel):
88
+ """AddCustomizedConfig返回参数结构体
89
+
90
+ """
91
+
92
+ def __init__(self):
93
+ r"""
94
+ :param _ConfigId: 配置ID
95
+ :type ConfigId: str
96
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
97
+ :type RequestId: str
98
+ """
99
+ self._ConfigId = None
100
+ self._RequestId = None
101
+
102
+ @property
103
+ def ConfigId(self):
104
+ """配置ID
105
+ :rtype: str
106
+ """
107
+ return self._ConfigId
108
+
109
+ @ConfigId.setter
110
+ def ConfigId(self, ConfigId):
111
+ self._ConfigId = ConfigId
112
+
113
+ @property
114
+ def RequestId(self):
115
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
116
+ :rtype: str
117
+ """
118
+ return self._RequestId
119
+
120
+ @RequestId.setter
121
+ def RequestId(self, RequestId):
122
+ self._RequestId = RequestId
123
+
124
+
125
+ def _deserialize(self, params):
126
+ self._ConfigId = params.get("ConfigId")
127
+ self._RequestId = params.get("RequestId")
128
+
129
+
130
+ class AssociateCustomizedConfigRequest(AbstractModel):
131
+ """AssociateCustomizedConfig请求参数结构体
132
+
133
+ """
134
+
135
+ def __init__(self):
136
+ r"""
137
+ :param _UconfigId: 配置ID
138
+ :type UconfigId: str
139
+ :param _BindList: 关联的server或location
140
+ :type BindList: list of BindItem
141
+ """
142
+ self._UconfigId = None
143
+ self._BindList = None
144
+
145
+ @property
146
+ def UconfigId(self):
147
+ """配置ID
148
+ :rtype: str
149
+ """
150
+ return self._UconfigId
151
+
152
+ @UconfigId.setter
153
+ def UconfigId(self, UconfigId):
154
+ self._UconfigId = UconfigId
155
+
156
+ @property
157
+ def BindList(self):
158
+ """关联的server或location
159
+ :rtype: list of BindItem
160
+ """
161
+ return self._BindList
162
+
163
+ @BindList.setter
164
+ def BindList(self, BindList):
165
+ self._BindList = BindList
166
+
167
+
168
+ def _deserialize(self, params):
169
+ self._UconfigId = params.get("UconfigId")
170
+ if params.get("BindList") is not None:
171
+ self._BindList = []
172
+ for item in params.get("BindList"):
173
+ obj = BindItem()
174
+ obj._deserialize(item)
175
+ self._BindList.append(obj)
176
+ memeber_set = set(params.keys())
177
+ for name, value in vars(self).items():
178
+ property_name = name[1:]
179
+ if property_name in memeber_set:
180
+ memeber_set.remove(property_name)
181
+ if len(memeber_set) > 0:
182
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
183
+
184
+
185
+
186
+ class AssociateCustomizedConfigResponse(AbstractModel):
187
+ """AssociateCustomizedConfig返回参数结构体
188
+
189
+ """
190
+
191
+ def __init__(self):
192
+ r"""
193
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
194
+ :type RequestId: str
195
+ """
196
+ self._RequestId = None
197
+
198
+ @property
199
+ def RequestId(self):
200
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
201
+ :rtype: str
202
+ """
203
+ return self._RequestId
204
+
205
+ @RequestId.setter
206
+ def RequestId(self, RequestId):
207
+ self._RequestId = RequestId
208
+
209
+
210
+ def _deserialize(self, params):
211
+ self._RequestId = params.get("RequestId")
212
+
213
+
21
214
  class AssociateTargetGroupsRequest(AbstractModel):
22
215
  """AssociateTargetGroups请求参数结构体
23
216
 
@@ -1337,6 +1530,93 @@ class BindDetailItem(AbstractModel):
1337
1530
 
1338
1531
 
1339
1532
 
1533
+ class BindItem(AbstractModel):
1534
+ """配置绑定关系
1535
+
1536
+ """
1537
+
1538
+ def __init__(self):
1539
+ r"""
1540
+ :param _LoadBalancerId: 配置绑定的CLB ID
1541
+ :type LoadBalancerId: str
1542
+ :param _ListenerId: 配置绑定的监听器ID
1543
+ 注意:此字段可能返回 null,表示取不到有效值。
1544
+ :type ListenerId: str
1545
+ :param _Domain: 配置绑定的域名
1546
+ 注意:此字段可能返回 null,表示取不到有效值。
1547
+ :type Domain: str
1548
+ :param _LocationId: 配置绑定的规则
1549
+ 注意:此字段可能返回 null,表示取不到有效值。
1550
+ :type LocationId: str
1551
+ """
1552
+ self._LoadBalancerId = None
1553
+ self._ListenerId = None
1554
+ self._Domain = None
1555
+ self._LocationId = None
1556
+
1557
+ @property
1558
+ def LoadBalancerId(self):
1559
+ """配置绑定的CLB ID
1560
+ :rtype: str
1561
+ """
1562
+ return self._LoadBalancerId
1563
+
1564
+ @LoadBalancerId.setter
1565
+ def LoadBalancerId(self, LoadBalancerId):
1566
+ self._LoadBalancerId = LoadBalancerId
1567
+
1568
+ @property
1569
+ def ListenerId(self):
1570
+ """配置绑定的监听器ID
1571
+ 注意:此字段可能返回 null,表示取不到有效值。
1572
+ :rtype: str
1573
+ """
1574
+ return self._ListenerId
1575
+
1576
+ @ListenerId.setter
1577
+ def ListenerId(self, ListenerId):
1578
+ self._ListenerId = ListenerId
1579
+
1580
+ @property
1581
+ def Domain(self):
1582
+ """配置绑定的域名
1583
+ 注意:此字段可能返回 null,表示取不到有效值。
1584
+ :rtype: str
1585
+ """
1586
+ return self._Domain
1587
+
1588
+ @Domain.setter
1589
+ def Domain(self, Domain):
1590
+ self._Domain = Domain
1591
+
1592
+ @property
1593
+ def LocationId(self):
1594
+ """配置绑定的规则
1595
+ 注意:此字段可能返回 null,表示取不到有效值。
1596
+ :rtype: str
1597
+ """
1598
+ return self._LocationId
1599
+
1600
+ @LocationId.setter
1601
+ def LocationId(self, LocationId):
1602
+ self._LocationId = LocationId
1603
+
1604
+
1605
+ def _deserialize(self, params):
1606
+ self._LoadBalancerId = params.get("LoadBalancerId")
1607
+ self._ListenerId = params.get("ListenerId")
1608
+ self._Domain = params.get("Domain")
1609
+ self._LocationId = params.get("LocationId")
1610
+ memeber_set = set(params.keys())
1611
+ for name, value in vars(self).items():
1612
+ property_name = name[1:]
1613
+ if property_name in memeber_set:
1614
+ memeber_set.remove(property_name)
1615
+ if len(memeber_set) > 0:
1616
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1617
+
1618
+
1619
+
1340
1620
  class BlockedIP(AbstractModel):
1341
1621
  """加入了12306黑名单的IP
1342
1622
 
@@ -4912,6 +5192,8 @@ class CreateTargetGroupRequest(AbstractModel):
4912
5192
  :type Port: int
4913
5193
  :param _TargetGroupInstances: 目标组绑定的后端服务器
4914
5194
  :type TargetGroupInstances: list of TargetGroupInstance
5195
+ :param _Type: 目标组类型,当前支持v1(旧版目标组), v2(新版目标组), 默认为v1(旧版目标组)。
5196
+ :type Type: str
4915
5197
  :param _Tags: 标签。
4916
5198
  :type Tags: list of TagInfo
4917
5199
  :param _Weight: 后端服务默认权重。
@@ -4926,6 +5208,7 @@ class CreateTargetGroupRequest(AbstractModel):
4926
5208
  self._VpcId = None
4927
5209
  self._Port = None
4928
5210
  self._TargetGroupInstances = None
5211
+ self._Type = None
4929
5212
  self._Tags = None
4930
5213
  self._Weight = None
4931
5214
 
@@ -4974,6 +5257,17 @@ class CreateTargetGroupRequest(AbstractModel):
4974
5257
  def TargetGroupInstances(self, TargetGroupInstances):
4975
5258
  self._TargetGroupInstances = TargetGroupInstances
4976
5259
 
5260
+ @property
5261
+ def Type(self):
5262
+ """目标组类型,当前支持v1(旧版目标组), v2(新版目标组), 默认为v1(旧版目标组)。
5263
+ :rtype: str
5264
+ """
5265
+ return self._Type
5266
+
5267
+ @Type.setter
5268
+ def Type(self, Type):
5269
+ self._Type = Type
5270
+
4977
5271
  @property
4978
5272
  def Tags(self):
4979
5273
  """标签。
@@ -5012,6 +5306,7 @@ class CreateTargetGroupRequest(AbstractModel):
5012
5306
  obj = TargetGroupInstance()
5013
5307
  obj._deserialize(item)
5014
5308
  self._TargetGroupInstances.append(obj)
5309
+ self._Type = params.get("Type")
5015
5310
  if params.get("Tags") is not None:
5016
5311
  self._Tags = []
5017
5312
  for item in params.get("Tags"):
@@ -5356,6 +5651,70 @@ class CrossTargets(AbstractModel):
5356
5651
 
5357
5652
 
5358
5653
 
5654
+ class DeleteCustomizedConfigRequest(AbstractModel):
5655
+ """DeleteCustomizedConfig请求参数结构体
5656
+
5657
+ """
5658
+
5659
+ def __init__(self):
5660
+ r"""
5661
+ :param _UconfigIdList: 删除的配置ID列表
5662
+ :type UconfigIdList: list of str
5663
+ """
5664
+ self._UconfigIdList = None
5665
+
5666
+ @property
5667
+ def UconfigIdList(self):
5668
+ """删除的配置ID列表
5669
+ :rtype: list of str
5670
+ """
5671
+ return self._UconfigIdList
5672
+
5673
+ @UconfigIdList.setter
5674
+ def UconfigIdList(self, UconfigIdList):
5675
+ self._UconfigIdList = UconfigIdList
5676
+
5677
+
5678
+ def _deserialize(self, params):
5679
+ self._UconfigIdList = params.get("UconfigIdList")
5680
+ memeber_set = set(params.keys())
5681
+ for name, value in vars(self).items():
5682
+ property_name = name[1:]
5683
+ if property_name in memeber_set:
5684
+ memeber_set.remove(property_name)
5685
+ if len(memeber_set) > 0:
5686
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5687
+
5688
+
5689
+
5690
+ class DeleteCustomizedConfigResponse(AbstractModel):
5691
+ """DeleteCustomizedConfig返回参数结构体
5692
+
5693
+ """
5694
+
5695
+ def __init__(self):
5696
+ r"""
5697
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5698
+ :type RequestId: str
5699
+ """
5700
+ self._RequestId = None
5701
+
5702
+ @property
5703
+ def RequestId(self):
5704
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5705
+ :rtype: str
5706
+ """
5707
+ return self._RequestId
5708
+
5709
+ @RequestId.setter
5710
+ def RequestId(self, RequestId):
5711
+ self._RequestId = RequestId
5712
+
5713
+
5714
+ def _deserialize(self, params):
5715
+ self._RequestId = params.get("RequestId")
5716
+
5717
+
5359
5718
  class DeleteListenerRequest(AbstractModel):
5360
5719
  """DeleteListener请求参数结构体
5361
5720
 
@@ -10229,6 +10588,90 @@ class DescribeTaskStatusResponse(AbstractModel):
10229
10588
  self._RequestId = params.get("RequestId")
10230
10589
 
10231
10590
 
10591
+ class DisassociateCustomizedConfigRequest(AbstractModel):
10592
+ """DisassociateCustomizedConfig请求参数结构体
10593
+
10594
+ """
10595
+
10596
+ def __init__(self):
10597
+ r"""
10598
+ :param _UconfigId: 配置ID
10599
+ :type UconfigId: str
10600
+ :param _BindList: 解绑的列表
10601
+ :type BindList: list of BindItem
10602
+ """
10603
+ self._UconfigId = None
10604
+ self._BindList = None
10605
+
10606
+ @property
10607
+ def UconfigId(self):
10608
+ """配置ID
10609
+ :rtype: str
10610
+ """
10611
+ return self._UconfigId
10612
+
10613
+ @UconfigId.setter
10614
+ def UconfigId(self, UconfigId):
10615
+ self._UconfigId = UconfigId
10616
+
10617
+ @property
10618
+ def BindList(self):
10619
+ """解绑的列表
10620
+ :rtype: list of BindItem
10621
+ """
10622
+ return self._BindList
10623
+
10624
+ @BindList.setter
10625
+ def BindList(self, BindList):
10626
+ self._BindList = BindList
10627
+
10628
+
10629
+ def _deserialize(self, params):
10630
+ self._UconfigId = params.get("UconfigId")
10631
+ if params.get("BindList") is not None:
10632
+ self._BindList = []
10633
+ for item in params.get("BindList"):
10634
+ obj = BindItem()
10635
+ obj._deserialize(item)
10636
+ self._BindList.append(obj)
10637
+ memeber_set = set(params.keys())
10638
+ for name, value in vars(self).items():
10639
+ property_name = name[1:]
10640
+ if property_name in memeber_set:
10641
+ memeber_set.remove(property_name)
10642
+ if len(memeber_set) > 0:
10643
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
10644
+
10645
+
10646
+
10647
+ class DisassociateCustomizedConfigResponse(AbstractModel):
10648
+ """DisassociateCustomizedConfig返回参数结构体
10649
+
10650
+ """
10651
+
10652
+ def __init__(self):
10653
+ r"""
10654
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10655
+ :type RequestId: str
10656
+ """
10657
+ self._RequestId = None
10658
+
10659
+ @property
10660
+ def RequestId(self):
10661
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10662
+ :rtype: str
10663
+ """
10664
+ return self._RequestId
10665
+
10666
+ @RequestId.setter
10667
+ def RequestId(self, RequestId):
10668
+ self._RequestId = RequestId
10669
+
10670
+
10671
+ def _deserialize(self, params):
10672
+ self._RequestId = params.get("RequestId")
10673
+
10674
+
10232
10675
  class DisassociateTargetGroupsRequest(AbstractModel):
10233
10676
  """DisassociateTargetGroups请求参数结构体
10234
10677
 
@@ -15175,6 +15618,100 @@ class ModifyBlockIPListResponse(AbstractModel):
15175
15618
  self._RequestId = params.get("RequestId")
15176
15619
 
15177
15620
 
15621
+ class ModifyCustomizedConfigRequest(AbstractModel):
15622
+ """ModifyCustomizedConfig请求参数结构体
15623
+
15624
+ """
15625
+
15626
+ def __init__(self):
15627
+ r"""
15628
+ :param _ConfigName: 配置名字
15629
+ :type ConfigName: str
15630
+ :param _UconfigId: 配置ID
15631
+ :type UconfigId: str
15632
+ :param _ConfigContent: 配置内容
15633
+ :type ConfigContent: str
15634
+ """
15635
+ self._ConfigName = None
15636
+ self._UconfigId = None
15637
+ self._ConfigContent = None
15638
+
15639
+ @property
15640
+ def ConfigName(self):
15641
+ """配置名字
15642
+ :rtype: str
15643
+ """
15644
+ return self._ConfigName
15645
+
15646
+ @ConfigName.setter
15647
+ def ConfigName(self, ConfigName):
15648
+ self._ConfigName = ConfigName
15649
+
15650
+ @property
15651
+ def UconfigId(self):
15652
+ """配置ID
15653
+ :rtype: str
15654
+ """
15655
+ return self._UconfigId
15656
+
15657
+ @UconfigId.setter
15658
+ def UconfigId(self, UconfigId):
15659
+ self._UconfigId = UconfigId
15660
+
15661
+ @property
15662
+ def ConfigContent(self):
15663
+ """配置内容
15664
+ :rtype: str
15665
+ """
15666
+ return self._ConfigContent
15667
+
15668
+ @ConfigContent.setter
15669
+ def ConfigContent(self, ConfigContent):
15670
+ self._ConfigContent = ConfigContent
15671
+
15672
+
15673
+ def _deserialize(self, params):
15674
+ self._ConfigName = params.get("ConfigName")
15675
+ self._UconfigId = params.get("UconfigId")
15676
+ self._ConfigContent = params.get("ConfigContent")
15677
+ memeber_set = set(params.keys())
15678
+ for name, value in vars(self).items():
15679
+ property_name = name[1:]
15680
+ if property_name in memeber_set:
15681
+ memeber_set.remove(property_name)
15682
+ if len(memeber_set) > 0:
15683
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
15684
+
15685
+
15686
+
15687
+ class ModifyCustomizedConfigResponse(AbstractModel):
15688
+ """ModifyCustomizedConfig返回参数结构体
15689
+
15690
+ """
15691
+
15692
+ def __init__(self):
15693
+ r"""
15694
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15695
+ :type RequestId: str
15696
+ """
15697
+ self._RequestId = None
15698
+
15699
+ @property
15700
+ def RequestId(self):
15701
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15702
+ :rtype: str
15703
+ """
15704
+ return self._RequestId
15705
+
15706
+ @RequestId.setter
15707
+ def RequestId(self, RequestId):
15708
+ self._RequestId = RequestId
15709
+
15710
+
15711
+ def _deserialize(self, params):
15712
+ self._RequestId = params.get("RequestId")
15713
+
15714
+
15178
15715
  class ModifyDomainAttributesRequest(AbstractModel):
15179
15716
  """ModifyDomainAttributes请求参数结构体
15180
15717