tencentcloud-sdk-python 3.0.1338__py2.py3-none-any.whl → 3.0.1340__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 (49) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/models.py +64 -112
  3. tencentcloud/bh/v20230418/bh_client.py +23 -0
  4. tencentcloud/bh/v20230418/models.py +342 -0
  5. tencentcloud/cdwch/v20200915/models.py +15 -0
  6. tencentcloud/cfg/v20210820/models.py +30 -6
  7. tencentcloud/cmq/v20190304/models.py +0 -90
  8. tencentcloud/cvm/v20170312/errorcodes.py +3 -0
  9. tencentcloud/cynosdb/v20190107/models.py +2 -358
  10. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  11. tencentcloud/dlc/v20210125/models.py +452 -0
  12. tencentcloud/domain/v20180808/models.py +0 -124
  13. tencentcloud/dsgc/v20190723/models.py +8 -0
  14. tencentcloud/dts/v20180330/models.py +0 -2
  15. tencentcloud/dts/v20211206/models.py +0 -328
  16. tencentcloud/emr/v20190103/emr_client.py +23 -0
  17. tencentcloud/emr/v20190103/models.py +431 -0
  18. tencentcloud/es/v20180416/models.py +17 -0
  19. tencentcloud/fmu/v20191213/errorcodes.py +0 -21
  20. tencentcloud/fmu/v20191213/fmu_client.py +0 -75
  21. tencentcloud/fmu/v20191213/models.py +0 -527
  22. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +0 -50
  23. tencentcloud/iotexplorer/v20190423/models.py +0 -491
  24. tencentcloud/iss/v20230517/models.py +15 -534
  25. tencentcloud/kms/v20190118/models.py +30 -0
  26. tencentcloud/lcic/v20220817/lcic_client.py +46 -0
  27. tencentcloud/lcic/v20220817/models.py +188 -0
  28. tencentcloud/mongodb/v20190725/models.py +109 -0
  29. tencentcloud/mongodb/v20190725/mongodb_client.py +23 -0
  30. tencentcloud/rum/v20210622/models.py +0 -2
  31. tencentcloud/svp/v20240125/errorcodes.py +3 -0
  32. tencentcloud/svp/v20240125/models.py +506 -0
  33. tencentcloud/svp/v20240125/svp_client.py +23 -0
  34. tencentcloud/tiw/v20190919/errorcodes.py +3 -24
  35. tencentcloud/tiw/v20190919/models.py +3657 -8172
  36. tencentcloud/tiw/v20190919/tiw_client.py +1 -580
  37. tencentcloud/trtc/v20190722/models.py +39 -8
  38. tencentcloud/tsf/v20180326/errorcodes.py +6 -0
  39. tencentcloud/tsf/v20180326/models.py +85 -14
  40. tencentcloud/tsf/v20180326/tsf_client.py +23 -0
  41. tencentcloud/vpc/v20170312/models.py +100 -0
  42. tencentcloud/vpc/v20170312/vpc_client.py +23 -0
  43. tencentcloud/wedata/v20210820/models.py +654 -0
  44. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  45. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/METADATA +1 -1
  46. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/RECORD +49 -49
  47. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/LICENSE +0 -0
  48. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/WHEEL +0 -0
  49. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/top_level.txt +0 -0
@@ -460,100 +460,6 @@ class AppDeviceInfo(AbstractModel):
460
460
 
461
461
 
462
462
 
