tencentcloud-sdk-python 3.0.1300__py2.py3-none-any.whl → 3.0.1302__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/apm/v20210622/errorcodes.py +2 -2
- tencentcloud/cdn/v20180606/models.py +2 -2
- tencentcloud/cvm/v20170312/errorcodes.py +3 -0
- tencentcloud/dc/v20180410/dc_client.py +1 -1
- tencentcloud/dc/v20180410/models.py +16 -46
- tencentcloud/emr/v20190103/models.py +0 -6
- tencentcloud/es/v20180416/models.py +17 -0
- tencentcloud/ess/v20201111/ess_client.py +2 -2
- tencentcloud/ess/v20201111/models.py +10 -16
- tencentcloud/essbasic/v20210526/models.py +18 -76
- tencentcloud/hunyuan/v20230901/models.py +30 -0
- tencentcloud/mna/v20210119/models.py +0 -2
- tencentcloud/ocr/v20181119/models.py +4 -4
- tencentcloud/pts/v20210728/models.py +0 -348
- tencentcloud/rum/v20210622/models.py +92 -2
- tencentcloud/teo/v20220901/models.py +6 -12
- tencentcloud/tke/v20220501/models.py +2 -2
- tencentcloud/trro/v20220325/models.py +0 -58
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +2 -16
- {tencentcloud_sdk_python-3.0.1300.dist-info → tencentcloud_sdk_python-3.0.1302.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1300.dist-info → tencentcloud_sdk_python-3.0.1302.dist-info}/RECORD +26 -26
- {tencentcloud_sdk_python-3.0.1300.dist-info → tencentcloud_sdk_python-3.0.1302.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1300.dist-info → tencentcloud_sdk_python-3.0.1302.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1300.dist-info → tencentcloud_sdk_python-3.0.1302.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -41,7 +41,7 @@ FAILEDOPERATION_APMCREDENTIALNOTEXIST = 'FailedOperation.ApmCredentialNotExist'
|
|
41
41
|
# AppID 和业务系统信息不匹配。
|
42
42
|
FAILEDOPERATION_APPIDNOTMATCHINSTANCEINFO = 'FailedOperation.AppIdNotMatchInstanceInfo'
|
43
43
|
|
44
|
-
# 未命中白名单且业务系统
|
44
|
+
# 未命中白名单且业务系统 ID 为官方 Demo 业务系统 ID 时,不允许修改接口。
|
45
45
|
FAILEDOPERATION_DEMOINSTANCENOTALLOWMODIFIED = 'FailedOperation.DemoInstanceNotAllowModified'
|
46
46
|
|
47
47
|
# 请勿填写重复的应用名
|
@@ -86,7 +86,7 @@ FAILEDOPERATION_INVALIDTOKEN = 'FailedOperation.InvalidToken'
|
|
86
86
|
# 查询指标类数据查询条件缺少过滤参数。
|
87
87
|
FAILEDOPERATION_METRICFILTERSLACKPARAMS = 'FailedOperation.MetricFiltersLackParams'
|
88
88
|
|
89
|
-
# 非内网
|
89
|
+
# 非内网 VPC。
|
90
90
|
FAILEDOPERATION_NOTINNERVPC = 'FailedOperation.NotInnerVPC'
|
91
91
|
|
92
92
|
# 查询时间区间不支持。
|
@@ -19481,7 +19481,7 @@ class HeuristicCache(AbstractModel):
|
|
19481
19481
|
r"""
|
19482
19482
|
:param _Switch: 启发式缓存配置开关,取值有:
|
19483
19483
|
on:开启
|
19484
|
-
off
|
19484
|
+
off:关闭(默认)
|
19485
19485
|
注意:此字段可能返回 null,表示取不到有效值。
|
19486
19486
|
:type Switch: str
|
19487
19487
|
:param _CacheConfig: 自定义启发式缓存时间配置
|
@@ -19495,7 +19495,7 @@ off:关闭
|
|
19495
19495
|
def Switch(self):
|
19496
19496
|
"""启发式缓存配置开关,取值有:
|
19497
19497
|
on:开启
|
19498
|
-
off
|
19498
|
+
off:关闭(默认)
|
19499
19499
|
注意:此字段可能返回 null,表示取不到有效值。
|
19500
19500
|
:rtype: str
|
19501
19501
|
"""
|
@@ -983,6 +983,9 @@ UNSUPPORTEDOPERATION_INSTANCESTATETERMINATED = 'UnsupportedOperation.InstanceSta
|
|
983
983
|
# 请求不支持正在销毁的实例
|
984
984
|
UNSUPPORTEDOPERATION_INSTANCESTATETERMINATING = 'UnsupportedOperation.InstanceStateTerminating'
|
985
985
|
|
986
|
+
# 实例类型不支持设置`GridDriverService` 状态
|
987
|
+
UNSUPPORTEDOPERATION_INSTANCETYPENOTSUPPORTGRIDLICENCE = 'UnsupportedOperation.InstanceTypeNotSupportGridLicence'
|
988
|
+
|
986
989
|
# 实例类型不支持设置`EnableJumboFrame` 状态
|
987
990
|
UNSUPPORTEDOPERATION_INSTANCETYPENOTSUPPORTJUMBOFRAME = 'UnsupportedOperation.InstanceTypeNotSupportJumboFrame'
|
988
991
|
|
@@ -352,7 +352,7 @@ class DcClient(AbstractClient):
|
|
352
352
|
|
353
353
|
|
354
354
|
def DescribePublicDirectConnectTunnelRoutes(self, request):
|
355
|
-
"""
|
355
|
+
"""查询互联网通道路由列表。
|
356
356
|
|
357
357
|
:param request: Request instance for DescribePublicDirectConnectTunnelRoutes.
|
358
358
|
:type request: :class:`tencentcloud.dc.v20180410.models.DescribePublicDirectConnectTunnelRoutesRequest`
|
@@ -372,7 +372,6 @@ class ApplyInternetAddressResponse(AbstractModel):
|
|
372
372
|
def __init__(self):
|
373
373
|
r"""
|
374
374
|
:param _InstanceId: 互联网公网地址ID
|
375
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
376
375
|
:type InstanceId: str
|
377
376
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
378
377
|
:type RequestId: str
|
@@ -383,7 +382,6 @@ class ApplyInternetAddressResponse(AbstractModel):
|
|
383
382
|
@property
|
384
383
|
def InstanceId(self):
|
385
384
|
"""互联网公网地址ID
|
386
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
387
385
|
:rtype: str
|
388
386
|
"""
|
389
387
|
return self._InstanceId
|
@@ -2525,7 +2523,6 @@ class DescribeDirectConnectsResponse(AbstractModel):
|
|
2525
2523
|
:param _TotalCount: 符合物理专线列表数量。
|
2526
2524
|
:type TotalCount: int
|
2527
2525
|
:param _AllSignLaw: 用户名下物理专线是否都签署了用户协议。
|
2528
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2529
2526
|
:type AllSignLaw: bool
|
2530
2527
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2531
2528
|
:type RequestId: str
|
@@ -2560,7 +2557,6 @@ class DescribeDirectConnectsResponse(AbstractModel):
|
|
2560
2557
|
@property
|
2561
2558
|
def AllSignLaw(self):
|
2562
2559
|
"""用户名下物理专线是否都签署了用户协议。
|
2563
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2564
2560
|
:rtype: bool
|
2565
2561
|
"""
|
2566
2562
|
return self._AllSignLaw
|
@@ -2607,19 +2603,14 @@ class DescribeInternetAddressQuotaResponse(AbstractModel):
|
|
2607
2603
|
def __init__(self):
|
2608
2604
|
r"""
|
2609
2605
|
:param _Ipv6PrefixLen: IPv6互联网公网允许的最小前缀长度
|
2610
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2611
2606
|
:type Ipv6PrefixLen: int
|
2612
2607
|
:param _Ipv4BgpQuota: BGP类型IPv4互联网地址配额
|
2613
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2614
2608
|
:type Ipv4BgpQuota: int
|
2615
2609
|
:param _Ipv4OtherQuota: 非BGP类型IPv4互联网地址配额
|
2616
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2617
2610
|
:type Ipv4OtherQuota: int
|
2618
2611
|
:param _Ipv4BgpNum: BGP类型IPv4互联网地址已使用数量
|
2619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2620
2612
|
:type Ipv4BgpNum: int
|
2621
2613
|
:param _Ipv4OtherNum: 非BGP类型互联网地址已使用数量
|
2622
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2623
2614
|
:type Ipv4OtherNum: int
|
2624
2615
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2625
2616
|
:type RequestId: str
|
@@ -2634,7 +2625,6 @@ class DescribeInternetAddressQuotaResponse(AbstractModel):
|
|
2634
2625
|
@property
|
2635
2626
|
def Ipv6PrefixLen(self):
|
2636
2627
|
"""IPv6互联网公网允许的最小前缀长度
|
2637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2638
2628
|
:rtype: int
|
2639
2629
|
"""
|
2640
2630
|
return self._Ipv6PrefixLen
|
@@ -2646,7 +2636,6 @@ class DescribeInternetAddressQuotaResponse(AbstractModel):
|
|
2646
2636
|
@property
|
2647
2637
|
def Ipv4BgpQuota(self):
|
2648
2638
|
"""BGP类型IPv4互联网地址配额
|
2649
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2650
2639
|
:rtype: int
|
2651
2640
|
"""
|
2652
2641
|
return self._Ipv4BgpQuota
|
@@ -2658,7 +2647,6 @@ class DescribeInternetAddressQuotaResponse(AbstractModel):
|
|
2658
2647
|
@property
|
2659
2648
|
def Ipv4OtherQuota(self):
|
2660
2649
|
"""非BGP类型IPv4互联网地址配额
|
2661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2662
2650
|
:rtype: int
|
2663
2651
|
"""
|
2664
2652
|
return self._Ipv4OtherQuota
|
@@ -2670,7 +2658,6 @@ class DescribeInternetAddressQuotaResponse(AbstractModel):
|
|
2670
2658
|
@property
|
2671
2659
|
def Ipv4BgpNum(self):
|
2672
2660
|
"""BGP类型IPv4互联网地址已使用数量
|
2673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2674
2661
|
:rtype: int
|
2675
2662
|
"""
|
2676
2663
|
return self._Ipv4BgpNum
|
@@ -2682,7 +2669,6 @@ class DescribeInternetAddressQuotaResponse(AbstractModel):
|
|
2682
2669
|
@property
|
2683
2670
|
def Ipv4OtherNum(self):
|
2684
2671
|
"""非BGP类型互联网地址已使用数量
|
2685
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2686
2672
|
:rtype: int
|
2687
2673
|
"""
|
2688
2674
|
return self._Ipv4OtherNum
|
@@ -2723,12 +2709,7 @@ class DescribeInternetAddressRequest(AbstractModel):
|
|
2723
2709
|
:type Offset: int
|
2724
2710
|
:param _Limit: 返回数量,默认为20,最大值100
|
2725
2711
|
:type Limit: int
|
2726
|
-
:param _Filters: 过滤条件:
|
2727
|
-
<li>AddrType, 地址类型。0:BGP 1; 1: 电信, 2:移动, 3:联通</li>
|
2728
|
-
<li>AddrProto地址类型。0:IPv4 1:IPv6</li>
|
2729
|
-
<li>Status 地址状态。 0:使用中, 1:已停用, 2:已退还</li>
|
2730
|
-
<li>Subnet 互联网公网地址,数组</li>
|
2731
|
-
<InstanceIds>互联网公网地址ID,数组</li>
|
2712
|
+
:param _Filters: 过滤条件: <li>AddrType,地址类型。0:BGP 1;1: 电信;2:移动;3:联通</li> <li>AddrProto,地址类型。0:IPv4;1:IPv6</li> <li>Status,地址状态。 0:使用中;1:已停用; 2:已退还</li> <li>Subnet,互联网公网地址。数组</li> <li>InstanceIds,互联网公网地址ID。数组</li>
|
2732
2713
|
:type Filters: list of Filter
|
2733
2714
|
"""
|
2734
2715
|
self._Offset = None
|
@@ -2759,12 +2740,7 @@ class DescribeInternetAddressRequest(AbstractModel):
|
|
2759
2740
|
|
2760
2741
|
@property
|
2761
2742
|
def Filters(self):
|
2762
|
-
"""过滤条件:
|
2763
|
-
<li>AddrType, 地址类型。0:BGP 1; 1: 电信, 2:移动, 3:联通</li>
|
2764
|
-
<li>AddrProto地址类型。0:IPv4 1:IPv6</li>
|
2765
|
-
<li>Status 地址状态。 0:使用中, 1:已停用, 2:已退还</li>
|
2766
|
-
<li>Subnet 互联网公网地址,数组</li>
|
2767
|
-
<InstanceIds>互联网公网地址ID,数组</li>
|
2743
|
+
"""过滤条件: <li>AddrType,地址类型。0:BGP 1;1: 电信;2:移动;3:联通</li> <li>AddrProto,地址类型。0:IPv4;1:IPv6</li> <li>Status,地址状态。 0:使用中;1:已停用; 2:已退还</li> <li>Subnet,互联网公网地址。数组</li> <li>InstanceIds,互联网公网地址ID。数组</li>
|
2768
2744
|
:rtype: list of Filter
|
2769
2745
|
"""
|
2770
2746
|
return self._Filters
|
@@ -2803,7 +2779,6 @@ class DescribeInternetAddressResponse(AbstractModel):
|
|
2803
2779
|
:param _TotalCount: 互联网公网地址数量
|
2804
2780
|
:type TotalCount: int
|
2805
2781
|
:param _Subnets: 互联网公网地址列表
|
2806
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2807
2782
|
:type Subnets: list of InternetAddressDetail
|
2808
2783
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2809
2784
|
:type RequestId: str
|
@@ -2826,7 +2801,6 @@ class DescribeInternetAddressResponse(AbstractModel):
|
|
2826
2801
|
@property
|
2827
2802
|
def Subnets(self):
|
2828
2803
|
"""互联网公网地址列表
|
2829
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2830
2804
|
:rtype: list of InternetAddressDetail
|
2831
2805
|
"""
|
2832
2806
|
return self._Subnets
|
@@ -2874,7 +2848,6 @@ class DescribeInternetAddressStatisticsResponse(AbstractModel):
|
|
2874
2848
|
:param _TotalCount: 互联网公网地址统计信息数量
|
2875
2849
|
:type TotalCount: int
|
2876
2850
|
:param _InternetAddressStatistics: 互联网公网地址统计信息列表
|
2877
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2878
2851
|
:type InternetAddressStatistics: list of InternetAddressStatistics
|
2879
2852
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2880
2853
|
:type RequestId: str
|
@@ -2897,7 +2870,6 @@ class DescribeInternetAddressStatisticsResponse(AbstractModel):
|
|
2897
2870
|
@property
|
2898
2871
|
def InternetAddressStatistics(self):
|
2899
2872
|
"""互联网公网地址统计信息列表
|
2900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2901
2873
|
:rtype: list of InternetAddressStatistics
|
2902
2874
|
"""
|
2903
2875
|
return self._InternetAddressStatistics
|
@@ -2936,15 +2908,15 @@ class DescribePublicDirectConnectTunnelRoutesRequest(AbstractModel):
|
|
2936
2908
|
|
2937
2909
|
def __init__(self):
|
2938
2910
|
r"""
|
2939
|
-
:param _DirectConnectTunnelId: 专用通道ID
|
2911
|
+
:param _DirectConnectTunnelId: 专用通道ID。
|
2940
2912
|
:type DirectConnectTunnelId: str
|
2941
2913
|
:param _Filters: 过滤条件:
|
2942
|
-
route-type:路由类型,取值:BGP/STATIC
|
2943
|
-
route-subnet:路由cidr,取值如:192.68.1.0/24
|
2914
|
+
route-type:路由类型,取值:BGP/STATIC;
|
2915
|
+
route-subnet:路由cidr,取值如:192.68.1.0/24。
|
2944
2916
|
:type Filters: list of Filter
|
2945
|
-
:param _Offset: 偏移量,默认为0
|
2917
|
+
:param _Offset: 偏移量,默认为0。
|
2946
2918
|
:type Offset: int
|
2947
|
-
:param _Limit: 返回数量,默认为20,最大值为100
|
2919
|
+
:param _Limit: 返回数量,默认为20,最大值为100。
|
2948
2920
|
:type Limit: int
|
2949
2921
|
"""
|
2950
2922
|
self._DirectConnectTunnelId = None
|
@@ -2954,7 +2926,7 @@ route-subnet:路由cidr,取值如:192.68.1.0/24
|
|
2954
2926
|
|
2955
2927
|
@property
|
2956
2928
|
def DirectConnectTunnelId(self):
|
2957
|
-
"""专用通道ID
|
2929
|
+
"""专用通道ID。
|
2958
2930
|
:rtype: str
|
2959
2931
|
"""
|
2960
2932
|
return self._DirectConnectTunnelId
|
@@ -2966,8 +2938,8 @@ route-subnet:路由cidr,取值如:192.68.1.0/24
|
|
2966
2938
|
@property
|
2967
2939
|
def Filters(self):
|
2968
2940
|
"""过滤条件:
|
2969
|
-
route-type:路由类型,取值:BGP/STATIC
|
2970
|
-
route-subnet:路由cidr,取值如:192.68.1.0/24
|
2941
|
+
route-type:路由类型,取值:BGP/STATIC;
|
2942
|
+
route-subnet:路由cidr,取值如:192.68.1.0/24。
|
2971
2943
|
:rtype: list of Filter
|
2972
2944
|
"""
|
2973
2945
|
return self._Filters
|
@@ -2978,7 +2950,7 @@ route-subnet:路由cidr,取值如:192.68.1.0/24
|
|
2978
2950
|
|
2979
2951
|
@property
|
2980
2952
|
def Offset(self):
|
2981
|
-
"""偏移量,默认为0
|
2953
|
+
"""偏移量,默认为0。
|
2982
2954
|
:rtype: int
|
2983
2955
|
"""
|
2984
2956
|
return self._Offset
|
@@ -2989,7 +2961,7 @@ route-subnet:路由cidr,取值如:192.68.1.0/24
|
|
2989
2961
|
|
2990
2962
|
@property
|
2991
2963
|
def Limit(self):
|
2992
|
-
"""返回数量,默认为20,最大值为100
|
2964
|
+
"""返回数量,默认为20,最大值为100。
|
2993
2965
|
:rtype: int
|
2994
2966
|
"""
|
2995
2967
|
return self._Limit
|
@@ -3026,9 +2998,9 @@ class DescribePublicDirectConnectTunnelRoutesResponse(AbstractModel):
|
|
3026
2998
|
|
3027
2999
|
def __init__(self):
|
3028
3000
|
r"""
|
3029
|
-
:param _Routes:
|
3001
|
+
:param _Routes: 互联网通道路由列表。
|
3030
3002
|
:type Routes: list of DirectConnectTunnelRoute
|
3031
|
-
:param _TotalCount:
|
3003
|
+
:param _TotalCount: 路由总数量。
|
3032
3004
|
:type TotalCount: int
|
3033
3005
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3034
3006
|
:type RequestId: str
|
@@ -3039,7 +3011,7 @@ class DescribePublicDirectConnectTunnelRoutesResponse(AbstractModel):
|
|
3039
3011
|
|
3040
3012
|
@property
|
3041
3013
|
def Routes(self):
|
3042
|
-
"""
|
3014
|
+
"""互联网通道路由列表。
|
3043
3015
|
:rtype: list of DirectConnectTunnelRoute
|
3044
3016
|
"""
|
3045
3017
|
return self._Routes
|
@@ -3050,7 +3022,7 @@ class DescribePublicDirectConnectTunnelRoutesResponse(AbstractModel):
|
|
3050
3022
|
|
3051
3023
|
@property
|
3052
3024
|
def TotalCount(self):
|
3053
|
-
"""
|
3025
|
+
"""路由总数量。
|
3054
3026
|
:rtype: int
|
3055
3027
|
"""
|
3056
3028
|
return self._TotalCount
|
@@ -4833,7 +4805,6 @@ class DirectConnectTunnelRoute(AbstractModel):
|
|
4833
4805
|
:param _NextHop: 路由下一跳IP
|
4834
4806
|
:type NextHop: str
|
4835
4807
|
:param _UpdateTime: 路由更新时间
|
4836
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4837
4808
|
:type UpdateTime: str
|
4838
4809
|
:param _ApplyOnTunnelEnable: 是否配置在通道上
|
4839
4810
|
:type ApplyOnTunnelEnable: bool
|
@@ -4916,7 +4887,6 @@ class DirectConnectTunnelRoute(AbstractModel):
|
|
4916
4887
|
@property
|
4917
4888
|
def UpdateTime(self):
|
4918
4889
|
"""路由更新时间
|
4919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4920
4890
|
:rtype: str
|
4921
4891
|
"""
|
4922
4892
|
return self._UpdateTime
|
@@ -4460,7 +4460,6 @@ class CreateCloudInstanceResponse(AbstractModel):
|
|
4460
4460
|
def __init__(self):
|
4461
4461
|
r"""
|
4462
4462
|
:param _InstanceId: 实例ID
|
4463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4464
4463
|
:type InstanceId: str
|
4465
4464
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4466
4465
|
:type RequestId: str
|
@@ -4471,7 +4470,6 @@ class CreateCloudInstanceResponse(AbstractModel):
|
|
4471
4470
|
@property
|
4472
4471
|
def InstanceId(self):
|
4473
4472
|
"""实例ID
|
4474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4475
4473
|
:rtype: str
|
4476
4474
|
"""
|
4477
4475
|
return self._InstanceId
|
@@ -4907,7 +4905,6 @@ class CreateClusterResponse(AbstractModel):
|
|
4907
4905
|
def __init__(self):
|
4908
4906
|
r"""
|
4909
4907
|
:param _InstanceId: 实例ID
|
4910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4911
4908
|
:type InstanceId: str
|
4912
4909
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4913
4910
|
:type RequestId: str
|
@@ -4918,7 +4915,6 @@ class CreateClusterResponse(AbstractModel):
|
|
4918
4915
|
@property
|
4919
4916
|
def InstanceId(self):
|
4920
4917
|
"""实例ID
|
4921
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4922
4918
|
:rtype: str
|
4923
4919
|
"""
|
4924
4920
|
return self._InstanceId
|
@@ -21011,7 +21007,6 @@ class MonthRepeatStrategy(AbstractModel):
|
|
21011
21007
|
def __init__(self):
|
21012
21008
|
r"""
|
21013
21009
|
:param _ExecuteAtTimeOfDay: 重复任务执行的具体时刻,例如"01:02:00"
|
21014
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21015
21010
|
:type ExecuteAtTimeOfDay: str
|
21016
21011
|
:param _DaysOfMonthRange: 每月中的天数时间段描述,长度只能为2,例如[2,10]表示每月2-10号。
|
21017
21012
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -21023,7 +21018,6 @@ class MonthRepeatStrategy(AbstractModel):
|
|
21023
21018
|
@property
|
21024
21019
|
def ExecuteAtTimeOfDay(self):
|
21025
21020
|
"""重复任务执行的具体时刻,例如"01:02:00"
|
21026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21027
21021
|
:rtype: str
|
21028
21022
|
"""
|
21029
21023
|
return self._ExecuteAtTimeOfDay
|
@@ -9336,6 +9336,9 @@ class IndexMetaField(AbstractModel):
|
|
9336
9336
|
:param _IndexSettingsField: 索引配置字段
|
9337
9337
|
注意:此字段可能返回 null,表示取不到有效值。
|
9338
9338
|
:type IndexSettingsField: :class:`tencentcloud.es.v20180416.models.IndexSettingsField`
|
9339
|
+
:param _IndexAliasesField: 索引别名字段
|
9340
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9341
|
+
:type IndexAliasesField: list of str
|
9339
9342
|
:param _AppId: 索引所属集群APP ID
|
9340
9343
|
注意:此字段可能返回 null,表示取不到有效值。
|
9341
9344
|
:type AppId: int
|
@@ -9356,6 +9359,7 @@ class IndexMetaField(AbstractModel):
|
|
9356
9359
|
self._IndexPolicyField = None
|
9357
9360
|
self._IndexOptionsField = None
|
9358
9361
|
self._IndexSettingsField = None
|
9362
|
+
self._IndexAliasesField = None
|
9359
9363
|
self._AppId = None
|
9360
9364
|
self._IndexDocs = None
|
9361
9365
|
|
@@ -9515,6 +9519,18 @@ class IndexMetaField(AbstractModel):
|
|
9515
9519
|
def IndexSettingsField(self, IndexSettingsField):
|
9516
9520
|
self._IndexSettingsField = IndexSettingsField
|
9517
9521
|
|
9522
|
+
@property
|
9523
|
+
def IndexAliasesField(self):
|
9524
|
+
"""索引别名字段
|
9525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9526
|
+
:rtype: list of str
|
9527
|
+
"""
|
9528
|
+
return self._IndexAliasesField
|
9529
|
+
|
9530
|
+
@IndexAliasesField.setter
|
9531
|
+
def IndexAliasesField(self, IndexAliasesField):
|
9532
|
+
self._IndexAliasesField = IndexAliasesField
|
9533
|
+
|
9518
9534
|
@property
|
9519
9535
|
def AppId(self):
|
9520
9536
|
"""索引所属集群APP ID
|
@@ -9565,6 +9581,7 @@ class IndexMetaField(AbstractModel):
|
|
9565
9581
|
if params.get("IndexSettingsField") is not None:
|
9566
9582
|
self._IndexSettingsField = IndexSettingsField()
|
9567
9583
|
self._IndexSettingsField._deserialize(params.get("IndexSettingsField"))
|
9584
|
+
self._IndexAliasesField = params.get("IndexAliasesField")
|
9568
9585
|
self._AppId = params.get("AppId")
|
9569
9586
|
self._IndexDocs = params.get("IndexDocs")
|
9570
9587
|
memeber_set = set(params.keys())
|
@@ -284,7 +284,7 @@ class EssClient(AbstractClient):
|
|
284
284
|
|
285
285
|
注:
|
286
286
|
|
287
|
-
1.
|
287
|
+
1. 此接口需要 <font color="red"><b>购买单独的实名套餐包</b></font>方可调用,如有需求请联系对接人员评估
|
288
288
|
|
289
289
|
2. 如果生成的链接是APP链接,跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
|
290
290
|
|
@@ -417,7 +417,7 @@ class EssClient(AbstractClient):
|
|
417
417
|
### 填充模板中定义的填写控件
|
418
418
|
模板中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields数组**字段填充。
|
419
419
|
|
420
|
-
**<font color="red">填充填写控件需要进行Pdf合成工作,文档合成完成后会收到[
|
420
|
+
**<font color="red">填充填写控件需要进行Pdf合成工作,文档合成完成后会收到[合同文档合成完成回调](https://qian.tencent.com/developers/company/callback_types_contracts_sign#%E4%B9%9D-%E5%90%88%E5%90%8C%E6%96%87%E6%A1%A3%E5%90%88%E6%88%90%E5%AE%8C%E6%88%90%E5%9B%9E%E8%B0%83),建议在收到此回调后再调用 [StartFlow](https://qian.tencent.com/developers/companyApis/startFlows/StartFlow) 接口。</font>**
|
421
421
|
|
422
422
|

|
423
423
|
|
@@ -1845,7 +1845,7 @@ class BillUsageDetail(AbstractModel):
|
|
1845
1845
|
<li>**7**: 还没有预发起</li>
|
1846
1846
|
<li>**8**: 等待填写</li>
|
1847
1847
|
<li>**9**: 部分填写 </li>
|
1848
|
-
<li>**10**:
|
1848
|
+
<li>**10**: 拒签</li>
|
1849
1849
|
<li>**11**: 已解除</li>
|
1850
1850
|
</ul>
|
1851
1851
|
:type Status: int
|
@@ -1954,7 +1954,7 @@ class BillUsageDetail(AbstractModel):
|
|
1954
1954
|
<li>**7**: 还没有预发起</li>
|
1955
1955
|
<li>**8**: 等待填写</li>
|
1956
1956
|
<li>**9**: 部分填写 </li>
|
1957
|
-
<li>**10**:
|
1957
|
+
<li>**10**: 拒签</li>
|
1958
1958
|
<li>**11**: 已解除</li>
|
1959
1959
|
</ul>
|
1960
1960
|
:rtype: int
|
@@ -5819,7 +5819,7 @@ class CreateDocumentResponse(AbstractModel):
|
|
5819
5819
|
:param _PreviewFileUrl: 合同预览链接URL。
|
5820
5820
|
|
5821
5821
|
注: `1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`
|
5822
|
-
`2
|
5822
|
+
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过[合同文档合成完成回调](https://qian.tencent.com/developers/company/callback_types_contracts_sign/#%E4%B9%9D-%E5%90%88%E5%90%8C%E6%96%87%E6%A1%A3%E5%90%88%E6%88%90%E5%AE%8C%E6%88%90%E5%9B%9E%E8%B0%83)获取。
|
5823
5823
|
:type PreviewFileUrl: str
|
5824
5824
|
:param _Approvers: 签署方信息,如角色ID、角色名称等
|
5825
5825
|
:type Approvers: list of ApproverItem
|
@@ -5850,7 +5850,7 @@ class CreateDocumentResponse(AbstractModel):
|
|
5850
5850
|
"""合同预览链接URL。
|
5851
5851
|
|
5852
5852
|
注: `1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`
|
5853
|
-
`2
|
5853
|
+
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过[合同文档合成完成回调](https://qian.tencent.com/developers/company/callback_types_contracts_sign/#%E4%B9%9D-%E5%90%88%E5%90%8C%E6%96%87%E6%A1%A3%E5%90%88%E6%88%90%E5%AE%8C%E6%88%90%E5%9B%9E%E8%B0%83)获取。
|
5854
5854
|
:rtype: str
|
5855
5855
|
"""
|
5856
5856
|
return self._PreviewFileUrl
|
@@ -7629,11 +7629,10 @@ class CreateFlowEvidenceReportResponse(AbstractModel):
|
|
7629
7629
|
|
7630
7630
|
<ul><li>**EvidenceStatusExecuting**: 出证任务在执行中</li>
|
7631
7631
|
<li>**EvidenceStatusSuccess**: 出证任务执行成功</li>
|
7632
|
-
<li>**EvidenceStatusFailed** :
|
7632
|
+
<li>**EvidenceStatusFailed** : 出证任务执行失败</li></ul>
|
7633
7633
|
:type Status: str
|
7634
7634
|
:param _ReportUrl: 此字段已经废除,不再使用.
|
7635
7635
|
出证的PDF下载地址请调用DescribeChannelFlowEvidenceReport接口获取
|
7636
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7637
7636
|
:type ReportUrl: str
|
7638
7637
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7639
7638
|
:type RequestId: str
|
@@ -7660,7 +7659,7 @@ class CreateFlowEvidenceReportResponse(AbstractModel):
|
|
7660
7659
|
|
7661
7660
|
<ul><li>**EvidenceStatusExecuting**: 出证任务在执行中</li>
|
7662
7661
|
<li>**EvidenceStatusSuccess**: 出证任务执行成功</li>
|
7663
|
-
<li>**EvidenceStatusFailed** :
|
7662
|
+
<li>**EvidenceStatusFailed** : 出证任务执行失败</li></ul>
|
7664
7663
|
:rtype: str
|
7665
7664
|
"""
|
7666
7665
|
return self._Status
|
@@ -7675,7 +7674,6 @@ class CreateFlowEvidenceReportResponse(AbstractModel):
|
|
7675
7674
|
|
7676
7675
|
"""此字段已经废除,不再使用.
|
7677
7676
|
出证的PDF下载地址请调用DescribeChannelFlowEvidenceReport接口获取
|
7678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7679
7677
|
:rtype: str
|
7680
7678
|
"""
|
7681
7679
|
return self._ReportUrl
|
@@ -18638,7 +18636,7 @@ class DescribeFlowEvidenceReportResponse(AbstractModel):
|
|
18638
18636
|
|
18639
18637
|
<ul><li>**EvidenceStatusExecuting**: 出证任务在执行中</li>
|
18640
18638
|
<li>**EvidenceStatusSuccess**: 出证任务执行成功</li>
|
18641
|
-
<li>**EvidenceStatusFailed** :
|
18639
|
+
<li>**EvidenceStatusFailed** : 出证任务执行失败</li></ul>
|
18642
18640
|
:type Status: str
|
18643
18641
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18644
18642
|
:type RequestId: str
|
@@ -18664,7 +18662,7 @@ class DescribeFlowEvidenceReportResponse(AbstractModel):
|
|
18664
18662
|
|
18665
18663
|
<ul><li>**EvidenceStatusExecuting**: 出证任务在执行中</li>
|
18666
18664
|
<li>**EvidenceStatusSuccess**: 出证任务执行成功</li>
|
18667
|
-
<li>**EvidenceStatusFailed** :
|
18665
|
+
<li>**EvidenceStatusFailed** : 出证任务执行失败</li></ul>
|
18668
18666
|
:rtype: str
|
18669
18667
|
"""
|
18670
18668
|
return self._Status
|
@@ -24611,7 +24609,6 @@ class FlowGroupInfo(AbstractModel):
|
|
24611
24609
|
可登录腾讯电子签控制台,在 "模板"->"模板中心"->"列表展示设置"选中模板 ID 中查看某个模板的TemplateId(在页面中展示为模板ID)。
|
24612
24610
|
:type TemplateId: str
|
24613
24611
|
:param _FlowType: 签署流程的类型(如销售合同/入职合同等),最大长度200个字符
|
24614
|
-
示例值:劳务合同
|
24615
24612
|
:type FlowType: str
|
24616
24613
|
:param _FlowDescription: 签署流程描述,最大长度1000个字符
|
24617
24614
|
:type FlowDescription: str
|
@@ -24647,7 +24644,7 @@ false:有序签
|
|
24647
24644
|
示例值:true
|
24648
24645
|
:type NeedSignReview: bool
|
24649
24646
|
:param _AutoSignScene: 个人自动签场景。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
24650
|
-
|
24647
|
+
|
24651
24648
|
:type AutoSignScene: str
|
24652
24649
|
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
24653
24650
|
:type FlowDisplayType: int
|
@@ -24719,7 +24716,6 @@ false:有序签
|
|
24719
24716
|
@property
|
24720
24717
|
def FlowType(self):
|
24721
24718
|
"""签署流程的类型(如销售合同/入职合同等),最大长度200个字符
|
24722
|
-
示例值:劳务合同
|
24723
24719
|
:rtype: str
|
24724
24720
|
"""
|
24725
24721
|
return self._FlowType
|
@@ -24831,7 +24827,7 @@ false:有序签
|
|
24831
24827
|
@property
|
24832
24828
|
def AutoSignScene(self):
|
24833
24829
|
"""个人自动签场景。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
24834
|
-
|
24830
|
+
|
24835
24831
|
:rtype: str
|
24836
24832
|
"""
|
24837
24833
|
return self._AutoSignScene
|
@@ -31207,7 +31203,6 @@ class SuccessUpdateStaffData(AbstractModel):
|
|
31207
31203
|
可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查看某位员工的UserId(在页面中展示为用户ID)。
|
31208
31204
|
:type UserId: str
|
31209
31205
|
:param _Url: H5端员工实名链接
|
31210
|
-
|
31211
31206
|
只有入参 InvitationNotifyType = H5的时候才会进行返回。
|
31212
31207
|
:type Url: str
|
31213
31208
|
"""
|
@@ -31253,7 +31248,6 @@ class SuccessUpdateStaffData(AbstractModel):
|
|
31253
31248
|
@property
|
31254
31249
|
def Url(self):
|
31255
31250
|
"""H5端员工实名链接
|
31256
|
-
|
31257
31251
|
只有入参 InvitationNotifyType = H5的时候才会进行返回。
|
31258
31252
|
:rtype: str
|
31259
31253
|
"""
|