tencentcloud-sdk-python 3.0.1320__py2.py3-none-any.whl → 3.0.1322__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.
Files changed (44) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/billing/v20180709/billing_client.py +0 -75
  3. tencentcloud/billing/v20180709/models.py +2 -833
  4. tencentcloud/ccc/v20200210/errorcodes.py +6 -0
  5. tencentcloud/essbasic/v20210526/models.py +4 -4
  6. tencentcloud/facefusion/v20220927/facefusion_client.py +0 -1
  7. tencentcloud/facefusion/v20220927/models.py +16 -4
  8. tencentcloud/gme/v20180711/models.py +0 -40
  9. tencentcloud/hunyuan/v20230901/models.py +15 -0
  10. tencentcloud/keewidb/v20220308/keewidb_client.py +1 -0
  11. tencentcloud/lcic/v20220817/models.py +0 -4
  12. tencentcloud/lighthouse/v20200324/models.py +8 -56
  13. tencentcloud/lkeap/v20240522/lkeap_client.py +4 -4
  14. tencentcloud/lkeap/v20240522/models.py +10 -10
  15. tencentcloud/mna/v20210119/mna_client.py +46 -0
  16. tencentcloud/mna/v20210119/models.py +424 -0
  17. tencentcloud/monitor/v20230616/__init__.py +0 -0
  18. tencentcloud/monitor/v20230616/errorcodes.py +30 -0
  19. tencentcloud/monitor/v20230616/models.py +494 -0
  20. tencentcloud/monitor/v20230616/monitor_client.py +55 -0
  21. tencentcloud/mqtt/v20240516/errorcodes.py +12 -0
  22. tencentcloud/mqtt/v20240516/models.py +1305 -116
  23. tencentcloud/mqtt/v20240516/mqtt_client.py +185 -0
  24. tencentcloud/ocr/v20181119/models.py +367 -0
  25. tencentcloud/ocr/v20181119/ocr_client.py +23 -0
  26. tencentcloud/postgres/v20170312/models.py +1255 -91
  27. tencentcloud/postgres/v20170312/postgres_client.py +139 -0
  28. tencentcloud/ssl/v20191205/models.py +8 -234
  29. tencentcloud/trabbit/__init__.py +0 -0
  30. tencentcloud/trabbit/v20230418/__init__.py +0 -0
  31. tencentcloud/trabbit/v20230418/errorcodes.py +75 -0
  32. tencentcloud/trabbit/v20230418/models.py +8390 -0
  33. tencentcloud/trabbit/v20230418/trabbit_client.py +693 -0
  34. tencentcloud/trtc/v20190722/models.py +0 -6
  35. tencentcloud/vclm/v20240523/errorcodes.py +0 -72
  36. tencentcloud/vclm/v20240523/models.py +1 -854
  37. tencentcloud/vclm/v20240523/vclm_client.py +0 -104
  38. tencentcloud/wedata/v20210820/models.py +34 -0
  39. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  40. {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/METADATA +1 -1
  41. {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/RECORD +44 -35
  42. {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/LICENSE +0 -0
  43. {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/WHEEL +0 -0
  44. {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/top_level.txt +0 -0
@@ -32,7 +32,6 @@ class ApiGatewayInstanceDetail(AbstractModel):
32
32
  :param _Domain: 域名
33
33
  :type Domain: str
34
34
  :param _CertId: 证书ID
35
- 注意:此字段可能返回 null,表示取不到有效值。
36
35
  :type CertId: str
37
36
  :param _Protocol: 使用协议
38
37
  :type Protocol: str
@@ -79,7 +78,6 @@ class ApiGatewayInstanceDetail(AbstractModel):
79
78
  @property
80
79
  def CertId(self):
81
80
  """证书ID
82
- 注意:此字段可能返回 null,表示取不到有效值。
83
81
  :rtype: str
84
82
  """
85
83
  return self._CertId
@@ -126,12 +124,10 @@ class ApiGatewayInstanceList(AbstractModel):
126
124
  :param _Region: 地域
127
125
  :type Region: str
128
126
  :param _InstanceList: apigateway实例详情
129
- 注意:此字段可能返回 null,表示取不到有效值。
130
127
  :type InstanceList: list of ApiGatewayInstanceDetail
131
128
  :param _TotalCount: 该地域下apigateway实例总数
132
129
  :type TotalCount: int
133
130
  :param _Error: 是否查询异常
134
- 注意:此字段可能返回 null,表示取不到有效值。
135
131
  :type Error: str
136
132
  """
137
133
  self._Region = None
@@ -153,7 +149,6 @@ class ApiGatewayInstanceList(AbstractModel):
153
149
  @property
154
150
  def InstanceList(self):
155
151
  """apigateway实例详情
156
- 注意:此字段可能返回 null,表示取不到有效值。
157
152
  :rtype: list of ApiGatewayInstanceDetail
158
153
  """
159
154
  return self._InstanceList
@@ -176,7 +171,6 @@ class ApiGatewayInstanceList(AbstractModel):
176
171
  @property
177
172
  def Error(self):
178
173
  """是否查询异常
179
- 注意:此字段可能返回 null,表示取不到有效值。
180
174
  :rtype: str
181
175
  """
182
176
  return self._Error
@@ -509,10 +503,8 @@ class BatchDeleteFail(AbstractModel):
509
503
  def __init__(self):
510
504
  r"""
511
505
  :param _CertId: 失败的证书ID
512
- 注意:此字段可能返回 null,表示取不到有效值。
513
506
  :type CertId: str
514
507
  :param _Msg: 失败的原因
515
- 注意:此字段可能返回 null,表示取不到有效值。
516
508
  :type Msg: str
517
509
  """
518
510
  self._CertId = None
@@ -521,7 +513,6 @@ class BatchDeleteFail(AbstractModel):
521
513
  @property
522
514
  def CertId(self):
523
515
  """失败的证书ID
524
- 注意:此字段可能返回 null,表示取不到有效值。
525
516
  :rtype: str
526
517
  """
527
518
  return self._CertId
@@ -533,7 +524,6 @@ class BatchDeleteFail(AbstractModel):
533
524
  @property
534
525
  def Msg(self):
535
526
  """失败的原因
536
- 注意:此字段可能返回 null,表示取不到有效值。
537
527
  :rtype: str
538
528
  """
539
529
  return self._Msg
@@ -564,12 +554,10 @@ class BindResourceRegionResult(AbstractModel):
564
554
  def __init__(self):
565
555
  r"""
566
556
  :param _Region: 地域
567
- 注意:此字段可能返回 null,表示取不到有效值。
568
557
  :type Region: str
569
558
  :param _TotalCount: 关联资源总数
570
559
  :type TotalCount: int
571
560
  :param _Error: 是否查询异常
572
- 注意:此字段可能返回 null,表示取不到有效值。
573
561
  :type Error: str
574
562
  """
575
563
  self._Region = None
@@ -579,7 +567,6 @@ class BindResourceRegionResult(AbstractModel):
579
567
  @property
580
568
  def Region(self):
581
569
  """地域
582
- 注意:此字段可能返回 null,表示取不到有效值。
583
570
  :rtype: str
584
571
  """
585
572
  return self._Region
@@ -602,7 +589,6 @@ class BindResourceRegionResult(AbstractModel):
602
589
  @property
603
590
  def Error(self):
604
591
  """是否查询异常
605
- 注意:此字段可能返回 null,表示取不到有效值。
606
592
  :rtype: str
607
593
  """
608
594
  return self._Error
@@ -690,16 +676,12 @@ class COSInstanceList(AbstractModel):
690
676
  def __init__(self):
691
677
  r"""
692
678
  :param _Region: 地域
693
- 注意:此字段可能返回 null,表示取不到有效值。
694
679
  :type Region: str
695
680
  :param _InstanceList: 实例详情
696
- 注意:此字段可能返回 null,表示取不到有效值。
697
681
  :type InstanceList: list of CosInstanceDetail
698
682
  :param _TotalCount: 地域下总数
699
- 注意:此字段可能返回 null,表示取不到有效值。
700
683
  :type TotalCount: int
701
684
  :param _Error: 错误信息
702
- 注意:此字段可能返回 null,表示取不到有效值。
703
685
  :type Error: str
704
686
  """
705
687
  self._Region = None
@@ -710,7 +692,6 @@ class COSInstanceList(AbstractModel):
710
692
  @property
711
693
  def Region(self):
712
694
  """地域
713
- 注意:此字段可能返回 null,表示取不到有效值。
714
695
  :rtype: str
715
696
  """
716
697
  return self._Region
@@ -722,7 +703,6 @@ class COSInstanceList(AbstractModel):
722
703
  @property
723
704
  def InstanceList(self):
724
705
  """实例详情
725
- 注意:此字段可能返回 null,表示取不到有效值。
726
706
  :rtype: list of CosInstanceDetail
727
707
  """
728
708
  return self._InstanceList
@@ -734,7 +714,6 @@ class COSInstanceList(AbstractModel):
734
714
  @property
735
715
  def TotalCount(self):
736
716
  """地域下总数
737
- 注意:此字段可能返回 null,表示取不到有效值。
738
717
  :rtype: int
739
718
  """
740
719
  return self._TotalCount
@@ -746,7 +725,6 @@ class COSInstanceList(AbstractModel):
746
725
  @property
747
726
  def Error(self):
748
727
  """错误信息
749
- 注意:此字段可能返回 null,表示取不到有效值。
750
728
  :rtype: str
751
729
  """
752
730
  return self._Error
@@ -1025,10 +1003,8 @@ class CdnInstanceList(AbstractModel):
1025
1003
  :param _TotalCount: 该地域下CDN域名总数
1026
1004
  :type TotalCount: int
1027
1005
  :param _InstanceList: cdn域名详情
1028
- 注意:此字段可能返回 null,表示取不到有效值。
1029
1006
  :type InstanceList: list of CdnInstanceDetail
1030
1007
  :param _Error: 是否查询异常
1031
- 注意:此字段可能返回 null,表示取不到有效值。
1032
1008
  :type Error: str
1033
1009
  """
1034
1010
  self._TotalCount = None
@@ -1049,7 +1025,6 @@ class CdnInstanceList(AbstractModel):
1049
1025
  @property
1050
1026
  def InstanceList(self):
1051
1027
  """cdn域名详情
1052
- 注意:此字段可能返回 null,表示取不到有效值。
1053
1028
  :rtype: list of CdnInstanceDetail
1054
1029
  """
1055
1030
  return self._InstanceList
@@ -1061,7 +1036,6 @@ class CdnInstanceList(AbstractModel):
1061
1036
  @property
1062
1037
  def Error(self):
1063
1038
  """是否查询异常
1064
- 注意:此字段可能返回 null,表示取不到有效值。
1065
1039
  :rtype: str
1066
1040
  """
1067
1041
  return self._Error
@@ -1249,10 +1223,8 @@ class Certificate(AbstractModel):
1249
1223
  :param _DnsNames: 证书绑定的域名
1250
1224
  :type DnsNames: list of str
1251
1225
  :param _CertCaId: 根证书ID
1252
- 注意:此字段可能返回 null,表示取不到有效值。
1253
1226
  :type CertCaId: str
1254
1227
  :param _SSLMode: 证书认证模式:UNIDIRECTIONAL单向认证,MUTUAL双向认证
1255
- 注意:此字段可能返回 null,表示取不到有效值。
1256
1228
  :type SSLMode: str
1257
1229
  """
1258
1230
  self._CertId = None
@@ -1285,7 +1257,6 @@ class Certificate(AbstractModel):
1285
1257
  @property
1286
1258
  def CertCaId(self):
1287
1259
  """根证书ID
1288
- 注意:此字段可能返回 null,表示取不到有效值。
1289
1260
  :rtype: str
1290
1261
  """
1291
1262
  return self._CertCaId
@@ -1297,7 +1268,6 @@ class Certificate(AbstractModel):
1297
1268
  @property
1298
1269
  def SSLMode(self):
1299
1270
  """证书认证模式:UNIDIRECTIONAL单向认证,MUTUAL双向认证
1300
- 注意:此字段可能返回 null,表示取不到有效值。
1301
1271
  :rtype: str
1302
1272
  """
1303
1273
  return self._SSLMode
@@ -1330,7 +1300,6 @@ class CertificateExtra(AbstractModel):
1330
1300
  def __init__(self):
1331
1301
  r"""
1332
1302
  :param _DomainNumber: 证书可配置域名数量。
1333
- 注意:此字段可能返回 null,表示取不到有效值。
1334
1303
  :type DomainNumber: str
1335
1304
  :param _OriginCertificateId: 续费原证书 ID。
1336
1305
  注意:此字段可能返回 null,表示取不到有效值。
@@ -1345,10 +1314,8 @@ class CertificateExtra(AbstractModel):
1345
1314
  注意:此字段可能返回 null,表示取不到有效值。
1346
1315
  :type RenewOrder: str
1347
1316
  :param _SMCert: 是否是国密证书
1348
- 注意:此字段可能返回 null,表示取不到有效值。
1349
1317
  :type SMCert: int
1350
1318
  :param _CompanyType: 公司类型,取值:1(个人);2(公司)
1351
- 注意:此字段可能返回 null,表示取不到有效值。
1352
1319
  :type CompanyType: int
1353
1320
  """
1354
1321
  self._DomainNumber = None
@@ -1362,7 +1329,6 @@ class CertificateExtra(AbstractModel):
1362
1329
  @property
1363
1330
  def DomainNumber(self):
1364
1331
  """证书可配置域名数量。
1365
- 注意:此字段可能返回 null,表示取不到有效值。
1366
1332
  :rtype: str
1367
1333
  """
1368
1334
  return self._DomainNumber
@@ -1422,7 +1388,6 @@ class CertificateExtra(AbstractModel):
1422
1388
  @property
1423
1389
  def SMCert(self):
1424
1390
  """是否是国密证书
1425
- 注意:此字段可能返回 null,表示取不到有效值。
1426
1391
  :rtype: int
1427
1392
  """
1428
1393
  return self._SMCert
@@ -1434,7 +1399,6 @@ class CertificateExtra(AbstractModel):
1434
1399
  @property
1435
1400
  def CompanyType(self):
1436
1401
  """公司类型,取值:1(个人);2(公司)
1437
- 注意:此字段可能返回 null,表示取不到有效值。
1438
1402
  :rtype: int
1439
1403
  """
1440
1404
  return self._CompanyType
@@ -2286,17 +2250,14 @@ class Certificates(AbstractModel):
2286
2250
  def __init__(self):
2287
2251
  r"""
2288
2252
  :param _OwnerUin: 用户 UIN。
2289
- 注意:此字段可能返回 null,表示取不到有效值。
2290
2253
  :type OwnerUin: str
2291
2254
  :param _ProjectId: 项目 ID。
2292
- 注意:此字段可能返回 null,表示取不到有效值。
2293
2255
  :type ProjectId: str
2294
2256
  :param _From: 证书来源:
2295
2257
  trustasia:亚洲诚信,
2296
2258
  upload:用户上传。
2297
2259
  wosign:沃通
2298
2260
  sheca:上海CA
2299
- 注意:此字段可能返回 null,表示取不到有效值。
2300
2261
  :type From: str
2301
2262
  :param _PackageType: 证书套餐类型:
2302
2263
  null:用户上传证书(没有套餐类型),
@@ -2383,163 +2344,110 @@ null:用户上传证书(没有套餐类型),
2383
2344
  99:CFCA 企业型多域名(OV)SSL证书
2384
2345
  100:CFCA 企业型通配符(OV)SSL证书
2385
2346
  101:CFCA 增强型(EV)SSL证书
2386
- 注意:此字段可能返回 null,表示取不到有效值。
2387
2347
  :type PackageType: str
2388
2348
  :param _CertificateType: 证书类型:CA = 客户端证书,SVR = 服务器证书。
2389
- 注意:此字段可能返回 null,表示取不到有效值。
2390
2349
  :type CertificateType: str
2391
2350
  :param _ProductZhName: 证书产品名称
2392
- 注意:此字段可能返回 null,表示取不到有效值。
2393
2351
  :type ProductZhName: str
2394
2352
  :param _Domain: 主域名。
2395
- 注意:此字段可能返回 null,表示取不到有效值。
2396
2353
  :type Domain: str
2397
2354
  :param _Alias: 备注名称。
2398
- 注意:此字段可能返回 null,表示取不到有效值。
2399
2355
  :type Alias: str
2400
2356
  :param _Status: 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 自动添加DNS记录,5 = 企业证书,待提交资料,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。14 = 证书已退款。 15 = 证书迁移中
2401
- 注意:此字段可能返回 null,表示取不到有效值。
2402
2357
  :type Status: int
2403
2358
  :param _CertificateExtra: 证书扩展信息。
2404
- 注意:此字段可能返回 null,表示取不到有效值。
2405
2359
  :type CertificateExtra: :class:`tencentcloud.ssl.v20191205.models.CertificateExtra`
2406
2360
  :param _VulnerabilityStatus: 漏洞扫描状态:INACTIVE = 未开启,ACTIVE = 已开启
2407
- 注意:此字段可能返回 null,表示取不到有效值。
2408
2361
  :type VulnerabilityStatus: str
2409
2362
  :param _StatusMsg: 状态信息。
2410
- 注意:此字段可能返回 null,表示取不到有效值。
2411
2363
  :type StatusMsg: str
2412
2364
  :param _VerifyType: 验证类型:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证,DNS_PROXY = DNS代理验证。FILE_PROXY = 文件代理验证
2413
- 注意:此字段可能返回 null,表示取不到有效值。
2414
2365
  :type VerifyType: str
2415
2366
  :param _CertBeginTime: 证书生效时间。
2416
- 注意:此字段可能返回 null,表示取不到有效值。
2417
2367
  :type CertBeginTime: str
2418
2368
  :param _CertEndTime: 证书过期时间。
2419
- 注意:此字段可能返回 null,表示取不到有效值。
2420
2369
  :type CertEndTime: str
2421
2370
  :param _ValidityPeriod: 证书有效期,单位(月)。
2422
- 注意:此字段可能返回 null,表示取不到有效值。
2423
2371
  :type ValidityPeriod: str
2424
2372
  :param _InsertTime: 创建时间。
2425
- 注意:此字段可能返回 null,表示取不到有效值。
2426
2373
  :type InsertTime: str
2427
2374
  :param _CertificateId: 证书 ID。
2428
- 注意:此字段可能返回 null,表示取不到有效值。
2429
2375
  :type CertificateId: str
2430
2376
  :param _SubjectAltName: 证书包含的多个域名(包含主域名)。
2431
- 注意:此字段可能返回 null,表示取不到有效值。
2432
2377
  :type SubjectAltName: list of str
2433
2378
  :param _PackageTypeName: 证书类型名称。
2434
- 注意:此字段可能返回 null,表示取不到有效值。
2435
2379
  :type PackageTypeName: str
2436
2380
  :param _StatusName: 状态名称。
2437
- 注意:此字段可能返回 null,表示取不到有效值。
2438
2381
  :type StatusName: str
2439
2382
  :param _IsVip: 是否为 VIP 客户。
2440
- 注意:此字段可能返回 null,表示取不到有效值。
2441
2383
  :type IsVip: bool
2442
2384
  :param _IsDv: 是否为 DV 版证书。
2443
- 注意:此字段可能返回 null,表示取不到有效值。
2444
2385
  :type IsDv: bool
2445
2386
  :param _IsWildcard: 是否为泛域名证书。
2446
- 注意:此字段可能返回 null,表示取不到有效值。
2447
2387
  :type IsWildcard: bool
2448
2388
  :param _IsVulnerability: 是否启用了漏洞扫描功能。
2449
- 注意:此字段可能返回 null,表示取不到有效值。
2450
2389
  :type IsVulnerability: bool
2451
2390
  :param _RenewAble: 是否可续费。
2452
- 注意:此字段可能返回 null,表示取不到有效值。
2453
2391
  :type RenewAble: bool
2454
2392
  :param _ProjectInfo: 项目信息。
2455
- 注意:此字段可能返回 null,表示取不到有效值。
2456
2393
  :type ProjectInfo: :class:`tencentcloud.ssl.v20191205.models.ProjectInfo`
2457
2394
  :param _BoundResource: 关联的云资源,暂不可用
2458
- 注意:此字段可能返回 null,表示取不到有效值。
2459
2395
  :type BoundResource: list of str
2460
2396
  :param _Deployable: 是否可部署。
2461
- 注意:此字段可能返回 null,表示取不到有效值。
2462
2397
  :type Deployable: bool
2463
2398
  :param _Tags: 标签列表
2464
- 注意:此字段可能返回 null,表示取不到有效值。
2465
2399
  :type Tags: list of Tags
2466
2400
  :param _IsIgnore: 是否已忽略到期通知
2467
- 注意:此字段可能返回 null,表示取不到有效值。
2468
2401
  :type IsIgnore: bool
2469
2402
  :param _IsSM: 是否国密证书
2470
- 注意:此字段可能返回 null,表示取不到有效值。
2471
2403
  :type IsSM: bool
2472
2404
  :param _EncryptAlgorithm: 证书算法
2473
- 注意:此字段可能返回 null,表示取不到有效值。
2474
2405
  :type EncryptAlgorithm: str
2475
2406
  :param _CAEncryptAlgorithms: 上传CA证书的加密算法
2476
- 注意:此字段可能返回 null,表示取不到有效值。
2477
2407
  :type CAEncryptAlgorithms: list of str
2478
2408
  :param _CAEndTimes: 上传CA证书的过期时间
2479
- 注意:此字段可能返回 null,表示取不到有效值。
2480
2409
  :type CAEndTimes: list of str
2481
2410
  :param _CACommonNames: 上传CA证书的通用名称
2482
- 注意:此字段可能返回 null,表示取不到有效值。
2483
2411
  :type CACommonNames: list of str
2484
2412
  :param _PreAuditInfo: 证书预审核信息
2485
- 注意:此字段可能返回 null,表示取不到有效值。
2486
2413
  :type PreAuditInfo: :class:`tencentcloud.ssl.v20191205.models.PreAuditInfo`
2487
2414
  :param _AutoRenewFlag: 是否自动续费
2488
- 注意:此字段可能返回 null,表示取不到有效值。
2489
2415
  :type AutoRenewFlag: int
2490
2416
  :param _HostingStatus: 托管状态,0,托管中,5,资源替换中, 10, 托管完成, -1未托管
2491
- 注意:此字段可能返回 null,表示取不到有效值。
2492
2417
  :type HostingStatus: int
2493
2418
  :param _HostingCompleteTime: 托管完成时间
2494
- 注意:此字段可能返回 null,表示取不到有效值。
2495
2419
  :type HostingCompleteTime: str
2496
2420
  :param _HostingRenewCertId: 托管新证书ID
2497
- 注意:此字段可能返回 null,表示取不到有效值。
2498
2421
  :type HostingRenewCertId: str
2499
2422
  :param _HasRenewOrder: 存在的续费证书ID
2500
- 注意:此字段可能返回 null,表示取不到有效值。
2501
2423
  :type HasRenewOrder: str
2502
2424
  :param _ReplaceOriCertIsDelete: 重颁发证书原证书是否删除
2503
- 注意:此字段可能返回 null,表示取不到有效值。
2504
2425
  :type ReplaceOriCertIsDelete: bool
2505
2426
  :param _IsExpiring: 是否即将过期, 证书即将到期的30天内为即将过期
2506
- 注意:此字段可能返回 null,表示取不到有效值。
2507
2427
  :type IsExpiring: bool
2508
2428
  :param _DVAuthDeadline: DV证书添加验证截止时间
2509
- 注意:此字段可能返回 null,表示取不到有效值。
2510
2429
  :type DVAuthDeadline: str
2511
2430
  :param _ValidationPassedTime: 域名验证通过时间
2512
- 注意:此字段可能返回 null,表示取不到有效值。
2513
2431
  :type ValidationPassedTime: str
2514
2432
  :param _CertSANs: 证书关联的多域名
2515
- 注意:此字段可能返回 null,表示取不到有效值。
2516
2433
  :type CertSANs: list of str
2517
2434
  :param _AwaitingValidationMsg: 域名验证驳回信息
2518
- 注意:此字段可能返回 null,表示取不到有效值。
2519
2435
  :type AwaitingValidationMsg: str
2520
2436
  :param _AllowDownload: 是否允许下载
2521
- 注意:此字段可能返回 null,表示取不到有效值。
2522
2437
  :type AllowDownload: bool
2523
2438
  :param _IsDNSPODResolve: 证书域名是否全部在DNSPOD托管解析
2524
- 注意:此字段可能返回 null,表示取不到有效值。
2525
2439
  :type IsDNSPODResolve: bool
2526
2440
  :param _IsPackage: 是否是权益点购买的证书
2527
- 注意:此字段可能返回 null,表示取不到有效值。
2528
2441
  :type IsPackage: bool
2529
2442
  :param _KeyPasswordCustomFlag: 是否存在私钥密码
2530
- 注意:此字段可能返回 null,表示取不到有效值。
2531
2443
  :type KeyPasswordCustomFlag: bool
2532
2444
  :param _SupportDownloadType: 支持下载的WEB服务器类型: nginx、apache、iis、tomcat、jks、root、other
2533
- 注意:此字段可能返回 null,表示取不到有效值。
2534
2445
  :type SupportDownloadType: :class:`tencentcloud.ssl.v20191205.models.SupportDownloadType`
2535
2446
  :param _CertRevokedTime: 证书吊销完成时间
2536
- 注意:此字段可能返回 null,表示取不到有效值。
2537
2447
  :type CertRevokedTime: str
2538
2448
  :param _HostingResourceTypes: 托管资源类型列表
2539
- 注意:此字段可能返回 null,表示取不到有效值。
2540
2449
  :type HostingResourceTypes: list of str
2541
2450
  :param _HostingConfig: 托管配置信息
2542
- 注意:此字段可能返回 null,表示取不到有效值。
2543
2451
  :type HostingConfig: :class:`tencentcloud.ssl.v20191205.models.HostingConfig`
2544
2452
  """
2545
2453
  self._OwnerUin = None
@@ -2602,7 +2510,6 @@ null:用户上传证书(没有套餐类型),
2602
2510
  @property
2603
2511
  def OwnerUin(self):
2604
2512
  """用户 UIN。
2605
- 注意:此字段可能返回 null,表示取不到有效值。
2606
2513
  :rtype: str
2607
2514
  """
2608
2515
  return self._OwnerUin
@@ -2614,7 +2521,6 @@ null:用户上传证书(没有套餐类型),
2614
2521
  @property
2615
2522
  def ProjectId(self):
2616
2523
  """项目 ID。
2617
- 注意:此字段可能返回 null,表示取不到有效值。
2618
2524
  :rtype: str
2619
2525
  """
2620
2526
  return self._ProjectId
@@ -2630,7 +2536,6 @@ trustasia:亚洲诚信,
2630
2536
  upload:用户上传。
2631
2537
  wosign:沃通
2632
2538
  sheca:上海CA
2633
- 注意:此字段可能返回 null,表示取不到有效值。
2634
2539
  :rtype: str
2635
2540
  """
2636
2541
  return self._From
@@ -2726,7 +2631,6 @@ null:用户上传证书(没有套餐类型),
2726
2631
  99:CFCA 企业型多域名(OV)SSL证书
2727
2632
  100:CFCA 企业型通配符(OV)SSL证书
2728
2633
  101:CFCA 增强型(EV)SSL证书
2729
- 注意:此字段可能返回 null,表示取不到有效值。
2730
2634
  :rtype: str
2731
2635
  """
2732
2636
  return self._PackageType
@@ -2738,7 +2642,6 @@ null:用户上传证书(没有套餐类型),
2738
2642
  @property
2739
2643
  def CertificateType(self):
2740
2644
  """证书类型:CA = 客户端证书,SVR = 服务器证书。
2741
- 注意:此字段可能返回 null,表示取不到有效值。
2742
2645
  :rtype: str
2743
2646
  """
2744
2647
  return self._CertificateType
@@ -2750,7 +2653,6 @@ null:用户上传证书(没有套餐类型),
2750
2653
  @property
2751
2654
  def ProductZhName(self):
2752
2655
  """证书产品名称
2753
- 注意:此字段可能返回 null,表示取不到有效值。
2754
2656
  :rtype: str
2755
2657
  """
2756
2658
  return self._ProductZhName
@@ -2762,7 +2664,6 @@ null:用户上传证书(没有套餐类型),
2762
2664
  @property
2763
2665
  def Domain(self):
2764
2666
  """主域名。
2765
- 注意:此字段可能返回 null,表示取不到有效值。
2766
2667
  :rtype: str
2767
2668
  """
2768
2669
  return self._Domain
@@ -2774,7 +2675,6 @@ null:用户上传证书(没有套餐类型),
2774
2675
  @property
2775
2676
  def Alias(self):
2776
2677
  """备注名称。
2777
- 注意:此字段可能返回 null,表示取不到有效值。
2778
2678
  :rtype: str
2779
2679
  """
2780
2680
  return self._Alias
@@ -2786,7 +2686,6 @@ null:用户上传证书(没有套餐类型),
2786
2686
  @property
2787
2687
  def Status(self):
2788
2688
  """证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 自动添加DNS记录,5 = 企业证书,待提交资料,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。14 = 证书已退款。 15 = 证书迁移中
2789
- 注意:此字段可能返回 null,表示取不到有效值。
2790
2689
  :rtype: int
2791
2690
  """
2792
2691
  return self._Status
@@ -2798,7 +2697,6 @@ null:用户上传证书(没有套餐类型),
2798
2697
  @property
2799
2698
  def CertificateExtra(self):
2800
2699
  """证书扩展信息。
2801
- 注意:此字段可能返回 null,表示取不到有效值。
2802
2700
  :rtype: :class:`tencentcloud.ssl.v20191205.models.CertificateExtra`
2803
2701
  """
2804
2702
  return self._CertificateExtra
@@ -2810,7 +2708,6 @@ null:用户上传证书(没有套餐类型),
2810
2708
  @property
2811
2709
  def VulnerabilityStatus(self):
2812
2710
  """漏洞扫描状态:INACTIVE = 未开启,ACTIVE = 已开启
2813
- 注意:此字段可能返回 null,表示取不到有效值。
2814
2711
  :rtype: str
2815
2712
  """
2816
2713
  return self._VulnerabilityStatus
@@ -2822,7 +2719,6 @@ null:用户上传证书(没有套餐类型),
2822
2719
  @property
2823
2720
  def StatusMsg(self):
2824
2721
  """状态信息。
2825
- 注意:此字段可能返回 null,表示取不到有效值。
2826
2722
  :rtype: str
2827
2723
  """
2828
2724
  return self._StatusMsg
@@ -2834,7 +2730,6 @@ null:用户上传证书(没有套餐类型),
2834
2730
  @property
2835
2731
  def VerifyType(self):
2836
2732
  """验证类型:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证,DNS_PROXY = DNS代理验证。FILE_PROXY = 文件代理验证
2837
- 注意:此字段可能返回 null,表示取不到有效值。
2838
2733
  :rtype: str
2839
2734
  """
2840
2735
  return self._VerifyType
@@ -2846,7 +2741,6 @@ null:用户上传证书(没有套餐类型),
2846
2741
  @property
2847
2742
  def CertBeginTime(self):
2848
2743
  """证书生效时间。
2849
- 注意:此字段可能返回 null,表示取不到有效值。
2850
2744
  :rtype: str
2851
2745
  """
2852
2746
  return self._CertBeginTime
@@ -2858,7 +2752,6 @@ null:用户上传证书(没有套餐类型),
2858
2752
  @property
2859
2753
  def CertEndTime(self):
2860
2754
  """证书过期时间。
2861
- 注意:此字段可能返回 null,表示取不到有效值。
2862
2755
  :rtype: str
2863
2756
  """
2864
2757
  return self._CertEndTime
@@ -2870,7 +2763,6 @@ null:用户上传证书(没有套餐类型),
2870
2763
  @property
2871
2764
  def ValidityPeriod(self):
2872
2765
  """证书有效期,单位(月)。
2873
- 注意:此字段可能返回 null,表示取不到有效值。
2874
2766
  :rtype: str
2875
2767
  """
2876
2768
  return self._ValidityPeriod
@@ -2882,7 +2774,6 @@ null:用户上传证书(没有套餐类型),
2882
2774
  @property
2883
2775
  def InsertTime(self):
2884
2776
  """创建时间。
2885
- 注意:此字段可能返回 null,表示取不到有效值。
2886
2777
  :rtype: str
2887
2778
  """
2888
2779
  return self._InsertTime
@@ -2894,7 +2785,6 @@ null:用户上传证书(没有套餐类型),
2894
2785
  @property
2895
2786
  def CertificateId(self):
2896
2787
  """证书 ID。
2897
- 注意:此字段可能返回 null,表示取不到有效值。
2898
2788
  :rtype: str
2899
2789
  """
2900
2790
  return self._CertificateId
@@ -2906,7 +2796,6 @@ null:用户上传证书(没有套餐类型),
2906
2796
  @property
2907
2797
  def SubjectAltName(self):
2908
2798
  """证书包含的多个域名(包含主域名)。
2909
- 注意:此字段可能返回 null,表示取不到有效值。
2910
2799
  :rtype: list of str
2911
2800
  """
2912
2801
  return self._SubjectAltName
@@ -2918,7 +2807,6 @@ null:用户上传证书(没有套餐类型),
2918
2807
  @property
2919
2808
  def PackageTypeName(self):
2920
2809
  """证书类型名称。
2921
- 注意:此字段可能返回 null,表示取不到有效值。
2922
2810
  :rtype: str
2923
2811
  """
2924
2812
  return self._PackageTypeName
@@ -2930,7 +2818,6 @@ null:用户上传证书(没有套餐类型),
2930
2818
  @property
2931
2819
  def StatusName(self):
2932
2820
  """状态名称。
2933
- 注意:此字段可能返回 null,表示取不到有效值。
2934
2821
  :rtype: str
2935
2822
  """
2936
2823
  return self._StatusName
@@ -2942,7 +2829,6 @@ null:用户上传证书(没有套餐类型),
2942
2829
  @property
2943
2830
  def IsVip(self):
2944
2831
  """是否为 VIP 客户。
2945
- 注意:此字段可能返回 null,表示取不到有效值。
2946
2832
  :rtype: bool
2947
2833
  """
2948
2834
  return self._IsVip
@@ -2954,7 +2840,6 @@ null:用户上传证书(没有套餐类型),
2954
2840
  @property
2955
2841
  def IsDv(self):
2956
2842
  """是否为 DV 版证书。
2957
- 注意:此字段可能返回 null,表示取不到有效值。
2958
2843
  :rtype: bool
2959
2844
  """
2960
2845
  return self._IsDv
@@ -2966,7 +2851,6 @@ null:用户上传证书(没有套餐类型),
2966
2851
  @property
2967
2852
  def IsWildcard(self):
2968
2853
  """是否为泛域名证书。
2969
- 注意:此字段可能返回 null,表示取不到有效值。
2970
2854
  :rtype: bool
2971
2855
  """
2972
2856
  return self._IsWildcard
@@ -2978,7 +2862,6 @@ null:用户上传证书(没有套餐类型),
2978
2862
  @property
2979
2863
  def IsVulnerability(self):
2980
2864
  """是否启用了漏洞扫描功能。
2981
- 注意:此字段可能返回 null,表示取不到有效值。
2982
2865
  :rtype: bool
2983
2866
  """
2984
2867
  return self._IsVulnerability
@@ -2990,7 +2873,6 @@ null:用户上传证书(没有套餐类型),
2990
2873
  @property
2991
2874
  def RenewAble(self):
2992
2875
  """是否可续费。
2993
- 注意:此字段可能返回 null,表示取不到有效值。
2994
2876
  :rtype: bool
2995
2877
  """
2996
2878
  return self._RenewAble
@@ -3002,7 +2884,6 @@ null:用户上传证书(没有套餐类型),
3002
2884
  @property
3003
2885
  def ProjectInfo(self):
3004
2886
  """项目信息。
3005
- 注意:此字段可能返回 null,表示取不到有效值。
3006
2887
  :rtype: :class:`tencentcloud.ssl.v20191205.models.ProjectInfo`
3007
2888
  """
3008
2889
  return self._ProjectInfo
@@ -3014,7 +2895,6 @@ null:用户上传证书(没有套餐类型),
3014
2895
  @property
3015
2896
  def BoundResource(self):
3016
2897
  """关联的云资源,暂不可用
3017
- 注意:此字段可能返回 null,表示取不到有效值。
3018
2898
  :rtype: list of str
3019
2899
  """
3020
2900
  return self._BoundResource
@@ -3026,7 +2906,6 @@ null:用户上传证书(没有套餐类型),
3026
2906
  @property
3027
2907
  def Deployable(self):
3028
2908
  """是否可部署。
3029
- 注意:此字段可能返回 null,表示取不到有效值。
3030
2909
  :rtype: bool
3031
2910
  """
3032
2911
  return self._Deployable
@@ -3038,7 +2917,6 @@ null:用户上传证书(没有套餐类型),
3038
2917
  @property
3039
2918
  def Tags(self):
3040
2919
  """标签列表
3041
- 注意:此字段可能返回 null,表示取不到有效值。
3042
2920
  :rtype: list of Tags
3043
2921
  """
3044
2922
  return self._Tags
@@ -3050,7 +2928,6 @@ null:用户上传证书(没有套餐类型),
3050
2928
  @property
3051
2929
  def IsIgnore(self):
3052
2930
  """是否已忽略到期通知
3053
- 注意:此字段可能返回 null,表示取不到有效值。
3054
2931
  :rtype: bool
3055
2932
  """
3056
2933
  return self._IsIgnore
@@ -3062,7 +2939,6 @@ null:用户上传证书(没有套餐类型),
3062
2939
  @property
3063
2940
  def IsSM(self):
3064
2941
  """是否国密证书
3065
- 注意:此字段可能返回 null,表示取不到有效值。
3066
2942
  :rtype: bool
3067
2943
  """
3068
2944
  return self._IsSM
@@ -3074,7 +2950,6 @@ null:用户上传证书(没有套餐类型),
3074
2950
  @property
3075
2951
  def EncryptAlgorithm(self):
3076
2952
  """证书算法
3077
- 注意:此字段可能返回 null,表示取不到有效值。
3078
2953
  :rtype: str
3079
2954
  """
3080
2955
  return self._EncryptAlgorithm
@@ -3086,7 +2961,6 @@ null:用户上传证书(没有套餐类型),
3086
2961
  @property
3087
2962
  def CAEncryptAlgorithms(self):
3088
2963
  """上传CA证书的加密算法
3089
- 注意:此字段可能返回 null,表示取不到有效值。
3090
2964
  :rtype: list of str
3091
2965
  """
3092
2966
  return self._CAEncryptAlgorithms
@@ -3098,7 +2972,6 @@ null:用户上传证书(没有套餐类型),
3098
2972
  @property
3099
2973
  def CAEndTimes(self):
3100
2974
  """上传CA证书的过期时间
3101
- 注意:此字段可能返回 null,表示取不到有效值。
3102
2975
  :rtype: list of str
3103
2976
  """
3104
2977
  return self._CAEndTimes
@@ -3110,7 +2983,6 @@ null:用户上传证书(没有套餐类型),
3110
2983
  @property
3111
2984
  def CACommonNames(self):
3112
2985
  """上传CA证书的通用名称
3113
- 注意:此字段可能返回 null,表示取不到有效值。
3114
2986
  :rtype: list of str
3115
2987
  """
3116
2988
  return self._CACommonNames
@@ -3122,7 +2994,6 @@ null:用户上传证书(没有套餐类型),
3122
2994
  @property
3123
2995
  def PreAuditInfo(self):
3124
2996
  """证书预审核信息
3125
- 注意:此字段可能返回 null,表示取不到有效值。
3126
2997
  :rtype: :class:`tencentcloud.ssl.v20191205.models.PreAuditInfo`
3127
2998
  """
3128
2999
  return self._PreAuditInfo
@@ -3134,7 +3005,6 @@ null:用户上传证书(没有套餐类型),
3134
3005
  @property
3135
3006
  def AutoRenewFlag(self):
3136
3007
  """是否自动续费
3137
- 注意:此字段可能返回 null,表示取不到有效值。
3138
3008
  :rtype: int
3139
3009
  """
3140
3010
  return self._AutoRenewFlag
@@ -3146,7 +3016,6 @@ null:用户上传证书(没有套餐类型),
3146
3016
  @property
3147
3017
  def HostingStatus(self):
3148
3018
  """托管状态,0,托管中,5,资源替换中, 10, 托管完成, -1未托管
3149
- 注意:此字段可能返回 null,表示取不到有效值。
3150
3019
  :rtype: int
3151
3020
  """
3152
3021
  return self._HostingStatus
@@ -3158,7 +3027,6 @@ null:用户上传证书(没有套餐类型),
3158
3027
  @property
3159
3028
  def HostingCompleteTime(self):
3160
3029
  """托管完成时间
3161
- 注意:此字段可能返回 null,表示取不到有效值。
3162
3030
  :rtype: str
3163
3031
  """
3164
3032
  return self._HostingCompleteTime
@@ -3170,7 +3038,6 @@ null:用户上传证书(没有套餐类型),
3170
3038
  @property
3171
3039
  def HostingRenewCertId(self):
3172
3040
  """托管新证书ID
3173
- 注意:此字段可能返回 null,表示取不到有效值。
3174
3041
  :rtype: str
3175
3042
  """
3176
3043
  return self._HostingRenewCertId
@@ -3182,7 +3049,6 @@ null:用户上传证书(没有套餐类型),
3182
3049
  @property
3183
3050
  def HasRenewOrder(self):
3184
3051
  """存在的续费证书ID
3185
- 注意:此字段可能返回 null,表示取不到有效值。
3186
3052
  :rtype: str
3187
3053
  """
3188
3054
  return self._HasRenewOrder
@@ -3194,7 +3060,6 @@ null:用户上传证书(没有套餐类型),
3194
3060
  @property
3195
3061
  def ReplaceOriCertIsDelete(self):
3196
3062
  """重颁发证书原证书是否删除
3197
- 注意:此字段可能返回 null,表示取不到有效值。
3198
3063
  :rtype: bool
3199
3064
  """
3200
3065
  return self._ReplaceOriCertIsDelete
@@ -3206,7 +3071,6 @@ null:用户上传证书(没有套餐类型),
3206
3071
  @property
3207
3072
  def IsExpiring(self):
3208
3073
  """是否即将过期, 证书即将到期的30天内为即将过期
3209
- 注意:此字段可能返回 null,表示取不到有效值。
3210
3074
  :rtype: bool
3211
3075
  """
3212
3076
  return self._IsExpiring
@@ -3218,7 +3082,6 @@ null:用户上传证书(没有套餐类型),
3218
3082
  @property
3219
3083
  def DVAuthDeadline(self):
3220
3084
  """DV证书添加验证截止时间
3221
- 注意:此字段可能返回 null,表示取不到有效值。
3222
3085
  :rtype: str
3223
3086
  """
3224
3087
  return self._DVAuthDeadline
@@ -3230,7 +3093,6 @@ null:用户上传证书(没有套餐类型),
3230
3093
  @property
3231
3094
  def ValidationPassedTime(self):
3232
3095
  """域名验证通过时间
3233
- 注意:此字段可能返回 null,表示取不到有效值。
3234
3096
  :rtype: str
3235
3097
  """
3236
3098
  return self._ValidationPassedTime
@@ -3242,7 +3104,6 @@ null:用户上传证书(没有套餐类型),
3242
3104
  @property
3243
3105
  def CertSANs(self):
3244
3106
  """证书关联的多域名
3245
- 注意:此字段可能返回 null,表示取不到有效值。
3246
3107
  :rtype: list of str
3247
3108
  """
3248
3109
  return self._CertSANs
@@ -3254,7 +3115,6 @@ null:用户上传证书(没有套餐类型),
3254
3115
  @property
3255
3116
  def AwaitingValidationMsg(self):
3256
3117
  """域名验证驳回信息
3257
- 注意:此字段可能返回 null,表示取不到有效值。
3258
3118
  :rtype: str
3259
3119
  """
3260
3120
  return self._AwaitingValidationMsg
@@ -3266,7 +3126,6 @@ null:用户上传证书(没有套餐类型),
3266
3126
  @property
3267
3127
  def AllowDownload(self):
3268
3128
  """是否允许下载
3269
- 注意:此字段可能返回 null,表示取不到有效值。
3270
3129
  :rtype: bool
3271
3130
  """
3272
3131
  return self._AllowDownload
@@ -3278,7 +3137,6 @@ null:用户上传证书(没有套餐类型),
3278
3137
  @property
3279
3138
  def IsDNSPODResolve(self):
3280
3139
  """证书域名是否全部在DNSPOD托管解析
3281
- 注意:此字段可能返回 null,表示取不到有效值。
3282
3140
  :rtype: bool
3283
3141
  """
3284
3142
  return self._IsDNSPODResolve
@@ -3290,7 +3148,6 @@ null:用户上传证书(没有套餐类型),
3290
3148
  @property
3291
3149
  def IsPackage(self):
3292
3150
  """是否是权益点购买的证书
3293
- 注意:此字段可能返回 null,表示取不到有效值。
3294
3151
  :rtype: bool
3295
3152
  """
3296
3153
  return self._IsPackage
@@ -3302,7 +3159,6 @@ null:用户上传证书(没有套餐类型),
3302
3159
  @property
3303
3160
  def KeyPasswordCustomFlag(self):
3304
3161
  """是否存在私钥密码
3305
- 注意:此字段可能返回 null,表示取不到有效值。
3306
3162
  :rtype: bool
3307
3163
  """
3308
3164
  return self._KeyPasswordCustomFlag
@@ -3314,7 +3170,6 @@ null:用户上传证书(没有套餐类型),
3314
3170
  @property
3315
3171
  def SupportDownloadType(self):
3316
3172
  """支持下载的WEB服务器类型: nginx、apache、iis、tomcat、jks、root、other
3317
- 注意:此字段可能返回 null,表示取不到有效值。
3318
3173
  :rtype: :class:`tencentcloud.ssl.v20191205.models.SupportDownloadType`
3319
3174
  """
3320
3175
  return self._SupportDownloadType
@@ -3326,7 +3181,6 @@ null:用户上传证书(没有套餐类型),
3326
3181
  @property
3327
3182
  def CertRevokedTime(self):
3328
3183
  """证书吊销完成时间
3329
- 注意:此字段可能返回 null,表示取不到有效值。
3330
3184
  :rtype: str
3331
3185
  """
3332
3186
  return self._CertRevokedTime
@@ -3338,7 +3192,6 @@ null:用户上传证书(没有套餐类型),
3338
3192
  @property
3339
3193
  def HostingResourceTypes(self):
3340
3194
  """托管资源类型列表
3341
- 注意:此字段可能返回 null,表示取不到有效值。
3342
3195
  :rtype: list of str
3343
3196
  """
3344
3197
  return self._HostingResourceTypes
@@ -3350,7 +3203,6 @@ null:用户上传证书(没有套餐类型),
3350
3203
  @property
3351
3204
  def HostingConfig(self):
3352
3205
  """托管配置信息
3353
- 注意:此字段可能返回 null,表示取不到有效值。
3354
3206
  :rtype: :class:`tencentcloud.ssl.v20191205.models.HostingConfig`
3355
3207
  """
3356
3208
  return self._HostingConfig
@@ -3730,7 +3582,6 @@ class ClbInstanceDetail(AbstractModel):
3730
3582
  :param _LoadBalancerName: CLB实例名称
3731
3583
  :type LoadBalancerName: str
3732
3584
  :param _Listeners: CLB监听器列表
3733
- 注意:此字段可能返回 null,表示取不到有效值。
3734
3585
  :type Listeners: list of ClbListener
3735
3586
  """
3736
3587
  self._LoadBalancerId = None
@@ -3762,7 +3613,6 @@ class ClbInstanceDetail(AbstractModel):
3762
3613
  @property
3763
3614
  def Listeners(self):
3764
3615
  """CLB监听器列表
3765
- 注意:此字段可能返回 null,表示取不到有效值。
3766
3616
  :rtype: list of ClbListener
3767
3617
  """
3768
3618
  return self._Listeners
@@ -3801,12 +3651,10 @@ class ClbInstanceList(AbstractModel):
3801
3651
  :param _Region: 地域
3802
3652
  :type Region: str
3803
3653
  :param _InstanceList: clb实例详情
3804
- 注意:此字段可能返回 null,表示取不到有效值。
3805
3654
  :type InstanceList: list of ClbInstanceDetail
3806
3655
  :param _TotalCount: 该地域下Clb实例总数
3807
3656
  :type TotalCount: int
3808
3657
  :param _Error: 是否查询异常
3809
- 注意:此字段可能返回 null,表示取不到有效值。
3810
3658
  :type Error: str
3811
3659
  """
3812
3660
  self._Region = None
@@ -3828,7 +3676,6 @@ class ClbInstanceList(AbstractModel):
3828
3676
  @property
3829
3677
  def InstanceList(self):
3830
3678
  """clb实例详情
3831
- 注意:此字段可能返回 null,表示取不到有效值。
3832
3679
  :rtype: list of ClbInstanceDetail
3833
3680
  """
3834
3681
  return self._InstanceList
@@ -3851,7 +3698,6 @@ class ClbInstanceList(AbstractModel):
3851
3698
  @property
3852
3699
  def Error(self):
3853
3700
  """是否查询异常
3854
- 注意:此字段可能返回 null,表示取不到有效值。
3855
3701
  :rtype: str
3856
3702
  """
3857
3703
  return self._Error
@@ -3897,13 +3743,10 @@ class ClbListener(AbstractModel):
3897
3743
  :param _Protocol: 监听器协议类型, HTTPS|TCP_SSL
3898
3744
  :type Protocol: str
3899
3745
  :param _Certificate: 监听器绑定的证书数据
3900
- 注意:此字段可能返回 null,表示取不到有效值。
3901
3746
  :type Certificate: :class:`tencentcloud.ssl.v20191205.models.Certificate`
3902
3747
  :param _Rules: 监听器规则列表
3903
- 注意:此字段可能返回 null,表示取不到有效值。
3904
3748
  :type Rules: list of ClbListenerRule
3905
3749
  :param _NoMatchDomains: 不匹配域名列表
3906
- 注意:此字段可能返回 null,表示取不到有效值。
3907
3750
  :type NoMatchDomains: list of str
3908
3751
  """
3909
3752
  self._ListenerId = None
@@ -3961,7 +3804,6 @@ class ClbListener(AbstractModel):
3961
3804
  @property
3962
3805
  def Certificate(self):
3963
3806
  """监听器绑定的证书数据
3964
- 注意:此字段可能返回 null,表示取不到有效值。
3965
3807
  :rtype: :class:`tencentcloud.ssl.v20191205.models.Certificate`
3966
3808
  """
3967
3809
  return self._Certificate
@@ -3973,7 +3815,6 @@ class ClbListener(AbstractModel):
3973
3815
  @property
3974
3816
  def Rules(self):
3975
3817
  """监听器规则列表
3976
- 注意:此字段可能返回 null,表示取不到有效值。
3977
3818
  :rtype: list of ClbListenerRule
3978
3819
  """
3979
3820
  return self._Rules
@@ -3985,7 +3826,6 @@ class ClbListener(AbstractModel):
3985
3826
  @property
3986
3827
  def NoMatchDomains(self):
3987
3828
  """不匹配域名列表
3988
- 注意:此字段可能返回 null,表示取不到有效值。
3989
3829
  :rtype: list of str
3990
3830
  """
3991
3831
  return self._NoMatchDomains
@@ -4034,13 +3874,10 @@ class ClbListenerRule(AbstractModel):
4034
3874
  :param _IsMatch: 规则是否匹配待绑定证书的域名
4035
3875
  :type IsMatch: bool
4036
3876
  :param _Certificate: 规则已绑定的证书数据
4037
- 注意:此字段可能返回 null,表示取不到有效值。
4038
3877
  :type Certificate: :class:`tencentcloud.ssl.v20191205.models.Certificate`
4039
3878
  :param _NoMatchDomains: 不匹配域名列表
4040
- 注意:此字段可能返回 null,表示取不到有效值。
4041
3879
  :type NoMatchDomains: list of str
4042
3880
  :param _Url: 规则绑定的路径
4043
- 注意:此字段可能返回 null,表示取不到有效值。
4044
3881
  :type Url: str
4045
3882
  """
4046
3883
  self._LocationId = None
@@ -4086,7 +3923,6 @@ class ClbListenerRule(AbstractModel):
4086
3923
  @property
4087
3924
  def Certificate(self):
4088
3925
  """规则已绑定的证书数据
4089
- 注意:此字段可能返回 null,表示取不到有效值。
4090
3926
  :rtype: :class:`tencentcloud.ssl.v20191205.models.Certificate`
4091
3927
  """
4092
3928
  return self._Certificate
@@ -4098,7 +3934,6 @@ class ClbListenerRule(AbstractModel):
4098
3934
  @property
4099
3935
  def NoMatchDomains(self):
4100
3936
  """不匹配域名列表
4101
- 注意:此字段可能返回 null,表示取不到有效值。
4102
3937
  :rtype: list of str
4103
3938
  """
4104
3939
  return self._NoMatchDomains
@@ -4110,7 +3945,6 @@ class ClbListenerRule(AbstractModel):
4110
3945
  @property
4111
3946
  def Url(self):
4112
3947
  """规则绑定的路径
4113
- 注意:此字段可能返回 null,表示取不到有效值。
4114
3948
  :rtype: str
4115
3949
  """
4116
3950
  return self._Url
@@ -4278,14 +4112,11 @@ class CompanyInfo(AbstractModel):
4278
4112
  :param _IdType: 公司证件类型,取值范围:
4279
4113
  TYDMZ(统一社会信用代码 ):仅CFCA类型证书需要使用本字段, 其他类型证书不需要使用本字段
4280
4114
  OTHERS(其他)
4281
- 注意:此字段可能返回 null,表示取不到有效值。
4282
4115
  :type IdType: str
4283
4116
  :param _IdNumber: 公司证件号码,取值范围:
4284
4117
  TYDMZ(统一社会信用代码 ):11532xxxxxxxx24820
4285
- 注意:此字段可能返回 null,表示取不到有效值。
4286
4118
  :type IdNumber: str
4287
4119
  :param _Tags: 标签
4288
- 注意:此字段可能返回 null,表示取不到有效值。
4289
4120
  :type Tags: list of Tags
4290
4121
  """
4291
4122
  self._CompanyName = None
@@ -4381,7 +4212,6 @@ TYDMZ(统一社会信用代码 ):11532xxxxxxxx24820
4381
4212
  """公司证件类型,取值范围:
4382
4213
  TYDMZ(统一社会信用代码 ):仅CFCA类型证书需要使用本字段, 其他类型证书不需要使用本字段
4383
4214
  OTHERS(其他)
4384
- 注意:此字段可能返回 null,表示取不到有效值。
4385
4215
  :rtype: str
4386
4216
  """
4387
4217
  return self._IdType
@@ -4394,7 +4224,6 @@ OTHERS(其他)
4394
4224
  def IdNumber(self):
4395
4225
  """公司证件号码,取值范围:
4396
4226
  TYDMZ(统一社会信用代码 ):11532xxxxxxxx24820
4397
- 注意:此字段可能返回 null,表示取不到有效值。
4398
4227
  :rtype: str
4399
4228
  """
4400
4229
  return self._IdNumber
@@ -4406,7 +4235,6 @@ TYDMZ(统一社会信用代码 ):11532xxxxxxxx24820
4406
4235
  @property
4407
4236
  def Tags(self):
4408
4237
  """标签
4409
- 注意:此字段可能返回 null,表示取不到有效值。
4410
4238
  :rtype: list of Tags
4411
4239
  """
4412
4240
  return self._Tags
@@ -4531,16 +4359,13 @@ class CosInstanceDetail(AbstractModel):
4531
4359
  :param _Domain: 域名
4532
4360
  :type Domain: str
4533
4361
  :param _CertId: 已绑定的证书ID
4534
- 注意:此字段可能返回 null,表示取不到有效值。
4535
4362
  :type CertId: str
4536
4363
  :param _Status: ENABLED: 域名上线状态
4537
4364
  DISABLED:域名下线状态
4538
4365
  :type Status: str
4539
4366
  :param _Bucket: 存储桶名称
4540
- 注意:此字段可能返回 null,表示取不到有效值。
4541
4367
  :type Bucket: str
4542
4368
  :param _Region: 存储桶地域
4543
- 注意:此字段可能返回 null,表示取不到有效值。
4544
4369
  :type Region: str
4545
4370
  """
4546
4371
  self._Domain = None
@@ -4563,7 +4388,6 @@ DISABLED:域名下线状态
4563
4388
  @property
4564
4389
  def CertId(self):
4565
4390
  """已绑定的证书ID
4566
- 注意:此字段可能返回 null,表示取不到有效值。
4567
4391
  :rtype: str
4568
4392
  """
4569
4393
  return self._CertId
@@ -4587,7 +4411,6 @@ DISABLED:域名下线状态
4587
4411
  @property
4588
4412
  def Bucket(self):
4589
4413
  """存储桶名称
4590
- 注意:此字段可能返回 null,表示取不到有效值。
4591
4414
  :rtype: str
4592
4415
  """
4593
4416
  return self._Bucket
@@ -4599,7 +4422,6 @@ DISABLED:域名下线状态
4599
4422
  @property
4600
4423
  def Region(self):
4601
4424
  """存储桶地域
4602
- 注意:此字段可能返回 null,表示取不到有效值。
4603
4425
  :rtype: str
4604
4426
  """
4605
4427
  return self._Region
@@ -5495,7 +5317,6 @@ class DdosInstanceDetail(AbstractModel):
5495
5317
  :param _Protocol: 协议类型
5496
5318
  :type Protocol: str
5497
5319
  :param _CertId: 证书ID
5498
- 注意:此字段可能返回 null,表示取不到有效值。
5499
5320
  :type CertId: str
5500
5321
  :param _VirtualPort: 转发端口
5501
5322
  :type VirtualPort: str
@@ -5542,7 +5363,6 @@ class DdosInstanceDetail(AbstractModel):
5542
5363
  @property
5543
5364
  def CertId(self):
5544
5365
  """证书ID
5545
- 注意:此字段可能返回 null,表示取不到有效值。
5546
5366
  :rtype: str
5547
5367
  """
5548
5368
  return self._CertId
@@ -5589,10 +5409,8 @@ class DdosInstanceList(AbstractModel):
5589
5409
  :param _TotalCount: 该地域下ddos域名总数
5590
5410
  :type TotalCount: int
5591
5411
  :param _InstanceList: ddos实例详情
5592
- 注意:此字段可能返回 null,表示取不到有效值。
5593
5412
  :type InstanceList: list of DdosInstanceDetail
5594
5413
  :param _Error: 是否查询异常
5595
- 注意:此字段可能返回 null,表示取不到有效值。
5596
5414
  :type Error: str
5597
5415
  """
5598
5416
  self._TotalCount = None
@@ -5613,7 +5431,6 @@ class DdosInstanceList(AbstractModel):
5613
5431
  @property
5614
5432
  def InstanceList(self):
5615
5433
  """ddos实例详情
5616
- 注意:此字段可能返回 null,表示取不到有效值。
5617
5434
  :rtype: list of DdosInstanceDetail
5618
5435
  """
5619
5436
  return self._InstanceList
@@ -5625,7 +5442,6 @@ class DdosInstanceList(AbstractModel):
5625
5442
  @property
5626
5443
  def Error(self):
5627
5444
  """是否查询异常
5628
- 注意:此字段可能返回 null,表示取不到有效值。
5629
5445
  :rtype: str
5630
5446
  """
5631
5447
  return self._Error
@@ -5992,13 +5808,10 @@ class DeleteTaskResult(AbstractModel):
5992
5808
  :param _Status: 异步查询结果: 0表示任务进行中、 1表示任务成功、 2表示任务失败、3表示未授权服务角色导致任务失败、4表示有未解绑的云资源导致任务失败、5表示查询关联云资源超时导致任务失败
5993
5809
  :type Status: int
5994
5810
  :param _Error: 错误信息
5995
- 注意:此字段可能返回 null,表示取不到有效值。
5996
5811
  :type Error: str
5997
5812
  :param _CacheTime: 当前结果缓存时间
5998
- 注意:此字段可能返回 null,表示取不到有效值。
5999
5813
  :type CacheTime: str
6000
5814
  :param _Domains: 包含的域名
6001
- 注意:此字段可能返回 null,表示取不到有效值。
6002
5815
  :type Domains: list of str
6003
5816
  """
6004
5817
  self._TaskId = None
@@ -6044,7 +5857,6 @@ class DeleteTaskResult(AbstractModel):
6044
5857
  @property
6045
5858
  def Error(self):
6046
5859
  """错误信息
6047
- 注意:此字段可能返回 null,表示取不到有效值。
6048
5860
  :rtype: str
6049
5861
  """
6050
5862
  return self._Error
@@ -6056,7 +5868,6 @@ class DeleteTaskResult(AbstractModel):
6056
5868
  @property
6057
5869
  def CacheTime(self):
6058
5870
  """当前结果缓存时间
6059
- 注意:此字段可能返回 null,表示取不到有效值。
6060
5871
  :rtype: str
6061
5872
  """
6062
5873
  return self._CacheTime
@@ -6068,7 +5879,6 @@ class DeleteTaskResult(AbstractModel):
6068
5879
  @property
6069
5880
  def Domains(self):
6070
5881
  """包含的域名
6071
- 注意:此字段可能返回 null,表示取不到有效值。
6072
5882
  :rtype: list of str
6073
5883
  """
6074
5884
  return self._Domains
@@ -6485,24 +6295,20 @@ class DeployRecordDetail(AbstractModel):
6485
6295
  :param _CertId: 部署证书ID
6486
6296
  :type CertId: str
6487
6297
  :param _OldCertId: 原绑定证书ID
6488
- 注意:此字段可能返回 null,表示取不到有效值。
6489
6298
  :type OldCertId: str
6490
6299
  :param _InstanceId: 部署实例ID
6491
6300
  :type InstanceId: str
6492
6301
  :param _InstanceName: 部署实例名称
6493
6302
  :type InstanceName: str
6494
6303
  :param _ListenerId: 部署监听器ID
6495
- 注意:此字段可能返回 null,表示取不到有效值。
6496
6304
  :type ListenerId: str
6497
6305
  :param _Domains: 部署域名列表
6498
6306
  :type Domains: list of str
6499
6307
  :param _Protocol: 部署监听器协议
6500
- 注意:此字段可能返回 null,表示取不到有效值。
6501
6308
  :type Protocol: str
6502
6309
  :param _Status: 部署状态
6503
6310
  :type Status: int
6504
6311
  :param _ErrorMsg: 部署错误信息
6505
- 注意:此字段可能返回 null,表示取不到有效值。
6506
6312
  :type ErrorMsg: str
6507
6313
  :param _CreateTime: 部署记录详情创建时间
6508
6314
  :type CreateTime: str
@@ -6513,28 +6319,20 @@ class DeployRecordDetail(AbstractModel):
6513
6319
  :param _SniSwitch: 是否开启SNI
6514
6320
  :type SniSwitch: int
6515
6321
  :param _Bucket: COS存储桶名称
6516
- 注意:此字段可能返回 null,表示取不到有效值。
6517
6322
  :type Bucket: str
6518
6323
  :param _Namespace: 命名空间名称
6519
- 注意:此字段可能返回 null,表示取不到有效值。
6520
6324
  :type Namespace: str
6521
6325
  :param _SecretName: secret名称
6522
- 注意:此字段可能返回 null,表示取不到有效值。
6523
6326
  :type SecretName: str
6524
6327
  :param _Port: 端口
6525
- 注意:此字段可能返回 null,表示取不到有效值。
6526
6328
  :type Port: int
6527
6329
  :param _EnvId: TCB环境ID
6528
- 注意:此字段可能返回 null,表示取不到有效值。
6529
6330
  :type EnvId: str
6530
6331
  :param _TCBType: 部署的TCB类型
6531
- 注意:此字段可能返回 null,表示取不到有效值。
6532
6332
  :type TCBType: str
6533
6333
  :param _Region: 部署的TCB地域
6534
- 注意:此字段可能返回 null,表示取不到有效值。
6535
6334
  :type Region: str
6536
6335
  :param _Url: 部署CLB监听器的Url
6537
- 注意:此字段可能返回 null,表示取不到有效值。
6538
6336
  :type Url: list of str
6539
6337
  """
6540
6338
  self._Id = None
@@ -6585,7 +6383,6 @@ class DeployRecordDetail(AbstractModel):
6585
6383
  @property
6586
6384
  def OldCertId(self):
6587
6385
  """原绑定证书ID
6588
- 注意:此字段可能返回 null,表示取不到有效值。
6589
6386
  :rtype: str
6590
6387
  """
6591
6388
  return self._OldCertId
@@ -6619,7 +6416,6 @@ class DeployRecordDetail(AbstractModel):
6619
6416
  @property
6620
6417
  def ListenerId(self):
6621
6418
  """部署监听器ID
6622
- 注意:此字段可能返回 null,表示取不到有效值。
6623
6419
  :rtype: str
6624
6420
  """
6625
6421
  return self._ListenerId
@@ -6642,7 +6438,6 @@ class DeployRecordDetail(AbstractModel):
6642
6438
  @property
6643
6439
  def Protocol(self):
6644
6440
  """部署监听器协议
6645
- 注意:此字段可能返回 null,表示取不到有效值。
6646
6441
  :rtype: str
6647
6442
  """
6648
6443
  return self._Protocol
@@ -6665,7 +6460,6 @@ class DeployRecordDetail(AbstractModel):
6665
6460
  @property
6666
6461
  def ErrorMsg(self):
6667
6462
  """部署错误信息
6668
- 注意:此字段可能返回 null,表示取不到有效值。
6669
6463
  :rtype: str
6670
6464
  """
6671
6465
  return self._ErrorMsg
@@ -6721,7 +6515,6 @@ class DeployRecordDetail(AbstractModel):
6721
6515
  @property
6722
6516
  def Bucket(self):
6723
6517
  """COS存储桶名称
6724
- 注意:此字段可能返回 null,表示取不到有效值。
6725
6518
  :rtype: str
6726
6519
  """
6727
6520
  return self._Bucket
@@ -6733,7 +6526,6 @@ class DeployRecordDetail(AbstractModel):
6733
6526
  @property
6734
6527
  def Namespace(self):
6735
6528
  """命名空间名称
6736
- 注意:此字段可能返回 null,表示取不到有效值。
6737
6529
  :rtype: str
6738
6530
  """
6739
6531
  return self._Namespace
@@ -6745,7 +6537,6 @@ class DeployRecordDetail(AbstractModel):
6745
6537
  @property
6746
6538
  def SecretName(self):
6747
6539
  """secret名称
6748
- 注意:此字段可能返回 null,表示取不到有效值。
6749
6540
  :rtype: str
6750
6541
  """
6751
6542
  return self._SecretName
@@ -6757,7 +6548,6 @@ class DeployRecordDetail(AbstractModel):
6757
6548
  @property
6758
6549
  def Port(self):
6759
6550
  """端口
6760
- 注意:此字段可能返回 null,表示取不到有效值。
6761
6551
  :rtype: int
6762
6552
  """
6763
6553
  return self._Port
@@ -6769,7 +6559,6 @@ class DeployRecordDetail(AbstractModel):
6769
6559
  @property
6770
6560
  def EnvId(self):
6771
6561
  """TCB环境ID
6772
- 注意:此字段可能返回 null,表示取不到有效值。
6773
6562
  :rtype: str
6774
6563
  """
6775
6564
  return self._EnvId
@@ -6781,7 +6570,6 @@ class DeployRecordDetail(AbstractModel):
6781
6570
  @property
6782
6571
  def TCBType(self):
6783
6572
  """部署的TCB类型
6784
- 注意:此字段可能返回 null,表示取不到有效值。
6785
6573
  :rtype: str
6786
6574
  """
6787
6575
  return self._TCBType
@@ -6793,7 +6581,6 @@ class DeployRecordDetail(AbstractModel):
6793
6581
  @property
6794
6582
  def Region(self):
6795
6583
  """部署的TCB地域
6796
- 注意:此字段可能返回 null,表示取不到有效值。
6797
6584
  :rtype: str
6798
6585
  """
6799
6586
  return self._Region
@@ -6805,7 +6592,6 @@ class DeployRecordDetail(AbstractModel):
6805
6592
  @property
6806
6593
  def Url(self):
6807
6594
  """部署CLB监听器的Url
6808
- 注意:此字段可能返回 null,表示取不到有效值。
6809
6595
  :rtype: list of str
6810
6596
  """
6811
6597
  return self._Url
@@ -6988,10 +6774,8 @@ class DeployedResources(AbstractModel):
6988
6774
  :param _Type: 资源标识:clb,cdn,live,waf,antiddos
6989
6775
  :type Type: str
6990
6776
  :param _ResourceIds: 不建议使用。字段返回和Resources相同。本字段后续只返回null
6991
- 注意:此字段可能返回 null,表示取不到有效值。
6992
6777
  :type ResourceIds: list of str
6993
6778
  :param _Resources: 关联资源ID或关联域名。
6994
- 注意:此字段可能返回 null,表示取不到有效值。
6995
6779
  :type Resources: list of str
6996
6780
  """
6997
6781
  self._CertificateId = None
@@ -7036,7 +6820,6 @@ class DeployedResources(AbstractModel):
7036
6820
  @property
7037
6821
  def ResourceIds(self):
7038
6822
  """不建议使用。字段返回和Resources相同。本字段后续只返回null
7039
- 注意:此字段可能返回 null,表示取不到有效值。
7040
6823
  :rtype: list of str
7041
6824
  """
7042
6825
  return self._ResourceIds
@@ -7048,7 +6831,6 @@ class DeployedResources(AbstractModel):
7048
6831
  @property
7049
6832
  def Resources(self):
7050
6833
  """关联资源ID或关联域名。
7051
- 注意:此字段可能返回 null,表示取不到有效值。
7052
6834
  :rtype: list of str
7053
6835
  """
7054
6836
  return self._Resources
@@ -13053,7 +12835,7 @@ class DescribeHostVodInstanceListRequest(AbstractModel):
13053
12835
 
13054
12836
  def __init__(self):
13055
12837
  r"""
13056
- :param _CertificateId: 待部署的证书ID
12838
+ :param _CertificateId: 待部署的证书ID,必填选项
13057
12839
  :type CertificateId: str
13058
12840
  :param _IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
13059
12841
  :type IsCache: int
@@ -13072,7 +12854,7 @@ class DescribeHostVodInstanceListRequest(AbstractModel):
13072
12854
 
13073
12855
  @property
13074
12856
  def CertificateId(self):
13075
- """待部署的证书ID
12857
+ """待部署的证书ID,必填选项
13076
12858
  :rtype: str
13077
12859
  """
13078
12860
  return self._CertificateId
@@ -13520,6 +13302,8 @@ class DescribeManagerDetailResponse(AbstractModel):
13520
13302
 
13521
13303
  @property
13522
13304
  def Status(self):
13305
+ warnings.warn("parameter `Status` is deprecated", DeprecationWarning)
13306
+
13523
13307
  """状态: audit: 审核中 ok: 审核通过 invalid: 失效 expiring: 即将过期 expired: 已过期
13524
13308
  :rtype: str
13525
13309
  """
@@ -13527,6 +13311,8 @@ class DescribeManagerDetailResponse(AbstractModel):
13527
13311
 
13528
13312
  @Status.setter
13529
13313
  def Status(self, Status):
13314
+ warnings.warn("parameter `Status` is deprecated", DeprecationWarning)
13315
+
13530
13316
  self._Status = Status
13531
13317
 
13532
13318
  @property
@@ -14190,7 +13976,6 @@ class DomainValidationResult(AbstractModel):
14190
13976
  :param _Domain: 证书绑定的域名。
14191
13977
  :type Domain: str
14192
13978
  :param _VerifyType: 域名验证类型。 取值为:DNS、FILE、DNS_AUTO、DNS_PROXY、FILE_PROXY
14193
- 注意:此字段可能返回 null,表示取不到有效值。
14194
13979
  :type VerifyType: str
14195
13980
  :param _LocalCheck: 腾讯云检测结果,取值:1(验证通过); -1(被限频或者 txt record not found);-2(txt record not match);-3(ns record not found);-4(file not found);-5(file not match);-6(cname record not found);-7(cname record not match);-8(ns record not found)-9(file not found);-10(file not match)
14196
13981
 
@@ -14198,10 +13983,8 @@ class DomainValidationResult(AbstractModel):
14198
13983
  :param _CaCheck: CA检查结果。取值: -1(未检测通过);2(检测通过)
14199
13984
  :type CaCheck: int
14200
13985
  :param _LocalCheckFailReason: 检查失败原因。状态LocalCheck的具体描述
14201
- 注意:此字段可能返回 null,表示取不到有效值。
14202
13986
  :type LocalCheckFailReason: str
14203
13987
  :param _CheckValue: 检查到的值。
14204
- 注意:此字段可能返回 null,表示取不到有效值。
14205
13988
  :type CheckValue: list of str
14206
13989
  :param _Frequently: 是否被限频拦截, 取值:false(未被限频);true(被限频)
14207
13990
  :type Frequently: bool
@@ -14231,7 +14014,6 @@ class DomainValidationResult(AbstractModel):
14231
14014
  @property
14232
14015
  def VerifyType(self):
14233
14016
  """域名验证类型。 取值为:DNS、FILE、DNS_AUTO、DNS_PROXY、FILE_PROXY
14234
- 注意:此字段可能返回 null,表示取不到有效值。
14235
14017
  :rtype: str
14236
14018
  """
14237
14019
  return self._VerifyType
@@ -14266,7 +14048,6 @@ class DomainValidationResult(AbstractModel):
14266
14048
  @property
14267
14049
  def LocalCheckFailReason(self):
14268
14050
  """检查失败原因。状态LocalCheck的具体描述
14269
- 注意:此字段可能返回 null,表示取不到有效值。
14270
14051
  :rtype: str
14271
14052
  """
14272
14053
  return self._LocalCheckFailReason
@@ -14278,7 +14059,6 @@ class DomainValidationResult(AbstractModel):
14278
14059
  @property
14279
14060
  def CheckValue(self):
14280
14061
  """检查到的值。
14281
- 注意:此字段可能返回 null,表示取不到有效值。
14282
14062
  :rtype: list of str
14283
14063
  """
14284
14064
  return self._CheckValue
@@ -16341,7 +16121,6 @@ class PackageTransferOutInfo(AbstractModel):
16341
16121
  :param _TransferCount: 本次转移点数。
16342
16122
  :type TransferCount: int
16343
16123
  :param _ReceivePackageId: 转入的PackageID。
16344
- 注意:此字段可能返回 null,表示取不到有效值。
16345
16124
  :type ReceivePackageId: str
16346
16125
  :param _ExpireTime: 本次转移过期时间。
16347
16126
  :type ExpireTime: str
@@ -16352,10 +16131,8 @@ class PackageTransferOutInfo(AbstractModel):
16352
16131
  :param _TransferStatus: 转移状态。
16353
16132
  :type TransferStatus: str
16354
16133
  :param _ReceiverUin: 接收者uin。
16355
- 注意:此字段可能返回 null,表示取不到有效值。
16356
16134
  :type ReceiverUin: int
16357
16135
  :param _ReceiveTime: 接收时间。
16358
- 注意:此字段可能返回 null,表示取不到有效值。
16359
16136
  :type ReceiveTime: str
16360
16137
  """
16361
16138
  self._PackageId = None
@@ -16405,7 +16182,6 @@ class PackageTransferOutInfo(AbstractModel):
16405
16182
  @property
16406
16183
  def ReceivePackageId(self):
16407
16184
  """转入的PackageID。
16408
- 注意:此字段可能返回 null,表示取不到有效值。
16409
16185
  :rtype: str
16410
16186
  """
16411
16187
  return self._ReceivePackageId
@@ -16461,7 +16237,6 @@ class PackageTransferOutInfo(AbstractModel):
16461
16237
  @property
16462
16238
  def ReceiverUin(self):
16463
16239
  """接收者uin。
16464
- 注意:此字段可能返回 null,表示取不到有效值。
16465
16240
  :rtype: int
16466
16241
  """
16467
16242
  return self._ReceiverUin
@@ -16473,7 +16248,6 @@ class PackageTransferOutInfo(AbstractModel):
16473
16248
  @property
16474
16249
  def ReceiveTime(self):
16475
16250
  """接收时间。
16476
- 注意:此字段可能返回 null,表示取不到有效值。
16477
16251
  :rtype: str
16478
16252
  """
16479
16253
  return self._ReceiveTime
@@ -20020,7 +19794,7 @@ class UpdateCertificateInstanceResponse(AbstractModel):
20020
19794
 
20021
19795
  def __init__(self):
20022
19796
  r"""
20023
- :param _DeployRecordId: 云资源更新任务ID
19797
+ :param _DeployRecordId: 云资源更新任务ID, DeployRecordId为0表示任务进行中, 重复请求这个接口, 当返回DeployRecordId大于0则表示任务创建成功。 未创建成功则会抛出异常
20024
19798
  注意:此字段可能返回 null,表示取不到有效值。
20025
19799
  :type DeployRecordId: int
20026
19800
  :param _DeployStatus: 更新任务创建状态;1表示创建成功; 0表示当前存在更新中的任务,未创建新的更新任务;返回值DeployRecordId为更新中的任务ID
@@ -20038,7 +19812,7 @@ class UpdateCertificateInstanceResponse(AbstractModel):
20038
19812
 
20039
19813
  @property
20040
19814
  def DeployRecordId(self):
20041
- """云资源更新任务ID
19815
+ """云资源更新任务ID, DeployRecordId为0表示任务进行中, 重复请求这个接口, 当返回DeployRecordId大于0则表示任务创建成功。 未创建成功则会抛出异常
20042
19816
  注意:此字段可能返回 null,表示取不到有效值。
20043
19817
  :rtype: int
20044
19818
  """