463
- class AssignTWeCallLicenseRequest(AbstractModel):
464
- """AssignTWeCallLicense请求参数结构体
465
-
466
- """
467
-
468
- def __init__(self):
469
- r"""
470
- :param _PkgType: voip类型
471
- :type PkgType: int
472
- :param _MiniProgramAppId: appId
473
- :type MiniProgramAppId: str
474
- :param _DeductNum: License数,只支持50,500,1000,5000,10000,20000,50000
475
- :type DeductNum: int
476
- """
477
- self._PkgType = None
478
- self._MiniProgramAppId = None
479
- self._DeductNum = None
480
-
481
- @property
482
- def PkgType(self):
483
- """voip类型
484
- :rtype: int
485
- """
486
- return self._PkgType
487
-
488
- @PkgType.setter
489
- def PkgType(self, PkgType):
490
- self._PkgType = PkgType
491
-
492
- @property
493
- def MiniProgramAppId(self):
494
- """appId
495
- :rtype: str
496
- """
497
- return self._MiniProgramAppId
498
-
499
- @MiniProgramAppId.setter
500
- def MiniProgramAppId(self, MiniProgramAppId):
501
- self._MiniProgramAppId = MiniProgramAppId
502
-
503
- @property
504
- def DeductNum(self):
505
- """License数,只支持50,500,1000,5000,10000,20000,50000
506
- :rtype: int
507
- """
508
- return self._DeductNum
509
-
510
- @DeductNum.setter
511
- def DeductNum(self, DeductNum):
512
- self._DeductNum = DeductNum
513
-
514
-
515
- def _deserialize(self, params):
516
- self._PkgType = params.get("PkgType")
517
- self._MiniProgramAppId = params.get("MiniProgramAppId")
518
- self._DeductNum = params.get("DeductNum")
519
- memeber_set = set(params.keys())
520
- for name, value in vars(self).items():
521
- property_name = name[1:]
522
- if property_name in memeber_set:
523
- memeber_set.remove(property_name)
524
- if len(memeber_set) > 0:
525
- warnings.warn("%s fileds are useless." % ",".join(memeber_set))
526
-
527
-
528
-
529
- class AssignTWeCallLicenseResponse(AbstractModel):
530
- """AssignTWeCallLicense返回参数结构体
531
-
532
- """
533
-
534
- def __init__(self):
535
- r"""
536
- :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
537
- :type RequestId: str
538
- """
539
- self._RequestId = None
540
-
541
- @property
542
- def RequestId(self):
543
- """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
544
- :rtype: str
545
- """
546
- return self._RequestId
547
-
548
- @RequestId.setter
549
- def RequestId(self, RequestId):
550
- self._RequestId = RequestId
551
-
552
-
553
- def _deserialize(self, params):
554
- self._RequestId = params.get("RequestId")
555
-
556
-
557
463
  class AuthMiniProgramAppInfo(AbstractModel):
