tencentcloud-sdk-mrs 3.0.467 → 3.0.468
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200910/models.rb +24 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac42b38f92cdec64fde84a94918809fc4d07068e
|
4
|
+
data.tar.gz: 1870556fe554c304b3f7edd1e6b6847ebd89a393
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46afec2dc5209f24bd6d7da432b6ebeb2a6ad657ebf583450fdd0dfbacca6788b751499711962d2b69cf1211d71e45dfe2bf709f4a851f612c5699149fcc0064
|
7
|
+
data.tar.gz: 2edfbdd3982998712b8f774484a5b003b177e77a6b72e05c4e08166e394310b2b76a56d319141c50cdbc8ee2665f6a84d8cdbf131c2b7eb98ace371c67f016cd
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.468
|
data/lib/v20200910/models.rb
CHANGED
@@ -1072,13 +1072,16 @@ module TencentCloud
|
|
1072
1072
|
# @type HandleParam: :class:`Tencentcloud::Mrs.v20200910.models.HandleParam`
|
1073
1073
|
# @param Type: 不填,默认为0
|
1074
1074
|
# @type Type: Integer
|
1075
|
+
# @param UserType: 用户类型,新客户传1,老客户可不传
|
1076
|
+
# @type UserType: Integer
|
1075
1077
|
|
1076
|
-
attr_accessor :ImageInfoList, :HandleParam, :Type
|
1078
|
+
attr_accessor :ImageInfoList, :HandleParam, :Type, :UserType
|
1077
1079
|
|
1078
|
-
def initialize(imageinfolist=nil, handleparam=nil, type=nil)
|
1080
|
+
def initialize(imageinfolist=nil, handleparam=nil, type=nil, usertype=nil)
|
1079
1081
|
@ImageInfoList = imageinfolist
|
1080
1082
|
@HandleParam = handleparam
|
1081
1083
|
@Type = type
|
1084
|
+
@UserType = usertype
|
1082
1085
|
end
|
1083
1086
|
|
1084
1087
|
def deserialize(params)
|
@@ -1095,6 +1098,7 @@ module TencentCloud
|
|
1095
1098
|
@HandleParam.deserialize(params['HandleParam'])
|
1096
1099
|
end
|
1097
1100
|
@Type = params['Type']
|
1101
|
+
@UserType = params['UserType']
|
1098
1102
|
end
|
1099
1103
|
end
|
1100
1104
|
|
@@ -1137,14 +1141,17 @@ module TencentCloud
|
|
1137
1141
|
# @param IsUsedClassify: 是否使用分类引擎,当不确定报告类型时,可以使用收费的报告分类引擎服务。若该字段为 False,则 Type 字段不能为 0,否则无法输出结果。
|
1138
1142
|
# 注意:当 IsUsedClassify 为True 时,表示使用收费的报告分类服务,将会产生额外的费用,具体收费标准参见 [购买指南的产品价格](https://cloud.tencent.com/document/product/1314/54264)。
|
1139
1143
|
# @type IsUsedClassify: Boolean
|
1144
|
+
# @param UserType: 用户类型,新客户传1,老客户可不传
|
1145
|
+
# @type UserType: Integer
|
1140
1146
|
|
1141
|
-
attr_accessor :ImageInfoList, :HandleParam, :Type, :IsUsedClassify
|
1147
|
+
attr_accessor :ImageInfoList, :HandleParam, :Type, :IsUsedClassify, :UserType
|
1142
1148
|
|
1143
|
-
def initialize(imageinfolist=nil, handleparam=nil, type=nil, isusedclassify=nil)
|
1149
|
+
def initialize(imageinfolist=nil, handleparam=nil, type=nil, isusedclassify=nil, usertype=nil)
|
1144
1150
|
@ImageInfoList = imageinfolist
|
1145
1151
|
@HandleParam = handleparam
|
1146
1152
|
@Type = type
|
1147
1153
|
@IsUsedClassify = isusedclassify
|
1154
|
+
@UserType = usertype
|
1148
1155
|
end
|
1149
1156
|
|
1150
1157
|
def deserialize(params)
|
@@ -1162,6 +1169,7 @@ module TencentCloud
|
|
1162
1169
|
end
|
1163
1170
|
@Type = params['Type']
|
1164
1171
|
@IsUsedClassify = params['IsUsedClassify']
|
1172
|
+
@UserType = params['UserType']
|
1165
1173
|
end
|
1166
1174
|
end
|
1167
1175
|
|
@@ -2778,15 +2786,19 @@ module TencentCloud
|
|
2778
2786
|
class TextToClassRequest < TencentCloud::Common::AbstractModel
|
2779
2787
|
# @param Text: 报告文本
|
2780
2788
|
# @type Text: String
|
2789
|
+
# @param UserType: 用户类型,新客户传1,老客户可不传
|
2790
|
+
# @type UserType: Integer
|
2781
2791
|
|
2782
|
-
attr_accessor :Text
|
2792
|
+
attr_accessor :Text, :UserType
|
2783
2793
|
|
2784
|
-
def initialize(text=nil)
|
2794
|
+
def initialize(text=nil, usertype=nil)
|
2785
2795
|
@Text = text
|
2796
|
+
@UserType = usertype
|
2786
2797
|
end
|
2787
2798
|
|
2788
2799
|
def deserialize(params)
|
2789
2800
|
@Text = params['Text']
|
2801
|
+
@UserType = params['UserType']
|
2790
2802
|
end
|
2791
2803
|
end
|
2792
2804
|
|
@@ -2826,19 +2838,23 @@ module TencentCloud
|
|
2826
2838
|
# @param IsUsedClassify: 是否使用分类引擎,当不确定报告类型时,可以使用收费的报告分类引擎服务。若该字段为False,则Type字段不能为0,否则无法输出结果。
|
2827
2839
|
# 注意:当 IsUsedClassify 为True 时,表示使用收费的报告分类服务,将会产生额外的费用,具体收费标准参见 [购买指南的产品价格](https://cloud.tencent.com/document/product/1314/54264)。
|
2828
2840
|
# @type IsUsedClassify: Boolean
|
2841
|
+
# @param UserType: 用户类型,新客户传1,老客户可不传
|
2842
|
+
# @type UserType: Integer
|
2829
2843
|
|
2830
|
-
attr_accessor :Text, :Type, :IsUsedClassify
|
2844
|
+
attr_accessor :Text, :Type, :IsUsedClassify, :UserType
|
2831
2845
|
|
2832
|
-
def initialize(text=nil, type=nil, isusedclassify=nil)
|
2846
|
+
def initialize(text=nil, type=nil, isusedclassify=nil, usertype=nil)
|
2833
2847
|
@Text = text
|
2834
2848
|
@Type = type
|
2835
2849
|
@IsUsedClassify = isusedclassify
|
2850
|
+
@UserType = usertype
|
2836
2851
|
end
|
2837
2852
|
|
2838
2853
|
def deserialize(params)
|
2839
2854
|
@Text = params['Text']
|
2840
2855
|
@Type = params['Type']
|
2841
2856
|
@IsUsedClassify = params['IsUsedClassify']
|
2857
|
+
@UserType = params['UserType']
|
2842
2858
|
end
|
2843
2859
|
end
|
2844
2860
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mrs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.468
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|