tencentcloud-sdk-python 3.0.1155__py2.py3-none-any.whl → 3.0.1157__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/cat/v20180409/models.py +1 -1
- tencentcloud/ckafka/v20190819/models.py +26 -0
- tencentcloud/dasb/v20191018/models.py +89 -0
- tencentcloud/domain/v20180808/domain_client.py +322 -0
- tencentcloud/domain/v20180808/errorcodes.py +15 -0
- tencentcloud/domain/v20180808/models.py +2375 -413
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +25 -17
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -0
- tencentcloud/essbasic/v20210526/models.py +25 -21
- tencentcloud/ims/v20201229/models.py +2 -2
- tencentcloud/lighthouse/v20200324/models.py +26 -20
- tencentcloud/live/v20180801/models.py +25 -0
- tencentcloud/mna/v20210119/mna_client.py +46 -0
- tencentcloud/mna/v20210119/models.py +253 -0
- tencentcloud/ocr/v20181119/models.py +72 -0
- tencentcloud/rum/v20210622/models.py +3 -3
- tencentcloud/ssl/v20191205/ssl_client.py +1 -1
- tencentcloud/tdmq/v20200217/models.py +13 -0
- tencentcloud/teo/v20220901/errorcodes.py +15 -0
- tencentcloud/teo/v20220901/models.py +1 -0
- tencentcloud/tmt/v20180321/models.py +0 -1
- tencentcloud/trocket/v20230308/models.py +1 -23
- tencentcloud/trocket/v20230308/trocket_client.py +1 -1
- tencentcloud/trtc/v20190722/errorcodes.py +3 -0
- tencentcloud/trtc/v20190722/models.py +2 -2
- tencentcloud/wedata/v20210820/models.py +156 -0
- tencentcloud/wedata/v20210820/wedata_client.py +1 -1
- {tencentcloud_sdk_python-3.0.1155.dist-info → tencentcloud_sdk_python-3.0.1157.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1155.dist-info → tencentcloud_sdk_python-3.0.1157.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1155.dist-info → tencentcloud_sdk_python-3.0.1157.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1155.dist-info → tencentcloud_sdk_python-3.0.1157.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1155.dist-info → tencentcloud_sdk_python-3.0.1157.dist-info}/top_level.txt +0 -0
@@ -2416,6 +2416,76 @@ class GetDevicesResponse(AbstractModel):
|
|
2416
2416
|
self._RequestId = params.get("RequestId")
|
2417
2417
|
|
2418
2418
|
|
2419
|
+
class GetFlowAlarmInfoRequest(AbstractModel):
|
2420
|
+
"""GetFlowAlarmInfo请求参数结构体
|
2421
|
+
|
2422
|
+
"""
|
2423
|
+
|
2424
|
+
|
2425
|
+
class GetFlowAlarmInfoResponse(AbstractModel):
|
2426
|
+
"""GetFlowAlarmInfo返回参数结构体
|
2427
|
+
|
2428
|
+
"""
|
2429
|
+
|
2430
|
+
def __init__(self):
|
2431
|
+
r"""
|
2432
|
+
:param _AlarmValue: 流量包的告警阈值
|
2433
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2434
|
+
:type AlarmValue: int
|
2435
|
+
:param _NotifyUrl: 告警通知回调url
|
2436
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2437
|
+
:type NotifyUrl: str
|
2438
|
+
:param _CallbackKey: 告警通知回调key
|
2439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2440
|
+
:type CallbackKey: str
|
2441
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2442
|
+
:type RequestId: str
|
2443
|
+
"""
|
2444
|
+
self._AlarmValue = None
|
2445
|
+
self._NotifyUrl = None
|
2446
|
+
self._CallbackKey = None
|
2447
|
+
self._RequestId = None
|
2448
|
+
|
2449
|
+
@property
|
2450
|
+
def AlarmValue(self):
|
2451
|
+
return self._AlarmValue
|
2452
|
+
|
2453
|
+
@AlarmValue.setter
|
2454
|
+
def AlarmValue(self, AlarmValue):
|
2455
|
+
self._AlarmValue = AlarmValue
|
2456
|
+
|
2457
|
+
@property
|
2458
|
+
def NotifyUrl(self):
|
2459
|
+
return self._NotifyUrl
|
2460
|
+
|
2461
|
+
@NotifyUrl.setter
|
2462
|
+
def NotifyUrl(self, NotifyUrl):
|
2463
|
+
self._NotifyUrl = NotifyUrl
|
2464
|
+
|
2465
|
+
@property
|
2466
|
+
def CallbackKey(self):
|
2467
|
+
return self._CallbackKey
|
2468
|
+
|
2469
|
+
@CallbackKey.setter
|
2470
|
+
def CallbackKey(self, CallbackKey):
|
2471
|
+
self._CallbackKey = CallbackKey
|
2472
|
+
|
2473
|
+
@property
|
2474
|
+
def RequestId(self):
|
2475
|
+
return self._RequestId
|
2476
|
+
|
2477
|
+
@RequestId.setter
|
2478
|
+
def RequestId(self, RequestId):
|
2479
|
+
self._RequestId = RequestId
|
2480
|
+
|
2481
|
+
|
2482
|
+
def _deserialize(self, params):
|
2483
|
+
self._AlarmValue = params.get("AlarmValue")
|
2484
|
+
self._NotifyUrl = params.get("NotifyUrl")
|
2485
|
+
self._CallbackKey = params.get("CallbackKey")
|
2486
|
+
self._RequestId = params.get("RequestId")
|
2487
|
+
|
2488
|
+
|
2419
2489
|
class GetFlowPackagesRequest(AbstractModel):
|
2420
2490
|
"""GetFlowPackages请求参数结构体
|
2421
2491
|
|
@@ -2552,6 +2622,189 @@ class GetFlowPackagesResponse(AbstractModel):
|
|
2552
2622
|
self._RequestId = params.get("RequestId")
|
2553
2623
|
|
2554
2624
|
|
2625
|
+
class GetFlowStatisticByGroupRequest(AbstractModel):
|
2626
|
+
"""GetFlowStatisticByGroup请求参数结构体
|
2627
|
+
|
2628
|
+
"""
|
2629
|
+
|
2630
|
+
def __init__(self):
|
2631
|
+
r"""
|
2632
|
+
:param _GroupId: 分组ID
|
2633
|
+
:type GroupId: str
|
2634
|
+
:param _BeginTime: 开始查找时间
|
2635
|
+
:type BeginTime: int
|
2636
|
+
:param _EndTime: 截止时间
|
2637
|
+
:type EndTime: int
|
2638
|
+
:param _Type: 流量种类(1:上行流量,2:下行流量, 3: 上下行总和)
|
2639
|
+
:type Type: int
|
2640
|
+
:param _TimeGranularity: 时间粒度(1:按小时统计,2:按天统计)
|
2641
|
+
:type TimeGranularity: int
|
2642
|
+
:param _AccessRegion: 接入区域。取值范围:['MC','AP','EU','AM'] MC=中国大陆 AP=亚太 EU=欧洲 AM=美洲。不填代表全量区域。
|
2643
|
+
:type AccessRegion: str
|
2644
|
+
:param _GatewayType: 网关类型。0:公有云网关;1:自有网关。不传默认为0。
|
2645
|
+
:type GatewayType: int
|
2646
|
+
"""
|
2647
|
+
self._GroupId = None
|
2648
|
+
self._BeginTime = None
|
2649
|
+
self._EndTime = None
|
2650
|
+
self._Type = None
|
2651
|
+
self._TimeGranularity = None
|
2652
|
+
self._AccessRegion = None
|
2653
|
+
self._GatewayType = None
|
2654
|
+
|
2655
|
+
@property
|
2656
|
+
def GroupId(self):
|
2657
|
+
return self._GroupId
|
2658
|
+
|
2659
|
+
@GroupId.setter
|
2660
|
+
def GroupId(self, GroupId):
|
2661
|
+
self._GroupId = GroupId
|
2662
|
+
|
2663
|
+
@property
|
2664
|
+
def BeginTime(self):
|
2665
|
+
return self._BeginTime
|
2666
|
+
|
2667
|
+
@BeginTime.setter
|
2668
|
+
def BeginTime(self, BeginTime):
|
2669
|
+
self._BeginTime = BeginTime
|
2670
|
+
|
2671
|
+
@property
|
2672
|
+
def EndTime(self):
|
2673
|
+
return self._EndTime
|
2674
|
+
|
2675
|
+
@EndTime.setter
|
2676
|
+
def EndTime(self, EndTime):
|
2677
|
+
self._EndTime = EndTime
|
2678
|
+
|
2679
|
+
@property
|
2680
|
+
def Type(self):
|
2681
|
+
return self._Type
|
2682
|
+
|
2683
|
+
@Type.setter
|
2684
|
+
def Type(self, Type):
|
2685
|
+
self._Type = Type
|
2686
|
+
|
2687
|
+
@property
|
2688
|
+
def TimeGranularity(self):
|
2689
|
+
return self._TimeGranularity
|
2690
|
+
|
2691
|
+
@TimeGranularity.setter
|
2692
|
+
def TimeGranularity(self, TimeGranularity):
|
2693
|
+
self._TimeGranularity = TimeGranularity
|
2694
|
+
|
2695
|
+
@property
|
2696
|
+
def AccessRegion(self):
|
2697
|
+
return self._AccessRegion
|
2698
|
+
|
2699
|
+
@AccessRegion.setter
|
2700
|
+
def AccessRegion(self, AccessRegion):
|
2701
|
+
self._AccessRegion = AccessRegion
|
2702
|
+
|
2703
|
+
@property
|
2704
|
+
def GatewayType(self):
|
2705
|
+
return self._GatewayType
|
2706
|
+
|
2707
|
+
@GatewayType.setter
|
2708
|
+
def GatewayType(self, GatewayType):
|
2709
|
+
self._GatewayType = GatewayType
|
2710
|
+
|
2711
|
+
|
2712
|
+
def _deserialize(self, params):
|
2713
|
+
self._GroupId = params.get("GroupId")
|
2714
|
+
self._BeginTime = params.get("BeginTime")
|
2715
|
+
self._EndTime = params.get("EndTime")
|
2716
|
+
self._Type = params.get("Type")
|
2717
|
+
self._TimeGranularity = params.get("TimeGranularity")
|
2718
|
+
self._AccessRegion = params.get("AccessRegion")
|
2719
|
+
self._GatewayType = params.get("GatewayType")
|
2720
|
+
memeber_set = set(params.keys())
|
2721
|
+
for name, value in vars(self).items():
|
2722
|
+
property_name = name[1:]
|
2723
|
+
if property_name in memeber_set:
|
2724
|
+
memeber_set.remove(property_name)
|
2725
|
+
if len(memeber_set) > 0:
|
2726
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2727
|
+
|
2728
|
+
|
2729
|
+
|
2730
|
+
class GetFlowStatisticByGroupResponse(AbstractModel):
|
2731
|
+
"""GetFlowStatisticByGroup返回参数结构体
|
2732
|
+
|
2733
|
+
"""
|
2734
|
+
|
2735
|
+
def __init__(self):
|
2736
|
+
r"""
|
2737
|
+
:param _NetDetails: 流量详细信息
|
2738
|
+
:type NetDetails: list of NetDetails
|
2739
|
+
:param _MaxValue: 查找时间段流量使用最大值(单位:byte)
|
2740
|
+
:type MaxValue: float
|
2741
|
+
:param _AvgValue: 查找时间段流量使用平均值(单位:byte)
|
2742
|
+
:type AvgValue: float
|
2743
|
+
:param _TotalValue: 查找时间段流量使用总量(单位:byte)
|
2744
|
+
:type TotalValue: float
|
2745
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2746
|
+
:type RequestId: str
|
2747
|
+
"""
|
2748
|
+
self._NetDetails = None
|
2749
|
+
self._MaxValue = None
|
2750
|
+
self._AvgValue = None
|
2751
|
+
self._TotalValue = None
|
2752
|
+
self._RequestId = None
|
2753
|
+
|
2754
|
+
@property
|
2755
|
+
def NetDetails(self):
|
2756
|
+
return self._NetDetails
|
2757
|
+
|
2758
|
+
@NetDetails.setter
|
2759
|
+
def NetDetails(self, NetDetails):
|
2760
|
+
self._NetDetails = NetDetails
|
2761
|
+
|
2762
|
+
@property
|
2763
|
+
def MaxValue(self):
|
2764
|
+
return self._MaxValue
|
2765
|
+
|
2766
|
+
@MaxValue.setter
|
2767
|
+
def MaxValue(self, MaxValue):
|
2768
|
+
self._MaxValue = MaxValue
|
2769
|
+
|
2770
|
+
@property
|
2771
|
+
def AvgValue(self):
|
2772
|
+
return self._AvgValue
|
2773
|
+
|
2774
|
+
@AvgValue.setter
|
2775
|
+
def AvgValue(self, AvgValue):
|
2776
|
+
self._AvgValue = AvgValue
|
2777
|
+
|
2778
|
+
@property
|
2779
|
+
def TotalValue(self):
|
2780
|
+
return self._TotalValue
|
2781
|
+
|
2782
|
+
@TotalValue.setter
|
2783
|
+
def TotalValue(self, TotalValue):
|
2784
|
+
self._TotalValue = TotalValue
|
2785
|
+
|
2786
|
+
@property
|
2787
|
+
def RequestId(self):
|
2788
|
+
return self._RequestId
|
2789
|
+
|
2790
|
+
@RequestId.setter
|
2791
|
+
def RequestId(self, RequestId):
|
2792
|
+
self._RequestId = RequestId
|
2793
|
+
|
2794
|
+
|
2795
|
+
def _deserialize(self, params):
|
2796
|
+
if params.get("NetDetails") is not None:
|
2797
|
+
self._NetDetails = []
|
2798
|
+
for item in params.get("NetDetails"):
|
2799
|
+
obj = NetDetails()
|
2800
|
+
obj._deserialize(item)
|
2801
|
+
self._NetDetails.append(obj)
|
2802
|
+
self._MaxValue = params.get("MaxValue")
|
2803
|
+
self._AvgValue = params.get("AvgValue")
|
2804
|
+
self._TotalValue = params.get("TotalValue")
|
2805
|
+
self._RequestId = params.get("RequestId")
|
2806
|
+
|
2807
|
+
|
2555
2808
|
class GetFlowStatisticRequest(AbstractModel):
|
2556
2809
|
"""GetFlowStatistic请求参数结构体
|
2557
2810
|
|
@@ -1556,6 +1556,18 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
1556
1556
|
|
1557
1557
|
|
1558
1558
|
:type Angle: float
|
1559
|
+
:param _NationalEmblem: 是否有国徽。0为没有,1为有。
|
1560
|
+
:type NationalEmblem: bool
|
1561
|
+
:param _QRCode: 是否有二维码。0为没有,1为有。
|
1562
|
+
:type QRCode: bool
|
1563
|
+
:param _Seal: 是否有印章。0为没有,1为有。
|
1564
|
+
:type Seal: bool
|
1565
|
+
:param _Title: 标题
|
1566
|
+
:type Title: str
|
1567
|
+
:param _SerialNumber: 编号
|
1568
|
+
:type SerialNumber: str
|
1569
|
+
:param _RegistrationAuthority: 登记机关
|
1570
|
+
:type RegistrationAuthority: str
|
1559
1571
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1560
1572
|
:type RequestId: str
|
1561
1573
|
"""
|
@@ -1574,6 +1586,12 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
1574
1586
|
self._IsDuplication = None
|
1575
1587
|
self._RegistrationDate = None
|
1576
1588
|
self._Angle = None
|
1589
|
+
self._NationalEmblem = None
|
1590
|
+
self._QRCode = None
|
1591
|
+
self._Seal = None
|
1592
|
+
self._Title = None
|
1593
|
+
self._SerialNumber = None
|
1594
|
+
self._RegistrationAuthority = None
|
1577
1595
|
self._RequestId = None
|
1578
1596
|
|
1579
1597
|
@property
|
@@ -1696,6 +1714,54 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
1696
1714
|
def Angle(self, Angle):
|
1697
1715
|
self._Angle = Angle
|
1698
1716
|
|
1717
|
+
@property
|
1718
|
+
def NationalEmblem(self):
|
1719
|
+
return self._NationalEmblem
|
1720
|
+
|
1721
|
+
@NationalEmblem.setter
|
1722
|
+
def NationalEmblem(self, NationalEmblem):
|
1723
|
+
self._NationalEmblem = NationalEmblem
|
1724
|
+
|
1725
|
+
@property
|
1726
|
+
def QRCode(self):
|
1727
|
+
return self._QRCode
|
1728
|
+
|
1729
|
+
@QRCode.setter
|
1730
|
+
def QRCode(self, QRCode):
|
1731
|
+
self._QRCode = QRCode
|
1732
|
+
|
1733
|
+
@property
|
1734
|
+
def Seal(self):
|
1735
|
+
return self._Seal
|
1736
|
+
|
1737
|
+
@Seal.setter
|
1738
|
+
def Seal(self, Seal):
|
1739
|
+
self._Seal = Seal
|
1740
|
+
|
1741
|
+
@property
|
1742
|
+
def Title(self):
|
1743
|
+
return self._Title
|
1744
|
+
|
1745
|
+
@Title.setter
|
1746
|
+
def Title(self, Title):
|
1747
|
+
self._Title = Title
|
1748
|
+
|
1749
|
+
@property
|
1750
|
+
def SerialNumber(self):
|
1751
|
+
return self._SerialNumber
|
1752
|
+
|
1753
|
+
@SerialNumber.setter
|
1754
|
+
def SerialNumber(self, SerialNumber):
|
1755
|
+
self._SerialNumber = SerialNumber
|
1756
|
+
|
1757
|
+
@property
|
1758
|
+
def RegistrationAuthority(self):
|
1759
|
+
return self._RegistrationAuthority
|
1760
|
+
|
1761
|
+
@RegistrationAuthority.setter
|
1762
|
+
def RegistrationAuthority(self, RegistrationAuthority):
|
1763
|
+
self._RegistrationAuthority = RegistrationAuthority
|
1764
|
+
|
1699
1765
|
@property
|
1700
1766
|
def RequestId(self):
|
1701
1767
|
return self._RequestId
|
@@ -1721,6 +1787,12 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
1721
1787
|
self._IsDuplication = params.get("IsDuplication")
|
1722
1788
|
self._RegistrationDate = params.get("RegistrationDate")
|
1723
1789
|
self._Angle = params.get("Angle")
|
1790
|
+
self._NationalEmblem = params.get("NationalEmblem")
|
1791
|
+
self._QRCode = params.get("QRCode")
|
1792
|
+
self._Seal = params.get("Seal")
|
1793
|
+
self._Title = params.get("Title")
|
1794
|
+
self._SerialNumber = params.get("SerialNumber")
|
1795
|
+
self._RegistrationAuthority = params.get("RegistrationAuthority")
|
1724
1796
|
self._RequestId = params.get("RequestId")
|
1725
1797
|
|
1726
1798
|
|
@@ -7024,7 +7024,7 @@ class DescribePvListRequest(AbstractModel):
|
|
7024
7024
|
:type EndTime: str
|
7025
7025
|
:param _StartTime: 开始时间
|
7026
7026
|
:type StartTime: str
|
7027
|
-
:param _Dimension:
|
7027
|
+
:param _Dimension: 对PV指标的查询维度。获取day:d, 获取min则不填。
|
7028
7028
|
:type Dimension: str
|
7029
7029
|
"""
|
7030
7030
|
self._ProjectId = None
|
@@ -8100,11 +8100,11 @@ class DescribeTawAreasRequest(AbstractModel):
|
|
8100
8100
|
:type AreaIds: list of int
|
8101
8101
|
:param _AreaKeys: 片区Key
|
8102
8102
|
:type AreaKeys: list of str
|
8103
|
-
:param _Limit: 分页Limit
|
8103
|
+
:param _Limit: 分页Limit,默认根据AreaKeys和AreaStatuses参数查询所有。
|
8104
8104
|
:type Limit: int
|
8105
8105
|
:param _AreaStatuses: 片区状态(1=有效,2=无效)
|
8106
8106
|
:type AreaStatuses: list of int
|
8107
|
-
:param _Offset: 分页Offset
|
8107
|
+
:param _Offset: 分页Offset,默认根据AreaKeys和AreaStatuses参数查询所有。
|
8108
8108
|
:type Offset: int
|
8109
8109
|
"""
|
8110
8110
|
self._AreaIds = None
|
@@ -1200,7 +1200,7 @@ class SslClient(AbstractClient):
|
|
1200
1200
|
|
1201
1201
|
|
1202
1202
|
def UpdateCertificateInstance(self, request):
|
1203
|
-
"""一键更新旧证书资源,本接口为异步接口, 调用之后DeployRecordId为0表示任务进行中, 当返回DeployRecordId大于0则表示任务创建成功。 未创建成功则会抛出异常
|
1203
|
+
"""一键更新旧证书资源,本接口为异步接口, 调用之后DeployRecordId为0表示任务进行中, 重复请求这个接口, 当返回DeployRecordId大于0则表示任务创建成功。 未创建成功则会抛出异常
|
1204
1204
|
|
1205
1205
|
:param request: Request instance for UpdateCertificateInstance.
|
1206
1206
|
:type request: :class:`tencentcloud.ssl.v20191205.models.UpdateCertificateInstanceRequest`
|
@@ -19674,6 +19674,9 @@ class PulsarNetworkAccessPointInfo(AbstractModel):
|
|
19674
19674
|
4:跨地域访问,目标集群已经完成异地切回,等待删除状态
|
19675
19675
|
注意:此字段可能返回 null,表示取不到有效值。
|
19676
19676
|
:type OperationType: int
|
19677
|
+
:param _AccessPointsType: 接入点类型
|
19678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19679
|
+
:type AccessPointsType: str
|
19677
19680
|
"""
|
19678
19681
|
self._VpcId = None
|
19679
19682
|
self._SubnetId = None
|
@@ -19681,6 +19684,7 @@ class PulsarNetworkAccessPointInfo(AbstractModel):
|
|
19681
19684
|
self._InstanceId = None
|
19682
19685
|
self._RouteType = None
|
19683
19686
|
self._OperationType = None
|
19687
|
+
self._AccessPointsType = None
|
19684
19688
|
|
19685
19689
|
@property
|
19686
19690
|
def VpcId(self):
|
@@ -19730,6 +19734,14 @@ class PulsarNetworkAccessPointInfo(AbstractModel):
|
|
19730
19734
|
def OperationType(self, OperationType):
|
19731
19735
|
self._OperationType = OperationType
|
19732
19736
|
|
19737
|
+
@property
|
19738
|
+
def AccessPointsType(self):
|
19739
|
+
return self._AccessPointsType
|
19740
|
+
|
19741
|
+
@AccessPointsType.setter
|
19742
|
+
def AccessPointsType(self, AccessPointsType):
|
19743
|
+
self._AccessPointsType = AccessPointsType
|
19744
|
+
|
19733
19745
|
|
19734
19746
|
def _deserialize(self, params):
|
19735
19747
|
self._VpcId = params.get("VpcId")
|
@@ -19738,6 +19750,7 @@ class PulsarNetworkAccessPointInfo(AbstractModel):
|
|
19738
19750
|
self._InstanceId = params.get("InstanceId")
|
19739
19751
|
self._RouteType = params.get("RouteType")
|
19740
19752
|
self._OperationType = params.get("OperationType")
|
19753
|
+
self._AccessPointsType = params.get("AccessPointsType")
|
19741
19754
|
memeber_set = set(params.keys())
|
19742
19755
|
for name, value in vars(self).items():
|
19743
19756
|
property_name = name[1:]
|
@@ -743,6 +743,9 @@ LIMITEXCEEDED = 'LimitExceeded'
|
|
743
743
|
# 本次提交的资源数超过上限。
|
744
744
|
LIMITEXCEEDED_BATCHQUOTA = 'LimitExceeded.BatchQuota'
|
745
745
|
|
746
|
+
# 实时日志自定义字段正则类型字段数量超过限制
|
747
|
+
LIMITEXCEEDED_CUSTOMLOGFIELDREGEXLIMITEXCEEDED = 'LimitExceeded.CustomLogFieldRegexLimitExceeded'
|
748
|
+
|
746
749
|
# 当天提交的资源数超过上限。
|
747
750
|
LIMITEXCEEDED_DAILYQUOTA = 'LimitExceeded.DailyQuota'
|
748
751
|
|
@@ -833,6 +836,12 @@ OPERATIONDENIED_INVALIDADVANCEDDEFENSESECURITYTYPE = 'OperationDenied.InvalidAdv
|
|
833
836
|
# 开启高防必须保证站点加速区域是国内。
|
834
837
|
OPERATIONDENIED_INVALIDADVANCEDDEFENSEZONEAREA = 'OperationDenied.InvalidAdvancedDefenseZoneArea'
|
835
838
|
|
839
|
+
# 独立DDoS防护与IPv6冲突,不能同时配置。
|
840
|
+
OPERATIONDENIED_IPV6ADVANCEDCONFLICT = 'OperationDenied.Ipv6AdvancedConflict'
|
841
|
+
|
842
|
+
# ipv6功能和固定ip无法同时开启。
|
843
|
+
OPERATIONDENIED_IPV6STATICIPCONFLICT = 'OperationDenied.Ipv6StaticIpConflict'
|
844
|
+
|
836
845
|
# 四层实例资源售卖火爆,已售罄,正在加紧补货中,当前无法新增四层代理,请您耐心等待。
|
837
846
|
OPERATIONDENIED_L4LACKOFRESOURCES = 'OperationDenied.L4LackOfResources'
|
838
847
|
|
@@ -866,6 +875,9 @@ OPERATIONDENIED_LOADBALANCESTATUSNOTINONLINE = 'OperationDenied.LoadBalanceStatu
|
|
866
875
|
# 站点状态不支持操作负载均衡。
|
867
876
|
OPERATIONDENIED_LOADBALANCINGZONEISNOTACTIVE = 'OperationDenied.LoadBalancingZoneIsNotActive'
|
868
877
|
|
878
|
+
# 非海外独立防护,不能开启ipv6。
|
879
|
+
OPERATIONDENIED_MSGIPV6ADVANCEDCONFLICT = 'OperationDenied.MsgIpv6AdvancedConflict'
|
880
|
+
|
869
881
|
# 已存在多个Cname接入站点,不允许切换至NS。
|
870
882
|
OPERATIONDENIED_MULTIPLECNAMEZONE = 'OperationDenied.MultipleCnameZone'
|
871
883
|
|
@@ -932,6 +944,9 @@ OPERATIONDENIED_SHAREDCNAMEUNSUPPORTEDACCELERATEMAINLAND = 'OperationDenied.Shar
|
|
932
944
|
# 绑定在共享 CNAME 中的域名不允许变更 IPv6 访问,如果您需要单独变更,请先将域名从共享 CNAME 中解绑。
|
933
945
|
OPERATIONDENIED_SHAREDCNAMEUNSUPPORTEDIPV6 = 'OperationDenied.SharedCNAMEUnsupportedIPv6'
|
934
946
|
|
947
|
+
# 该实例地域无法开启固定IP。
|
948
|
+
OPERATIONDENIED_STATICIPAREACONFLICT = 'OperationDenied.StaticIpAreaConflict'
|
949
|
+
|
935
950
|
# 存在使用中的测试版本,请将测试版本发布现网或者回滚测试版本再重试。
|
936
951
|
OPERATIONDENIED_VERSIONCONTROLISGRAYING = 'OperationDenied.VersionControlIsGraying'
|
937
952
|
|
@@ -18655,6 +18655,7 @@ class ModifyRealtimeLogDeliveryTaskRequest(AbstractModel):
|
|
18655
18655
|
:param _Sample: 采样比例,采用千分制,取值范围为1-1000,例如:填写 605 表示采样比例为 60.5%。不填保持原有配置。
|
18656
18656
|
:type Sample: int
|
18657
18657
|
:param _LogFormat: 日志投递的输出格式。不填保持原有配置。
|
18658
|
+
特别地,当 TaskType 取值为 cls 时,LogFormat.FormatType 的值只能为 json,且 LogFormat 中其他参数将被忽略,建议不传 LogFormat。
|
18658
18659
|
:type LogFormat: :class:`tencentcloud.teo.v20220901.models.LogFormat`
|
18659
18660
|
:param _CustomEndpoint: 自定义 HTTP 服务的配置信息,不填保持原有配置。
|
18660
18661
|
:type CustomEndpoint: :class:`tencentcloud.teo.v20220901.models.CustomEndpoint`
|
@@ -270,29 +270,7 @@ PLATINUM 铂金版
|
|
270
270
|
:type InstanceType: str
|
271
271
|
:param _Name: 实例名称
|
272
272
|
:type Name: str
|
273
|
-
:param _SkuCode: 商品规格,可用规格如下:
|
274
|
-
experiment_500,
|
275
|
-
basic_1k,
|
276
|
-
basic_2k,
|
277
|
-
basic_4k,
|
278
|
-
basic_6k,
|
279
|
-
pro_4k,
|
280
|
-
pro_6k,
|
281
|
-
pro_1w,
|
282
|
-
pro_2w,
|
283
|
-
pro_3w,
|
284
|
-
pro_4w,
|
285
|
-
pro_5w,
|
286
|
-
platinum_6k,
|
287
|
-
platinum_1w,
|
288
|
-
platinum_2w,
|
289
|
-
platinum_4w,
|
290
|
-
platinum_10w,
|
291
|
-
platinum_15w,
|
292
|
-
platinum_20w,
|
293
|
-
platinum_40w,
|
294
|
-
platinum_60w,
|
295
|
-
platinum_100w
|
273
|
+
:param _SkuCode: 商品规格,可用规格如下:experiment_500, basic_1k, basic_2k, basic_3k, basic_4k, basic_5k, basic_6k, basic_7k, basic_8k, basic_9k, basic_10k, pro_4k, pro_6k, pro_8k, pro_1w, pro_15k, pro_2w, pro_25k, pro_3w, pro_35k, pro_4w, pro_45k, pro_5w, pro_55k, pro_60k, pro_65k, pro_70k, pro_75k, pro_80k, pro_85k, pro_90k, pro_95k, pro_100k, platinum_1w, platinum_2w, platinum_3w, platinum_4w, platinum_5w, platinum_6w, platinum_7w, platinum_8w, platinum_9w, platinum_10w, platinum_12w, platinum_14w, platinum_16w, platinum_18w, platinum_20w, platinum_25w, platinum_30w, platinum_35w, platinum_40w, platinum_45w, platinum_50w, platinum_60w, platinum_70w, platinum_80w, platinum_90w, platinum_100w
|
296
274
|
:type SkuCode: str
|
297
275
|
:param _Remark: 备注信息
|
298
276
|
:type Remark: str
|
@@ -50,7 +50,7 @@ class TrocketClient(AbstractClient):
|
|
50
50
|
|
51
51
|
|
52
52
|
def CreateInstance(self, request):
|
53
|
-
"""
|
53
|
+
"""创建 RocketMQ 5.x 集群
|
54
54
|
|
55
55
|
:param request: Request instance for CreateInstance.
|
56
56
|
:type request: :class:`tencentcloud.trocket.v20230308.models.CreateInstanceRequest`
|
@@ -227,6 +227,9 @@ INVALIDPARAMETER_USERIDSMORETHANSIX = 'InvalidParameter.UserIdsMorethanSix'
|
|
227
227
|
# UserSig过期或错误。
|
228
228
|
INVALIDPARAMETER_USERSIG = 'InvalidParameter.UserSig'
|
229
229
|
|
230
|
+
# UserSig 不是超级管理员。
|
231
|
+
INVALIDPARAMETER_USERSIGNOTADMIN = 'InvalidParameter.UserSigNotAdmin'
|
232
|
+
|
230
233
|
# 视频分辨率参数错误。
|
231
234
|
INVALIDPARAMETER_VIDEORESOLUTION = 'InvalidParameter.VideoResolution'
|
232
235
|
|
@@ -8787,9 +8787,9 @@ class StartStreamIngestRequest(AbstractModel):
|
|
8787
8787
|
:type StreamUrl: str
|
8788
8788
|
:param _PrivateMapKey: TRTC房间权限加密串,只有在TRTC控制台启用了高级权限控制的时候需要携带,在TRTC控制台如果开启高级权限控制后,TRTC 的后台服务系统会校验一个叫做 [PrivateMapKey] 的“权限票据”,权限票据中包含了一个加密后的 RoomId 和一个加密后的“权限位列表”。由于 PrivateMapKey 中包含 RoomId,所以只提供了 UserSig 没有提供 PrivateMapKey 时,并不能进入指定的房间。
|
8789
8789
|
:type PrivateMapKey: str
|
8790
|
-
:param _VideoEncodeParams:
|
8790
|
+
:param _VideoEncodeParams: 【本字段已废弃】视频编码参数。可选,如果不填,保持原始流的参数。
|
8791
8791
|
:type VideoEncodeParams: :class:`tencentcloud.trtc.v20190722.models.VideoEncodeParams`
|
8792
|
-
:param _AudioEncodeParams:
|
8792
|
+
:param _AudioEncodeParams: 【本字段已废弃】音频编码参数。可选,如果不填,保持原始流的参数。
|
8793
8793
|
:type AudioEncodeParams: :class:`tencentcloud.trtc.v20190722.models.AudioEncodeParams`
|
8794
8794
|
:param _SourceUrl: 【本字段已废弃,请使用 StreamUrl 字段】源流URL,支持一个地址。
|
8795
8795
|
:type SourceUrl: list of str
|