558
464
  """授权小程序信息
559
465
 
@@ -18540,191 +18446,6 @@ class GetTWeCallActiveStatusResponse(AbstractModel):
18540
18446
  self._RequestId = params.get("RequestId")
18541
18447
 
18542
18448
 
18543
- class GetTWeCallPkgListRequest(AbstractModel):
18544
- """GetTWeCallPkgList请求参数结构体
18545
-
18546
- """
18547
-
18548
- def __init__(self):
18549
- r"""
18550
- :param _MiniProgramAppId: appId
18551
- :type MiniProgramAppId: str
18552
- :param _PkgType: 类型
18553
- :type PkgType: list of int
18554
- :param _Status: 状态
18555
- :type Status: list of int
18556
- :param _Offset: 偏移量
18557
- :type Offset: int
18558
- :param _Limit: 每页数据大小
18559
- :type Limit: int
18560
- """
18561
- self._MiniProgramAppId = None
18562
- self._PkgType = None
18563
- self._Status = None
18564
- self._Offset = None
18565
- self._Limit = None
18566
-
18567
- @property
18568
- def MiniProgramAppId(self):
18569
- warnings.warn("parameter `MiniProgramAppId` is deprecated", DeprecationWarning)
18570
-
18571
- """appId
18572
- :rtype: str
18573
- """
18574
- return self._MiniProgramAppId
18575
-
18576
- @MiniProgramAppId.setter
18577
- def MiniProgramAppId(self, MiniProgramAppId):
18578
- warnings.warn("parameter `MiniProgramAppId` is deprecated", DeprecationWarning)
18579
-
18580
- self._MiniProgramAppId = MiniProgramAppId
18581
-
18582
- @property
18583
- def PkgType(self):
18584
- """类型
18585
- :rtype: list of int
18586
- """
18587
- return self._PkgType
18588
-
18589
- @PkgType.setter
18590
- def PkgType(self, PkgType):
18591
- self._PkgType = PkgType
18592
-
18593
- @property
18594
- def Status(self):
18595
- """状态
18596
- :rtype: list of int
18597
- """
18598
- return self._Status
18599
-
18600
- @Status.setter
18601
- def Status(self, Status):
18602
- self._Status = Status
18603
-
18604
- @property
18605
- def Offset(self):
18606
- """偏移量
18607
- :rtype: int
18608
- """
18609
- return self._Offset
18610
-
18611
- @Offset.setter
18612
- def Offset(self, Offset):
18613
- self._Offset = Offset
18614
-
18615
- @property
18616
- def Limit(self):
18617
- """每页数据大小
18618
- :rtype: int
18619
- """
18620
- return self._Limit
18621
-
18622
- @Limit.setter
18623
- def Limit(self, Limit):
18624
- self._Limit = Limit
18625
-
18626
-
18627
- def _deserialize(self, params):
18628
- self._MiniProgramAppId = params.get("MiniProgramAppId")
18629
- self._PkgType = params.get("PkgType")
18630
- self._Status = params.get("Status")
18631
- self._Offset = params.get("Offset")
18632
- self._Limit = params.get("Limit")
18633
- memeber_set = set(params.keys())
18634
- for name, value in vars(self).items():
18635
- property_name = name[1:]
18636
- if property_name in memeber_set:
18637
- memeber_set.remove(property_name)
18638
- if len(memeber_set) > 0:
18639
- warnings.warn("%s fileds are useless." % ",".join(memeber_set))
18640
-
18641
-
18642
-
18643
- class GetTWeCallPkgListResponse(AbstractModel):
18644
- """GetTWeCallPkgList返回参数结构体
18645
-
18646
- """
18647
-
18648
- def __init__(self):
18649
- r"""
18650
- :param _TWeCallPkgList: 激活状态
18651
- :type TWeCallPkgList: list of TWeCallPkgInfo
18652
- :param _Total: 总数
18653
- :type Total: int
18654
- :param _TWeCallCategoryPkgList: 分类统计
18655
- 注意:此字段可能返回 null,表示取不到有效值。
18656
- :type TWeCallCategoryPkgList: list of TWeCallCategoryPkgInfo
18657
- :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18658
- :type RequestId: str
18659
- """
18660
- self._TWeCallPkgList = None
18661
- self._Total = None
18662
- self._TWeCallCategoryPkgList = None
18663
- self._RequestId = None
18664
-
18665
- @property
18666
- def TWeCallPkgList(self):
18667
- """激活状态
18668
- :rtype: list of TWeCallPkgInfo
18669
- """
18670
- return self._TWeCallPkgList
18671
-
18672
- @TWeCallPkgList.setter
18673
- def TWeCallPkgList(self, TWeCallPkgList):
18674
- self._TWeCallPkgList = TWeCallPkgList
18675
-
18676
- @property
18677
- def Total(self):
18678
- """总数
18679
- :rtype: int
18680
- """
18681
- return self._Total
18682
-
18683
- @Total.setter
18684
- def Total(self, Total):
18685
- self._Total = Total
18686
-
18687
- @property
18688
- def TWeCallCategoryPkgList(self):
18689
- """分类统计
18690
- 注意:此字段可能返回 null,表示取不到有效值。
18691
- :rtype: list of TWeCallCategoryPkgInfo
18692
- """
18693
- return self._TWeCallCategoryPkgList
18694
-
18695
- @TWeCallCategoryPkgList.setter
18696
- def TWeCallCategoryPkgList(self, TWeCallCategoryPkgList):
18697
- self._TWeCallCategoryPkgList = TWeCallCategoryPkgList
18698
-
18699
- @property
18700
- def RequestId(self):
18701
- """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18702
- :rtype: str
18703
- """
18704
- return self._RequestId
18705
-
18706
- @RequestId.setter
18707
- def RequestId(self, RequestId):
18708
- self._RequestId = RequestId
18709
-
18710
-
18711
- def _deserialize(self, params):
18712
- if params.get("TWeCallPkgList") is not None:
18713
- self._TWeCallPkgList = []
18714
- for item in params.get("TWeCallPkgList"):
18715
- obj = TWeCallPkgInfo()
18716
- obj._deserialize(item)
18717
- self._TWeCallPkgList.append(obj)
18718
- self._Total = params.get("Total")
18719
- if params.get("TWeCallCategoryPkgList") is not None:
18720
- self._TWeCallCategoryPkgList = []
18721
- for item in params.get("TWeCallCategoryPkgList"):
18722
- obj = TWeCallCategoryPkgInfo()
18723
- obj._deserialize(item)
18724
- self._TWeCallCategoryPkgList.append(obj)
18725
- self._RequestId = params.get("RequestId")
18726
-
18727
-
18728
18449
  class GetTopicRuleListRequest(AbstractModel):
18729
18450
  """GetTopicRuleList请求参数结构体
