tencentcloud-sdk-mps 1.0.308 → 1.0.309
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190612/models.rb +51 -12
- 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: 15383d087cf38527a84c55b2df51e9c8333fffa7
|
|
4
|
+
data.tar.gz: fe18ab8a3615ccf97e7a4696d4fe20a0bda890c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f477f8ad054dd3f290a5c02b4442e2ac78cc4c7bb82671cfecc932792dc780f1b043efb4766e9760f3ef1accaed9eae9ea51b4dd90f4f527e92e8b91ba491d41
|
|
7
|
+
data.tar.gz: 1cb09af447e3573bc6c8307daa078d1340934f10c08edabd9b0424a55c57279b603dfa2f3a39358cafda2a2b300cc7c1657641e37e7c2606f0619039d46204e4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.309
|
data/lib/v20190612/models.rb
CHANGED
|
@@ -41,10 +41,15 @@ module TencentCloud
|
|
|
41
41
|
# @type CreateTime: String
|
|
42
42
|
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
43
43
|
# @type UpdateTime: String
|
|
44
|
+
# @param Type: 模板类型,取值范围:
|
|
45
|
+
# * Preset:系统预置模板;
|
|
46
|
+
# * Custom:用户自定义模板。
|
|
47
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
48
|
+
# @type Type: String
|
|
44
49
|
|
|
45
|
-
attr_accessor :Definition, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure, :CreateTime, :UpdateTime
|
|
50
|
+
attr_accessor :Definition, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure, :CreateTime, :UpdateTime, :Type
|
|
46
51
|
|
|
47
|
-
def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil, createtime=nil, updatetime=nil)
|
|
52
|
+
def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil, createtime=nil, updatetime=nil, type=nil)
|
|
48
53
|
@Definition = definition
|
|
49
54
|
@Name = name
|
|
50
55
|
@Comment = comment
|
|
@@ -54,6 +59,7 @@ module TencentCloud
|
|
|
54
59
|
@FrameTagConfigure = frametagconfigure
|
|
55
60
|
@CreateTime = createtime
|
|
56
61
|
@UpdateTime = updatetime
|
|
62
|
+
@Type = type
|
|
57
63
|
end
|
|
58
64
|
|
|
59
65
|
def deserialize(params)
|
|
@@ -78,6 +84,7 @@ module TencentCloud
|
|
|
78
84
|
end
|
|
79
85
|
@CreateTime = params['CreateTime']
|
|
80
86
|
@UpdateTime = params['UpdateTime']
|
|
87
|
+
@Type = params['Type']
|
|
81
88
|
end
|
|
82
89
|
end
|
|
83
90
|
|
|
@@ -103,10 +110,15 @@ module TencentCloud
|
|
|
103
110
|
# @type CreateTime: String
|
|
104
111
|
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
105
112
|
# @type UpdateTime: String
|
|
113
|
+
# @param Type: 模板类型,取值范围:
|
|
114
|
+
# * Preset:系统预置模板;
|
|
115
|
+
# * Custom:用户自定义模板。
|
|
116
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
117
|
+
# @type Type: String
|
|
106
118
|
|
|
107
|
-
attr_accessor :Definition, :Name, :Comment, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :CreateTime, :UpdateTime
|
|
119
|
+
attr_accessor :Definition, :Name, :Comment, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :CreateTime, :UpdateTime, :Type
|
|
108
120
|
|
|
109
|
-
def initialize(definition=nil, name=nil, comment=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, createtime=nil, updatetime=nil)
|
|
121
|
+
def initialize(definition=nil, name=nil, comment=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, createtime=nil, updatetime=nil, type=nil)
|
|
110
122
|
@Definition = definition
|
|
111
123
|
@Name = name
|
|
112
124
|
@Comment = comment
|
|
@@ -117,6 +129,7 @@ module TencentCloud
|
|
|
117
129
|
@AsrWordsConfigure = asrwordsconfigure
|
|
118
130
|
@CreateTime = createtime
|
|
119
131
|
@UpdateTime = updatetime
|
|
132
|
+
@Type = type
|
|
120
133
|
end
|
|
121
134
|
|
|
122
135
|
def deserialize(params)
|
|
@@ -145,6 +158,7 @@ module TencentCloud
|
|
|
145
158
|
end
|
|
146
159
|
@CreateTime = params['CreateTime']
|
|
147
160
|
@UpdateTime = params['UpdateTime']
|
|
161
|
+
@Type = params['Type']
|
|
148
162
|
end
|
|
149
163
|
end
|
|
150
164
|
|
|
@@ -3168,10 +3182,15 @@ module TencentCloud
|
|
|
3168
3182
|
# @type CreateTime: String
|
|
3169
3183
|
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
3170
3184
|
# @type UpdateTime: String
|
|
3185
|
+
# @param Type: 模板类型,取值范围:
|
|
3186
|
+
# * Preset:系统预置模板;
|
|
3187
|
+
# * Custom:用户自定义模板。
|
|
3188
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3189
|
+
# @type Type: String
|
|
3171
3190
|
|
|
3172
|
-
attr_accessor :Definition, :Name, :Comment, :PornConfigure, :TerrorismConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure, :CreateTime, :UpdateTime
|
|
3191
|
+
attr_accessor :Definition, :Name, :Comment, :PornConfigure, :TerrorismConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure, :CreateTime, :UpdateTime, :Type
|
|
3173
3192
|
|
|
3174
|
-
def initialize(definition=nil, name=nil, comment=nil, pornconfigure=nil, terrorismconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil, createtime=nil, updatetime=nil)
|
|
3193
|
+
def initialize(definition=nil, name=nil, comment=nil, pornconfigure=nil, terrorismconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil, createtime=nil, updatetime=nil, type=nil)
|
|
3175
3194
|
@Definition = definition
|
|
3176
3195
|
@Name = name
|
|
3177
3196
|
@Comment = comment
|
|
@@ -3182,6 +3201,7 @@ module TencentCloud
|
|
|
3182
3201
|
@UserDefineConfigure = userdefineconfigure
|
|
3183
3202
|
@CreateTime = createtime
|
|
3184
3203
|
@UpdateTime = updatetime
|
|
3204
|
+
@Type = type
|
|
3185
3205
|
end
|
|
3186
3206
|
|
|
3187
3207
|
def deserialize(params)
|
|
@@ -3210,6 +3230,7 @@ module TencentCloud
|
|
|
3210
3230
|
end
|
|
3211
3231
|
@CreateTime = params['CreateTime']
|
|
3212
3232
|
@UpdateTime = params['UpdateTime']
|
|
3233
|
+
@Type = params['Type']
|
|
3213
3234
|
end
|
|
3214
3235
|
end
|
|
3215
3236
|
|
|
@@ -4765,19 +4786,25 @@ module TencentCloud
|
|
|
4765
4786
|
# @type Offset: Integer
|
|
4766
4787
|
# @param Limit: 返回记录条数,默认值:10,最大值:100。
|
|
4767
4788
|
# @type Limit: Integer
|
|
4789
|
+
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
|
|
4790
|
+
# * Preset:系统预置模板;
|
|
4791
|
+
# * Custom:用户自定义模板。
|
|
4792
|
+
# @type Type: String
|
|
4768
4793
|
|
|
4769
|
-
attr_accessor :Definitions, :Offset, :Limit
|
|
4794
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type
|
|
4770
4795
|
|
|
4771
|
-
def initialize(definitions=nil, offset=nil, limit=nil)
|
|
4796
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
|
4772
4797
|
@Definitions = definitions
|
|
4773
4798
|
@Offset = offset
|
|
4774
4799
|
@Limit = limit
|
|
4800
|
+
@Type = type
|
|
4775
4801
|
end
|
|
4776
4802
|
|
|
4777
4803
|
def deserialize(params)
|
|
4778
4804
|
@Definitions = params['Definitions']
|
|
4779
4805
|
@Offset = params['Offset']
|
|
4780
4806
|
@Limit = params['Limit']
|
|
4807
|
+
@Type = params['Type']
|
|
4781
4808
|
end
|
|
4782
4809
|
end
|
|
4783
4810
|
|
|
@@ -4820,19 +4847,25 @@ module TencentCloud
|
|
|
4820
4847
|
# @type Offset: Integer
|
|
4821
4848
|
# @param Limit: 返回记录条数,默认值:10,最大值:50。
|
|
4822
4849
|
# @type Limit: Integer
|
|
4850
|
+
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
|
|
4851
|
+
# * Preset:系统预置模板;
|
|
4852
|
+
# * Custom:用户自定义模板。
|
|
4853
|
+
# @type Type: String
|
|
4823
4854
|
|
|
4824
|
-
attr_accessor :Definitions, :Offset, :Limit
|
|
4855
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type
|
|
4825
4856
|
|
|
4826
|
-
def initialize(definitions=nil, offset=nil, limit=nil)
|
|
4857
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
|
4827
4858
|
@Definitions = definitions
|
|
4828
4859
|
@Offset = offset
|
|
4829
4860
|
@Limit = limit
|
|
4861
|
+
@Type = type
|
|
4830
4862
|
end
|
|
4831
4863
|
|
|
4832
4864
|
def deserialize(params)
|
|
4833
4865
|
@Definitions = params['Definitions']
|
|
4834
4866
|
@Offset = params['Offset']
|
|
4835
4867
|
@Limit = params['Limit']
|
|
4868
|
+
@Type = params['Type']
|
|
4836
4869
|
end
|
|
4837
4870
|
end
|
|
4838
4871
|
|
|
@@ -4997,19 +5030,25 @@ module TencentCloud
|
|
|
4997
5030
|
# @type Offset: Integer
|
|
4998
5031
|
# @param Limit: 返回记录条数,默认值:10,最大值:50。
|
|
4999
5032
|
# @type Limit: Integer
|
|
5033
|
+
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
|
|
5034
|
+
# * Preset:系统预置模板;
|
|
5035
|
+
# * Custom:用户自定义模板。
|
|
5036
|
+
# @type Type: String
|
|
5000
5037
|
|
|
5001
|
-
attr_accessor :Definitions, :Offset, :Limit
|
|
5038
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type
|
|
5002
5039
|
|
|
5003
|
-
def initialize(definitions=nil, offset=nil, limit=nil)
|
|
5040
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
|
5004
5041
|
@Definitions = definitions
|
|
5005
5042
|
@Offset = offset
|
|
5006
5043
|
@Limit = limit
|
|
5044
|
+
@Type = type
|
|
5007
5045
|
end
|
|
5008
5046
|
|
|
5009
5047
|
def deserialize(params)
|
|
5010
5048
|
@Definitions = params['Definitions']
|
|
5011
5049
|
@Offset = params['Offset']
|
|
5012
5050
|
@Limit = params['Limit']
|
|
5051
|
+
@Type = params['Type']
|
|
5013
5052
|
end
|
|
5014
5053
|
end
|
|
5015
5054
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-mps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.309
|
|
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-05-
|
|
11
|
+
date: 2022-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|