tencentcloud-sdk-python 3.0.1207__py2.py3-none-any.whl → 3.0.1208__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/aiart/v20221229/models.py +15 -0
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +478 -0
- tencentcloud/essbasic/v20210526/models.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +4 -4
- tencentcloud/organization/v20210331/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/models.py +484 -0
- tencentcloud/organization/v20210331/organization_client.py +69 -0
- tencentcloud/tcss/v20201101/models.py +140 -5
- tencentcloud/trocket/v20230308/models.py +106 -0
- tencentcloud/trocket/v20230308/trocket_client.py +23 -0
- tencentcloud/vclm/v20240523/errorcodes.py +0 -3
- {tencentcloud_sdk_python-3.0.1207.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1207.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/RECORD +18 -18
- {tencentcloud_sdk_python-3.0.1207.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1207.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1207.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -50,6 +50,9 @@ Dress:连衣裙
|
|
50
50
|
其他数值:默认按1处理。
|
51
51
|
建议您使用显著标识来提示结果图使用了 AI 绘画技术,是 AI 生成的图片。
|
52
52
|
:type LogoAdd: int
|
53
|
+
:param _LogoParam: 标识内容设置。
|
54
|
+
默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
|
55
|
+
:type LogoParam: :class:`tencentcloud.aiart.v20221229.models.LogoParam`
|
53
56
|
:param _RspImgType: 返回图像方式(base64 或 url) ,二选一,默认为 base64。url 有效期为1小时。
|
54
57
|
生成图分辨率较大时建议选择 url,使用 base64 可能因图片过大导致返回失败。
|
55
58
|
:type RspImgType: str
|
@@ -58,6 +61,7 @@ Dress:连衣裙
|
|
58
61
|
self._ClothesUrl = None
|
59
62
|
self._ClothesType = None
|
60
63
|
self._LogoAdd = None
|
64
|
+
self._LogoParam = None
|
61
65
|
self._RspImgType = None
|
62
66
|
|
63
67
|
@property
|
@@ -92,6 +96,14 @@ Dress:连衣裙
|
|
92
96
|
def LogoAdd(self, LogoAdd):
|
93
97
|
self._LogoAdd = LogoAdd
|
94
98
|
|
99
|
+
@property
|
100
|
+
def LogoParam(self):
|
101
|
+
return self._LogoParam
|
102
|
+
|
103
|
+
@LogoParam.setter
|
104
|
+
def LogoParam(self, LogoParam):
|
105
|
+
self._LogoParam = LogoParam
|
106
|
+
|
95
107
|
@property
|
96
108
|
def RspImgType(self):
|
97
109
|
return self._RspImgType
|
@@ -106,6 +118,9 @@ Dress:连衣裙
|
|
106
118
|
self._ClothesUrl = params.get("ClothesUrl")
|
107
119
|
self._ClothesType = params.get("ClothesType")
|
108
120
|
self._LogoAdd = params.get("LogoAdd")
|
121
|
+
if params.get("LogoParam") is not None:
|
122
|
+
self._LogoParam = LogoParam()
|
123
|
+
self._LogoParam._deserialize(params.get("LogoParam"))
|
109
124
|
self._RspImgType = params.get("RspImgType")
|
110
125
|
memeber_set = set(params.keys())
|
111
126
|
for name, value in vars(self).items():
|
@@ -256,6 +256,29 @@ class ClsClient(AbstractClient):
|
|
256
256
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
257
257
|
|
258
258
|
|
259
|
+
def CreateConsoleSharing(self, request):
|
260
|
+
"""创建控制台分享
|
261
|
+
|
262
|
+
:param request: Request instance for CreateConsoleSharing.
|
263
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.CreateConsoleSharingRequest`
|
264
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.CreateConsoleSharingResponse`
|
265
|
+
|
266
|
+
"""
|
267
|
+
try:
|
268
|
+
params = request._serialize()
|
269
|
+
headers = request.headers
|
270
|
+
body = self.call("CreateConsoleSharing", params, headers=headers)
|
271
|
+
response = json.loads(body)
|
272
|
+
model = models.CreateConsoleSharingResponse()
|
273
|
+
model._deserialize(response["Response"])
|
274
|
+
return model
|
275
|
+
except Exception as e:
|
276
|
+
if isinstance(e, TencentCloudSDKException):
|
277
|
+
raise
|
278
|
+
else:
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
280
|
+
|
281
|
+
|
259
282
|
def CreateConsumer(self, request):
|
260
283
|
"""本接口用于创建投递CKafka任务
|
261
284
|
|
@@ -693,6 +716,29 @@ class ClsClient(AbstractClient):
|
|
693
716
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
694
717
|
|
695
718
|
|
719
|
+
def DeleteConsoleSharing(self, request):
|
720
|
+
"""删除控制台分享
|
721
|
+
|
722
|
+
:param request: Request instance for DeleteConsoleSharing.
|
723
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.DeleteConsoleSharingRequest`
|
724
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.DeleteConsoleSharingResponse`
|
725
|
+
|
726
|
+
"""
|
727
|
+
try:
|
728
|
+
params = request._serialize()
|
729
|
+
headers = request.headers
|
730
|
+
body = self.call("DeleteConsoleSharing", params, headers=headers)
|
731
|
+
response = json.loads(body)
|
732
|
+
model = models.DeleteConsoleSharingResponse()
|
733
|
+
model._deserialize(response["Response"])
|
734
|
+
return model
|
735
|
+
except Exception as e:
|
736
|
+
if isinstance(e, TencentCloudSDKException):
|
737
|
+
raise
|
738
|
+
else:
|
739
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
740
|
+
|
741
|
+
|
696
742
|
def DeleteConsumer(self, request):
|
697
743
|
"""本接口用于删除投递配置
|
698
744
|
|
@@ -1130,6 +1176,29 @@ class ClsClient(AbstractClient):
|
|
1130
1176
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1131
1177
|
|
1132
1178
|
|
1179
|
+
def DescribeConsoleSharingList(self, request):
|
1180
|
+
"""批量查询控制台分享列表
|
1181
|
+
|
1182
|
+
:param request: Request instance for DescribeConsoleSharingList.
|
1183
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.DescribeConsoleSharingListRequest`
|
1184
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.DescribeConsoleSharingListResponse`
|
1185
|
+
|
1186
|
+
"""
|
1187
|
+
try:
|
1188
|
+
params = request._serialize()
|
1189
|
+
headers = request.headers
|
1190
|
+
body = self.call("DescribeConsoleSharingList", params, headers=headers)
|
1191
|
+
response = json.loads(body)
|
1192
|
+
model = models.DescribeConsoleSharingListResponse()
|
1193
|
+
model._deserialize(response["Response"])
|
1194
|
+
return model
|
1195
|
+
except Exception as e:
|
1196
|
+
if isinstance(e, TencentCloudSDKException):
|
1197
|
+
raise
|
1198
|
+
else:
|
1199
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1200
|
+
|
1201
|
+
|
1133
1202
|
def DescribeConsumer(self, request):
|
1134
1203
|
"""本接口用于获取投递配置
|
1135
1204
|
|
@@ -1752,6 +1821,29 @@ class ClsClient(AbstractClient):
|
|
1752
1821
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1753
1822
|
|
1754
1823
|
|
1824
|
+
def ModifyConsoleSharing(self, request):
|
1825
|
+
"""修改控制台分享,目前仅允许修改有效期
|
1826
|
+
|
1827
|
+
:param request: Request instance for ModifyConsoleSharing.
|
1828
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.ModifyConsoleSharingRequest`
|
1829
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.ModifyConsoleSharingResponse`
|
1830
|
+
|
1831
|
+
"""
|
1832
|
+
try:
|
1833
|
+
params = request._serialize()
|
1834
|
+
headers = request.headers
|
1835
|
+
body = self.call("ModifyConsoleSharing", params, headers=headers)
|
1836
|
+
response = json.loads(body)
|
1837
|
+
model = models.ModifyConsoleSharingResponse()
|
1838
|
+
model._deserialize(response["Response"])
|
1839
|
+
return model
|
1840
|
+
except Exception as e:
|
1841
|
+
if isinstance(e, TencentCloudSDKException):
|
1842
|
+
raise
|
1843
|
+
else:
|
1844
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1845
|
+
|
1846
|
+
|
1755
1847
|
def ModifyConsumer(self, request):
|
1756
1848
|
"""本接口用于修改投递Ckafka任务
|
1757
1849
|
|
@@ -2733,6 +2733,229 @@ class ConfigInfo(AbstractModel):
|
|
2733
2733
|
|
2734
2734
|
|
2735
2735
|
|
2736
|
+
class ConsoleSharingConfig(AbstractModel):
|
2737
|
+
"""控制台分享配置
|
2738
|
+
|
2739
|
+
"""
|
2740
|
+
|
2741
|
+
def __init__(self):
|
2742
|
+
r"""
|
2743
|
+
:param _Name: 分享链接名称
|
2744
|
+
:type Name: str
|
2745
|
+
:param _Type: 仪表盘: 1; 检索页:2
|
2746
|
+
:type Type: int
|
2747
|
+
:param _DurationMilliseconds: 分享链接有效期,单位:毫秒,最长支持30天
|
2748
|
+
:type DurationMilliseconds: int
|
2749
|
+
:param _Resources: 允许访问的资源列表
|
2750
|
+
:type Resources: list of str
|
2751
|
+
:param _Domain: 分享链接域名,可选范围
|
2752
|
+
- 公网匿名分享:填写clsshare.com
|
2753
|
+
- datasight内网匿名分享(若开启):datasight内网域名
|
2754
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2755
|
+
:type Domain: str
|
2756
|
+
:param _VerifyCode: 验证码
|
2757
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2758
|
+
:type VerifyCode: str
|
2759
|
+
:param _StartTime: 开始时间,支持绝对时间(13位时间戳字符串)/相对时间字符串
|
2760
|
+
:type StartTime: str
|
2761
|
+
:param _EndTime: 结束时间,支持绝对时间(13位时间戳字符串)/相对时间字符串
|
2762
|
+
:type EndTime: str
|
2763
|
+
:param _NowTime: 当StartTime/EndTime为相对时间时,基于NowTime计算绝对时间,默认为创建时间
|
2764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2765
|
+
:type NowTime: int
|
2766
|
+
:param _Params: params参数列表,当Type为2时支持
|
2767
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2768
|
+
:type Params: list of ConsoleSharingParam
|
2769
|
+
:param _IsLockTimeRange: 是否允许访问者自行修改检索分析时间范围,默认不锁定
|
2770
|
+
:type IsLockTimeRange: bool
|
2771
|
+
:param _IsLockQuery: 是否允许访问者自行修改日志检索语句。在检索页分享中表示检索语句锁定状态;在仪表盘中表示过滤变量锁定状态
|
2772
|
+
:type IsLockQuery: bool
|
2773
|
+
"""
|
2774
|
+
self._Name = None
|
2775
|
+
self._Type = None
|
2776
|
+
self._DurationMilliseconds = None
|
2777
|
+
self._Resources = None
|
2778
|
+
self._Domain = None
|
2779
|
+
self._VerifyCode = None
|
2780
|
+
self._StartTime = None
|
2781
|
+
self._EndTime = None
|
2782
|
+
self._NowTime = None
|
2783
|
+
self._Params = None
|
2784
|
+
self._IsLockTimeRange = None
|
2785
|
+
self._IsLockQuery = None
|
2786
|
+
|
2787
|
+
@property
|
2788
|
+
def Name(self):
|
2789
|
+
return self._Name
|
2790
|
+
|
2791
|
+
@Name.setter
|
2792
|
+
def Name(self, Name):
|
2793
|
+
self._Name = Name
|
2794
|
+
|
2795
|
+
@property
|
2796
|
+
def Type(self):
|
2797
|
+
return self._Type
|
2798
|
+
|
2799
|
+
@Type.setter
|
2800
|
+
def Type(self, Type):
|
2801
|
+
self._Type = Type
|
2802
|
+
|
2803
|
+
@property
|
2804
|
+
def DurationMilliseconds(self):
|
2805
|
+
return self._DurationMilliseconds
|
2806
|
+
|
2807
|
+
@DurationMilliseconds.setter
|
2808
|
+
def DurationMilliseconds(self, DurationMilliseconds):
|
2809
|
+
self._DurationMilliseconds = DurationMilliseconds
|
2810
|
+
|
2811
|
+
@property
|
2812
|
+
def Resources(self):
|
2813
|
+
return self._Resources
|
2814
|
+
|
2815
|
+
@Resources.setter
|
2816
|
+
def Resources(self, Resources):
|
2817
|
+
self._Resources = Resources
|
2818
|
+
|
2819
|
+
@property
|
2820
|
+
def Domain(self):
|
2821
|
+
return self._Domain
|
2822
|
+
|
2823
|
+
@Domain.setter
|
2824
|
+
def Domain(self, Domain):
|
2825
|
+
self._Domain = Domain
|
2826
|
+
|
2827
|
+
@property
|
2828
|
+
def VerifyCode(self):
|
2829
|
+
return self._VerifyCode
|
2830
|
+
|
2831
|
+
@VerifyCode.setter
|
2832
|
+
def VerifyCode(self, VerifyCode):
|
2833
|
+
self._VerifyCode = VerifyCode
|
2834
|
+
|
2835
|
+
@property
|
2836
|
+
def StartTime(self):
|
2837
|
+
return self._StartTime
|
2838
|
+
|
2839
|
+
@StartTime.setter
|
2840
|
+
def StartTime(self, StartTime):
|
2841
|
+
self._StartTime = StartTime
|
2842
|
+
|
2843
|
+
@property
|
2844
|
+
def EndTime(self):
|
2845
|
+
return self._EndTime
|
2846
|
+
|
2847
|
+
@EndTime.setter
|
2848
|
+
def EndTime(self, EndTime):
|
2849
|
+
self._EndTime = EndTime
|
2850
|
+
|
2851
|
+
@property
|
2852
|
+
def NowTime(self):
|
2853
|
+
return self._NowTime
|
2854
|
+
|
2855
|
+
@NowTime.setter
|
2856
|
+
def NowTime(self, NowTime):
|
2857
|
+
self._NowTime = NowTime
|
2858
|
+
|
2859
|
+
@property
|
2860
|
+
def Params(self):
|
2861
|
+
return self._Params
|
2862
|
+
|
2863
|
+
@Params.setter
|
2864
|
+
def Params(self, Params):
|
2865
|
+
self._Params = Params
|
2866
|
+
|
2867
|
+
@property
|
2868
|
+
def IsLockTimeRange(self):
|
2869
|
+
return self._IsLockTimeRange
|
2870
|
+
|
2871
|
+
@IsLockTimeRange.setter
|
2872
|
+
def IsLockTimeRange(self, IsLockTimeRange):
|
2873
|
+
self._IsLockTimeRange = IsLockTimeRange
|
2874
|
+
|
2875
|
+
@property
|
2876
|
+
def IsLockQuery(self):
|
2877
|
+
return self._IsLockQuery
|
2878
|
+
|
2879
|
+
@IsLockQuery.setter
|
2880
|
+
def IsLockQuery(self, IsLockQuery):
|
2881
|
+
self._IsLockQuery = IsLockQuery
|
2882
|
+
|
2883
|
+
|
2884
|
+
def _deserialize(self, params):
|
2885
|
+
self._Name = params.get("Name")
|
2886
|
+
self._Type = params.get("Type")
|
2887
|
+
self._DurationMilliseconds = params.get("DurationMilliseconds")
|
2888
|
+
self._Resources = params.get("Resources")
|
2889
|
+
self._Domain = params.get("Domain")
|
2890
|
+
self._VerifyCode = params.get("VerifyCode")
|
2891
|
+
self._StartTime = params.get("StartTime")
|
2892
|
+
self._EndTime = params.get("EndTime")
|
2893
|
+
self._NowTime = params.get("NowTime")
|
2894
|
+
if params.get("Params") is not None:
|
2895
|
+
self._Params = []
|
2896
|
+
for item in params.get("Params"):
|
2897
|
+
obj = ConsoleSharingParam()
|
2898
|
+
obj._deserialize(item)
|
2899
|
+
self._Params.append(obj)
|
2900
|
+
self._IsLockTimeRange = params.get("IsLockTimeRange")
|
2901
|
+
self._IsLockQuery = params.get("IsLockQuery")
|
2902
|
+
memeber_set = set(params.keys())
|
2903
|
+
for name, value in vars(self).items():
|
2904
|
+
property_name = name[1:]
|
2905
|
+
if property_name in memeber_set:
|
2906
|
+
memeber_set.remove(property_name)
|
2907
|
+
if len(memeber_set) > 0:
|
2908
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2909
|
+
|
2910
|
+
|
2911
|
+
|
2912
|
+
class ConsoleSharingParam(AbstractModel):
|
2913
|
+
"""控制台分享链接params参数
|
2914
|
+
|
2915
|
+
"""
|
2916
|
+
|
2917
|
+
def __init__(self):
|
2918
|
+
r"""
|
2919
|
+
:param _Name: 名称
|
2920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2921
|
+
:type Name: str
|
2922
|
+
:param _Value: 值
|
2923
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2924
|
+
:type Value: str
|
2925
|
+
"""
|
2926
|
+
self._Name = None
|
2927
|
+
self._Value = None
|
2928
|
+
|
2929
|
+
@property
|
2930
|
+
def Name(self):
|
2931
|
+
return self._Name
|
2932
|
+
|
2933
|
+
@Name.setter
|
2934
|
+
def Name(self, Name):
|
2935
|
+
self._Name = Name
|
2936
|
+
|
2937
|
+
@property
|
2938
|
+
def Value(self):
|
2939
|
+
return self._Value
|
2940
|
+
|
2941
|
+
@Value.setter
|
2942
|
+
def Value(self, Value):
|
2943
|
+
self._Value = Value
|
2944
|
+
|
2945
|
+
|
2946
|
+
def _deserialize(self, params):
|
2947
|
+
self._Name = params.get("Name")
|
2948
|
+
self._Value = params.get("Value")
|
2949
|
+
memeber_set = set(params.keys())
|
2950
|
+
for name, value in vars(self).items():
|
2951
|
+
property_name = name[1:]
|
2952
|
+
if property_name in memeber_set:
|
2953
|
+
memeber_set.remove(property_name)
|
2954
|
+
if len(memeber_set) > 0:
|
2955
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2956
|
+
|
2957
|
+
|
2958
|
+
|
2736
2959
|
class ConsumerContent(AbstractModel):
|
2737
2960
|
"""投递任务出入参 Content
|
2738
2961
|
|
@@ -4634,6 +4857,90 @@ class CreateConfigResponse(AbstractModel):
|
|
4634
4857
|
self._RequestId = params.get("RequestId")
|
4635
4858
|
|
4636
4859
|
|
4860
|
+
class CreateConsoleSharingRequest(AbstractModel):
|
4861
|
+
"""CreateConsoleSharing请求参数结构体
|
4862
|
+
|
4863
|
+
"""
|
4864
|
+
|
4865
|
+
def __init__(self):
|
4866
|
+
r"""
|
4867
|
+
:param _SharingConfig: 免密分享配置
|
4868
|
+
:type SharingConfig: :class:`tencentcloud.cls.v20201016.models.ConsoleSharingConfig`
|
4869
|
+
"""
|
4870
|
+
self._SharingConfig = None
|
4871
|
+
|
4872
|
+
@property
|
4873
|
+
def SharingConfig(self):
|
4874
|
+
return self._SharingConfig
|
4875
|
+
|
4876
|
+
@SharingConfig.setter
|
4877
|
+
def SharingConfig(self, SharingConfig):
|
4878
|
+
self._SharingConfig = SharingConfig
|
4879
|
+
|
4880
|
+
|
4881
|
+
def _deserialize(self, params):
|
4882
|
+
if params.get("SharingConfig") is not None:
|
4883
|
+
self._SharingConfig = ConsoleSharingConfig()
|
4884
|
+
self._SharingConfig._deserialize(params.get("SharingConfig"))
|
4885
|
+
memeber_set = set(params.keys())
|
4886
|
+
for name, value in vars(self).items():
|
4887
|
+
property_name = name[1:]
|
4888
|
+
if property_name in memeber_set:
|
4889
|
+
memeber_set.remove(property_name)
|
4890
|
+
if len(memeber_set) > 0:
|
4891
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4892
|
+
|
4893
|
+
|
4894
|
+
|
4895
|
+
class CreateConsoleSharingResponse(AbstractModel):
|
4896
|
+
"""CreateConsoleSharing返回参数结构体
|
4897
|
+
|
4898
|
+
"""
|
4899
|
+
|
4900
|
+
def __init__(self):
|
4901
|
+
r"""
|
4902
|
+
:param _SharingUrl: 免密分享链接
|
4903
|
+
:type SharingUrl: str
|
4904
|
+
:param _SharingId: 免密分享链接ID
|
4905
|
+
:type SharingId: str
|
4906
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4907
|
+
:type RequestId: str
|
4908
|
+
"""
|
4909
|
+
self._SharingUrl = None
|
4910
|
+
self._SharingId = None
|
4911
|
+
self._RequestId = None
|
4912
|
+
|
4913
|
+
@property
|
4914
|
+
def SharingUrl(self):
|
4915
|
+
return self._SharingUrl
|
4916
|
+
|
4917
|
+
@SharingUrl.setter
|
4918
|
+
def SharingUrl(self, SharingUrl):
|
4919
|
+
self._SharingUrl = SharingUrl
|
4920
|
+
|
4921
|
+
@property
|
4922
|
+
def SharingId(self):
|
4923
|
+
return self._SharingId
|
4924
|
+
|
4925
|
+
@SharingId.setter
|
4926
|
+
def SharingId(self, SharingId):
|
4927
|
+
self._SharingId = SharingId
|
4928
|
+
|
4929
|
+
@property
|
4930
|
+
def RequestId(self):
|
4931
|
+
return self._RequestId
|
4932
|
+
|
4933
|
+
@RequestId.setter
|
4934
|
+
def RequestId(self, RequestId):
|
4935
|
+
self._RequestId = RequestId
|
4936
|
+
|
4937
|
+
|
4938
|
+
def _deserialize(self, params):
|
4939
|
+
self._SharingUrl = params.get("SharingUrl")
|
4940
|
+
self._SharingId = params.get("SharingId")
|
4941
|
+
self._RequestId = params.get("RequestId")
|
4942
|
+
|
4943
|
+
|
4637
4944
|
class CreateConsumerRequest(AbstractModel):
|
4638
4945
|
"""CreateConsumer请求参数结构体
|
4639
4946
|
|
@@ -7847,6 +8154,64 @@ class DeleteConfigResponse(AbstractModel):
|
|
7847
8154
|
self._RequestId = params.get("RequestId")
|
7848
8155
|
|
7849
8156
|
|
8157
|
+
class DeleteConsoleSharingRequest(AbstractModel):
|
8158
|
+
"""DeleteConsoleSharing请求参数结构体
|
8159
|
+
|
8160
|
+
"""
|
8161
|
+
|
8162
|
+
def __init__(self):
|
8163
|
+
r"""
|
8164
|
+
:param _SharingId: 免密分享Id
|
8165
|
+
:type SharingId: str
|
8166
|
+
"""
|
8167
|
+
self._SharingId = None
|
8168
|
+
|
8169
|
+
@property
|
8170
|
+
def SharingId(self):
|
8171
|
+
return self._SharingId
|
8172
|
+
|
8173
|
+
@SharingId.setter
|
8174
|
+
def SharingId(self, SharingId):
|
8175
|
+
self._SharingId = SharingId
|
8176
|
+
|
8177
|
+
|
8178
|
+
def _deserialize(self, params):
|
8179
|
+
self._SharingId = params.get("SharingId")
|
8180
|
+
memeber_set = set(params.keys())
|
8181
|
+
for name, value in vars(self).items():
|
8182
|
+
property_name = name[1:]
|
8183
|
+
if property_name in memeber_set:
|
8184
|
+
memeber_set.remove(property_name)
|
8185
|
+
if len(memeber_set) > 0:
|
8186
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8187
|
+
|
8188
|
+
|
8189
|
+
|
8190
|
+
class DeleteConsoleSharingResponse(AbstractModel):
|
8191
|
+
"""DeleteConsoleSharing返回参数结构体
|
8192
|
+
|
8193
|
+
"""
|
8194
|
+
|
8195
|
+
def __init__(self):
|
8196
|
+
r"""
|
8197
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8198
|
+
:type RequestId: str
|
8199
|
+
"""
|
8200
|
+
self._RequestId = None
|
8201
|
+
|
8202
|
+
@property
|
8203
|
+
def RequestId(self):
|
8204
|
+
return self._RequestId
|
8205
|
+
|
8206
|
+
@RequestId.setter
|
8207
|
+
def RequestId(self, RequestId):
|
8208
|
+
self._RequestId = RequestId
|
8209
|
+
|
8210
|
+
|
8211
|
+
def _deserialize(self, params):
|
8212
|
+
self._RequestId = params.get("RequestId")
|
8213
|
+
|
8214
|
+
|
7850
8215
|
class DeleteConsumerRequest(AbstractModel):
|
7851
8216
|
"""DeleteConsumer请求参数结构体
|
7852
8217
|
|
@@ -9449,6 +9814,49 @@ class DescribeConfigsResponse(AbstractModel):
|
|
9449
9814
|
self._RequestId = params.get("RequestId")
|
9450
9815
|
|
9451
9816
|
|
9817
|
+
class DescribeConsoleSharingListRequest(AbstractModel):
|
9818
|
+
"""DescribeConsoleSharingList请求参数结构体
|
9819
|
+
|
9820
|
+
"""
|
9821
|
+
|
9822
|
+
|
9823
|
+
class DescribeConsoleSharingListResponse(AbstractModel):
|
9824
|
+
"""DescribeConsoleSharingList返回参数结构体
|
9825
|
+
|
9826
|
+
"""
|
9827
|
+
|
9828
|
+
def __init__(self):
|
9829
|
+
r"""
|
9830
|
+
:param _TotalCount: 分页的总数目
|
9831
|
+
:type TotalCount: int
|
9832
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9833
|
+
:type RequestId: str
|
9834
|
+
"""
|
9835
|
+
self._TotalCount = None
|
9836
|
+
self._RequestId = None
|
9837
|
+
|
9838
|
+
@property
|
9839
|
+
def TotalCount(self):
|
9840
|
+
return self._TotalCount
|
9841
|
+
|
9842
|
+
@TotalCount.setter
|
9843
|
+
def TotalCount(self, TotalCount):
|
9844
|
+
self._TotalCount = TotalCount
|
9845
|
+
|
9846
|
+
@property
|
9847
|
+
def RequestId(self):
|
9848
|
+
return self._RequestId
|
9849
|
+
|
9850
|
+
@RequestId.setter
|
9851
|
+
def RequestId(self, RequestId):
|
9852
|
+
self._RequestId = RequestId
|
9853
|
+
|
9854
|
+
|
9855
|
+
def _deserialize(self, params):
|
9856
|
+
self._TotalCount = params.get("TotalCount")
|
9857
|
+
self._RequestId = params.get("RequestId")
|
9858
|
+
|
9859
|
+
|
9452
9860
|
class DescribeConsumerRequest(AbstractModel):
|
9453
9861
|
"""DescribeConsumer请求参数结构体
|
9454
9862
|
|
@@ -16222,6 +16630,76 @@ class ModifyConfigResponse(AbstractModel):
|
|
16222
16630
|
self._RequestId = params.get("RequestId")
|
16223
16631
|
|
16224
16632
|
|
16633
|
+
class ModifyConsoleSharingRequest(AbstractModel):
|
16634
|
+
"""ModifyConsoleSharing请求参数结构体
|
16635
|
+
|
16636
|
+
"""
|
16637
|
+
|
16638
|
+
def __init__(self):
|
16639
|
+
r"""
|
16640
|
+
:param _SharingId: 免密分享链接Id
|
16641
|
+
:type SharingId: str
|
16642
|
+
:param _DurationMilliseconds: 指定分享链接有效期,单位:毫秒,最长可设定有效期为30天
|
16643
|
+
:type DurationMilliseconds: int
|
16644
|
+
"""
|
16645
|
+
self._SharingId = None
|
16646
|
+
self._DurationMilliseconds = None
|
16647
|
+
|
16648
|
+
@property
|
16649
|
+
def SharingId(self):
|
16650
|
+
return self._SharingId
|
16651
|
+
|
16652
|
+
@SharingId.setter
|
16653
|
+
def SharingId(self, SharingId):
|
16654
|
+
self._SharingId = SharingId
|
16655
|
+
|
16656
|
+
@property
|
16657
|
+
def DurationMilliseconds(self):
|
16658
|
+
return self._DurationMilliseconds
|
16659
|
+
|
16660
|
+
@DurationMilliseconds.setter
|
16661
|
+
def DurationMilliseconds(self, DurationMilliseconds):
|
16662
|
+
self._DurationMilliseconds = DurationMilliseconds
|
16663
|
+
|
16664
|
+
|
16665
|
+
def _deserialize(self, params):
|
16666
|
+
self._SharingId = params.get("SharingId")
|
16667
|
+
self._DurationMilliseconds = params.get("DurationMilliseconds")
|
16668
|
+
memeber_set = set(params.keys())
|
16669
|
+
for name, value in vars(self).items():
|
16670
|
+
property_name = name[1:]
|
16671
|
+
if property_name in memeber_set:
|
16672
|
+
memeber_set.remove(property_name)
|
16673
|
+
if len(memeber_set) > 0:
|
16674
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16675
|
+
|
16676
|
+
|
16677
|
+
|
16678
|
+
class ModifyConsoleSharingResponse(AbstractModel):
|
16679
|
+
"""ModifyConsoleSharing返回参数结构体
|
16680
|
+
|
16681
|
+
"""
|
16682
|
+
|
16683
|
+
def __init__(self):
|
16684
|
+
r"""
|
16685
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16686
|
+
:type RequestId: str
|
16687
|
+
"""
|
16688
|
+
self._RequestId = None
|
16689
|
+
|
16690
|
+
@property
|
16691
|
+
def RequestId(self):
|
16692
|
+
return self._RequestId
|
16693
|
+
|
16694
|
+
@RequestId.setter
|
16695
|
+
def RequestId(self, RequestId):
|
16696
|
+
self._RequestId = RequestId
|
16697
|
+
|
16698
|
+
|
16699
|
+
def _deserialize(self, params):
|
16700
|
+
self._RequestId = params.get("RequestId")
|
16701
|
+
|
16702
|
+
|
16225
16703
|
class ModifyConsumerRequest(AbstractModel):
|
16226
16704
|
"""ModifyConsumer请求参数结构体
|
16227
16705
|
|
@@ -7016,7 +7016,7 @@ class ChannelDescribeOrganizationSealsRequest(AbstractModel):
|
|
7016
7016
|
|
7017
7017
|
注: `没有输入返回所有记录,最大返回100条。`
|
7018
7018
|
:type SealId: str
|
7019
|
-
:param _SealTypes: 电子印章类型 , 可选类型如下: <ul><li>**OFFICIAL**: 公章</li><li>**CONTRACT**: 合同专用章;</li><li>**FINANCE**: 财务专用章;</li><li>**PERSONNEL**: 人事专用章</li><li>**INVOICE**: 发票专用章</li><li>**EMPLOYEE_QUALIFICATION_SEAL**: 员工执业章</li></ul>注:
|
7019
|
+
:param _SealTypes: 电子印章类型 , 可选类型如下: <ul><li>**OFFICIAL**: 公章</li><li>**CONTRACT**: 合同专用章;</li><li>**FINANCE**: 财务专用章;</li><li>**PERSONNEL**: 人事专用章</li><li>**INVOICE**: 发票专用章</li><li>**LEGAL_PERSON_SEAL**: 法定代表人章;</li><li>**EMPLOYEE_QUALIFICATION_SEAL**: 员工执业章</li></ul>注: `1.为空时查询所有类型的印章。`
|
7020
7020
|
:type SealTypes: list of str
|
7021
7021
|
:param _SealStatuses:
|
7022
7022
|
需查询的印章状态列表。
|