tencentcloud-sdk-python-intl-en 3.0.1086__py2.py3-none-any.whl → 3.0.1088__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/batch/v20170312/errorcodes.py +3 -0
- tencentcloud/batch/v20170312/models.py +119 -45
- tencentcloud/car/v20220110/models.py +2 -2
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdc/__init__.py +0 -0
- tencentcloud/cdc/v20201214/__init__.py +0 -0
- tencentcloud/cdc/v20201214/cdc_client.py +486 -0
- tencentcloud/cdc/v20201214/errorcodes.py +78 -0
- tencentcloud/cdc/v20201214/models.py +6084 -0
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
- tencentcloud/cloudaudit/v20190319/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +177 -0
- tencentcloud/cmq/v20190304/models.py +74 -74
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/eb/v20210416/models.py +47 -2
- tencentcloud/ecm/v20190719/models.py +2 -2
- tencentcloud/gme/v20180711/errorcodes.py +1 -1
- tencentcloud/gme/v20180711/models.py +2 -2
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +2 -2
- tencentcloud/lighthouse/v20200324/models.py +2 -2
- tencentcloud/live/v20180801/errorcodes.py +1 -1
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/organization/v20181225/errorcodes.py +16 -4
- tencentcloud/organization/v20181225/models.py +40 -40
- tencentcloud/organization/v20210331/errorcodes.py +96 -0
- tencentcloud/organization/v20210331/models.py +2110 -269
- tencentcloud/organization/v20210331/organization_client.py +417 -3
- tencentcloud/scf/v20180416/errorcodes.py +3 -0
- tencentcloud/scf/v20180416/models.py +2 -2
- tencentcloud/sms/v20210111/errorcodes.py +4 -1
- tencentcloud/tat/v20201028/errorcodes.py +12 -0
- tencentcloud/tat/v20201028/models.py +38 -38
- tencentcloud/tdmq/v20200217/models.py +2 -2
- tencentcloud/tem/v20210701/models.py +2 -2
- tencentcloud/teo/v20220901/errorcodes.py +19 -19
- tencentcloud/teo/v20220901/models.py +92 -20
- tencentcloud/vclm/__init__.py +0 -0
- tencentcloud/vclm/v20240523/__init__.py +0 -0
- tencentcloud/vclm/v20240523/errorcodes.py +126 -0
- tencentcloud/vclm/v20240523/models.py +538 -0
- tencentcloud/vclm/v20240523/vclm_client.py +72 -0
- tencentcloud/vod/v20180717/models.py +128 -11
- tencentcloud/waf/v20180125/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1680 -720
- tencentcloud/waf/v20180125/waf_client.py +83 -45
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/RECORD +52 -42
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/top_level.txt +0 -0
|
@@ -199,14 +199,14 @@ class CancelInvocationResponse(AbstractModel):
|
|
|
199
199
|
|
|
200
200
|
def __init__(self):
|
|
201
201
|
r"""
|
|
202
|
-
:param _RequestId: The unique request ID,
|
|
202
|
+
: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.
|
|
203
203
|
:type RequestId: str
|
|
204
204
|
"""
|
|
205
205
|
self._RequestId = None
|
|
206
206
|
|
|
207
207
|
@property
|
|
208
208
|
def RequestId(self):
|
|
209
|
-
"""The unique request ID,
|
|
209
|
+
"""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.
|
|
210
210
|
:rtype: str
|
|
211
211
|
"""
|
|
212
212
|
return self._RequestId
|
|
@@ -862,7 +862,7 @@ class CreateCommandResponse(AbstractModel):
|
|
|
862
862
|
r"""
|
|
863
863
|
:param _CommandId: Command ID.
|
|
864
864
|
:type CommandId: str
|
|
865
|
-
:param _RequestId: The unique request ID,
|
|
865
|
+
: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.
|
|
866
866
|
:type RequestId: str
|
|
867
867
|
"""
|
|
868
868
|
self._CommandId = None
|
|
@@ -881,7 +881,7 @@ class CreateCommandResponse(AbstractModel):
|
|
|
881
881
|
|
|
882
882
|
@property
|
|
883
883
|
def RequestId(self):
|
|
884
|
-
"""The unique request ID,
|
|
884
|
+
"""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.
|
|
885
885
|
:rtype: str
|
|
886
886
|
"""
|
|
887
887
|
return self._RequestId
|
|
@@ -1033,7 +1033,7 @@ class CreateInvokerResponse(AbstractModel):
|
|
|
1033
1033
|
r"""
|
|
1034
1034
|
:param _InvokerId: Invoker ID.
|
|
1035
1035
|
:type InvokerId: str
|
|
1036
|
-
:param _RequestId: The unique request ID,
|
|
1036
|
+
: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.
|
|
1037
1037
|
:type RequestId: str
|
|
1038
1038
|
"""
|
|
1039
1039
|
self._InvokerId = None
|
|
@@ -1052,7 +1052,7 @@ class CreateInvokerResponse(AbstractModel):
|
|
|
1052
1052
|
|
|
1053
1053
|
@property
|
|
1054
1054
|
def RequestId(self):
|
|
1055
|
-
"""The unique request ID,
|
|
1055
|
+
"""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.
|
|
1056
1056
|
:rtype: str
|
|
1057
1057
|
"""
|
|
1058
1058
|
return self._RequestId
|
|
@@ -1110,14 +1110,14 @@ class DeleteCommandResponse(AbstractModel):
|
|
|
1110
1110
|
|
|
1111
1111
|
def __init__(self):
|
|
1112
1112
|
r"""
|
|
1113
|
-
:param _RequestId: The unique request ID,
|
|
1113
|
+
: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.
|
|
1114
1114
|
:type RequestId: str
|
|
1115
1115
|
"""
|
|
1116
1116
|
self._RequestId = None
|
|
1117
1117
|
|
|
1118
1118
|
@property
|
|
1119
1119
|
def RequestId(self):
|
|
1120
|
-
"""The unique request ID,
|
|
1120
|
+
"""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.
|
|
1121
1121
|
:rtype: str
|
|
1122
1122
|
"""
|
|
1123
1123
|
return self._RequestId
|
|
@@ -1174,14 +1174,14 @@ class DeleteInvokerResponse(AbstractModel):
|
|
|
1174
1174
|
|
|
1175
1175
|
def __init__(self):
|
|
1176
1176
|
r"""
|
|
1177
|
-
:param _RequestId: The unique request ID,
|
|
1177
|
+
: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.
|
|
1178
1178
|
:type RequestId: str
|
|
1179
1179
|
"""
|
|
1180
1180
|
self._RequestId = None
|
|
1181
1181
|
|
|
1182
1182
|
@property
|
|
1183
1183
|
def RequestId(self):
|
|
1184
|
-
"""The unique request ID,
|
|
1184
|
+
"""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.
|
|
1185
1185
|
:rtype: str
|
|
1186
1186
|
"""
|
|
1187
1187
|
return self._RequestId
|
|
@@ -1292,7 +1292,7 @@ class DescribeAutomationAgentStatusResponse(AbstractModel):
|
|
|
1292
1292
|
:type AutomationAgentSet: list of AutomationAgentInfo
|
|
1293
1293
|
:param _TotalCount: Total number of matching agents.
|
|
1294
1294
|
:type TotalCount: int
|
|
1295
|
-
:param _RequestId: The unique request ID,
|
|
1295
|
+
: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.
|
|
1296
1296
|
:type RequestId: str
|
|
1297
1297
|
"""
|
|
1298
1298
|
self._AutomationAgentSet = None
|
|
@@ -1323,7 +1323,7 @@ class DescribeAutomationAgentStatusResponse(AbstractModel):
|
|
|
1323
1323
|
|
|
1324
1324
|
@property
|
|
1325
1325
|
def RequestId(self):
|
|
1326
|
-
"""The unique request ID,
|
|
1326
|
+
"""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.
|
|
1327
1327
|
:rtype: str
|
|
1328
1328
|
"""
|
|
1329
1329
|
return self._RequestId
|
|
@@ -1459,7 +1459,7 @@ class DescribeCommandsResponse(AbstractModel):
|
|
|
1459
1459
|
:type TotalCount: int
|
|
1460
1460
|
:param _CommandSet: List of command details.
|
|
1461
1461
|
:type CommandSet: list of Command
|
|
1462
|
-
:param _RequestId: The unique request ID,
|
|
1462
|
+
: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.
|
|
1463
1463
|
:type RequestId: str
|
|
1464
1464
|
"""
|
|
1465
1465
|
self._TotalCount = None
|
|
@@ -1490,7 +1490,7 @@ class DescribeCommandsResponse(AbstractModel):
|
|
|
1490
1490
|
|
|
1491
1491
|
@property
|
|
1492
1492
|
def RequestId(self):
|
|
1493
|
-
"""The unique request ID,
|
|
1493
|
+
"""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.
|
|
1494
1494
|
:rtype: str
|
|
1495
1495
|
"""
|
|
1496
1496
|
return self._RequestId
|
|
@@ -1623,7 +1623,7 @@ class DescribeInvocationTasksResponse(AbstractModel):
|
|
|
1623
1623
|
:type TotalCount: int
|
|
1624
1624
|
:param _InvocationTaskSet: List of execution tasks.
|
|
1625
1625
|
:type InvocationTaskSet: list of InvocationTask
|
|
1626
|
-
:param _RequestId: The unique request ID,
|
|
1626
|
+
: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.
|
|
1627
1627
|
:type RequestId: str
|
|
1628
1628
|
"""
|
|
1629
1629
|
self._TotalCount = None
|
|
@@ -1654,7 +1654,7 @@ class DescribeInvocationTasksResponse(AbstractModel):
|
|
|
1654
1654
|
|
|
1655
1655
|
@property
|
|
1656
1656
|
def RequestId(self):
|
|
1657
|
-
"""The unique request ID,
|
|
1657
|
+
"""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.
|
|
1658
1658
|
:rtype: str
|
|
1659
1659
|
"""
|
|
1660
1660
|
return self._RequestId
|
|
@@ -1780,7 +1780,7 @@ class DescribeInvocationsResponse(AbstractModel):
|
|
|
1780
1780
|
:type TotalCount: int
|
|
1781
1781
|
:param _InvocationSet: List of execution activities.
|
|
1782
1782
|
:type InvocationSet: list of Invocation
|
|
1783
|
-
:param _RequestId: The unique request ID,
|
|
1783
|
+
: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.
|
|
1784
1784
|
:type RequestId: str
|
|
1785
1785
|
"""
|
|
1786
1786
|
self._TotalCount = None
|
|
@@ -1811,7 +1811,7 @@ class DescribeInvocationsResponse(AbstractModel):
|
|
|
1811
1811
|
|
|
1812
1812
|
@property
|
|
1813
1813
|
def RequestId(self):
|
|
1814
|
-
"""The unique request ID,
|
|
1814
|
+
"""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.
|
|
1815
1815
|
:rtype: str
|
|
1816
1816
|
"""
|
|
1817
1817
|
return self._RequestId
|
|
@@ -1909,7 +1909,7 @@ class DescribeInvokerRecordsResponse(AbstractModel):
|
|
|
1909
1909
|
:type TotalCount: int
|
|
1910
1910
|
:param _InvokerRecordSet: Execution history of an invoker.
|
|
1911
1911
|
:type InvokerRecordSet: list of InvokerRecord
|
|
1912
|
-
:param _RequestId: The unique request ID,
|
|
1912
|
+
: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.
|
|
1913
1913
|
:type RequestId: str
|
|
1914
1914
|
"""
|
|
1915
1915
|
self._TotalCount = None
|
|
@@ -1940,7 +1940,7 @@ class DescribeInvokerRecordsResponse(AbstractModel):
|
|
|
1940
1940
|
|
|
1941
1941
|
@property
|
|
1942
1942
|
def RequestId(self):
|
|
1943
|
-
"""The unique request ID,
|
|
1943
|
+
"""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.
|
|
1944
1944
|
:rtype: str
|
|
1945
1945
|
"""
|
|
1946
1946
|
return self._RequestId
|
|
@@ -2066,7 +2066,7 @@ class DescribeInvokersResponse(AbstractModel):
|
|
|
2066
2066
|
:type TotalCount: int
|
|
2067
2067
|
:param _InvokerSet: Invoker information.
|
|
2068
2068
|
:type InvokerSet: list of Invoker
|
|
2069
|
-
:param _RequestId: The unique request ID,
|
|
2069
|
+
: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.
|
|
2070
2070
|
:type RequestId: str
|
|
2071
2071
|
"""
|
|
2072
2072
|
self._TotalCount = None
|
|
@@ -2097,7 +2097,7 @@ class DescribeInvokersResponse(AbstractModel):
|
|
|
2097
2097
|
|
|
2098
2098
|
@property
|
|
2099
2099
|
def RequestId(self):
|
|
2100
|
-
"""The unique request ID,
|
|
2100
|
+
"""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.
|
|
2101
2101
|
:rtype: str
|
|
2102
2102
|
"""
|
|
2103
2103
|
return self._RequestId
|
|
@@ -2135,7 +2135,7 @@ class DescribeRegionsResponse(AbstractModel):
|
|
|
2135
2135
|
:type TotalCount: int
|
|
2136
2136
|
:param _RegionSet: Region information list
|
|
2137
2137
|
:type RegionSet: list of RegionInfo
|
|
2138
|
-
:param _RequestId: The unique request ID,
|
|
2138
|
+
: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.
|
|
2139
2139
|
:type RequestId: str
|
|
2140
2140
|
"""
|
|
2141
2141
|
self._TotalCount = None
|
|
@@ -2166,7 +2166,7 @@ class DescribeRegionsResponse(AbstractModel):
|
|
|
2166
2166
|
|
|
2167
2167
|
@property
|
|
2168
2168
|
def RequestId(self):
|
|
2169
|
-
"""The unique request ID,
|
|
2169
|
+
"""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.
|
|
2170
2170
|
:rtype: str
|
|
2171
2171
|
"""
|
|
2172
2172
|
return self._RequestId
|
|
@@ -2230,14 +2230,14 @@ class DisableInvokerResponse(AbstractModel):
|
|
|
2230
2230
|
|
|
2231
2231
|
def __init__(self):
|
|
2232
2232
|
r"""
|
|
2233
|
-
:param _RequestId: The unique request ID,
|
|
2233
|
+
: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.
|
|
2234
2234
|
:type RequestId: str
|
|
2235
2235
|
"""
|
|
2236
2236
|
self._RequestId = None
|
|
2237
2237
|
|
|
2238
2238
|
@property
|
|
2239
2239
|
def RequestId(self):
|
|
2240
|
-
"""The unique request ID,
|
|
2240
|
+
"""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.
|
|
2241
2241
|
:rtype: str
|
|
2242
2242
|
"""
|
|
2243
2243
|
return self._RequestId
|
|
@@ -2294,14 +2294,14 @@ class EnableInvokerResponse(AbstractModel):
|
|
|
2294
2294
|
|
|
2295
2295
|
def __init__(self):
|
|
2296
2296
|
r"""
|
|
2297
|
-
:param _RequestId: The unique request ID,
|
|
2297
|
+
: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.
|
|
2298
2298
|
:type RequestId: str
|
|
2299
2299
|
"""
|
|
2300
2300
|
self._RequestId = None
|
|
2301
2301
|
|
|
2302
2302
|
@property
|
|
2303
2303
|
def RequestId(self):
|
|
2304
|
-
"""The unique request ID,
|
|
2304
|
+
"""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.
|
|
2305
2305
|
:rtype: str
|
|
2306
2306
|
"""
|
|
2307
2307
|
return self._RequestId
|
|
@@ -3219,7 +3219,7 @@ class InvokeCommandResponse(AbstractModel):
|
|
|
3219
3219
|
r"""
|
|
3220
3220
|
:param _InvocationId: Execution activity ID.
|
|
3221
3221
|
:type InvocationId: str
|
|
3222
|
-
:param _RequestId: The unique request ID,
|
|
3222
|
+
: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.
|
|
3223
3223
|
:type RequestId: str
|
|
3224
3224
|
"""
|
|
3225
3225
|
self._InvocationId = None
|
|
@@ -3238,7 +3238,7 @@ class InvokeCommandResponse(AbstractModel):
|
|
|
3238
3238
|
|
|
3239
3239
|
@property
|
|
3240
3240
|
def RequestId(self):
|
|
3241
|
-
"""The unique request ID,
|
|
3241
|
+
"""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.
|
|
3242
3242
|
:rtype: str
|
|
3243
3243
|
"""
|
|
3244
3244
|
return self._RequestId
|
|
@@ -3750,14 +3750,14 @@ class ModifyCommandResponse(AbstractModel):
|
|
|
3750
3750
|
|
|
3751
3751
|
def __init__(self):
|
|
3752
3752
|
r"""
|
|
3753
|
-
:param _RequestId: The unique request ID,
|
|
3753
|
+
: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.
|
|
3754
3754
|
:type RequestId: str
|
|
3755
3755
|
"""
|
|
3756
3756
|
self._RequestId = None
|
|
3757
3757
|
|
|
3758
3758
|
@property
|
|
3759
3759
|
def RequestId(self):
|
|
3760
|
-
"""The unique request ID,
|
|
3760
|
+
"""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.
|
|
3761
3761
|
:rtype: str
|
|
3762
3762
|
"""
|
|
3763
3763
|
return self._RequestId
|
|
@@ -3921,14 +3921,14 @@ class ModifyInvokerResponse(AbstractModel):
|
|
|
3921
3921
|
|
|
3922
3922
|
def __init__(self):
|
|
3923
3923
|
r"""
|
|
3924
|
-
:param _RequestId: The unique request ID,
|
|
3924
|
+
: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.
|
|
3925
3925
|
:type RequestId: str
|
|
3926
3926
|
"""
|
|
3927
3927
|
self._RequestId = None
|
|
3928
3928
|
|
|
3929
3929
|
@property
|
|
3930
3930
|
def RequestId(self):
|
|
3931
|
-
"""The unique request ID,
|
|
3931
|
+
"""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.
|
|
3932
3932
|
:rtype: str
|
|
3933
3933
|
"""
|
|
3934
3934
|
return self._RequestId
|
|
@@ -4029,7 +4029,7 @@ class PreviewReplacedCommandContentResponse(AbstractModel):
|
|
|
4029
4029
|
r"""
|
|
4030
4030
|
:param _ReplacedContent: Base64-encoded command with custom parameters.
|
|
4031
4031
|
:type ReplacedContent: str
|
|
4032
|
-
:param _RequestId: The unique request ID,
|
|
4032
|
+
: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.
|
|
4033
4033
|
:type RequestId: str
|
|
4034
4034
|
"""
|
|
4035
4035
|
self._ReplacedContent = None
|
|
@@ -4048,7 +4048,7 @@ class PreviewReplacedCommandContentResponse(AbstractModel):
|
|
|
4048
4048
|
|
|
4049
4049
|
@property
|
|
4050
4050
|
def RequestId(self):
|
|
4051
|
-
"""The unique request ID,
|
|
4051
|
+
"""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.
|
|
4052
4052
|
:rtype: str
|
|
4053
4053
|
"""
|
|
4054
4054
|
return self._RequestId
|
|
@@ -4429,7 +4429,7 @@ class RunCommandResponse(AbstractModel):
|
|
|
4429
4429
|
:type CommandId: str
|
|
4430
4430
|
:param _InvocationId: Execution activity ID.
|
|
4431
4431
|
:type InvocationId: str
|
|
4432
|
-
:param _RequestId: The unique request ID,
|
|
4432
|
+
: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.
|
|
4433
4433
|
:type RequestId: str
|
|
4434
4434
|
"""
|
|
4435
4435
|
self._CommandId = None
|
|
@@ -4460,7 +4460,7 @@ class RunCommandResponse(AbstractModel):
|
|
|
4460
4460
|
|
|
4461
4461
|
@property
|
|
4462
4462
|
def RequestId(self):
|
|
4463
|
-
"""The unique request ID,
|
|
4463
|
+
"""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.
|
|
4464
4464
|
:rtype: str
|
|
4465
4465
|
"""
|
|
4466
4466
|
return self._RequestId
|
|
@@ -94,7 +94,7 @@ class AcknowledgeMessageResponse(AbstractModel):
|
|
|
94
94
|
:param _ErrorMsg: If it is an empty string, no error occurred.
|
|
95
95
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
96
96
|
:type ErrorMsg: str
|
|
97
|
-
:param _RequestId: The unique request ID,
|
|
97
|
+
: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.
|
|
98
98
|
:type RequestId: str
|
|
99
99
|
"""
|
|
100
100
|
self._ErrorMsg = None
|
|
@@ -114,7 +114,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
114
114
|
|
|
115
115
|
@property
|
|
116
116
|
def RequestId(self):
|
|
117
|
-
"""The unique request ID,
|
|
117
|
+
"""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.
|
|
118
118
|
:rtype: str
|
|
119
119
|
"""
|
|
120
120
|
return self._RequestId
|
|
@@ -864,7 +864,7 @@ class CreateApplicationResponse(AbstractModel):
|
|
|
864
864
|
r"""
|
|
865
865
|
:param _Result: ID of the created application
|
|
866
866
|
:type Result: str
|
|
867
|
-
:param _RequestId: The unique request ID,
|
|
867
|
+
: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.
|
|
868
868
|
:type RequestId: str
|
|
869
869
|
"""
|
|
870
870
|
self._Result = None
|
|
@@ -883,7 +883,7 @@ class CreateApplicationResponse(AbstractModel):
|
|
|
883
883
|
|
|
884
884
|
@property
|
|
885
885
|
def RequestId(self):
|
|
886
|
-
"""The unique request ID,
|
|
886
|
+
"""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.
|
|
887
887
|
:rtype: str
|
|
888
888
|
"""
|
|
889
889
|
return self._RequestId
|
|
@@ -62,7 +62,7 @@ FAILEDOPERATION_CREATECLSLOGTOPICTASKFAILED = 'FailedOperation.CreateClsLogTopic
|
|
|
62
62
|
# Authentication failed while creating a custom push task. Check whether the push address is correct.
|
|
63
63
|
FAILEDOPERATION_CREATELOGTOPICTASKAUTHFAILURE = 'FailedOperation.CreateLogTopicTaskAuthFailure'
|
|
64
64
|
|
|
65
|
-
#
|
|
65
|
+
# The edge client certificate has expired. It is not supported to issue expired certificates for the time being.
|
|
66
66
|
FAILEDOPERATION_EDGECLIENTCERTIFICATEHASEXPIRED = 'FailedOperation.EdgeClientCertificateHasExpired'
|
|
67
67
|
|
|
68
68
|
# Another task is being deployed. Please try again later.
|
|
@@ -92,7 +92,7 @@ FAILEDOPERATION_RULEOPERATIONCONFLICT = 'FailedOperation.RuleOperationConflict'
|
|
|
92
92
|
# Unknown configuration group type.
|
|
93
93
|
FAILEDOPERATION_UNKNOWNCONFIGGROUPTYPE = 'FailedOperation.UnknownConfigGroupType'
|
|
94
94
|
|
|
95
|
-
#
|
|
95
|
+
# The client certificate for the origin-pull mutual authentication has expired. It is not supported to issue expired certificates.
|
|
96
96
|
FAILEDOPERATION_UPSTREAMCLIENTCERTIFICATEHASEXPIRED = 'FailedOperation.UpstreamClientCertificateHasExpired'
|
|
97
97
|
|
|
98
98
|
# Internal error.
|
|
@@ -200,7 +200,7 @@ INVALIDPARAMETER_DOMAINONTRAFFICSCHEDULING = 'InvalidParameter.DomainOnTrafficSc
|
|
|
200
200
|
# Duplicate rules.
|
|
201
201
|
INVALIDPARAMETER_DUPLICATERULE = 'InvalidParameter.DuplicateRule'
|
|
202
202
|
|
|
203
|
-
#
|
|
203
|
+
# Invalid edge client certificate configuration.
|
|
204
204
|
INVALIDPARAMETER_EDGECLIENTCERTCHECKERROR = 'InvalidParameter.EdgeClientCertCheckError'
|
|
205
205
|
|
|
206
206
|
# The current conditions do not support the requested operation.
|
|
@@ -581,13 +581,13 @@ INVALIDPARAMETER_LOADBALANCERBINDL7NOTINSTABLESTATUS = 'InvalidParameter.LoadBal
|
|
|
581
581
|
# The LoadBalancer names under the same site should be unique.
|
|
582
582
|
INVALIDPARAMETER_LOADBALANCERNAMEREPEATED = 'InvalidParameter.LoadBalancerNameRepeated'
|
|
583
583
|
|
|
584
|
-
# The LoadBalancer is
|
|
584
|
+
# The LoadBalancer is referenced by the layer-4 instance and cannot be deleted.
|
|
585
585
|
INVALIDPARAMETER_LOADBALANCERUSEDINL4PROXY = 'InvalidParameter.LoadBalancerUsedInL4Proxy'
|
|
586
586
|
|
|
587
|
-
# The LoadBalancer is
|
|
587
|
+
# The LoadBalancer is referenced by the layer-7 domain name and cannot be deleted.
|
|
588
588
|
INVALIDPARAMETER_LOADBALANCERUSEDINL7DOMAIN = 'InvalidParameter.LoadBalancerUsedInL7Domain'
|
|
589
589
|
|
|
590
|
-
# The LoadBalancer is
|
|
590
|
+
# The LoadBalancer is referenced by the rule engine and cannot be deleted.
|
|
591
591
|
INVALIDPARAMETER_LOADBALANCERUSEDINRULEENGINE = 'InvalidParameter.LoadBalancerUsedInRuleEngine'
|
|
592
592
|
|
|
593
593
|
# Modification parameters are missing.
|
|
@@ -722,7 +722,7 @@ INVALIDPARAMETER_TOOMANYFILTERS = 'InvalidParameter.TooManyFilters'
|
|
|
722
722
|
# Invalid file upload link.
|
|
723
723
|
INVALIDPARAMETER_UPLOADURL = 'InvalidParameter.UploadUrl'
|
|
724
724
|
|
|
725
|
-
#
|
|
725
|
+
# Invalid origin-pull client certificate configuration.
|
|
726
726
|
INVALIDPARAMETER_UPSTREAMCLIENTCERTCHECKERROR = 'InvalidParameter.UpstreamClientCertCheckError'
|
|
727
727
|
|
|
728
728
|
# The site is already bound.
|
|
@@ -746,10 +746,10 @@ INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
|
746
746
|
# The domain name for this zone has been banned.
|
|
747
747
|
INVALIDPARAMETERVALUE_ACCESSBLACKLIST = 'InvalidParameterValue.AccessBlacklist'
|
|
748
748
|
|
|
749
|
-
#
|
|
749
|
+
# Alias domain names do not support the configuration of edge mutual authentication for the time being.
|
|
750
750
|
INVALIDPARAMETERVALUE_ALIASDOMAINNOTSUPPORTEDGEMTLS = 'InvalidParameterValue.AliasDomainNotSupportEdgeMTLS'
|
|
751
751
|
|
|
752
|
-
#
|
|
752
|
+
# Alias domain names do not support the configuration of origin-pull mutual authentication for the time being.
|
|
753
753
|
INVALIDPARAMETERVALUE_ALIASDOMAINNOTSUPPORTUPSTREAMMTLS = 'InvalidParameterValue.AliasDomainNotSupportUpstreamMTLS'
|
|
754
754
|
|
|
755
755
|
#
|
|
@@ -758,13 +758,13 @@ INVALIDPARAMETERVALUE_CERTIFICATEVERIFYCLIENTMUSTCA = 'InvalidParameterValue.Cer
|
|
|
758
758
|
#
|
|
759
759
|
INVALIDPARAMETERVALUE_CERTIFICATEVERIFYCLIENTNEEDCERT = 'InvalidParameterValue.CertificateVerifyClientNeedCert'
|
|
760
760
|
|
|
761
|
-
#
|
|
761
|
+
# Currently, only RSA or ECC algorithm certificates are supported for the origin-pull mutual authentication, and the SCA SM2 algorithm certificates are not supported.
|
|
762
762
|
INVALIDPARAMETERVALUE_CERTIFICATEVERIFYUPSTREAMCLIENTMUSTRSAORECC = 'InvalidParameterValue.CertificateVerifyUpstreamClientMustRSAorECC'
|
|
763
763
|
|
|
764
|
-
#
|
|
764
|
+
# The certificate type for the origin-pull mutual authentication is incorrect and cannot be configured as a CA certificate.
|
|
765
765
|
INVALIDPARAMETERVALUE_CERTIFICATEVERIFYUPSTREAMCLIENTMUSTSVR = 'InvalidParameterValue.CertificateVerifyUpstreamClientMustSVR'
|
|
766
766
|
|
|
767
|
-
#
|
|
767
|
+
# Origin-pull mutual authentication configuration requires at least one certificate.
|
|
768
768
|
INVALIDPARAMETERVALUE_CERTIFICATEVERIFYUPSTREAMCLIENTNEEDCERT = 'InvalidParameterValue.CertificateVerifyUpstreamClientNeedCert'
|
|
769
769
|
|
|
770
770
|
#
|
|
@@ -776,7 +776,7 @@ INVALIDPARAMETERVALUE_CONFLICTRECORD = 'InvalidParameterValue.ConflictRecord'
|
|
|
776
776
|
# DNS records conflict with DNSSEC.
|
|
777
777
|
INVALIDPARAMETERVALUE_CONFLICTWITHDNSSEC = 'InvalidParameterValue.ConflictWithDNSSEC'
|
|
778
778
|
|
|
779
|
-
#
|
|
779
|
+
# The DNS record conflicts with acceleration domain name record.
|
|
780
780
|
INVALIDPARAMETERVALUE_CONFLICTWITHDOMAIN = 'InvalidParameterValue.ConflictWithDomain'
|
|
781
781
|
|
|
782
782
|
# This DNS record conflicts with NS records.
|
|
@@ -863,7 +863,7 @@ INVALIDPARAMETERVALUE_TOPLEVELDOMAINNOTSUPPORT = 'InvalidParameterValue.TopLevel
|
|
|
863
863
|
# Configuration item error.
|
|
864
864
|
INVALIDPARAMETERVALUE_UNRECOGNIZABLEVALUE = 'InvalidParameterValue.UnrecognizableValue'
|
|
865
865
|
|
|
866
|
-
#
|
|
866
|
+
# One client certificate is allowed at most in the origin-pull mutual authentication configuration.
|
|
867
867
|
INVALIDPARAMETERVALUE_UPSTREAMCLIENTCERTINFOQUOTALIMIT = 'InvalidParameterValue.UpstreamClientCertInfoQuotaLimit'
|
|
868
868
|
|
|
869
869
|
# The zone name format is incorrect. Please input a correctly formed domain name.
|
|
@@ -986,13 +986,13 @@ OPERATIONDENIED_ENVNOTREADY = 'OperationDenied.EnvNotReady'
|
|
|
986
986
|
# The EdgeOne service of the site is disabled. Please enable it and try again.
|
|
987
987
|
OPERATIONDENIED_ERRZONEISALREADYPAUSED = 'OperationDenied.ErrZoneIsAlreadyPaused'
|
|
988
988
|
|
|
989
|
-
#
|
|
989
|
+
# The edge mutual authentication certificates for the domain name to be changed are inconsistent. Please confirm that the domain name certificates are consistent and try again.
|
|
990
990
|
OPERATIONDENIED_HOSTSCLIENTCERTIFICATEINCONSISTENCY = 'OperationDenied.HostsClientCertificateInconsistency'
|
|
991
991
|
|
|
992
992
|
# The keyless server of the domain name to be changed is inconsistent. Please confirm that the keyless server is consistent before retrying.
|
|
993
993
|
OPERATIONDENIED_HOSTSKEYLESSSERVERINCONSISTENCY = 'OperationDenied.HostsKeylessServerInconsistency'
|
|
994
994
|
|
|
995
|
-
#
|
|
995
|
+
# The origin-pull mutual authentication certificates for the domain name to be changed are inconsistent. Please confirm that the domain name certificates are consistent and try again.
|
|
996
996
|
OPERATIONDENIED_HOSTSUPSTREAMCERTIFICATEINCONSISTENCY = 'OperationDenied.HostsUpstreamCertificateInconsistency'
|
|
997
997
|
|
|
998
998
|
# The security service must be enabled when you enable the DDoS Protection.
|
|
@@ -1064,7 +1064,7 @@ OPERATIONDENIED_NODOMAINACCESSZONEONLYSUPPORTMODIFYTYPE = 'OperationDenied.NoDom
|
|
|
1064
1064
|
# Currently, the keyless certificate feature is available only to users in the allowlist.
|
|
1065
1065
|
OPERATIONDENIED_NOTINKEYLESSWHITELIST = 'OperationDenied.NotInKeylessWhiteList'
|
|
1066
1066
|
|
|
1067
|
-
#
|
|
1067
|
+
# The current origin-pull mutual authentication feature is only available to allowlist users.
|
|
1068
1068
|
OPERATIONDENIED_NOTINUPSTREAMMTLSWHITELIST = 'OperationDenied.NotInUpstreamMTLSWhiteList'
|
|
1069
1069
|
|
|
1070
1070
|
# The current user is not included in the whitelist for version management.
|
|
@@ -1124,10 +1124,10 @@ OPERATIONDENIED_SHAREDCNAMEUNSUPPORTEDIPV6 = 'OperationDenied.SharedCNAMEUnsuppo
|
|
|
1124
1124
|
# The static IP cannot be enabled for this instance's region.
|
|
1125
1125
|
OPERATIONDENIED_STATICIPAREACONFLICT = 'OperationDenied.StaticIpAreaConflict'
|
|
1126
1126
|
|
|
1127
|
-
#
|
|
1127
|
+
# Disabling the origin-pull mutual authentication is not supported now. To disable it, please change the edge HTTPS certificate configuration to 'none'.
|
|
1128
1128
|
OPERATIONDENIED_UNSUPPORTTOCLOSEUPSTREAMMTLS = 'OperationDenied.UnSupportToCloseUpstreamMTLS'
|
|
1129
1129
|
|
|
1130
|
-
#
|
|
1130
|
+
# To enable the origin-pull mutual authentication, please configure the edge HTTPS certificate first.
|
|
1131
1131
|
OPERATIONDENIED_USEUPSTREAMMTLSNEEDOPENHTTPS = 'OperationDenied.UseUpstreamMTLSNeedOpenHttps'
|
|
1132
1132
|
|
|
1133
1133
|
# There is a test version in use. Please release the test version to the live environment, or roll back the test version and try again.
|