tencentcloud-sdk-python 3.0.1206__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/autoscaling/v20180419/errorcodes.py +6 -0
- tencentcloud/autoscaling/v20180419/models.py +67 -20
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +478 -0
- tencentcloud/dlc/v20210125/models.py +24 -0
- tencentcloud/es/v20180416/models.py +37 -0
- tencentcloud/essbasic/v20210526/models.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +4 -4
- tencentcloud/iotexplorer/v20190423/models.py +49 -0
- tencentcloud/organization/v20210331/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/models.py +484 -0
- tencentcloud/organization/v20210331/organization_client.py +69 -0
- tencentcloud/sms/v20210111/models.py +1 -2
- tencentcloud/ssl/v20191205/models.py +36 -0
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/tcss/v20201101/models.py +140 -5
- tencentcloud/trocket/v20230308/models.py +106 -0
- tencentcloud/trocket/v20230308/trocket_client.py +23 -0
- tencentcloud/trtc/v20190722/errorcodes.py +3 -0
- tencentcloud/trtc/v20190722/models.py +102 -27
- tencentcloud/trtc/v20190722/trtc_client.py +3 -1
- tencentcloud/vclm/v20240523/errorcodes.py +30 -0
- tencentcloud/wedata/v20210820/models.py +14 -2
- {tencentcloud_sdk_python-3.0.1206.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1206.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/RECORD +30 -30
- {tencentcloud_sdk_python-3.0.1206.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1206.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1206.dist-info → tencentcloud_sdk_python-3.0.1208.dist-info}/top_level.txt +0 -0
@@ -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
|
|
@@ -26819,9 +26819,15 @@ class UpdateDataEngineConfigRequest(AbstractModel):
|
|
26819
26819
|
:type DataEngineIds: list of str
|
26820
26820
|
:param _DataEngineConfigCommand: 引擎配置命令,支持UpdateSparkSQLLakefsPath(更新原生表配置)、UpdateSparkSQLResultPath(更新结果路径配置)
|
26821
26821
|
:type DataEngineConfigCommand: str
|
26822
|
+
:param _UseLakeFs: 是否使用lakefs作为结果存储
|
26823
|
+
:type UseLakeFs: bool
|
26824
|
+
:param _CustomResultPath: 用户自定义结果路径
|
26825
|
+
:type CustomResultPath: str
|
26822
26826
|
"""
|
26823
26827
|
self._DataEngineIds = None
|
26824
26828
|
self._DataEngineConfigCommand = None
|
26829
|
+
self._UseLakeFs = None
|
26830
|
+
self._CustomResultPath = None
|
26825
26831
|
|
26826
26832
|
@property
|
26827
26833
|
def DataEngineIds(self):
|
@@ -26839,10 +26845,28 @@ class UpdateDataEngineConfigRequest(AbstractModel):
|
|
26839
26845
|
def DataEngineConfigCommand(self, DataEngineConfigCommand):
|
26840
26846
|
self._DataEngineConfigCommand = DataEngineConfigCommand
|
26841
26847
|
|
26848
|
+
@property
|
26849
|
+
def UseLakeFs(self):
|
26850
|
+
return self._UseLakeFs
|
26851
|
+
|
26852
|
+
@UseLakeFs.setter
|
26853
|
+
def UseLakeFs(self, UseLakeFs):
|
26854
|
+
self._UseLakeFs = UseLakeFs
|
26855
|
+
|
26856
|
+
@property
|
26857
|
+
def CustomResultPath(self):
|
26858
|
+
return self._CustomResultPath
|
26859
|
+
|
26860
|
+
@CustomResultPath.setter
|
26861
|
+
def CustomResultPath(self, CustomResultPath):
|
26862
|
+
self._CustomResultPath = CustomResultPath
|
26863
|
+
|
26842
26864
|
|
26843
26865
|
def _deserialize(self, params):
|
26844
26866
|
self._DataEngineIds = params.get("DataEngineIds")
|
26845
26867
|
self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
|
26868
|
+
self._UseLakeFs = params.get("UseLakeFs")
|
26869
|
+
self._CustomResultPath = params.get("CustomResultPath")
|
26846
26870
|
memeber_set = set(params.keys())
|
26847
26871
|
for name, value in vars(self).items():
|
26848
26872
|
property_name = name[1:]
|
@@ -1118,6 +1118,8 @@ class CreateInstanceRequest(AbstractModel):
|
|
1118
1118
|
:type CdcId: str
|
1119
1119
|
:param _DisasterRecoverGroupAffinity: 置放群组亲和度,范围[0,10],0表示不开启
|
1120
1120
|
:type DisasterRecoverGroupAffinity: int
|
1121
|
+
:param _SubProductCode: 子产品ID枚举值: 开源版:"sp_es_io2", 基础版:"sp_es_basic",白金版:"sp_es_platinum",企业版:"sp_es_enterprise",CDC白金版:"sp_es_cdc_platinum",日志增强版:"sp_es_enlogging",tsearch:"sp_tsearch_io2",logstash:"sp_es_logstash" ,可以为空,为空的时候后台取LicenseType映射该字段
|
1122
|
+
:type SubProductCode: str
|
1121
1123
|
"""
|
1122
1124
|
self._Zone = None
|
1123
1125
|
self._EsVersion = None
|
@@ -1155,6 +1157,7 @@ class CreateInstanceRequest(AbstractModel):
|
|
1155
1157
|
self._EnableDiagnose = None
|
1156
1158
|
self._CdcId = None
|
1157
1159
|
self._DisasterRecoverGroupAffinity = None
|
1160
|
+
self._SubProductCode = None
|
1158
1161
|
|
1159
1162
|
@property
|
1160
1163
|
def Zone(self):
|
@@ -1444,6 +1447,14 @@ class CreateInstanceRequest(AbstractModel):
|
|
1444
1447
|
def DisasterRecoverGroupAffinity(self, DisasterRecoverGroupAffinity):
|
1445
1448
|
self._DisasterRecoverGroupAffinity = DisasterRecoverGroupAffinity
|
1446
1449
|
|
1450
|
+
@property
|
1451
|
+
def SubProductCode(self):
|
1452
|
+
return self._SubProductCode
|
1453
|
+
|
1454
|
+
@SubProductCode.setter
|
1455
|
+
def SubProductCode(self, SubProductCode):
|
1456
|
+
self._SubProductCode = SubProductCode
|
1457
|
+
|
1447
1458
|
|
1448
1459
|
def _deserialize(self, params):
|
1449
1460
|
self._Zone = params.get("Zone")
|
@@ -1501,6 +1512,7 @@ class CreateInstanceRequest(AbstractModel):
|
|
1501
1512
|
self._EnableDiagnose = params.get("EnableDiagnose")
|
1502
1513
|
self._CdcId = params.get("CdcId")
|
1503
1514
|
self._DisasterRecoverGroupAffinity = params.get("DisasterRecoverGroupAffinity")
|
1515
|
+
self._SubProductCode = params.get("SubProductCode")
|
1504
1516
|
memeber_set = set(params.keys())
|
1505
1517
|
for name, value in vars(self).items():
|
1506
1518
|
property_name = name[1:]
|
@@ -3690,6 +3702,8 @@ class DescribeInstancesRequest(AbstractModel):
|
|
3690
3702
|
:type HealthStatus: list of int
|
3691
3703
|
:param _VpcIds: Vpc列表 筛选项
|
3692
3704
|
:type VpcIds: list of str
|
3705
|
+
:param _CdcId: cdc集群id
|
3706
|
+
:type CdcId: str
|
3693
3707
|
"""
|
3694
3708
|
self._Zone = None
|
3695
3709
|
self._InstanceIds = None
|
@@ -3703,6 +3717,7 @@ class DescribeInstancesRequest(AbstractModel):
|
|
3703
3717
|
self._ZoneList = None
|
3704
3718
|
self._HealthStatus = None
|
3705
3719
|
self._VpcIds = None
|
3720
|
+
self._CdcId = None
|
3706
3721
|
|
3707
3722
|
@property
|
3708
3723
|
def Zone(self):
|
@@ -3800,6 +3815,14 @@ class DescribeInstancesRequest(AbstractModel):
|
|
3800
3815
|
def VpcIds(self, VpcIds):
|
3801
3816
|
self._VpcIds = VpcIds
|
3802
3817
|
|
3818
|
+
@property
|
3819
|
+
def CdcId(self):
|
3820
|
+
return self._CdcId
|
3821
|
+
|
3822
|
+
@CdcId.setter
|
3823
|
+
def CdcId(self, CdcId):
|
3824
|
+
self._CdcId = CdcId
|
3825
|
+
|
3803
3826
|
|
3804
3827
|
def _deserialize(self, params):
|
3805
3828
|
self._Zone = params.get("Zone")
|
@@ -3819,6 +3842,7 @@ class DescribeInstancesRequest(AbstractModel):
|
|
3819
3842
|
self._ZoneList = params.get("ZoneList")
|
3820
3843
|
self._HealthStatus = params.get("HealthStatus")
|
3821
3844
|
self._VpcIds = params.get("VpcIds")
|
3845
|
+
self._CdcId = params.get("CdcId")
|
3822
3846
|
memeber_set = set(params.keys())
|
3823
3847
|
for name, value in vars(self).items():
|
3824
3848
|
property_name = name[1:]
|
@@ -7847,6 +7871,9 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
7847
7871
|
:param _DisasterRecoverGroupAffinity: 置放群组相关参数
|
7848
7872
|
注意:此字段可能返回 null,表示取不到有效值。
|
7849
7873
|
:type DisasterRecoverGroupAffinity: int
|
7874
|
+
:param _SubProductCode: 子产品ID枚举值: 开源版:"sp_es_io2", 基础版:"sp_es_basic",白金版:"sp_es_platinum",企业版:"sp_es_enterprise",CDC白金版:"sp_es_cdc_platinum",日志增强版:"sp_es_enlogging",tsearch:"sp_tsearch_io2",logstash:"sp_es_logstash" ,可以为空,为空的时候后台取LicenseType映射该字段
|
7875
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7876
|
+
:type SubProductCode: str
|
7850
7877
|
"""
|
7851
7878
|
self._InstanceId = None
|
7852
7879
|
self._InstanceName = None
|
@@ -7936,6 +7963,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
7936
7963
|
self._OutboundPublicAcls = None
|
7937
7964
|
self._NetConnectScheme = None
|
7938
7965
|
self._DisasterRecoverGroupAffinity = None
|
7966
|
+
self._SubProductCode = None
|
7939
7967
|
|
7940
7968
|
@property
|
7941
7969
|
def InstanceId(self):
|
@@ -8641,6 +8669,14 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
8641
8669
|
def DisasterRecoverGroupAffinity(self, DisasterRecoverGroupAffinity):
|
8642
8670
|
self._DisasterRecoverGroupAffinity = DisasterRecoverGroupAffinity
|
8643
8671
|
|
8672
|
+
@property
|
8673
|
+
def SubProductCode(self):
|
8674
|
+
return self._SubProductCode
|
8675
|
+
|
8676
|
+
@SubProductCode.setter
|
8677
|
+
def SubProductCode(self, SubProductCode):
|
8678
|
+
self._SubProductCode = SubProductCode
|
8679
|
+
|
8644
8680
|
|
8645
8681
|
def _deserialize(self, params):
|
8646
8682
|
self._InstanceId = params.get("InstanceId")
|
@@ -8777,6 +8813,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
8777
8813
|
self._OutboundPublicAcls.append(obj)
|
8778
8814
|
self._NetConnectScheme = params.get("NetConnectScheme")
|
8779
8815
|
self._DisasterRecoverGroupAffinity = params.get("DisasterRecoverGroupAffinity")
|
8816
|
+
self._SubProductCode = params.get("SubProductCode")
|
8780
8817
|
memeber_set = set(params.keys())
|
8781
8818
|
for name, value in vars(self).items():
|
8782
8819
|
property_name = name[1:]
|
@@ -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
|
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
|
需查询的印章状态列表。
|
@@ -119,12 +119,12 @@ class ChatCompletionsRequest(AbstractModel):
|
|
119
119
|
当选择流式输出审核时,可能会出现部分内容已输出,但中间某一段响应中的 FinishReason 值为 sensitive,此时说明安全审核未通过。如果业务场景有实时文字上屏的需求,需要自行撤回已上屏的内容,并建议自定义替换为一条提示语,如 “这个问题我不方便回答,不如我们换个话题试试”,以保障终端体验。
|
120
120
|
:type StreamModeration: bool
|
121
121
|
:param _TopP: 说明:
|
122
|
-
1.
|
123
|
-
2.
|
122
|
+
1. 影响输出文本的多样性。模型已有默认参数,不传值时使用各模型推荐值,不推荐用户修改。
|
123
|
+
2. 取值区间为 [0.0, 1.0]。取值越大,生成文本的多样性越强。
|
124
124
|
:type TopP: float
|
125
125
|
:param _Temperature: 说明:
|
126
|
-
1.
|
127
|
-
2.
|
126
|
+
1. 影响模型输出多样性,模型已有默认参数,不传值时使用各模型推荐值,不推荐用户修改。
|
127
|
+
2. 取值区间为 [0.0, 2.0]。较高的数值会使输出更加多样化和不可预测,而较低的数值会使其更加集中和确定。
|
128
128
|
:type Temperature: float
|
129
129
|
:param _EnableEnhancement: 功能增强(如搜索)开关。
|
130
130
|
说明:
|