tencentcloud-sdk-python 3.0.1325__py2.py3-none-any.whl → 3.0.1327__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/asr/v20190614/asr_client.py +1 -1
- tencentcloud/batch/v20170312/models.py +0 -60
- tencentcloud/ccc/v20200210/ccc_client.py +5 -1
- tencentcloud/ccc/v20200210/models.py +4 -4
- tencentcloud/clb/v20180317/clb_client.py +115 -0
- tencentcloud/clb/v20180317/models.py +522 -0
- tencentcloud/cvm/v20170312/models.py +0 -64
- tencentcloud/cwp/v20180228/models.py +4 -40
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +197 -0
- tencentcloud/ess/v20201111/models.py +4 -4
- tencentcloud/essbasic/v20210526/models.py +4 -4
- tencentcloud/hai/v20230812/errorcodes.py +12 -0
- tencentcloud/live/v20180801/models.py +15 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +8 -5
- tencentcloud/rce/v20201103/models.py +30 -130
- tencentcloud/tcr/v20190924/models.py +0 -14
- tencentcloud/trtc/v20190722/models.py +15 -62
- tencentcloud/waf/v20180125/errorcodes.py +6 -0
- tencentcloud/waf/v20180125/models.py +348 -37
- {tencentcloud_sdk_python-3.0.1325.dist-info → tencentcloud_sdk_python-3.0.1327.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1325.dist-info → tencentcloud_sdk_python-3.0.1327.dist-info}/RECORD +27 -27
- {tencentcloud_sdk_python-3.0.1325.dist-info → tencentcloud_sdk_python-3.0.1327.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1325.dist-info → tencentcloud_sdk_python-3.0.1327.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1325.dist-info → tencentcloud_sdk_python-3.0.1327.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
|
|
@@ -5356,6 +5636,70 @@ class CrossTargets(AbstractModel):
|
|
5356
5636
|
|
5357
5637
|
|
5358
5638
|
|
5639
|
+
class DeleteCustomizedConfigRequest(AbstractModel):
|
5640
|
+
"""DeleteCustomizedConfig请求参数结构体
|
5641
|
+
|
5642
|
+
"""
|
5643
|
+
|
5644
|
+
def __init__(self):
|
5645
|
+
r"""
|
5646
|
+
:param _UconfigIdList: 删除的配置ID列表
|
5647
|
+
:type UconfigIdList: list of str
|
5648
|
+
"""
|
5649
|
+
self._UconfigIdList = None
|
5650
|
+
|
5651
|
+
@property
|
5652
|
+
def UconfigIdList(self):
|
5653
|
+
"""删除的配置ID列表
|
5654
|
+
:rtype: list of str
|
5655
|
+
"""
|
5656
|
+
return self._UconfigIdList
|
5657
|
+
|
5658
|
+
@UconfigIdList.setter
|
5659
|
+
def UconfigIdList(self, UconfigIdList):
|
5660
|
+
self._UconfigIdList = UconfigIdList
|
5661
|
+
|
5662
|
+
|
5663
|
+
def _deserialize(self, params):
|
5664
|
+
self._UconfigIdList = params.get("UconfigIdList")
|
5665
|
+
memeber_set = set(params.keys())
|
5666
|
+
for name, value in vars(self).items():
|
5667
|
+
property_name = name[1:]
|
5668
|
+
if property_name in memeber_set:
|
5669
|
+
memeber_set.remove(property_name)
|
5670
|
+
if len(memeber_set) > 0:
|
5671
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5672
|
+
|
5673
|
+
|
5674
|
+
|
5675
|
+
class DeleteCustomizedConfigResponse(AbstractModel):
|
5676
|
+
"""DeleteCustomizedConfig返回参数结构体
|
5677
|
+
|
5678
|
+
"""
|
5679
|
+
|
5680
|
+
def __init__(self):
|
5681
|
+
r"""
|
5682
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5683
|
+
:type RequestId: str
|
5684
|
+
"""
|
5685
|
+
self._RequestId = None
|
5686
|
+
|
5687
|
+
@property
|
5688
|
+
def RequestId(self):
|
5689
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5690
|
+
:rtype: str
|
5691
|
+
"""
|
5692
|
+
return self._RequestId
|
5693
|
+
|
5694
|
+
@RequestId.setter
|
5695
|
+
def RequestId(self, RequestId):
|
5696
|
+
self._RequestId = RequestId
|
5697
|
+
|
5698
|
+
|
5699
|
+
def _deserialize(self, params):
|
5700
|
+
self._RequestId = params.get("RequestId")
|
5701
|
+
|
5702
|
+
|
5359
5703
|
class DeleteListenerRequest(AbstractModel):
|
5360
5704
|
"""DeleteListener请求参数结构体
|
5361
5705
|
|
@@ -10229,6 +10573,90 @@ class DescribeTaskStatusResponse(AbstractModel):
|
|
10229
10573
|
self._RequestId = params.get("RequestId")
|
10230
10574
|
|
10231
10575
|
|
10576
|
+
class DisassociateCustomizedConfigRequest(AbstractModel):
|
10577
|
+
"""DisassociateCustomizedConfig请求参数结构体
|
10578
|
+
|
10579
|
+
"""
|
10580
|
+
|
10581
|
+
def __init__(self):
|
10582
|
+
r"""
|
10583
|
+
:param _UconfigId: 配置ID
|
10584
|
+
:type UconfigId: str
|
10585
|
+
:param _BindList: 解绑的列表
|
10586
|
+
:type BindList: list of BindItem
|
10587
|
+
"""
|
10588
|
+
self._UconfigId = None
|
10589
|
+
self._BindList = None
|
10590
|
+
|
10591
|
+
@property
|
10592
|
+
def UconfigId(self):
|
10593
|
+
"""配置ID
|
10594
|
+
:rtype: str
|
10595
|
+
"""
|
10596
|
+
return self._UconfigId
|
10597
|
+
|
10598
|
+
@UconfigId.setter
|
10599
|
+
def UconfigId(self, UconfigId):
|
10600
|
+
self._UconfigId = UconfigId
|
10601
|
+
|
10602
|
+
@property
|
10603
|
+
def BindList(self):
|
10604
|
+
"""解绑的列表
|
10605
|
+
:rtype: list of BindItem
|
10606
|
+
"""
|
10607
|
+
return self._BindList
|
10608
|
+
|
10609
|
+
@BindList.setter
|
10610
|
+
def BindList(self, BindList):
|
10611
|
+
self._BindList = BindList
|
10612
|
+
|
10613
|
+
|
10614
|
+
def _deserialize(self, params):
|
10615
|
+
self._UconfigId = params.get("UconfigId")
|
10616
|
+
if params.get("BindList") is not None:
|
10617
|
+
self._BindList = []
|
10618
|
+
for item in params.get("BindList"):
|
10619
|
+
obj = BindItem()
|
10620
|
+
obj._deserialize(item)
|
10621
|
+
self._BindList.append(obj)
|
10622
|
+
memeber_set = set(params.keys())
|
10623
|
+
for name, value in vars(self).items():
|
10624
|
+
property_name = name[1:]
|
10625
|
+
if property_name in memeber_set:
|
10626
|
+
memeber_set.remove(property_name)
|
10627
|
+
if len(memeber_set) > 0:
|
10628
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
10629
|
+
|
10630
|
+
|
10631
|
+
|
10632
|
+
class DisassociateCustomizedConfigResponse(AbstractModel):
|
10633
|
+
"""DisassociateCustomizedConfig返回参数结构体
|
10634
|
+
|
10635
|
+
"""
|
10636
|
+
|
10637
|
+
def __init__(self):
|
10638
|
+
r"""
|
10639
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10640
|
+
:type RequestId: str
|
10641
|
+
"""
|
10642
|
+
self._RequestId = None
|
10643
|
+
|
10644
|
+
@property
|
10645
|
+
def RequestId(self):
|
10646
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10647
|
+
:rtype: str
|
10648
|
+
"""
|
10649
|
+
return self._RequestId
|
10650
|
+
|
10651
|
+
@RequestId.setter
|
10652
|
+
def RequestId(self, RequestId):
|
10653
|
+
self._RequestId = RequestId
|
10654
|
+
|
10655
|
+
|
10656
|
+
def _deserialize(self, params):
|
10657
|
+
self._RequestId = params.get("RequestId")
|
10658
|
+
|
10659
|
+
|
10232
10660
|
class DisassociateTargetGroupsRequest(AbstractModel):
|
10233
10661
|
"""DisassociateTargetGroups请求参数结构体
|
10234
10662
|
|
@@ -15175,6 +15603,100 @@ class ModifyBlockIPListResponse(AbstractModel):
|
|
15175
15603
|
self._RequestId = params.get("RequestId")
|
15176
15604
|
|
15177
15605
|
|
15606
|
+
class ModifyCustomizedConfigRequest(AbstractModel):
|
15607
|
+
"""ModifyCustomizedConfig请求参数结构体
|
15608
|
+
|
15609
|
+
"""
|
15610
|
+
|
15611
|
+
def __init__(self):
|
15612
|
+
r"""
|
15613
|
+
:param _ConfigName: 配置名字
|
15614
|
+
:type ConfigName: str
|
15615
|
+
:param _UconfigId: 配置ID
|
15616
|
+
:type UconfigId: str
|
15617
|
+
:param _ConfigContent: 配置内容
|
15618
|
+
:type ConfigContent: str
|
15619
|
+
"""
|
15620
|
+
self._ConfigName = None
|
15621
|
+
self._UconfigId = None
|
15622
|
+
self._ConfigContent = None
|
15623
|
+
|
15624
|
+
@property
|
15625
|
+
def ConfigName(self):
|
15626
|
+
"""配置名字
|
15627
|
+
:rtype: str
|
15628
|
+
"""
|
15629
|
+
return self._ConfigName
|
15630
|
+
|
15631
|
+
@ConfigName.setter
|
15632
|
+
def ConfigName(self, ConfigName):
|
15633
|
+
self._ConfigName = ConfigName
|
15634
|
+
|
15635
|
+
@property
|
15636
|
+
def UconfigId(self):
|
15637
|
+
"""配置ID
|
15638
|
+
:rtype: str
|
15639
|
+
"""
|
15640
|
+
return self._UconfigId
|
15641
|
+
|
15642
|
+
@UconfigId.setter
|
15643
|
+
def UconfigId(self, UconfigId):
|
15644
|
+
self._UconfigId = UconfigId
|
15645
|
+
|
15646
|
+
@property
|
15647
|
+
def ConfigContent(self):
|
15648
|
+
"""配置内容
|
15649
|
+
:rtype: str
|
15650
|
+
"""
|
15651
|
+
return self._ConfigContent
|
15652
|
+
|
15653
|
+
@ConfigContent.setter
|
15654
|
+
def ConfigContent(self, ConfigContent):
|
15655
|
+
self._ConfigContent = ConfigContent
|
15656
|
+
|
15657
|
+
|
15658
|
+
def _deserialize(self, params):
|
15659
|
+
self._ConfigName = params.get("ConfigName")
|
15660
|
+
self._UconfigId = params.get("UconfigId")
|
15661
|
+
self._ConfigContent = params.get("ConfigContent")
|
15662
|
+
memeber_set = set(params.keys())
|
15663
|
+
for name, value in vars(self).items():
|
15664
|
+
property_name = name[1:]
|
15665
|
+
if property_name in memeber_set:
|
15666
|
+
memeber_set.remove(property_name)
|
15667
|
+
if len(memeber_set) > 0:
|
15668
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
15669
|
+
|
15670
|
+
|
15671
|
+
|
15672
|
+
class ModifyCustomizedConfigResponse(AbstractModel):
|
15673
|
+
"""ModifyCustomizedConfig返回参数结构体
|
15674
|
+
|
15675
|
+
"""
|
15676
|
+
|
15677
|
+
def __init__(self):
|
15678
|
+
r"""
|
15679
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15680
|
+
:type RequestId: str
|
15681
|
+
"""
|
15682
|
+
self._RequestId = None
|
15683
|
+
|
15684
|
+
@property
|
15685
|
+
def RequestId(self):
|
15686
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15687
|
+
:rtype: str
|
15688
|
+
"""
|
15689
|
+
return self._RequestId
|
15690
|
+
|
15691
|
+
@RequestId.setter
|
15692
|
+
def RequestId(self, RequestId):
|
15693
|
+
self._RequestId = RequestId
|
15694
|
+
|
15695
|
+
|
15696
|
+
def _deserialize(self, params):
|
15697
|
+
self._RequestId = params.get("RequestId")
|
15698
|
+
|
15699
|
+
|
15178
15700
|
class ModifyDomainAttributesRequest(AbstractModel):
|
15179
15701
|
"""ModifyDomainAttributes请求参数结构体
|
15180
15702
|
|