tencentcloud-sdk-python 3.0.1409__py2.py3-none-any.whl → 3.0.1411__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/ams/v20201229/models.py +16 -189
- tencentcloud/apm/v20210622/models.py +15 -0
- tencentcloud/bh/v20230418/bh_client.py +138 -0
- tencentcloud/bh/v20230418/errorcodes.py +3 -0
- tencentcloud/bh/v20230418/models.py +991 -67
- tencentcloud/ccc/v20200210/models.py +2 -2
- tencentcloud/cdb/v20170320/cdb_client.py +27 -21
- tencentcloud/cdb/v20170320/errorcodes.py +0 -3
- tencentcloud/cdb/v20170320/models.py +294 -214
- tencentcloud/ctem/__init__.py +0 -0
- tencentcloud/ctem/v20231128/__init__.py +0 -0
- tencentcloud/ctem/v20231128/ctem_client.py +601 -0
- tencentcloud/ctem/v20231128/errorcodes.py +75 -0
- tencentcloud/ctem/v20231128/models.py +10459 -0
- tencentcloud/cwp/v20180228/models.py +165 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/dlc/v20210125/dlc_client.py +3 -1
- tencentcloud/dlc/v20210125/models.py +24 -7
- tencentcloud/dnspod/v20210323/errorcodes.py +1 -1
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -3
- tencentcloud/dsgc/v20190723/models.py +342 -15
- tencentcloud/emr/v20190103/models.py +155 -0
- tencentcloud/es/v20180416/errorcodes.py +42 -0
- tencentcloud/ess/v20201111/models.py +33 -4
- tencentcloud/hunyuan/v20230901/models.py +17 -2
- tencentcloud/ims/v20201229/models.py +2 -30
- tencentcloud/iotexplorer/v20190423/models.py +4 -4
- tencentcloud/iotvideo/v20201215/models.py +2 -2
- tencentcloud/iotvideo/v20211125/models.py +2 -2
- tencentcloud/kms/v20190118/errorcodes.py +36 -0
- tencentcloud/kms/v20190118/kms_client.py +345 -0
- tencentcloud/kms/v20190118/models.py +3437 -1534
- tencentcloud/lighthouse/v20200324/errorcodes.py +9 -0
- tencentcloud/lke/v20231130/lke_client.py +92 -0
- tencentcloud/lke/v20231130/models.py +2782 -622
- tencentcloud/mongodb/v20190725/models.py +15 -0
- tencentcloud/mps/v20190612/models.py +217 -18
- tencentcloud/mqtt/v20240516/errorcodes.py +3 -0
- tencentcloud/mqtt/v20240516/models.py +255 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/redis/v20180412/models.py +6 -6
- tencentcloud/ses/v20201002/models.py +0 -8
- tencentcloud/tcss/v20201101/models.py +15 -0
- tencentcloud/thpc/v20230321/models.py +47 -2
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/tke/v20180525/models.py +19 -0
- tencentcloud/trocket/v20230308/models.py +624 -354
- tencentcloud/trocket/v20230308/trocket_client.py +28 -5
- tencentcloud/vm/v20210922/models.py +45 -172
- tencentcloud/vpc/v20170312/models.py +15 -0
- tencentcloud/waf/v20180125/models.py +110 -18
- tencentcloud/wedata/v20210820/models.py +1003 -4
- tencentcloud/wedata/v20210820/wedata_client.py +71 -2
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/RECORD +60 -55
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/top_level.txt +0 -0
@@ -40236,10 +40236,16 @@ MachineName主机名模糊查询, Type,Status精确匹配,CreateBeginTime,
|
|
40236
40236
|
:type Offset: int
|
40237
40237
|
:param _Limit: 需要返回的数量,默认为10,最大值为100
|
40238
40238
|
:type Limit: int
|
40239
|
+
:param _Order: 排序,大小写无关:asc 升序,desc降序
|
40240
|
+
:type Order: str
|
40241
|
+
:param _By: 排序列,严格相等:最近检测时间RecentFoundTime
|
40242
|
+
:type By: str
|
40239
40243
|
"""
|
40240
40244
|
self._Filters = None
|
40241
40245
|
self._Offset = None
|
40242
40246
|
self._Limit = None
|
40247
|
+
self._Order = None
|
40248
|
+
self._By = None
|
40243
40249
|
|
40244
40250
|
@property
|
40245
40251
|
def Filters(self):
|
@@ -40276,6 +40282,28 @@ MachineName主机名模糊查询, Type,Status精确匹配,CreateBeginTime,
|
|
40276
40282
|
def Limit(self, Limit):
|
40277
40283
|
self._Limit = Limit
|
40278
40284
|
|
40285
|
+
@property
|
40286
|
+
def Order(self):
|
40287
|
+
"""排序,大小写无关:asc 升序,desc降序
|
40288
|
+
:rtype: str
|
40289
|
+
"""
|
40290
|
+
return self._Order
|
40291
|
+
|
40292
|
+
@Order.setter
|
40293
|
+
def Order(self, Order):
|
40294
|
+
self._Order = Order
|
40295
|
+
|
40296
|
+
@property
|
40297
|
+
def By(self):
|
40298
|
+
"""排序列,严格相等:最近检测时间RecentFoundTime
|
40299
|
+
:rtype: str
|
40300
|
+
"""
|
40301
|
+
return self._By
|
40302
|
+
|
40303
|
+
@By.setter
|
40304
|
+
def By(self, By):
|
40305
|
+
self._By = By
|
40306
|
+
|
40279
40307
|
|
40280
40308
|
def _deserialize(self, params):
|
40281
40309
|
if params.get("Filters") is not None:
|
@@ -40286,6 +40314,8 @@ MachineName主机名模糊查询, Type,Status精确匹配,CreateBeginTime,
|
|
40286
40314
|
self._Filters.append(obj)
|
40287
40315
|
self._Offset = params.get("Offset")
|
40288
40316
|
self._Limit = params.get("Limit")
|
40317
|
+
self._Order = params.get("Order")
|
40318
|
+
self._By = params.get("By")
|
40289
40319
|
memeber_set = set(params.keys())
|
40290
40320
|
for name, value in vars(self).items():
|
40291
40321
|
property_name = name[1:]
|
@@ -41046,6 +41076,10 @@ class DescribeLicenseGeneralResponse(AbstractModel):
|
|
41046
41076
|
:type DestroyOrderNum: int
|
41047
41077
|
:param _RepurchaseRenewSwitch: 自动加购是否自动续费开关,true 开启,false 关闭
|
41048
41078
|
:type RepurchaseRenewSwitch: bool
|
41079
|
+
:param _AutoBindRaspSwitch: 是否自动新增机器绑定rasp防护,false 关闭 true 开启
|
41080
|
+
:type AutoBindRaspSwitch: bool
|
41081
|
+
:param _AutoOpenRaspSwitch: 是否自动新增机器开启rasp防护,false 关闭 true 开启
|
41082
|
+
:type AutoOpenRaspSwitch: bool
|
41049
41083
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
41050
41084
|
:type RequestId: str
|
41051
41085
|
"""
|
@@ -41068,6 +41102,8 @@ class DescribeLicenseGeneralResponse(AbstractModel):
|
|
41068
41102
|
self._AutoRepurchaseRenewSwitch = None
|
41069
41103
|
self._DestroyOrderNum = None
|
41070
41104
|
self._RepurchaseRenewSwitch = None
|
41105
|
+
self._AutoBindRaspSwitch = None
|
41106
|
+
self._AutoOpenRaspSwitch = None
|
41071
41107
|
self._RequestId = None
|
41072
41108
|
|
41073
41109
|
@property
|
@@ -41279,6 +41315,28 @@ class DescribeLicenseGeneralResponse(AbstractModel):
|
|
41279
41315
|
def RepurchaseRenewSwitch(self, RepurchaseRenewSwitch):
|
41280
41316
|
self._RepurchaseRenewSwitch = RepurchaseRenewSwitch
|
41281
41317
|
|
41318
|
+
@property
|
41319
|
+
def AutoBindRaspSwitch(self):
|
41320
|
+
"""是否自动新增机器绑定rasp防护,false 关闭 true 开启
|
41321
|
+
:rtype: bool
|
41322
|
+
"""
|
41323
|
+
return self._AutoBindRaspSwitch
|
41324
|
+
|
41325
|
+
@AutoBindRaspSwitch.setter
|
41326
|
+
def AutoBindRaspSwitch(self, AutoBindRaspSwitch):
|
41327
|
+
self._AutoBindRaspSwitch = AutoBindRaspSwitch
|
41328
|
+
|
41329
|
+
@property
|
41330
|
+
def AutoOpenRaspSwitch(self):
|
41331
|
+
"""是否自动新增机器开启rasp防护,false 关闭 true 开启
|
41332
|
+
:rtype: bool
|
41333
|
+
"""
|
41334
|
+
return self._AutoOpenRaspSwitch
|
41335
|
+
|
41336
|
+
@AutoOpenRaspSwitch.setter
|
41337
|
+
def AutoOpenRaspSwitch(self, AutoOpenRaspSwitch):
|
41338
|
+
self._AutoOpenRaspSwitch = AutoOpenRaspSwitch
|
41339
|
+
|
41282
41340
|
@property
|
41283
41341
|
def RequestId(self):
|
41284
41342
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -41311,6 +41369,8 @@ class DescribeLicenseGeneralResponse(AbstractModel):
|
|
41311
41369
|
self._AutoRepurchaseRenewSwitch = params.get("AutoRepurchaseRenewSwitch")
|
41312
41370
|
self._DestroyOrderNum = params.get("DestroyOrderNum")
|
41313
41371
|
self._RepurchaseRenewSwitch = params.get("RepurchaseRenewSwitch")
|
41372
|
+
self._AutoBindRaspSwitch = params.get("AutoBindRaspSwitch")
|
41373
|
+
self._AutoOpenRaspSwitch = params.get("AutoOpenRaspSwitch")
|
41314
41374
|
self._RequestId = params.get("RequestId")
|
41315
41375
|
|
41316
41376
|
|
@@ -58972,6 +59032,8 @@ class DescribeVulInfoCvssResponse(AbstractModel):
|
|
58972
59032
|
:type SuccessFixCount: int
|
58973
59033
|
:param _FixSwitch: 修复是否支持:0-windows/linux均不支持修复 ;1-windows/linux 均支持修复 ;2-仅linux支持修复;3-仅windows支持修复
|
58974
59034
|
:type FixSwitch: int
|
59035
|
+
:param _SupportDefence: 是否支持防御: 0-不支持 1-支持
|
59036
|
+
:type SupportDefence: int
|
58975
59037
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
58976
59038
|
:type RequestId: str
|
58977
59039
|
"""
|
@@ -58992,6 +59054,7 @@ class DescribeVulInfoCvssResponse(AbstractModel):
|
|
58992
59054
|
self._DefenseAttackCount = None
|
58993
59055
|
self._SuccessFixCount = None
|
58994
59056
|
self._FixSwitch = None
|
59057
|
+
self._SupportDefence = None
|
58995
59058
|
self._RequestId = None
|
58996
59059
|
|
58997
59060
|
@property
|
@@ -59181,6 +59244,17 @@ class DescribeVulInfoCvssResponse(AbstractModel):
|
|
59181
59244
|
def FixSwitch(self, FixSwitch):
|
59182
59245
|
self._FixSwitch = FixSwitch
|
59183
59246
|
|
59247
|
+
@property
|
59248
|
+
def SupportDefence(self):
|
59249
|
+
"""是否支持防御: 0-不支持 1-支持
|
59250
|
+
:rtype: int
|
59251
|
+
"""
|
59252
|
+
return self._SupportDefence
|
59253
|
+
|
59254
|
+
@SupportDefence.setter
|
59255
|
+
def SupportDefence(self, SupportDefence):
|
59256
|
+
self._SupportDefence = SupportDefence
|
59257
|
+
|
59184
59258
|
@property
|
59185
59259
|
def RequestId(self):
|
59186
59260
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -59211,6 +59285,7 @@ class DescribeVulInfoCvssResponse(AbstractModel):
|
|
59211
59285
|
self._DefenseAttackCount = params.get("DefenseAttackCount")
|
59212
59286
|
self._SuccessFixCount = params.get("SuccessFixCount")
|
59213
59287
|
self._FixSwitch = params.get("FixSwitch")
|
59288
|
+
self._SupportDefence = params.get("SupportDefence")
|
59214
59289
|
self._RequestId = params.get("RequestId")
|
59215
59290
|
|
59216
59291
|
|
@@ -67954,9 +68029,15 @@ MachineName主机名模糊查询, Type,Status精确匹配,CreateBeginTime,
|
|
67954
68029
|
:type Filters: list of Filter
|
67955
68030
|
:param _Where: 导出字段
|
67956
68031
|
:type Where: list of str
|
68032
|
+
:param _Order: 排序,大小写无关:asc 升序,desc降序
|
68033
|
+
:type Order: str
|
68034
|
+
:param _By: 排序列,严格相等:最近检测时间RecentFoundTime
|
68035
|
+
:type By: str
|
67957
68036
|
"""
|
67958
68037
|
self._Filters = None
|
67959
68038
|
self._Where = None
|
68039
|
+
self._Order = None
|
68040
|
+
self._By = None
|
67960
68041
|
|
67961
68042
|
@property
|
67962
68043
|
def Filters(self):
|
@@ -67982,6 +68063,28 @@ MachineName主机名模糊查询, Type,Status精确匹配,CreateBeginTime,
|
|
67982
68063
|
def Where(self, Where):
|
67983
68064
|
self._Where = Where
|
67984
68065
|
|
68066
|
+
@property
|
68067
|
+
def Order(self):
|
68068
|
+
"""排序,大小写无关:asc 升序,desc降序
|
68069
|
+
:rtype: str
|
68070
|
+
"""
|
68071
|
+
return self._Order
|
68072
|
+
|
68073
|
+
@Order.setter
|
68074
|
+
def Order(self, Order):
|
68075
|
+
self._Order = Order
|
68076
|
+
|
68077
|
+
@property
|
68078
|
+
def By(self):
|
68079
|
+
"""排序列,严格相等:最近检测时间RecentFoundTime
|
68080
|
+
:rtype: str
|
68081
|
+
"""
|
68082
|
+
return self._By
|
68083
|
+
|
68084
|
+
@By.setter
|
68085
|
+
def By(self, By):
|
68086
|
+
self._By = By
|
68087
|
+
|
67985
68088
|
|
67986
68089
|
def _deserialize(self, params):
|
67987
68090
|
if params.get("Filters") is not None:
|
@@ -67991,6 +68094,8 @@ MachineName主机名模糊查询, Type,Status精确匹配,CreateBeginTime,
|
|
67991
68094
|
obj._deserialize(item)
|
67992
68095
|
self._Filters.append(obj)
|
67993
68096
|
self._Where = params.get("Where")
|
68097
|
+
self._Order = params.get("Order")
|
68098
|
+
self._By = params.get("By")
|
67994
68099
|
memeber_set = set(params.keys())
|
67995
68100
|
for name, value in vars(self).items():
|
67996
68101
|
property_name = name[1:]
|
@@ -79883,11 +79988,17 @@ class ModifyAutoOpenProVersionConfigRequest(AbstractModel):
|
|
79883
79988
|
:type AutoRepurchaseRenewSwitch: int
|
79884
79989
|
:param _RepurchaseRenewSwitch: 手动购买的订单是否自动续费,默认0, 0关闭 ,1 开启
|
79885
79990
|
:type RepurchaseRenewSwitch: int
|
79991
|
+
:param _AutoBindRaspSwitch: 新增机器自动绑定rasp,0 关闭 1开启
|
79992
|
+
:type AutoBindRaspSwitch: int
|
79993
|
+
:param _AutoOpenRaspSwitch: 新增机器自动开启rasp防护,默认关闭,0 关闭 1开启
|
79994
|
+
:type AutoOpenRaspSwitch: int
|
79886
79995
|
"""
|
79887
79996
|
self._Status = None
|
79888
79997
|
self._AutoRepurchaseSwitch = None
|
79889
79998
|
self._AutoRepurchaseRenewSwitch = None
|
79890
79999
|
self._RepurchaseRenewSwitch = None
|
80000
|
+
self._AutoBindRaspSwitch = None
|
80001
|
+
self._AutoOpenRaspSwitch = None
|
79891
80002
|
|
79892
80003
|
@property
|
79893
80004
|
def Status(self):
|
@@ -79935,12 +80046,36 @@ class ModifyAutoOpenProVersionConfigRequest(AbstractModel):
|
|
79935
80046
|
def RepurchaseRenewSwitch(self, RepurchaseRenewSwitch):
|
79936
80047
|
self._RepurchaseRenewSwitch = RepurchaseRenewSwitch
|
79937
80048
|
|
80049
|
+
@property
|
80050
|
+
def AutoBindRaspSwitch(self):
|
80051
|
+
"""新增机器自动绑定rasp,0 关闭 1开启
|
80052
|
+
:rtype: int
|
80053
|
+
"""
|
80054
|
+
return self._AutoBindRaspSwitch
|
80055
|
+
|
80056
|
+
@AutoBindRaspSwitch.setter
|
80057
|
+
def AutoBindRaspSwitch(self, AutoBindRaspSwitch):
|
80058
|
+
self._AutoBindRaspSwitch = AutoBindRaspSwitch
|
80059
|
+
|
80060
|
+
@property
|
80061
|
+
def AutoOpenRaspSwitch(self):
|
80062
|
+
"""新增机器自动开启rasp防护,默认关闭,0 关闭 1开启
|
80063
|
+
:rtype: int
|
80064
|
+
"""
|
80065
|
+
return self._AutoOpenRaspSwitch
|
80066
|
+
|
80067
|
+
@AutoOpenRaspSwitch.setter
|
80068
|
+
def AutoOpenRaspSwitch(self, AutoOpenRaspSwitch):
|
80069
|
+
self._AutoOpenRaspSwitch = AutoOpenRaspSwitch
|
80070
|
+
|
79938
80071
|
|
79939
80072
|
def _deserialize(self, params):
|
79940
80073
|
self._Status = params.get("Status")
|
79941
80074
|
self._AutoRepurchaseSwitch = params.get("AutoRepurchaseSwitch")
|
79942
80075
|
self._AutoRepurchaseRenewSwitch = params.get("AutoRepurchaseRenewSwitch")
|
79943
80076
|
self._RepurchaseRenewSwitch = params.get("RepurchaseRenewSwitch")
|
80077
|
+
self._AutoBindRaspSwitch = params.get("AutoBindRaspSwitch")
|
80078
|
+
self._AutoOpenRaspSwitch = params.get("AutoOpenRaspSwitch")
|
79944
80079
|
memeber_set = set(params.keys())
|
79945
80080
|
for name, value in vars(self).items():
|
79946
80081
|
property_name = name[1:]
|
@@ -104006,11 +104141,17 @@ class VulEmergentMsgInfo(AbstractModel):
|
|
104006
104141
|
:type Name: str
|
104007
104142
|
:param _NameEn: 漏洞名,英文描述
|
104008
104143
|
:type NameEn: str
|
104144
|
+
:param _SupportFix: 是否支持自动修复 0:不支持 >0: 支持
|
104145
|
+
:type SupportFix: int
|
104146
|
+
:param _SupportDefense: 是否支持自动防御 0:不支持 1:支持
|
104147
|
+
:type SupportDefense: int
|
104009
104148
|
"""
|
104010
104149
|
self._VulId = None
|
104011
104150
|
self._PublishTime = None
|
104012
104151
|
self._Name = None
|
104013
104152
|
self._NameEn = None
|
104153
|
+
self._SupportFix = None
|
104154
|
+
self._SupportDefense = None
|
104014
104155
|
|
104015
104156
|
@property
|
104016
104157
|
def VulId(self):
|
@@ -104056,12 +104197,36 @@ class VulEmergentMsgInfo(AbstractModel):
|
|
104056
104197
|
def NameEn(self, NameEn):
|
104057
104198
|
self._NameEn = NameEn
|
104058
104199
|
|
104200
|
+
@property
|
104201
|
+
def SupportFix(self):
|
104202
|
+
"""是否支持自动修复 0:不支持 >0: 支持
|
104203
|
+
:rtype: int
|
104204
|
+
"""
|
104205
|
+
return self._SupportFix
|
104206
|
+
|
104207
|
+
@SupportFix.setter
|
104208
|
+
def SupportFix(self, SupportFix):
|
104209
|
+
self._SupportFix = SupportFix
|
104210
|
+
|
104211
|
+
@property
|
104212
|
+
def SupportDefense(self):
|
104213
|
+
"""是否支持自动防御 0:不支持 1:支持
|
104214
|
+
:rtype: int
|
104215
|
+
"""
|
104216
|
+
return self._SupportDefense
|
104217
|
+
|
104218
|
+
@SupportDefense.setter
|
104219
|
+
def SupportDefense(self, SupportDefense):
|
104220
|
+
self._SupportDefense = SupportDefense
|
104221
|
+
|
104059
104222
|
|
104060
104223
|
def _deserialize(self, params):
|
104061
104224
|
self._VulId = params.get("VulId")
|
104062
104225
|
self._PublishTime = params.get("PublishTime")
|
104063
104226
|
self._Name = params.get("Name")
|
104064
104227
|
self._NameEn = params.get("NameEn")
|
104228
|
+
self._SupportFix = params.get("SupportFix")
|
104229
|
+
self._SupportDefense = params.get("SupportDefense")
|
104065
104230
|
memeber_set = set(params.keys())
|
104066
104231
|
for name, value in vars(self).items():
|
104067
104232
|
property_name = name[1:]
|
@@ -317,6 +317,9 @@ OPERATIONDENIED_PROXYNOTRUNNINGERROR = 'OperationDenied.ProxyNotRunningError'
|
|
317
317
|
# 可用区不存在
|
318
318
|
OPERATIONDENIED_PROXYSALEZONECHECKERROR = 'OperationDenied.ProxySaleZoneCheckError'
|
319
319
|
|
320
|
+
# proxy库存不足
|
321
|
+
OPERATIONDENIED_PROXYSTOCKCHECKERROR = 'OperationDenied.ProxyStockCheckError'
|
322
|
+
|
320
323
|
# 代理版本检查失败
|
321
324
|
OPERATIONDENIED_PROXYVERSIONCHECKERROR = 'OperationDenied.ProxyVersionCheckError'
|
322
325
|
|
@@ -6200,6 +6200,10 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
6200
6200
|
:type GdnId: str
|
6201
6201
|
:param _ProxyConfig: 数据库代理配置
|
6202
6202
|
:type ProxyConfig: :class:`tencentcloud.cynosdb.v20190107.models.ProxyConfig`
|
6203
|
+
:param _AutoArchive: 是否自动归档
|
6204
|
+
:type AutoArchive: str
|
6205
|
+
:param _AutoArchiveDelayHours: 暂停后的归档处理时间
|
6206
|
+
:type AutoArchiveDelayHours: int
|
6203
6207
|
"""
|
6204
6208
|
self._Zone = None
|
6205
6209
|
self._VpcId = None
|
@@ -6244,6 +6248,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
6244
6248
|
self._InstanceInitInfos = None
|
6245
6249
|
self._GdnId = None
|
6246
6250
|
self._ProxyConfig = None
|
6251
|
+
self._AutoArchive = None
|
6252
|
+
self._AutoArchiveDelayHours = None
|
6247
6253
|
|
6248
6254
|
@property
|
6249
6255
|
def Zone(self):
|
@@ -6740,6 +6746,28 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
6740
6746
|
def ProxyConfig(self, ProxyConfig):
|
6741
6747
|
self._ProxyConfig = ProxyConfig
|
6742
6748
|
|
6749
|
+
@property
|
6750
|
+
def AutoArchive(self):
|
6751
|
+
"""是否自动归档
|
6752
|
+
:rtype: str
|
6753
|
+
"""
|
6754
|
+
return self._AutoArchive
|
6755
|
+
|
6756
|
+
@AutoArchive.setter
|
6757
|
+
def AutoArchive(self, AutoArchive):
|
6758
|
+
self._AutoArchive = AutoArchive
|
6759
|
+
|
6760
|
+
@property
|
6761
|
+
def AutoArchiveDelayHours(self):
|
6762
|
+
"""暂停后的归档处理时间
|
6763
|
+
:rtype: int
|
6764
|
+
"""
|
6765
|
+
return self._AutoArchiveDelayHours
|
6766
|
+
|
6767
|
+
@AutoArchiveDelayHours.setter
|
6768
|
+
def AutoArchiveDelayHours(self, AutoArchiveDelayHours):
|
6769
|
+
self._AutoArchiveDelayHours = AutoArchiveDelayHours
|
6770
|
+
|
6743
6771
|
|
6744
6772
|
def _deserialize(self, params):
|
6745
6773
|
self._Zone = params.get("Zone")
|
@@ -6802,6 +6830,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
6802
6830
|
if params.get("ProxyConfig") is not None:
|
6803
6831
|
self._ProxyConfig = ProxyConfig()
|
6804
6832
|
self._ProxyConfig._deserialize(params.get("ProxyConfig"))
|
6833
|
+
self._AutoArchive = params.get("AutoArchive")
|
6834
|
+
self._AutoArchiveDelayHours = params.get("AutoArchiveDelayHours")
|
6805
6835
|
memeber_set = set(params.keys())
|
6806
6836
|
for name, value in vars(self).items():
|
6807
6837
|
property_name = name[1:]
|
@@ -18411,6 +18441,8 @@ offlined 已下线
|
|
18411
18441
|
:type Status: str
|
18412
18442
|
:param _InstanceIds: 实例id列表
|
18413
18443
|
:type InstanceIds: list of str
|
18444
|
+
:param _ClusterType: 集群类型,取值范围<li> CYNOSDB:事务集群 </li><li> LIBRADB:分析集群 </li><li> ALL:全部 </li>,缺省为 ALL
|
18445
|
+
:type ClusterType: str
|
18414
18446
|
"""
|
18415
18447
|
self._Limit = None
|
18416
18448
|
self._Offset = None
|
@@ -18420,6 +18452,7 @@ offlined 已下线
|
|
18420
18452
|
self._DbType = None
|
18421
18453
|
self._Status = None
|
18422
18454
|
self._InstanceIds = None
|
18455
|
+
self._ClusterType = None
|
18423
18456
|
|
18424
18457
|
@property
|
18425
18458
|
def Limit(self):
|
@@ -18520,6 +18553,17 @@ offlined 已下线
|
|
18520
18553
|
def InstanceIds(self, InstanceIds):
|
18521
18554
|
self._InstanceIds = InstanceIds
|
18522
18555
|
|
18556
|
+
@property
|
18557
|
+
def ClusterType(self):
|
18558
|
+
"""集群类型,取值范围<li> CYNOSDB:事务集群 </li><li> LIBRADB:分析集群 </li><li> ALL:全部 </li>,缺省为 ALL
|
18559
|
+
:rtype: str
|
18560
|
+
"""
|
18561
|
+
return self._ClusterType
|
18562
|
+
|
18563
|
+
@ClusterType.setter
|
18564
|
+
def ClusterType(self, ClusterType):
|
18565
|
+
self._ClusterType = ClusterType
|
18566
|
+
|
18523
18567
|
|
18524
18568
|
def _deserialize(self, params):
|
18525
18569
|
self._Limit = params.get("Limit")
|
@@ -18535,6 +18579,7 @@ offlined 已下线
|
|
18535
18579
|
self._DbType = params.get("DbType")
|
18536
18580
|
self._Status = params.get("Status")
|
18537
18581
|
self._InstanceIds = params.get("InstanceIds")
|
18582
|
+
self._ClusterType = params.get("ClusterType")
|
18538
18583
|
memeber_set = set(params.keys())
|
18539
18584
|
for name, value in vars(self).items():
|
18540
18585
|
property_name = name[1:]
|
@@ -924,7 +924,9 @@ class DlcClient(AbstractClient):
|
|
924
924
|
|
925
925
|
|
926
926
|
def CreateTasksInOrder(self, request):
|
927
|
-
"""
|
927
|
+
"""废弃接口,申请下线
|
928
|
+
|
929
|
+
按顺序创建任务(已经废弃,后期不再维护,请使用接口CreateTasks)
|
928
930
|
|
929
931
|
:param request: Request instance for CreateTasksInOrder.
|
930
932
|
:type request: :class:`tencentcloud.dlc.v20210125.models.CreateTasksInOrderRequest`
|
@@ -981,9 +981,10 @@ class AnalysisTaskResults(AbstractModel):
|
|
981
981
|
:type SQL: str
|
982
982
|
:param _DataEngineName: 计算资源名字
|
983
983
|
:type DataEngineName: str
|
984
|
-
:param _JobTimeSum:
|
984
|
+
:param _JobTimeSum: 单位毫秒,引擎内执行耗时, 反映真正用于计算所需的耗时,即从 Spark 任务第一个 Task 开始执行到任务结束之间的耗时。
|
985
|
+
具体的:会统计任务的每个 Spark Stage 第一个 Task 到最后一个 Task 完成时长之和,不包含任务开始的排队耗时(即剔除从任务提交到 Spark Task 开始执行之间的调度等其他耗时),也不包含任务执行过程中多个 Spark Stage 之间因 executor 资源不足而等待执行 Task 所消耗的时间。
|
985
986
|
:type JobTimeSum: int
|
986
|
-
:param _TaskTimeSum:
|
987
|
+
:param _TaskTimeSum: 单位秒,累计 CPU* 秒 ( 累计 CPU * 时 = 累计 CPU* 秒/ 3600),统计参与计算所用 Spark Executor 每个 core 的 CPU 执行时长总和
|
987
988
|
:type TaskTimeSum: int
|
988
989
|
:param _InputRecordsSum: 数据扫描总行数
|
989
990
|
:type InputRecordsSum: int
|
@@ -1090,7 +1091,8 @@ class AnalysisTaskResults(AbstractModel):
|
|
1090
1091
|
|
1091
1092
|
@property
|
1092
1093
|
def JobTimeSum(self):
|
1093
|
-
"""
|
1094
|
+
"""单位毫秒,引擎内执行耗时, 反映真正用于计算所需的耗时,即从 Spark 任务第一个 Task 开始执行到任务结束之间的耗时。
|
1095
|
+
具体的:会统计任务的每个 Spark Stage 第一个 Task 到最后一个 Task 完成时长之和,不包含任务开始的排队耗时(即剔除从任务提交到 Spark Task 开始执行之间的调度等其他耗时),也不包含任务执行过程中多个 Spark Stage 之间因 executor 资源不足而等待执行 Task 所消耗的时间。
|
1094
1096
|
:rtype: int
|
1095
1097
|
"""
|
1096
1098
|
return self._JobTimeSum
|
@@ -1101,7 +1103,7 @@ class AnalysisTaskResults(AbstractModel):
|
|
1101
1103
|
|
1102
1104
|
@property
|
1103
1105
|
def TaskTimeSum(self):
|
1104
|
-
"""
|
1106
|
+
"""单位秒,累计 CPU* 秒 ( 累计 CPU * 时 = 累计 CPU* 秒/ 3600),统计参与计算所用 Spark Executor 每个 core 的 CPU 执行时长总和
|
1105
1107
|
:rtype: int
|
1106
1108
|
"""
|
1107
1109
|
return self._TaskTimeSum
|
@@ -6997,10 +6999,12 @@ class CreateSparkSubmitTaskRequest(AbstractModel):
|
|
6997
6999
|
:type ExecutorNumbers: int
|
6998
7000
|
:param _ExecutorMaxNumbers: 指定使用的executor最大数量, 当该值大于ExecutorNums则自动开启动态
|
6999
7001
|
:type ExecutorMaxNumbers: int
|
7000
|
-
:param _CmdArgs: 提交任务的附加配置集合,当前支持Key包含:MAINARGS:程序入口参数,空格分割(SqlType任务通过该值指定base64加密后的sql)、SPARKCONFIG:Spark配置,以换行符分隔、ENI:Eni连接信息、DEPENDENCYPACKAGEPATH:依赖的程序包(--jars、--py-files:支持py/zip/egg等归档格式),多文件以逗号分隔、DEPENDENCYFILEPATH:依赖文件资源(--files: 非jar、zip),多文件以逗号分隔、DEPENDENCYARCHIVESPATH:依赖archives资源(--archives: 支持tar.gz/tgz/tar等归档格式),多文件以逗号分隔、MAXRETRIES:任务重试次数,非流任务默认为1、SPARKIMAGE:Spark镜像版本号,支持使用dlc镜像/用户自定的tcr镜像运行任务、SPARKIMAGEVERSION:Spark镜像版本名称,与SPARKIMAGE
|
7002
|
+
:param _CmdArgs: 提交任务的附加配置集合,当前支持Key包含:MAINARGS:程序入口参数,空格分割(SqlType任务通过该值指定base64加密后的sql)、SPARKCONFIG:Spark配置,以换行符分隔、ENI:Eni连接信息、DEPENDENCYPACKAGEPATH:依赖的程序包(--jars、--py-files:支持py/zip/egg等归档格式),多文件以逗号分隔、DEPENDENCYFILEPATH:依赖文件资源(--files: 非jar、zip),多文件以逗号分隔、DEPENDENCYARCHIVESPATH:依赖archives资源(--archives: 支持tar.gz/tgz/tar等归档格式),多文件以逗号分隔、MAXRETRIES:任务重试次数,非流任务默认为1、SPARKIMAGE:Spark镜像版本号,支持使用dlc镜像/用户自定的tcr镜像运行任务、SPARKIMAGEVERSION:Spark镜像版本名称,与SPARKIMAGE一一对应;SPARKPRESETCODE:base64后的notebook预置代码;SPARKENV:base64后的spark环境变量;SPARKGITINFO:base64后的git相关信息
|
7001
7003
|
:type CmdArgs: list of KVPair
|
7002
7004
|
:param _SourceInfo: 任务来源信息
|
7003
7005
|
:type SourceInfo: list of KVPair
|
7006
|
+
:param _ResourceGroupName: ai资源组名称
|
7007
|
+
:type ResourceGroupName: str
|
7004
7008
|
"""
|
7005
7009
|
self._TaskName = None
|
7006
7010
|
self._TaskType = None
|
@@ -7015,6 +7019,7 @@ class CreateSparkSubmitTaskRequest(AbstractModel):
|
|
7015
7019
|
self._ExecutorMaxNumbers = None
|
7016
7020
|
self._CmdArgs = None
|
7017
7021
|
self._SourceInfo = None
|
7022
|
+
self._ResourceGroupName = None
|
7018
7023
|
|
7019
7024
|
@property
|
7020
7025
|
def TaskName(self):
|
@@ -7139,7 +7144,7 @@ class CreateSparkSubmitTaskRequest(AbstractModel):
|
|
7139
7144
|
|
7140
7145
|
@property
|
7141
7146
|
def CmdArgs(self):
|
7142
|
-
"""提交任务的附加配置集合,当前支持Key包含:MAINARGS:程序入口参数,空格分割(SqlType任务通过该值指定base64加密后的sql)、SPARKCONFIG:Spark配置,以换行符分隔、ENI:Eni连接信息、DEPENDENCYPACKAGEPATH:依赖的程序包(--jars、--py-files:支持py/zip/egg等归档格式),多文件以逗号分隔、DEPENDENCYFILEPATH:依赖文件资源(--files: 非jar、zip),多文件以逗号分隔、DEPENDENCYARCHIVESPATH:依赖archives资源(--archives: 支持tar.gz/tgz/tar等归档格式),多文件以逗号分隔、MAXRETRIES:任务重试次数,非流任务默认为1、SPARKIMAGE:Spark镜像版本号,支持使用dlc镜像/用户自定的tcr镜像运行任务、SPARKIMAGEVERSION:Spark镜像版本名称,与SPARKIMAGE
|
7147
|
+
"""提交任务的附加配置集合,当前支持Key包含:MAINARGS:程序入口参数,空格分割(SqlType任务通过该值指定base64加密后的sql)、SPARKCONFIG:Spark配置,以换行符分隔、ENI:Eni连接信息、DEPENDENCYPACKAGEPATH:依赖的程序包(--jars、--py-files:支持py/zip/egg等归档格式),多文件以逗号分隔、DEPENDENCYFILEPATH:依赖文件资源(--files: 非jar、zip),多文件以逗号分隔、DEPENDENCYARCHIVESPATH:依赖archives资源(--archives: 支持tar.gz/tgz/tar等归档格式),多文件以逗号分隔、MAXRETRIES:任务重试次数,非流任务默认为1、SPARKIMAGE:Spark镜像版本号,支持使用dlc镜像/用户自定的tcr镜像运行任务、SPARKIMAGEVERSION:Spark镜像版本名称,与SPARKIMAGE一一对应;SPARKPRESETCODE:base64后的notebook预置代码;SPARKENV:base64后的spark环境变量;SPARKGITINFO:base64后的git相关信息
|
7143
7148
|
:rtype: list of KVPair
|
7144
7149
|
"""
|
7145
7150
|
return self._CmdArgs
|
@@ -7159,6 +7164,17 @@ class CreateSparkSubmitTaskRequest(AbstractModel):
|
|
7159
7164
|
def SourceInfo(self, SourceInfo):
|
7160
7165
|
self._SourceInfo = SourceInfo
|
7161
7166
|
|
7167
|
+
@property
|
7168
|
+
def ResourceGroupName(self):
|
7169
|
+
"""ai资源组名称
|
7170
|
+
:rtype: str
|
7171
|
+
"""
|
7172
|
+
return self._ResourceGroupName
|
7173
|
+
|
7174
|
+
@ResourceGroupName.setter
|
7175
|
+
def ResourceGroupName(self, ResourceGroupName):
|
7176
|
+
self._ResourceGroupName = ResourceGroupName
|
7177
|
+
|
7162
7178
|
|
7163
7179
|
def _deserialize(self, params):
|
7164
7180
|
self._TaskName = params.get("TaskName")
|
@@ -7184,6 +7200,7 @@ class CreateSparkSubmitTaskRequest(AbstractModel):
|
|
7184
7200
|
obj = KVPair()
|
7185
7201
|
obj._deserialize(item)
|
7186
7202
|
self._SourceInfo.append(obj)
|
7203
|
+
self._ResourceGroupName = params.get("ResourceGroupName")
|
7187
7204
|
memeber_set = set(params.keys())
|
7188
7205
|
for name, value in vars(self).items():
|
7189
7206
|
property_name = name[1:]
|
@@ -32235,7 +32252,7 @@ class SwitchDataEngineResponse(AbstractModel):
|
|
32235
32252
|
|
32236
32253
|
|
32237
32254
|
class TCHouseD(AbstractModel):
|
32238
|
-
"""
|
32255
|
+
"""Doris数据源详细信息
|
32239
32256
|
|
32240
32257
|
"""
|
32241
32258
|
|
@@ -147,7 +147,7 @@ INVALIDPARAMETER = 'InvalidParameter'
|
|
147
147
|
INVALIDPARAMETER_ACCOUNTISBANNED = 'InvalidParameter.AccountIsBanned'
|
148
148
|
|
149
149
|
# 域名正在取回,请勿重复操作。
|
150
|
-
|
150
|
+
INVALIDPARAMETER_ACQUIREHASHEXISTS = 'InvalidParameter.AcquireHashExists'
|
151
151
|
|
152
152
|
# 无效的操作。
|
153
153
|
INVALIDPARAMETER_ACTIONINVALID = 'InvalidParameter.ActionInvalid'
|
@@ -1855,9 +1855,7 @@ class DsgcClient(AbstractClient):
|
|
1855
1855
|
|
1856
1856
|
|
1857
1857
|
def DescribeDSPADiscoveryTaskResult(self, request):
|
1858
|
-
"""获取分类分级任务结果,该接口只有在任务状态为以下状态时才支持结果正常查询:
|
1859
|
-
3 扫描成功,
|
1860
|
-
4 扫描失败
|
1858
|
+
"""获取分类分级任务结果,该接口只有在任务状态为以下状态时才支持结果正常查询:3 扫描成功,4 扫描失败
|
1861
1859
|
|
1862
1860
|
:param request: Request instance for DescribeDSPADiscoveryTaskResult.
|
1863
1861
|
:type request: :class:`tencentcloud.dsgc.v20190723.models.DescribeDSPADiscoveryTaskResultRequest`
|