18730
18451
 
@@ -26159,78 +25880,6 @@ class TWeCallActiveInfo(AbstractModel):
26159
25880
 
26160
25881
 
26161
25882
 
26162
- class TWeCallCategoryPkgInfo(AbstractModel):
26163
- """TWeCall分类统计数据
26164
-
26165
- """
26166
-
26167
- def __init__(self):
26168
- r"""
26169
- :param _PkgType: 类型
26170
- 注意:此字段可能返回 null,表示取不到有效值。
26171
- :type PkgType: int
26172
- :param _All: 总数
26173
- 注意:此字段可能返回 null,表示取不到有效值。
26174
- :type All: int
26175
- :param _Used: 已使用数
26176
- 注意:此字段可能返回 null,表示取不到有效值。
26177
- :type Used: int
26178
- """
26179
- self._PkgType = None
26180
- self._All = None
26181
- self._Used = None
26182
-
26183
- @property
26184
- def PkgType(self):
26185
- """类型
26186
- 注意:此字段可能返回 null,表示取不到有效值。
26187
- :rtype: int
26188
- """
26189
- return self._PkgType
26190
-
26191
- @PkgType.setter
26192
- def PkgType(self, PkgType):
26193
- self._PkgType = PkgType
26194
-
26195
- @property
26196
- def All(self):
26197
- """总数
26198
- 注意:此字段可能返回 null,表示取不到有效值。
26199
- :rtype: int
26200
- """
26201
- return self._All
26202
-
26203
- @All.setter
26204
- def All(self, All):
26205
- self._All = All
26206
-
26207
- @property
26208
- def Used(self):
26209
- """已使用数
26210
- 注意:此字段可能返回 null,表示取不到有效值。
26211
- :rtype: int
26212
- """
26213
- return self._Used
26214
-
26215
- @Used.setter
26216
- def Used(self, Used):
26217
- self._Used = Used
26218
-
26219
-
26220
- def _deserialize(self, params):
26221
- self._PkgType = params.get("PkgType")
26222
- self._All = params.get("All")
26223
- self._Used = params.get("Used")
26224
- memeber_set = set(params.keys())
26225
- for name, value in vars(self).items():
26226
- property_name = name[1:]
26227
- if property_name in memeber_set:
26228
- memeber_set.remove(property_name)
26229
- if len(memeber_set) > 0:
26230
- warnings.warn("%s fileds are useless." % ",".join(memeber_set))
26231
-
26232
-
26233
-
26234
25883
  class TWeCallInfo(AbstractModel):
