tencentcloud-sdk-lowcode 1.0.252

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f12a5873bce0298cc0714996ba2bc81acd6fdc9a
4
+ data.tar.gz: 858f7f1338bad5e4965c1cb6aac127aabc7e8d39
5
+ SHA512:
6
+ metadata.gz: 937ff461a5d56babe10290057e6075b4a746f898c14f94f723c9313c422508738bdcb43b61ab8c891058abf3f6fcbf273370d8c93cd921a16fa945df66811517
7
+ data.tar.gz: e2ee5dc0545e1d3025c7086cdff8c5f1144b2e784abfc6173b5ea216f48ef526912ed74de58b57987e31bf3220314ba80f84991da4179f245f3759a676c77122
data/lib/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.252
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'tencentcloud-sdk-common'
4
+
5
+ require_relative 'v20210108/client'
6
+ require_relative 'v20210108/models'
7
+
8
+ module TencentCloud
9
+ module Lowcode
10
+ end
11
+ end
@@ -0,0 +1,60 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ require 'json'
18
+
19
+ module TencentCloud
20
+ module Lowcode
21
+ module V20210108
22
+ class Client < TencentCloud::Common::AbstractClient
23
+
24
+ def initialize(credential, region, profile = nil)
25
+ api_version = '2021-01-08'
26
+ api_endpoint = 'lowcode.tencentcloudapi.com'
27
+ sdk_version = 'LOWCODE_' + File.read(File.expand_path('../VERSION', __dir__)).strip
28
+ super(credential, region, api_version, api_endpoint, sdk_version, profile)
29
+ end
30
+
31
+
32
+ # 获取数据源详情列表
33
+
34
+ # @param request: Request instance for DescribeDataSourceList.
35
+ # @type request: :class:`Tencentcloud::lowcode::V20210108::DescribeDataSourceListRequest`
36
+ # @rtype: :class:`Tencentcloud::lowcode::V20210108::DescribeDataSourceListResponse`
37
+ def DescribeDataSourceList(request)
38
+ body = send_request('DescribeDataSourceList', request.serialize)
39
+ response = JSON.parse(body)
40
+ if response['Response'].key?('Error') == false
41
+ model = DescribeDataSourceListResponse.new
42
+ model.deserialize(response['Response'])
43
+ model
44
+ else
45
+ code = response['Response']['Error']['Code']
46
+ message = response['Response']['Error']['Message']
47
+ reqid = response['Response']['RequestId']
48
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
49
+ end
50
+ rescue TencentCloud::Common::TencentCloudSDKException => e
51
+ raise e
52
+ rescue StandardError => e
53
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
+ end
55
+
56
+
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,382 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ module TencentCloud
18
+ module Lowcode
19
+ module V20210108
20
+ # 数据源详情列表
21
+ class DataSourceDetail < TencentCloud::Common::AbstractModel
22
+ # @param Id: 数据源 ID
23
+ # @type Id: String
24
+ # @param Title: 数据源名称
25
+ # @type Title: String
26
+ # @param Name: 数据源标识
27
+ # @type Name: String
28
+ # @param Type: 数据源类型
29
+ # @type Type: String
30
+ # @param Description: 数据源描述
31
+ # @type Description: String
32
+ # @param Schema: 数据源配置
33
+ # @type Schema: String
34
+ # @param CmsProject: cms 项目状态, 0: 重新获取详情信息,1: 不需要重新获取详情信息
35
+ # @type CmsProject: String
36
+ # @param PkgId: 当前为环境 id
37
+ # 注意:此字段可能返回 null,表示取不到有效值。
38
+ # @type PkgId: String
39
+ # @param SchemaVersion: schema 版本信息
40
+ # 注意:此字段可能返回 null,表示取不到有效值。
41
+ # @type SchemaVersion: String
42
+ # @param CreatorId: 创建者用户 ID
43
+ # 注意:此字段可能返回 null,表示取不到有效值。
44
+ # @type CreatorId: String
45
+ # @param CreatedAt: 创建时间
46
+ # 注意:此字段可能返回 null,表示取不到有效值。
47
+ # @type CreatedAt: String
48
+ # @param UpdatedAt: 更新时间
49
+ # 注意:此字段可能返回 null,表示取不到有效值。
50
+ # @type UpdatedAt: String
51
+ # @param EnvId: 环境 id
52
+ # 注意:此字段可能返回 null,表示取不到有效值。
53
+ # @type EnvId: String
54
+ # @param DataSourceVersion: 版本
55
+ # 注意:此字段可能返回 null,表示取不到有效值。
56
+ # @type DataSourceVersion: String
57
+ # @param AppUsageList: 所属应用数组
58
+ # 注意:此字段可能返回 null,表示取不到有效值。
59
+ # @type AppUsageList: Array
60
+ # @param PublishedAt: 发布时间
61
+ # 注意:此字段可能返回 null,表示取不到有效值。
62
+ # @type PublishedAt: String
63
+ # @param ChildDataSourceIds: 子数据源ids
64
+ # 注意:此字段可能返回 null,表示取不到有效值。
65
+ # @type ChildDataSourceIds: Array
66
+ # @param Fun: 数据源发布信息
67
+ # 注意:此字段可能返回 null,表示取不到有效值。
68
+ # @type Fun: String
69
+ # @param ScfStatus: 云函数状态 1 Active 2 Creating 3 Updating 4 Deleting 9 Deleted 11 CreatFailed 12 UpdateFailed 13 DeleteFailed 21 UpdateTimeOut
70
+ # 注意:此字段可能返回 null,表示取不到有效值。
71
+ # @type ScfStatus: Integer
72
+ # @param Methods: 自定义方法
73
+ # 注意:此字段可能返回 null,表示取不到有效值。
74
+ # @type Methods: String
75
+ # @param ChildDataSourceNames: 子数据源名数组
76
+ # 注意:此字段可能返回 null,表示取不到有效值。
77
+ # @type ChildDataSourceNames: Array
78
+ # @param IsNewDataSource: 是否旧数据源 1 新 0 旧
79
+ # 注意:此字段可能返回 null,表示取不到有效值。
80
+ # @type IsNewDataSource: Integer
81
+ # @param ViewId: 数据源视图id
82
+ # 注意:此字段可能返回 null,表示取不到有效值。
83
+ # @type ViewId: String
84
+ # @param Configuration: 数据源属性配置
85
+ # 注意:此字段可能返回 null,表示取不到有效值。
86
+ # @type Configuration: String
87
+ # @param TemplateCode: 外部数据源模板code
88
+ # 注意:此字段可能返回 null,表示取不到有效值。
89
+ # @type TemplateCode: String
90
+ # @param Source: 外部数据源模板来源 0 空模板 1 腾讯文档 2 腾讯会议 3 企业微信 4 微信电商
91
+ # 注意:此字段可能返回 null,表示取不到有效值。
92
+ # @type Source: Integer
93
+ # @param PublishVersion: 发布版本
94
+ # 注意:此字段可能返回 null,表示取不到有效值。
95
+ # @type PublishVersion: String
96
+ # @param PublishViewId: 发布视图id
97
+ # 注意:此字段可能返回 null,表示取不到有效值。
98
+ # @type PublishViewId: String
99
+ # @param SubType: 数据源子类型 "database" 标准模型 "custom-database" 自定义模型 "system" 系统模型 "connector" 连接器 "custom-connector" 自定义连接器 "hidden" 隐藏数据源
100
+ # 注意:此字段可能返回 null,表示取不到有效值。
101
+ # @type SubType: String
102
+ # @param AuthStatus: 授权状态 0 授权无效 1 授权有效
103
+ # 注意:此字段可能返回 null,表示取不到有效值。
104
+ # @type AuthStatus: Integer
105
+ # @param AuthInfo: 数据源授权信息
106
+ # 注意:此字段可能返回 null,表示取不到有效值。
107
+ # @type AuthInfo: :class:`Tencentcloud::Lowcode.v20210108.models.TicketAuthInfo`
108
+
109
+ attr_accessor :Id, :Title, :Name, :Type, :Description, :Schema, :CmsProject, :PkgId, :SchemaVersion, :CreatorId, :CreatedAt, :UpdatedAt, :EnvId, :DataSourceVersion, :AppUsageList, :PublishedAt, :ChildDataSourceIds, :Fun, :ScfStatus, :Methods, :ChildDataSourceNames, :IsNewDataSource, :ViewId, :Configuration, :TemplateCode, :Source, :PublishVersion, :PublishViewId, :SubType, :AuthStatus, :AuthInfo
110
+
111
+ def initialize(id=nil, title=nil, name=nil, type=nil, description=nil, schema=nil, cmsproject=nil, pkgid=nil, schemaversion=nil, creatorid=nil, createdat=nil, updatedat=nil, envid=nil, datasourceversion=nil, appusagelist=nil, publishedat=nil, childdatasourceids=nil, fun=nil, scfstatus=nil, methods=nil, childdatasourcenames=nil, isnewdatasource=nil, viewid=nil, configuration=nil, templatecode=nil, source=nil, publishversion=nil, publishviewid=nil, subtype=nil, authstatus=nil, authinfo=nil)
112
+ @Id = id
113
+ @Title = title
114
+ @Name = name
115
+ @Type = type
116
+ @Description = description
117
+ @Schema = schema
118
+ @CmsProject = cmsproject
119
+ @PkgId = pkgid
120
+ @SchemaVersion = schemaversion
121
+ @CreatorId = creatorid
122
+ @CreatedAt = createdat
123
+ @UpdatedAt = updatedat
124
+ @EnvId = envid
125
+ @DataSourceVersion = datasourceversion
126
+ @AppUsageList = appusagelist
127
+ @PublishedAt = publishedat
128
+ @ChildDataSourceIds = childdatasourceids
129
+ @Fun = fun
130
+ @ScfStatus = scfstatus
131
+ @Methods = methods
132
+ @ChildDataSourceNames = childdatasourcenames
133
+ @IsNewDataSource = isnewdatasource
134
+ @ViewId = viewid
135
+ @Configuration = configuration
136
+ @TemplateCode = templatecode
137
+ @Source = source
138
+ @PublishVersion = publishversion
139
+ @PublishViewId = publishviewid
140
+ @SubType = subtype
141
+ @AuthStatus = authstatus
142
+ @AuthInfo = authinfo
143
+ end
144
+
145
+ def deserialize(params)
146
+ @Id = params['Id']
147
+ @Title = params['Title']
148
+ @Name = params['Name']
149
+ @Type = params['Type']
150
+ @Description = params['Description']
151
+ @Schema = params['Schema']
152
+ @CmsProject = params['CmsProject']
153
+ @PkgId = params['PkgId']
154
+ @SchemaVersion = params['SchemaVersion']
155
+ @CreatorId = params['CreatorId']
156
+ @CreatedAt = params['CreatedAt']
157
+ @UpdatedAt = params['UpdatedAt']
158
+ @EnvId = params['EnvId']
159
+ @DataSourceVersion = params['DataSourceVersion']
160
+ unless params['AppUsageList'].nil?
161
+ @AppUsageList = []
162
+ params['AppUsageList'].each do |i|
163
+ datasourcelinkapp_tmp = DataSourceLinkApp.new
164
+ datasourcelinkapp_tmp.deserialize(i)
165
+ @AppUsageList << datasourcelinkapp_tmp
166
+ end
167
+ end
168
+ @PublishedAt = params['PublishedAt']
169
+ @ChildDataSourceIds = params['ChildDataSourceIds']
170
+ @Fun = params['Fun']
171
+ @ScfStatus = params['ScfStatus']
172
+ @Methods = params['Methods']
173
+ @ChildDataSourceNames = params['ChildDataSourceNames']
174
+ @IsNewDataSource = params['IsNewDataSource']
175
+ @ViewId = params['ViewId']
176
+ @Configuration = params['Configuration']
177
+ @TemplateCode = params['TemplateCode']
178
+ @Source = params['Source']
179
+ @PublishVersion = params['PublishVersion']
180
+ @PublishViewId = params['PublishViewId']
181
+ @SubType = params['SubType']
182
+ @AuthStatus = params['AuthStatus']
183
+ unless params['AuthInfo'].nil?
184
+ @AuthInfo = TicketAuthInfo.new
185
+ @AuthInfo.deserialize(params['AuthInfo'])
186
+ end
187
+ end
188
+ end
189
+
190
+ # 数据详情列表
191
+ class DataSourceDetailItems < TencentCloud::Common::AbstractModel
192
+ # @param Rows: 数据详情列表
193
+ # @type Rows: Array
194
+ # @param Count: 数据源列表总个数
195
+ # @type Count: Integer
196
+
197
+ attr_accessor :Rows, :Count
198
+
199
+ def initialize(rows=nil, count=nil)
200
+ @Rows = rows
201
+ @Count = count
202
+ end
203
+
204
+ def deserialize(params)
205
+ unless params['Rows'].nil?
206
+ @Rows = []
207
+ params['Rows'].each do |i|
208
+ datasourcedetail_tmp = DataSourceDetail.new
209
+ datasourcedetail_tmp.deserialize(i)
210
+ @Rows << datasourcedetail_tmp
211
+ end
212
+ end
213
+ @Count = params['Count']
214
+ end
215
+ end
216
+
217
+ # 数据源关联App信息
218
+ class DataSourceLinkApp < TencentCloud::Common::AbstractModel
219
+ # @param Id: 应用Id
220
+ # @type Id: String
221
+ # @param Title: 应用名称
222
+ # 注意:此字段可能返回 null,表示取不到有效值。
223
+ # @type Title: String
224
+ # @param EditStatusUse: 是否编辑状态使用
225
+ # 注意:此字段可能返回 null,表示取不到有效值。
226
+ # @type EditStatusUse: Integer
227
+ # @param PreviewStatusUse: 是否预览状态使用
228
+ # 注意:此字段可能返回 null,表示取不到有效值。
229
+ # @type PreviewStatusUse: Integer
230
+ # @param OnlineStatusUse: 是否正式状态使用
231
+ # 注意:此字段可能返回 null,表示取不到有效值。
232
+ # @type OnlineStatusUse: Integer
233
+
234
+ attr_accessor :Id, :Title, :EditStatusUse, :PreviewStatusUse, :OnlineStatusUse
235
+
236
+ def initialize(id=nil, title=nil, editstatususe=nil, previewstatususe=nil, onlinestatususe=nil)
237
+ @Id = id
238
+ @Title = title
239
+ @EditStatusUse = editstatususe
240
+ @PreviewStatusUse = previewstatususe
241
+ @OnlineStatusUse = onlinestatususe
242
+ end
243
+
244
+ def deserialize(params)
245
+ @Id = params['Id']
246
+ @Title = params['Title']
247
+ @EditStatusUse = params['EditStatusUse']
248
+ @PreviewStatusUse = params['PreviewStatusUse']
249
+ @OnlineStatusUse = params['OnlineStatusUse']
250
+ end
251
+ end
252
+
253
+ # 数据源模糊查询参数
254
+ class DataSourceQueryOption < TencentCloud::Common::AbstractModel
255
+ # @param LikeName: 数据源标识模糊匹配
256
+ # @type LikeName: String
257
+ # @param LikeTitle: 数据源名称模糊匹配
258
+ # @type LikeTitle: String
259
+
260
+ attr_accessor :LikeName, :LikeTitle
261
+
262
+ def initialize(likename=nil, liketitle=nil)
263
+ @LikeName = likename
264
+ @LikeTitle = liketitle
265
+ end
266
+
267
+ def deserialize(params)
268
+ @LikeName = params['LikeName']
269
+ @LikeTitle = params['LikeTitle']
270
+ end
271
+ end
272
+
273
+ # DescribeDataSourceList请求参数结构体
274
+ class DescribeDataSourceListRequest < TencentCloud::Common::AbstractModel
275
+ # @param PageSize: 每页条数
276
+ # @type PageSize: Integer
277
+ # @param PageIndex: 页码
278
+ # @type PageIndex: Integer
279
+ # @param EnvId: 环境 id
280
+ # @type EnvId: String
281
+ # @param Appids: 应用id数组
282
+ # @type Appids: Array
283
+ # @param DataSourceIds: 数据源id数组
284
+ # @type DataSourceIds: Array
285
+ # @param DataSourceNames: 数据源名称数组
286
+ # @type DataSourceNames: Array
287
+ # @param DataSourceType: 数据源类型 database-自建数据源;cloud-integration-自定义数据源
288
+ # @type DataSourceType: String
289
+ # @param QueryOption: 数据源模糊查询参数
290
+ # @type QueryOption: :class:`Tencentcloud::Lowcode.v20210108.models.DataSourceQueryOption`
291
+ # @param ViewIds: 数据源视图Id数组
292
+ # @type ViewIds: Array
293
+ # @param AppLinkStatus: 查询未关联应用的数据源,0:未关联,该参数配合 AppIds 参数一块使用
294
+ # @type AppLinkStatus: Integer
295
+ # @param QueryBindToApp: 查询应用绑定数据源: 0: 否,1: 是
296
+ # @type QueryBindToApp: Integer
297
+ # @param QueryConnector: 查询连接器 0 数据模型 1 连接器 2 自定义连接器
298
+ # @type QueryConnector: Integer
299
+ # @param NotQuerySubTypeList: 查询数据源黑名单机制,比如不想要系统数据源["system"]
300
+ # @type NotQuerySubTypeList: Array
301
+
302
+ attr_accessor :PageSize, :PageIndex, :EnvId, :Appids, :DataSourceIds, :DataSourceNames, :DataSourceType, :QueryOption, :ViewIds, :AppLinkStatus, :QueryBindToApp, :QueryConnector, :NotQuerySubTypeList
303
+
304
+ def initialize(pagesize=nil, pageindex=nil, envid=nil, appids=nil, datasourceids=nil, datasourcenames=nil, datasourcetype=nil, queryoption=nil, viewids=nil, applinkstatus=nil, querybindtoapp=nil, queryconnector=nil, notquerysubtypelist=nil)
305
+ @PageSize = pagesize
306
+ @PageIndex = pageindex
307
+ @EnvId = envid
308
+ @Appids = appids
309
+ @DataSourceIds = datasourceids
310
+ @DataSourceNames = datasourcenames
311
+ @DataSourceType = datasourcetype
312
+ @QueryOption = queryoption
313
+ @ViewIds = viewids
314
+ @AppLinkStatus = applinkstatus
315
+ @QueryBindToApp = querybindtoapp
316
+ @QueryConnector = queryconnector
317
+ @NotQuerySubTypeList = notquerysubtypelist
318
+ end
319
+
320
+ def deserialize(params)
321
+ @PageSize = params['PageSize']
322
+ @PageIndex = params['PageIndex']
323
+ @EnvId = params['EnvId']
324
+ @Appids = params['Appids']
325
+ @DataSourceIds = params['DataSourceIds']
326
+ @DataSourceNames = params['DataSourceNames']
327
+ @DataSourceType = params['DataSourceType']
328
+ unless params['QueryOption'].nil?
329
+ @QueryOption = DataSourceQueryOption.new
330
+ @QueryOption.deserialize(params['QueryOption'])
331
+ end
332
+ @ViewIds = params['ViewIds']
333
+ @AppLinkStatus = params['AppLinkStatus']
334
+ @QueryBindToApp = params['QueryBindToApp']
335
+ @QueryConnector = params['QueryConnector']
336
+ @NotQuerySubTypeList = params['NotQuerySubTypeList']
337
+ end
338
+ end
339
+
340
+ # DescribeDataSourceList返回参数结构体
341
+ class DescribeDataSourceListResponse < TencentCloud::Common::AbstractModel
342
+ # @param Data: data 数据
343
+ # @type Data: :class:`Tencentcloud::Lowcode.v20210108.models.DataSourceDetailItems`
344
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
345
+ # @type RequestId: String
346
+
347
+ attr_accessor :Data, :RequestId
348
+
349
+ def initialize(data=nil, requestid=nil)
350
+ @Data = data
351
+ @RequestId = requestid
352
+ end
353
+
354
+ def deserialize(params)
355
+ unless params['Data'].nil?
356
+ @Data = DataSourceDetailItems.new
357
+ @Data.deserialize(params['Data'])
358
+ end
359
+ @RequestId = params['RequestId']
360
+ end
361
+ end
362
+
363
+ # 数据源授权信息
364
+ class TicketAuthInfo < TencentCloud::Common::AbstractModel
365
+ # @param AuthUser: 授权用户
366
+ # @type AuthUser: String
367
+
368
+ attr_accessor :AuthUser
369
+
370
+ def initialize(authuser=nil)
371
+ @AuthUser = authuser
372
+ end
373
+
374
+ def deserialize(params)
375
+ @AuthUser = params['AuthUser']
376
+ end
377
+ end
378
+
379
+ end
380
+ end
381
+ end
382
+
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tencentcloud-sdk-lowcode
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.252
5
+ platform: ruby
6
+ authors:
7
+ - Tencent Cloud
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-01-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: tencentcloud-sdk-common
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ description: Tencent Cloud Ruby SDK is the official software development kit, which
28
+ allows Ruby developers to write software that makes use of Tencent Cloud service
29
+ LOWCODE.
30
+ email:
31
+ - tencentcloudapi@tencent.com
32
+ executables: []
33
+ extensions: []
34
+ extra_rdoc_files: []
35
+ files:
36
+ - lib/VERSION
37
+ - lib/tencentcloud-sdk-lowcode.rb
38
+ - lib/v20210108/client.rb
39
+ - lib/v20210108/models.rb
40
+ homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
+ licenses:
42
+ - Apache-2.0
43
+ metadata:
44
+ source_code_uri: https://github.com/TencentCloud/tencentcloud-sdk-ruby/tencentcloud-sdk-lowcode
45
+ changelog_uri: https://github.com/TencentCloud/tencentcloud-sdk-ruby/blob/master/CHANGELOG.md
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.6.14
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Tencent Cloud SDK for Ruby - LOWCODE
66
+ test_files: []