tencentcloud-sdk-python 3.0.1318__py2.py3-none-any.whl → 3.0.1319__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/antiddos/v20200309/antiddos_client.py +1 -1
- tencentcloud/antiddos/v20200309/models.py +42 -72
- tencentcloud/cbs/v20170312/models.py +30 -0
- tencentcloud/cwp/v20180228/models.py +17 -2
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +94 -0
- tencentcloud/live/v20180801/models.py +90 -0
- tencentcloud/ocr/v20181119/models.py +46 -16
- tencentcloud/postgres/v20170312/postgres_client.py +1 -1
- tencentcloud/rum/v20210622/models.py +4 -0
- tencentcloud/smh/v20210712/models.py +32 -8
- tencentcloud/tdmq/v20200217/models.py +166 -0
- tencentcloud/teo/v20220901/models.py +10 -14
- tencentcloud/thpc/v20230321/models.py +30 -0
- tencentcloud/trocket/v20230308/models.py +218 -15
- tencentcloud/trocket/v20230308/trocket_client.py +1 -0
- tencentcloud/vpc/v20170312/models.py +20 -12
- tencentcloud/wedata/v20210820/models.py +39 -4
- tencentcloud/wedata/v20210820/wedata_client.py +8 -2
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/RECORD +25 -25
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1318.dist-info → tencentcloud_sdk_python-3.0.1319.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -2216,7 +2216,7 @@ class AntiddosClient(AbstractClient):
|
|
2216
2216
|
|
2217
2217
|
|
2218
2218
|
def SwitchWaterPrintConfig(self, request):
|
2219
|
-
"""开启或关闭DDoS
|
2219
|
+
"""开启或关闭DDoS防护的水印防护配置,此功能为付费增值服务,有需求请联系售后
|
2220
2220
|
|
2221
2221
|
:param request: Request instance for SwitchWaterPrintConfig.
|
2222
2222
|
:type request: :class:`tencentcloud.antiddos.v20200309.models.SwitchWaterPrintConfigRequest`
|
@@ -4374,7 +4374,7 @@ class CreateCCPrecisionPolicyRequest(AbstractModel):
|
|
4374
4374
|
:type InstanceId: str
|
4375
4375
|
:param _Ip: IP值
|
4376
4376
|
:type Ip: str
|
4377
|
-
:param _Protocol: 协议, 可取值
|
4377
|
+
:param _Protocol: 协议, 可取值http,https,http/https
|
4378
4378
|
:type Protocol: str
|
4379
4379
|
:param _Domain: 域名
|
4380
4380
|
:type Domain: str
|
@@ -4414,7 +4414,7 @@ class CreateCCPrecisionPolicyRequest(AbstractModel):
|
|
4414
4414
|
|
4415
4415
|
@property
|
4416
4416
|
def Protocol(self):
|
4417
|
-
"""协议, 可取值
|
4417
|
+
"""协议, 可取值http,https,http/https
|
4418
4418
|
:rtype: str
|
4419
4419
|
"""
|
4420
4420
|
return self._Protocol
|
@@ -4518,13 +4518,13 @@ class CreateCCReqLimitPolicyRequest(AbstractModel):
|
|
4518
4518
|
:type InstanceId: str
|
4519
4519
|
:param _Ip: IP值
|
4520
4520
|
:type Ip: str
|
4521
|
-
:param _Protocol: 协议,可取值
|
4521
|
+
:param _Protocol: 协议,可取值http, https, http/https
|
4522
4522
|
:type Protocol: str
|
4523
4523
|
:param _Domain: 域名
|
4524
4524
|
:type Domain: str
|
4525
4525
|
:param _Policy: 策略项
|
4526
4526
|
:type Policy: :class:`tencentcloud.antiddos.v20200309.models.CCReqLimitPolicyRecord`
|
4527
|
-
:param _IsGlobal: 是否为兜底频控
|
4527
|
+
:param _IsGlobal: 是否为兜底频控 0表示不是 1表示是
|
4528
4528
|
:type IsGlobal: int
|
4529
4529
|
"""
|
4530
4530
|
self._InstanceId = None
|
@@ -4558,7 +4558,7 @@ class CreateCCReqLimitPolicyRequest(AbstractModel):
|
|
4558
4558
|
|
4559
4559
|
@property
|
4560
4560
|
def Protocol(self):
|
4561
|
-
"""协议,可取值
|
4561
|
+
"""协议,可取值http, https, http/https
|
4562
4562
|
:rtype: str
|
4563
4563
|
"""
|
4564
4564
|
return self._Protocol
|
@@ -4591,7 +4591,7 @@ class CreateCCReqLimitPolicyRequest(AbstractModel):
|
|
4591
4591
|
|
4592
4592
|
@property
|
4593
4593
|
def IsGlobal(self):
|
4594
|
-
"""是否为兜底频控
|
4594
|
+
"""是否为兜底频控 0表示不是 1表示是
|
4595
4595
|
:rtype: int
|
4596
4596
|
"""
|
4597
4597
|
return self._IsGlobal
|
@@ -8304,7 +8304,7 @@ class DescribeBgpBizTrendRequest(AbstractModel):
|
|
8304
8304
|
:type StartTime: str
|
8305
8305
|
:param _EndTime: 统计结束时间。 例:“2020-09-22 00:00:00”,注意该时间必须为5分钟的倍数
|
8306
8306
|
:type EndTime: str
|
8307
|
-
:param _MetricName:
|
8307
|
+
:param _MetricName: 统计维度,可取值intraffic, outtraffic, inpkg, outpkg; intraffic:入流量 outtraffic:出流量 inpkg:入包速率 outpkg:出包速率
|
8308
8308
|
:type MetricName: str
|
8309
8309
|
:param _InstanceId: 资源实例ID
|
8310
8310
|
:type InstanceId: str
|
@@ -8353,7 +8353,7 @@ class DescribeBgpBizTrendRequest(AbstractModel):
|
|
8353
8353
|
|
8354
8354
|
@property
|
8355
8355
|
def MetricName(self):
|
8356
|
-
"""
|
8356
|
+
"""统计维度,可取值intraffic, outtraffic, inpkg, outpkg; intraffic:入流量 outtraffic:出流量 inpkg:入包速率 outpkg:出包速率
|
8357
8357
|
:rtype: str
|
8358
8358
|
"""
|
8359
8359
|
return self._MetricName
|
@@ -17826,7 +17826,7 @@ class ModifyCCPrecisionPolicyRequest(AbstractModel):
|
|
17826
17826
|
:type InstanceId: str
|
17827
17827
|
:param _PolicyId: 策略Id
|
17828
17828
|
:type PolicyId: str
|
17829
|
-
:param _PolicyAction: 策略方式。可取值:alg、drop。alg指返回验证码方式验证,drop
|
17829
|
+
:param _PolicyAction: 策略方式。可取值:alg、drop、trans。alg指返回验证码方式验证,drop表示该访问丢弃,trans表示该访问放行。
|
17830
17830
|
:type PolicyAction: str
|
17831
17831
|
:param _PolicyList: 策略记录
|
17832
17832
|
:type PolicyList: list of CCPrecisionPlyRecord
|
@@ -17860,7 +17860,7 @@ class ModifyCCPrecisionPolicyRequest(AbstractModel):
|
|
17860
17860
|
|
17861
17861
|
@property
|
17862
17862
|
def PolicyAction(self):
|
17863
|
-
"""策略方式。可取值:alg、drop。alg指返回验证码方式验证,drop
|
17863
|
+
"""策略方式。可取值:alg、drop、trans。alg指返回验证码方式验证,drop表示该访问丢弃,trans表示该访问放行。
|
17864
17864
|
:rtype: str
|
17865
17865
|
"""
|
17866
17866
|
return self._PolicyAction
|
@@ -18038,7 +18038,7 @@ class ModifyCCThresholdPolicyRequest(AbstractModel):
|
|
18038
18038
|
:type Ip: str
|
18039
18039
|
:param _Domain: 域名
|
18040
18040
|
:type Domain: str
|
18041
|
-
:param _Protocol: 协议,可取值
|
18041
|
+
:param _Protocol: 协议,可取值http,https,http/https
|
18042
18042
|
:type Protocol: str
|
18043
18043
|
:param _Threshold: 清洗阈值,-1表示开启“默认”模式
|
18044
18044
|
:type Threshold: int
|
@@ -18084,7 +18084,7 @@ class ModifyCCThresholdPolicyRequest(AbstractModel):
|
|
18084
18084
|
|
18085
18085
|
@property
|
18086
18086
|
def Protocol(self):
|
18087
|
-
"""协议,可取值
|
18087
|
+
"""协议,可取值http,https,http/https
|
18088
18088
|
:rtype: str
|
18089
18089
|
"""
|
18090
18090
|
return self._Protocol
|
@@ -20044,8 +20044,8 @@ class PacketFilterConfig(AbstractModel):
|
|
20044
20044
|
drop(丢弃)
|
20045
20045
|
transmit(放行)
|
20046
20046
|
drop_black(丢弃并拉黑)
|
20047
|
-
drop_rst(拦截)
|
20048
|
-
drop_black_rst(拦截并拉黑)
|
20047
|
+
drop_rst(拦截)(已废弃,不支持drop_rst)
|
20048
|
+
drop_black_rst(拦截并拉黑)(已废弃,不支持drop_black_rst)
|
20049
20049
|
forward(继续防护)
|
20050
20050
|
]
|
20051
20051
|
:type Action: str
|
@@ -20058,13 +20058,10 @@ no_match(不匹配)
|
|
20058
20058
|
:type MatchBegin: str
|
20059
20059
|
:param _MatchType: 检测类型,取值[
|
20060
20060
|
sunday(关键字)
|
20061
|
-
pcre(正则表达式)
|
20061
|
+
pcre(正则表达式) (已废弃,仅支持sunday)
|
20062
20062
|
]
|
20063
20063
|
:type MatchType: str
|
20064
|
-
:param _Str: 检测值,关键字符串或正则表达式,取值[
|
20065
|
-
当检测类型为sunday时,请填写字符串或者16进制字节码,例如\x313233对应的是字符串"123"的16进制字节码;
|
20066
|
-
当检测类型为pcre时, 请填写正则表达式字符串;
|
20067
|
-
]
|
20064
|
+
:param _Str: 检测值,关键字符串或正则表达式,取值[ 当检测类型为sunday时,请填写字符串或者16进制字节码,例如\x313233对应的是字符串"123"的16进制字节码; 最多支持63位; ]
|
20068
20065
|
:type Str: str
|
20069
20066
|
:param _Depth: 从检测位置开始的检测深度,取值[0,1500]
|
20070
20067
|
:type Depth: int
|
@@ -20072,39 +20069,28 @@ pcre(正则表达式)
|
|
20072
20069
|
:type Offset: int
|
20073
20070
|
:param _IsNot: 是否包含检测值,取值[
|
20074
20071
|
0(包含)
|
20075
|
-
1(不包含)
|
20072
|
+
1(不包含) (已废弃,仅支持0)
|
20076
20073
|
]
|
20077
20074
|
:type IsNot: int
|
20078
|
-
:param _MatchLogic:
|
20079
|
-
|
20075
|
+
:param _MatchLogic:
|
20076
|
+
当有第二个检测条件时,与第一检测条件的且或关系,取值[
|
20077
|
+
and(且的关系) (已废弃,仅支持none)
|
20080
20078
|
none(当没有第二个检测条件时填写此值)
|
20081
20079
|
]
|
20082
20080
|
:type MatchLogic: str
|
20083
|
-
:param _MatchBegin2:
|
20084
|
-
begin_l5(载荷)
|
20085
|
-
no_match(不匹配)
|
20086
|
-
]
|
20081
|
+
:param _MatchBegin2: (已废弃)
|
20087
20082
|
:type MatchBegin2: str
|
20088
|
-
:param _MatchType2:
|
20089
|
-
sunday(关键字)
|
20090
|
-
pcre(正则表达式)
|
20091
|
-
]
|
20083
|
+
:param _MatchType2: (已废弃)
|
20092
20084
|
:type MatchType2: str
|
20093
|
-
:param _Str2:
|
20094
|
-
当检测类型为sunday时,请填写字符串或者16进制字节码,例如\x313233对应的是字符串"123"的16进制字节码;
|
20095
|
-
当检测类型为pcre时, 请填写正则表达式字符串;
|
20096
|
-
]
|
20085
|
+
:param _Str2: (已废弃)
|
20097
20086
|
:type Str2: str
|
20098
|
-
:param _Depth2:
|
20087
|
+
:param _Depth2: (已废弃)
|
20099
20088
|
:type Depth2: int
|
20100
|
-
:param _Offset2:
|
20089
|
+
:param _Offset2: (已废弃)
|
20101
20090
|
:type Offset2: int
|
20102
|
-
:param _IsNot2:
|
20103
|
-
0(包含)
|
20104
|
-
1(不包含)
|
20105
|
-
]
|
20091
|
+
:param _IsNot2: (已废弃)
|
20106
20092
|
:type IsNot2: int
|
20107
|
-
:param _Id: 特征过滤配置添加成功后自动生成的规则ID
|
20093
|
+
:param _Id: 特征过滤配置添加成功后自动生成的规则ID,当添加新特征过滤配置时,此字段不用填写;当修改/删除新特征过滤配置时,此字段必填;
|
20108
20094
|
:type Id: str
|
20109
20095
|
:param _PktLenGT: 大于报文长度,取值1+
|
20110
20096
|
:type PktLenGT: int
|
@@ -20216,8 +20202,8 @@ pcre(正则表达式)
|
|
20216
20202
|
drop(丢弃)
|
20217
20203
|
transmit(放行)
|
20218
20204
|
drop_black(丢弃并拉黑)
|
20219
|
-
drop_rst(拦截)
|
20220
|
-
drop_black_rst(拦截并拉黑)
|
20205
|
+
drop_rst(拦截)(已废弃,不支持drop_rst)
|
20206
|
+
drop_black_rst(拦截并拉黑)(已废弃,不支持drop_black_rst)
|
20221
20207
|
forward(继续防护)
|
20222
20208
|
]
|
20223
20209
|
:rtype: str
|
@@ -20248,7 +20234,7 @@ no_match(不匹配)
|
|
20248
20234
|
def MatchType(self):
|
20249
20235
|
"""检测类型,取值[
|
20250
20236
|
sunday(关键字)
|
20251
|
-
pcre(正则表达式)
|
20237
|
+
pcre(正则表达式) (已废弃,仅支持sunday)
|
20252
20238
|
]
|
20253
20239
|
:rtype: str
|
20254
20240
|
"""
|
@@ -20260,10 +20246,7 @@ pcre(正则表达式)
|
|
20260
20246
|
|
20261
20247
|
@property
|
20262
20248
|
def Str(self):
|
20263
|
-
"""检测值,关键字符串或正则表达式,取值[
|
20264
|
-
当检测类型为sunday时,请填写字符串或者16进制字节码,例如\x313233对应的是字符串"123"的16进制字节码;
|
20265
|
-
当检测类型为pcre时, 请填写正则表达式字符串;
|
20266
|
-
]
|
20249
|
+
"""检测值,关键字符串或正则表达式,取值[ 当检测类型为sunday时,请填写字符串或者16进制字节码,例如\x313233对应的是字符串"123"的16进制字节码; 最多支持63位; ]
|
20267
20250
|
:rtype: str
|
20268
20251
|
"""
|
20269
20252
|
return self._Str
|
@@ -20298,7 +20281,7 @@ pcre(正则表达式)
|
|
20298
20281
|
def IsNot(self):
|
20299
20282
|
"""是否包含检测值,取值[
|
20300
20283
|
0(包含)
|
20301
|
-
1(不包含)
|
20284
|
+
1(不包含) (已废弃,仅支持0)
|
20302
20285
|
]
|
20303
20286
|
:rtype: int
|
20304
20287
|
"""
|
@@ -20310,8 +20293,9 @@ pcre(正则表达式)
|
|
20310
20293
|
|
20311
20294
|
@property
|
20312
20295
|
def MatchLogic(self):
|
20313
|
-
"""
|
20314
|
-
|
20296
|
+
"""
|
20297
|
+
当有第二个检测条件时,与第一检测条件的且或关系,取值[
|
20298
|
+
and(且的关系) (已废弃,仅支持none)
|
20315
20299
|
none(当没有第二个检测条件时填写此值)
|
20316
20300
|
]
|
20317
20301
|
:rtype: str
|
@@ -20324,10 +20308,7 @@ none(当没有第二个检测条件时填写此值)
|
|
20324
20308
|
|
20325
20309
|
@property
|
20326
20310
|
def MatchBegin2(self):
|
20327
|
-
"""
|
20328
|
-
begin_l5(载荷)
|
20329
|
-
no_match(不匹配)
|
20330
|
-
]
|
20311
|
+
"""(已废弃)
|
20331
20312
|
:rtype: str
|
20332
20313
|
"""
|
20333
20314
|
return self._MatchBegin2
|
@@ -20338,10 +20319,7 @@ no_match(不匹配)
|
|
20338
20319
|
|
20339
20320
|
@property
|
20340
20321
|
def MatchType2(self):
|
20341
|
-
"""
|
20342
|
-
sunday(关键字)
|
20343
|
-
pcre(正则表达式)
|
20344
|
-
]
|
20322
|
+
"""(已废弃)
|
20345
20323
|
:rtype: str
|
20346
20324
|
"""
|
20347
20325
|
return self._MatchType2
|
@@ -20352,10 +20330,7 @@ pcre(正则表达式)
|
|
20352
20330
|
|
20353
20331
|
@property
|
20354
20332
|
def Str2(self):
|
20355
|
-
"""
|
20356
|
-
当检测类型为sunday时,请填写字符串或者16进制字节码,例如\x313233对应的是字符串"123"的16进制字节码;
|
20357
|
-
当检测类型为pcre时, 请填写正则表达式字符串;
|
20358
|
-
]
|
20333
|
+
"""(已废弃)
|
20359
20334
|
:rtype: str
|
20360
20335
|
"""
|
20361
20336
|
return self._Str2
|
@@ -20366,7 +20341,7 @@ pcre(正则表达式)
|
|
20366
20341
|
|
20367
20342
|
@property
|
20368
20343
|
def Depth2(self):
|
20369
|
-
"""
|
20344
|
+
"""(已废弃)
|
20370
20345
|
:rtype: int
|
20371
20346
|
"""
|
20372
20347
|
return self._Depth2
|
@@ -20377,7 +20352,7 @@ pcre(正则表达式)
|
|
20377
20352
|
|
20378
20353
|
@property
|
20379
20354
|
def Offset2(self):
|
20380
|
-
"""
|
20355
|
+
"""(已废弃)
|
20381
20356
|
:rtype: int
|
20382
20357
|
"""
|
20383
20358
|
return self._Offset2
|
@@ -20388,10 +20363,7 @@ pcre(正则表达式)
|
|
20388
20363
|
|
20389
20364
|
@property
|
20390
20365
|
def IsNot2(self):
|
20391
|
-
"""
|
20392
|
-
0(包含)
|
20393
|
-
1(不包含)
|
20394
|
-
]
|
20366
|
+
"""(已废弃)
|
20395
20367
|
:rtype: int
|
20396
20368
|
"""
|
20397
20369
|
return self._IsNot2
|
@@ -20402,7 +20374,7 @@ pcre(正则表达式)
|
|
20402
20374
|
|
20403
20375
|
@property
|
20404
20376
|
def Id(self):
|
20405
|
-
"""特征过滤配置添加成功后自动生成的规则ID
|
20377
|
+
"""特征过滤配置添加成功后自动生成的规则ID,当添加新特征过滤配置时,此字段不用填写;当修改/删除新特征过滤配置时,此字段必填;
|
20406
20378
|
:rtype: str
|
20407
20379
|
"""
|
20408
20380
|
return self._Id
|
@@ -21978,7 +21950,6 @@ shortfpcheckall(精简模式)
|
|
21978
21950
|
]
|
21979
21951
|
:type Verify: str
|
21980
21952
|
:param _CloudSdkProxy: 是否开启代理,1开启则忽略IP+端口校验;0关闭则需要IP+端口校验
|
21981
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21982
21953
|
:type CloudSdkProxy: int
|
21983
21954
|
"""
|
21984
21955
|
self._Offset = None
|
@@ -22052,7 +22023,6 @@ shortfpcheckall(精简模式)
|
|
22052
22023
|
@property
|
22053
22024
|
def CloudSdkProxy(self):
|
22054
22025
|
"""是否开启代理,1开启则忽略IP+端口校验;0关闭则需要IP+端口校验
|
22055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22056
22026
|
:rtype: int
|
22057
22027
|
"""
|
22058
22028
|
return self._CloudSdkProxy
|
@@ -118,9 +118,15 @@ class ApplyDiskBackupRequest(AbstractModel):
|
|
118
118
|
:type DiskBackupId: str
|
119
119
|
:param _DiskId: 云硬盘备份点原云硬盘ID,可通过DescribeDisks接口查询。
|
120
120
|
:type DiskId: str
|
121
|
+
:param _AutoStopInstance: 回滚云硬盘备份点前是否自动关机,默认为FALSE,表示不自动关机
|
122
|
+
:type AutoStopInstance: bool
|
123
|
+
:param _AutoStartInstance: 回滚云硬盘备份点完成后是否自动开机,默认为FALSE,表示不自动开机
|
124
|
+
:type AutoStartInstance: bool
|
121
125
|
"""
|
122
126
|
self._DiskBackupId = None
|
123
127
|
self._DiskId = None
|
128
|
+
self._AutoStopInstance = None
|
129
|
+
self._AutoStartInstance = None
|
124
130
|
|
125
131
|
@property
|
126
132
|
def DiskBackupId(self):
|
@@ -144,10 +150,34 @@ class ApplyDiskBackupRequest(AbstractModel):
|
|
144
150
|
def DiskId(self, DiskId):
|
145
151
|
self._DiskId = DiskId
|
146
152
|
|
153
|
+
@property
|
154
|
+
def AutoStopInstance(self):
|
155
|
+
"""回滚云硬盘备份点前是否自动关机,默认为FALSE,表示不自动关机
|
156
|
+
:rtype: bool
|
157
|
+
"""
|
158
|
+
return self._AutoStopInstance
|
159
|
+
|
160
|
+
@AutoStopInstance.setter
|
161
|
+
def AutoStopInstance(self, AutoStopInstance):
|
162
|
+
self._AutoStopInstance = AutoStopInstance
|
163
|
+
|
164
|
+
@property
|
165
|
+
def AutoStartInstance(self):
|
166
|
+
"""回滚云硬盘备份点完成后是否自动开机,默认为FALSE,表示不自动开机
|
167
|
+
:rtype: bool
|
168
|
+
"""
|
169
|
+
return self._AutoStartInstance
|
170
|
+
|
171
|
+
@AutoStartInstance.setter
|
172
|
+
def AutoStartInstance(self, AutoStartInstance):
|
173
|
+
self._AutoStartInstance = AutoStartInstance
|
174
|
+
|
147
175
|
|
148
176
|
def _deserialize(self, params):
|
149
177
|
self._DiskBackupId = params.get("DiskBackupId")
|
150
178
|
self._DiskId = params.get("DiskId")
|
179
|
+
self._AutoStopInstance = params.get("AutoStopInstance")
|
180
|
+
self._AutoStartInstance = params.get("AutoStartInstance")
|
151
181
|
memeber_set = set(params.keys())
|
152
182
|
for name, value in vars(self).items():
|
153
183
|
property_name = name[1:]
|
@@ -22285,7 +22285,7 @@ class DescribeAgentInstallCommandRequest(AbstractModel):
|
|
22285
22285
|
:type VpcId: str
|
22286
22286
|
:param _TagIds: 标签ID列表,IsCloud=false时才会生效
|
22287
22287
|
:type TagIds: list of int non-negative
|
22288
|
-
:param _ExpireDate:
|
22288
|
+
:param _ExpireDate: 命令有效期,非腾讯云时必填(已废弃,命令永久生效)
|
22289
22289
|
:type ExpireDate: str
|
22290
22290
|
:param _Vip: 代理方式接入的vip
|
22291
22291
|
:type Vip: str
|
@@ -22355,7 +22355,7 @@ class DescribeAgentInstallCommandRequest(AbstractModel):
|
|
22355
22355
|
|
22356
22356
|
@property
|
22357
22357
|
def ExpireDate(self):
|
22358
|
-
"""
|
22358
|
+
"""命令有效期,非腾讯云时必填(已废弃,命令永久生效)
|
22359
22359
|
:rtype: str
|
22360
22360
|
"""
|
22361
22361
|
return self._ExpireDate
|
@@ -84952,11 +84952,25 @@ class ModifyRiskDnsPolicyResponse(AbstractModel):
|
|
84952
84952
|
|
84953
84953
|
def __init__(self):
|
84954
84954
|
r"""
|
84955
|
+
:param _Repeat: 0:没有重复,1:和现有策略重复
|
84956
|
+
:type Repeat: int
|
84955
84957
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
84956
84958
|
:type RequestId: str
|
84957
84959
|
"""
|
84960
|
+
self._Repeat = None
|
84958
84961
|
self._RequestId = None
|
84959
84962
|
|
84963
|
+
@property
|
84964
|
+
def Repeat(self):
|
84965
|
+
"""0:没有重复,1:和现有策略重复
|
84966
|
+
:rtype: int
|
84967
|
+
"""
|
84968
|
+
return self._Repeat
|
84969
|
+
|
84970
|
+
@Repeat.setter
|
84971
|
+
def Repeat(self, Repeat):
|
84972
|
+
self._Repeat = Repeat
|
84973
|
+
|
84960
84974
|
@property
|
84961
84975
|
def RequestId(self):
|
84962
84976
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -84970,6 +84984,7 @@ class ModifyRiskDnsPolicyResponse(AbstractModel):
|
|
84970
84984
|
|
84971
84985
|
|
84972
84986
|
def _deserialize(self, params):
|
84987
|
+
self._Repeat = params.get("Repeat")
|
84973
84988
|
self._RequestId = params.get("RequestId")
|
84974
84989
|
|
84975
84990
|
|
@@ -876,6 +876,29 @@ class LcicClient(AbstractClient):
|
|
876
876
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
877
877
|
|
878
878
|
|
879
|
+
def DescribeRecordTask(self, request):
|
880
|
+
"""查询录制任务ID
|
881
|
+
|
882
|
+
:param request: Request instance for DescribeRecordTask.
|
883
|
+
:type request: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordTaskRequest`
|
884
|
+
:rtype: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordTaskResponse`
|
885
|
+
|
886
|
+
"""
|
887
|
+
try:
|
888
|
+
params = request._serialize()
|
889
|
+
headers = request.headers
|
890
|
+
body = self.call("DescribeRecordTask", params, headers=headers)
|
891
|
+
response = json.loads(body)
|
892
|
+
model = models.DescribeRecordTaskResponse()
|
893
|
+
model._deserialize(response["Response"])
|
894
|
+
return model
|
895
|
+
except Exception as e:
|
896
|
+
if isinstance(e, TencentCloudSDKException):
|
897
|
+
raise
|
898
|
+
else:
|
899
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
900
|
+
|
901
|
+
|
879
902
|
def DescribeRoom(self, request):
|
880
903
|
"""获取房间配置信息
|
881
904
|
|
@@ -5889,6 +5889,100 @@ class DescribeRecordStreamResponse(AbstractModel):
|
|
5889
5889
|
self._RequestId = params.get("RequestId")
|
5890
5890
|
|
5891
5891
|
|
5892
|
+
class DescribeRecordTaskRequest(AbstractModel):
|
5893
|
+
"""DescribeRecordTask请求参数结构体
|
5894
|
+
|
5895
|
+
"""
|
5896
|
+
|
5897
|
+
def __init__(self):
|
5898
|
+
r"""
|
5899
|
+
:param _SdkAppId: 学校ID
|
5900
|
+
:type SdkAppId: int
|
5901
|
+
:param _RoomId: 房间ID
|
5902
|
+
:type RoomId: int
|
5903
|
+
"""
|
5904
|
+
self._SdkAppId = None
|
5905
|
+
self._RoomId = None
|
5906
|
+
|
5907
|
+
@property
|
5908
|
+
def SdkAppId(self):
|
5909
|
+
"""学校ID
|
5910
|
+
:rtype: int
|
5911
|
+
"""
|
5912
|
+
return self._SdkAppId
|
5913
|
+
|
5914
|
+
@SdkAppId.setter
|
5915
|
+
def SdkAppId(self, SdkAppId):
|
5916
|
+
self._SdkAppId = SdkAppId
|
5917
|
+
|
5918
|
+
@property
|
5919
|
+
def RoomId(self):
|
5920
|
+
"""房间ID
|
5921
|
+
:rtype: int
|
5922
|
+
"""
|
5923
|
+
return self._RoomId
|
5924
|
+
|
5925
|
+
@RoomId.setter
|
5926
|
+
def RoomId(self, RoomId):
|
5927
|
+
self._RoomId = RoomId
|
5928
|
+
|
5929
|
+
|
5930
|
+
def _deserialize(self, params):
|
5931
|
+
self._SdkAppId = params.get("SdkAppId")
|
5932
|
+
self._RoomId = params.get("RoomId")
|
5933
|
+
memeber_set = set(params.keys())
|
5934
|
+
for name, value in vars(self).items():
|
5935
|
+
property_name = name[1:]
|
5936
|
+
if property_name in memeber_set:
|
5937
|
+
memeber_set.remove(property_name)
|
5938
|
+
if len(memeber_set) > 0:
|
5939
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5940
|
+
|
5941
|
+
|
5942
|
+
|
5943
|
+
class DescribeRecordTaskResponse(AbstractModel):
|
5944
|
+
"""DescribeRecordTask返回参数结构体
|
5945
|
+
|
5946
|
+
"""
|
5947
|
+
|
5948
|
+
def __init__(self):
|
5949
|
+
r"""
|
5950
|
+
:param _TaskId: 任务ID
|
5951
|
+
:type TaskId: str
|
5952
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5953
|
+
:type RequestId: str
|
5954
|
+
"""
|
5955
|
+
self._TaskId = None
|
5956
|
+
self._RequestId = None
|
5957
|
+
|
5958
|
+
@property
|
5959
|
+
def TaskId(self):
|
5960
|
+
"""任务ID
|
5961
|
+
:rtype: str
|
5962
|
+
"""
|
5963
|
+
return self._TaskId
|
5964
|
+
|
5965
|
+
@TaskId.setter
|
5966
|
+
def TaskId(self, TaskId):
|
5967
|
+
self._TaskId = TaskId
|
5968
|
+
|
5969
|
+
@property
|
5970
|
+
def RequestId(self):
|
5971
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5972
|
+
:rtype: str
|
5973
|
+
"""
|
5974
|
+
return self._RequestId
|
5975
|
+
|
5976
|
+
@RequestId.setter
|
5977
|
+
def RequestId(self, RequestId):
|
5978
|
+
self._RequestId = RequestId
|
5979
|
+
|
5980
|
+
|
5981
|
+
def _deserialize(self, params):
|
5982
|
+
self._TaskId = params.get("TaskId")
|
5983
|
+
self._RequestId = params.get("RequestId")
|
5984
|
+
|
5985
|
+
|
5892
5986
|
class DescribeRoomForbiddenUserRequest(AbstractModel):
|
5893
5987
|
"""DescribeRoomForbiddenUser请求参数结构体
|
5894
5988
|
|