26235
25884
  """TWeCall信息
26236
25885
 
@@ -26383,146 +26032,6 @@ class TWeCallLicenseInfo(AbstractModel):
26383
26032
 
26384
26033
 
26385
26034
 
26386
- class TWeCallPkgInfo(AbstractModel):
26387
- """TWeCall设备信息
26388
-
26389
- """
26390
-
26391
- def __init__(self):
26392
- r"""
26393
- :param _PkgId: 包ID
26394
- 注意:此字段可能返回 null,表示取不到有效值。
26395
- :type PkgId: str
26396
- :param _PkgType: 包类型
26397
- 注意:此字段可能返回 null,表示取不到有效值。
26398
- :type PkgType: int
26399
- :param _CreateTime: 生效时间
26400
- 注意:此字段可能返回 null,表示取不到有效值。
26401
- :type CreateTime: int
26402
- :param _ExpireTime: 过期时间
26403
- 注意:此字段可能返回 null,表示取不到有效值。
26404
- :type ExpireTime: int
26405
- :param _Status: 状态
26406
- 注意:此字段可能返回 null,表示取不到有效值。
26407
- :type Status: int
26408
- :param _LicenseUsedNum: 已使用
26409
- 注意:此字段可能返回 null,表示取不到有效值。
26410
- :type LicenseUsedNum: int
26411
- :param _LicenseTotalNum: 总量
26412
- 注意:此字段可能返回 null,表示取不到有效值。
26413
- :type LicenseTotalNum: int
26414
- """
26415
- self._PkgId = None
26416
- self._PkgType = None
26417
- self._CreateTime = None
26418
- self._ExpireTime = None
26419
- self._Status = None
26420
- self._LicenseUsedNum = None
26421
- self._LicenseTotalNum = None
26422
-
26423
- @property
26424
- def PkgId(self):
26425
- """包ID
26426
- 注意:此字段可能返回 null,表示取不到有效值。
26427
- :rtype: str
26428
- """
26429
- return self._PkgId
26430
-
26431
- @PkgId.setter
26432
- def PkgId(self, PkgId):
26433
- self._PkgId = PkgId
26434
-
26435
- @property
26436
- def PkgType(self):
26437
- """包类型
26438
- 注意:此字段可能返回 null,表示取不到有效值。
26439
- :rtype: int
26440
- """
26441
- return self._PkgType
26442
-
26443
- @PkgType.setter
26444
- def PkgType(self, PkgType):
26445
- self._PkgType = PkgType
26446
-
26447
- @property
26448
- def CreateTime(self):
26449
- """生效时间
26450
- 注意:此字段可能返回 null,表示取不到有效值。
26451
- :rtype: int
26452
- """
26453
- return self._CreateTime
26454
-
26455
- @CreateTime.setter
26456
- def CreateTime(self, CreateTime):
26457
- self._CreateTime = CreateTime
26458
-
26459
- @property
26460
- def ExpireTime(self):
26461
- """过期时间
26462
- 注意:此字段可能返回 null,表示取不到有效值。
26463
- :rtype: int
26464
- """
26465
- return self._ExpireTime
26466
-
26467
- @ExpireTime.setter
26468
- def ExpireTime(self, ExpireTime):
26469
- self._ExpireTime = ExpireTime
26470
-
26471
- @property
26472
- def Status(self):
26473
- """状态
26474
- 注意:此字段可能返回 null,表示取不到有效值。
26475
- :rtype: int
26476
- """
26477
- return self._Status
26478
-
26479
- @Status.setter
26480
- def Status(self, Status):
26481
- self._Status = Status
26482
-
26483
- @property
26484
- def LicenseUsedNum(self):
26485
- """已使用
26486
- 注意:此字段可能返回 null,表示取不到有效值。
26487
- :rtype: int
26488
- """
26489
- return self._LicenseUsedNum
26490
-
26491
- @LicenseUsedNum.setter
26492
- def LicenseUsedNum(self, LicenseUsedNum):
26493
- self._LicenseUsedNum = LicenseUsedNum
26494
-
26495
- @property
26496
- def LicenseTotalNum(self):
26497
- """总量
26498
- 注意:此字段可能返回 null,表示取不到有效值。
26499
- :rtype: int
26500
- """
26501
- return self._LicenseTotalNum
26502
-
26503
- @LicenseTotalNum.setter
26504
- def LicenseTotalNum(self, LicenseTotalNum):
26505
- self._LicenseTotalNum = LicenseTotalNum
26506
-
26507
-
26508
- def _deserialize(self, params):
26509
- self._PkgId = params.get("PkgId")
26510
- self._PkgType = params.get("PkgType")
26511
- self._CreateTime = params.get("CreateTime")
26512
- self._ExpireTime = params.get("ExpireTime")
26513
- self._Status = params.get("Status")
26514
- self._LicenseUsedNum = params.get("LicenseUsedNum")
26515
- self._LicenseTotalNum = params.get("LicenseTotalNum")
26516
- memeber_set = set(params.keys())
26517
- for name, value in vars(self).items():
26518
- property_name = name[1:]
26519
- if property_name in memeber_set:
26520
- memeber_set.remove(property_name)
26521
- if len(memeber_set) > 0:
26522
- warnings.warn("%s fileds are useless." % ",".join(memeber_set))
26523
-
26524
-
26525
-
26526
26035
  class ThumbnailURLInfoList(AbstractModel):
26527
26036
  """缩略图信息
26528
26037