tencentcloud-sdk-python-intl-en 3.0.1085__py2.py3-none-any.whl → 3.0.1087__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.

Files changed (53) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/car/v20220110/models.py +2 -2
  3. tencentcloud/cbs/v20170312/models.py +2 -2
  4. tencentcloud/cdc/__init__.py +0 -0
  5. tencentcloud/cdc/v20201214/__init__.py +0 -0
  6. tencentcloud/cdc/v20201214/cdc_client.py +486 -0
  7. tencentcloud/cdc/v20201214/errorcodes.py +78 -0
  8. tencentcloud/cdc/v20201214/models.py +6084 -0
  9. tencentcloud/ciam/v20210420/errorcodes.py +2 -2
  10. tencentcloud/ciam/v20210420/models.py +2 -2
  11. tencentcloud/ckafka/v20190819/models.py +2 -2
  12. tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
  13. tencentcloud/cloudaudit/v20190319/models.py +2 -2
  14. tencentcloud/cls/v20201016/models.py +177 -0
  15. tencentcloud/cmq/v20190304/models.py +74 -74
  16. tencentcloud/cvm/v20170312/errorcodes.py +6 -0
  17. tencentcloud/dnspod/v20210323/errorcodes.py +9 -0
  18. tencentcloud/dnspod/v20210323/models.py +2 -2
  19. tencentcloud/eb/v20210416/models.py +47 -2
  20. tencentcloud/ecm/v20190719/models.py +2 -2
  21. tencentcloud/es/v20180416/models.py +2 -2
  22. tencentcloud/gme/v20180711/errorcodes.py +1 -1
  23. tencentcloud/gme/v20180711/models.py +2 -2
  24. tencentcloud/omics/v20221128/models.py +4 -0
  25. tencentcloud/organization/v20210331/errorcodes.py +96 -0
  26. tencentcloud/organization/v20210331/models.py +2110 -269
  27. tencentcloud/organization/v20210331/organization_client.py +417 -3
  28. tencentcloud/privatedns/v20201028/models.py +159 -35
  29. tencentcloud/privatedns/v20201028/privatedns_client.py +1 -1
  30. tencentcloud/sms/v20210111/errorcodes.py +4 -1
  31. tencentcloud/sqlserver/v20180328/errorcodes.py +3 -0
  32. tencentcloud/sqlserver/v20180328/models.py +2370 -1230
  33. tencentcloud/sqlserver/v20180328/sqlserver_client.py +96 -4
  34. tencentcloud/tat/v20201028/errorcodes.py +12 -0
  35. tencentcloud/tat/v20201028/models.py +38 -38
  36. tencentcloud/tchd/v20230306/models.py +2 -2
  37. tencentcloud/tdmq/v20200217/models.py +2 -2
  38. tencentcloud/tem/v20210701/models.py +2 -2
  39. tencentcloud/tiw/v20190919/errorcodes.py +3 -0
  40. tencentcloud/tiw/v20190919/models.py +102 -102
  41. tencentcloud/tke/v20180525/errorcodes.py +2 -2
  42. tencentcloud/vm/v20201229/errorcodes.py +14 -14
  43. tencentcloud/vm/v20201229/models.py +17 -2
  44. tencentcloud/vm/v20210922/models.py +2 -2
  45. tencentcloud/vod/v20180717/models.py +128 -11
  46. tencentcloud/waf/v20180125/errorcodes.py +3 -0
  47. tencentcloud/waf/v20180125/models.py +1680 -720
  48. tencentcloud/waf/v20180125/waf_client.py +83 -45
  49. tencentcloud/wedata/v20210820/models.py +6 -6
  50. {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/METADATA +1 -1
  51. {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/RECORD +53 -48
  52. {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/WHEEL +0 -0
  53. {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/top_level.txt +0 -0
@@ -141,8 +141,31 @@ class SqlserverClient(AbstractClient):
141
141
  raise TencentCloudSDKException(type(e).__name__, str(e))
142
142
 
143
143
 
144
+ def CreateBasicDBInstances(self, request):
145
+ """This API is used to create basic edition instances (cloud disk).
146
+
147
+ :param request: Request instance for CreateBasicDBInstances.
148
+ :type request: :class:`tencentcloud.sqlserver.v20180328.models.CreateBasicDBInstancesRequest`
149
+ :rtype: :class:`tencentcloud.sqlserver.v20180328.models.CreateBasicDBInstancesResponse`
150
+
151
+ """
152
+ try:
153
+ params = request._serialize()
154
+ headers = request.headers
155
+ body = self.call("CreateBasicDBInstances", params, headers=headers)
156
+ response = json.loads(body)
157
+ model = models.CreateBasicDBInstancesResponse()
158
+ model._deserialize(response["Response"])
159
+ return model
160
+ except Exception as e:
161
+ if isinstance(e, TencentCloudSDKException):
162
+ raise
163
+ else:
164
+ raise TencentCloudSDKException(type(e).__name__, str(e))
165
+
166
+
144
167
  def CreateBusinessDBInstances(self, request):
145
- """This API is used to create a business intelligence service instance.
168
+ """This API is used to create business intelligence service instances (cloud disk).
146
169
 
147
170
  :param request: Request instance for CreateBusinessDBInstances.
148
171
  :type request: :class:`tencentcloud.sqlserver.v20180328.models.CreateBusinessDBInstancesRequest`
@@ -188,7 +211,7 @@ class SqlserverClient(AbstractClient):
188
211
 
189
212
 
190
213
  def CreateCloudDBInstances(self, request):
191
- """This API is used to create a high-availability instance of cloud disk edition.
214
+ """This API is used to create high-availability instances (cloud disk).
192
215
 
193
216
  :param request: Request instance for CreateCloudDBInstances.
194
217
  :type request: :class:`tencentcloud.sqlserver.v20180328.models.CreateCloudDBInstancesRequest`
@@ -211,7 +234,7 @@ class SqlserverClient(AbstractClient):
211
234
 
212
235
 
213
236
  def CreateCloudReadOnlyDBInstances(self, request):
214
- """This API is used to add a read-only replica instance of cloud disk edition.
237
+ """This API is used to create read-only instances (cloud disk).
215
238
 
216
239
  :param request: Request instance for CreateCloudReadOnlyDBInstances.
217
240
  :type request: :class:`tencentcloud.sqlserver.v20180328.models.CreateCloudReadOnlyDBInstancesRequest`
@@ -257,7 +280,7 @@ class SqlserverClient(AbstractClient):
257
280
 
258
281
 
259
282
  def CreateDBInstances(self, request):
260
- """This API is used to create an instance.
283
+ """This API is used to create high-availability instances (local disk)
261
284
 
262
285
  :param request: Request instance for CreateDBInstances.
263
286
  :type request: :class:`tencentcloud.sqlserver.v20180328.models.CreateDBInstancesRequest`
@@ -325,6 +348,29 @@ class SqlserverClient(AbstractClient):
325
348
  raise TencentCloudSDKException(type(e).__name__, str(e))
326
349
 
327
350
 
351
+ def CreateReadOnlyDBInstances(self, request):
352
+ """This API is used to create read-only instances (local disk).
353
+
354
+ :param request: Request instance for CreateReadOnlyDBInstances.
355
+ :type request: :class:`tencentcloud.sqlserver.v20180328.models.CreateReadOnlyDBInstancesRequest`
356
+ :rtype: :class:`tencentcloud.sqlserver.v20180328.models.CreateReadOnlyDBInstancesResponse`
357
+
358
+ """
359
+ try:
360
+ params = request._serialize()
361
+ headers = request.headers
362
+ body = self.call("CreateReadOnlyDBInstances", params, headers=headers)
363
+ response = json.loads(body)
364
+ model = models.CreateReadOnlyDBInstancesResponse()
365
+ model._deserialize(response["Response"])
366
+ return model
367
+ except Exception as e:
368
+ if isinstance(e, TencentCloudSDKException):
369
+ raise
370
+ else:
371
+ raise TencentCloudSDKException(type(e).__name__, str(e))
372
+
373
+
328
374
  def DeleteAccount(self, request):
329
375
  """This API is used to delete an instance account.
330
376
 
@@ -992,6 +1038,29 @@ class SqlserverClient(AbstractClient):
992
1038
  raise TencentCloudSDKException(type(e).__name__, str(e))
993
1039
 
994
1040
 
1041
+ def DescribeRestoreTimeRange(self, request):
1042
+ """This API is used to query the time range available for rollback by time point.
1043
+
1044
+ :param request: Request instance for DescribeRestoreTimeRange.
1045
+ :type request: :class:`tencentcloud.sqlserver.v20180328.models.DescribeRestoreTimeRangeRequest`
1046
+ :rtype: :class:`tencentcloud.sqlserver.v20180328.models.DescribeRestoreTimeRangeResponse`
1047
+
1048
+ """
1049
+ try:
1050
+ params = request._serialize()
1051
+ headers = request.headers
1052
+ body = self.call("DescribeRestoreTimeRange", params, headers=headers)
1053
+ response = json.loads(body)
1054
+ model = models.DescribeRestoreTimeRangeResponse()
1055
+ model._deserialize(response["Response"])
1056
+ return model
1057
+ except Exception as e:
1058
+ if isinstance(e, TencentCloudSDKException):
1059
+ raise
1060
+ else:
1061
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1062
+
1063
+
995
1064
  def DescribeRollbackTime(self, request):
996
1065
  """This API is used to query the time range available for instance rollback.
997
1066
 
@@ -1384,6 +1453,29 @@ class SqlserverClient(AbstractClient):
1384
1453
  raise TencentCloudSDKException(type(e).__name__, str(e))
1385
1454
 
1386
1455
 
1456
+ def ModifyDReadable(self, request):
1457
+ """This API is used to enable or disable the read-only feature of the replica server.
1458
+
1459
+ :param request: Request instance for ModifyDReadable.
1460
+ :type request: :class:`tencentcloud.sqlserver.v20180328.models.ModifyDReadableRequest`
1461
+ :rtype: :class:`tencentcloud.sqlserver.v20180328.models.ModifyDReadableResponse`
1462
+
1463
+ """
1464
+ try:
1465
+ params = request._serialize()
1466
+ headers = request.headers
1467
+ body = self.call("ModifyDReadable", params, headers=headers)
1468
+ response = json.loads(body)
1469
+ model = models.ModifyDReadableResponse()
1470
+ model._deserialize(response["Response"])
1471
+ return model
1472
+ except Exception as e:
1473
+ if isinstance(e, TencentCloudSDKException):
1474
+ raise
1475
+ else:
1476
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1477
+
1478
+
1387
1479
  def ModifyDatabaseCDC(self, request):
1388
1480
  """This API is used to enable or disable the change data capture (CDC) feature.
1389
1481
 
@@ -164,6 +164,9 @@ RESOURCENOTFOUND_INVOCATIONNOTFOUND = 'ResourceNotFound.InvocationNotFound'
164
164
  # The role does not exist.
165
165
  RESOURCENOTFOUND_ROLENOTFOUND = 'ResourceNotFound.RoleNotFound'
166
166
 
167
+ #
168
+ RESOURCEUNAVAILABLE = 'ResourceUnavailable'
169
+
167
170
  # TAT Agent is not installed.
168
171
  RESOURCEUNAVAILABLE_AGENTNOTINSTALLED = 'ResourceUnavailable.AgentNotInstalled'
169
172
 
@@ -182,6 +185,12 @@ RESOURCEUNAVAILABLE_INSTANCESTATENOTRUNNING = 'ResourceUnavailable.InstanceState
182
185
  # Lighthouse is not supported in the region.
183
186
  RESOURCEUNAVAILABLE_LIGHTHOUSEUNSUPPORTEDREGION = 'ResourceUnavailable.LighthouseUnsupportedRegion'
184
187
 
188
+ #
189
+ RESOURCEUNAVAILABLE_USERHASNOQUOTACODE = 'ResourceUnavailable.UserHasNoQuotaCode'
190
+
191
+ #
192
+ UNAUTHORIZEDOPERATION_ASSUMEROLEUNAUTHORIZED = 'UnauthorizedOperation.AssumeRoleUnauthorized'
193
+
185
194
  # CAM authentication failed.
186
195
  UNAUTHORIZEDOPERATION_CAMAUTHFAILED = 'UnauthorizedOperation.CamAuthFailed'
187
196
 
@@ -196,3 +205,6 @@ UNAUTHORIZEDOPERATION_MFANOTFOUND = 'UnauthorizedOperation.MFANotFound'
196
205
 
197
206
  # Unknown parameter error.
198
207
  UNKNOWNPARAMETER = 'UnknownParameter'
208
+
209
+ #
210
+ UNSUPPORTEDOPERATION = 'UnsupportedOperation'
@@ -199,14 +199,14 @@ class CancelInvocationResponse(AbstractModel):
199
199
 
200
200
  def __init__(self):
201
201
  r"""
202
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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
@@ -95,7 +95,7 @@ class DescribeEventsResponse(AbstractModel):
95
95
  r"""
96
96
  :param _Data: Detailed event information.
97
97
  :type Data: :class:`tencentcloud.tchd.v20230306.models.ProductEventList`
98
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
98
+ :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.
99
99
  :type RequestId: str
100
100
  """
101
101
  self._Data = None
@@ -114,7 +114,7 @@ class DescribeEventsResponse(AbstractModel):
114
114
 
115
115
  @property
116
116
  def RequestId(self):
117
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
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
@@ -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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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
@@ -80,6 +80,9 @@ INVALIDPARAMETER_INVALIDEXTRA = 'InvalidParameter.InvalidExtra'
80
80
  # Unsupported configuration task type.
81
81
  INVALIDPARAMETER_INVALIDTASKTYPE = 'InvalidParameter.InvalidTaskType'
82
82
 
83
+ #
84
+ INVALIDPARAMETER_PREPROCESSPARAMETER = 'InvalidParameter.PreprocessParameter'
85
+
83
86
  # The format of the real-time recording parameter is invalid.
84
87
  INVALIDPARAMETER_RECORDPARAMETER = 'InvalidParameter.RecordParameter'
85
88