tencentcloud-sdk-lcic 3.0.493 → 3.0.495

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220817/models.rb +56 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c89ecc4925ce06bb5c3fb8fc06a78e684be59baf
4
- data.tar.gz: 41a3efdbc0eb15d6abb038ebb7eb9e6e85a07d62
3
+ metadata.gz: 5ac21b4f1a7b33f5d1b9a3774cef68f71b9ce082
4
+ data.tar.gz: e4dbb5e6dd7f56a9fad00a78ae10be3b69a49003
5
5
  SHA512:
6
- metadata.gz: d441273b703ba5a9561a349bfb23821b9d498c25e4e35981f7ff64c166c1d5c896c712a7af1753210c8c20a85295f81d774efced76aece3a3cc050cb23d8a4c3
7
- data.tar.gz: dba7eda57f435727aa0e62c442f9789ca7f88bad18d783dac49de5b97c949dd1412e1d07f0dea43bd851bb4fd6cc1d3e0639eddc88a593b44ef0b539a45f3b22
6
+ metadata.gz: 392d223bb7a6807d166a218fac9bacf58df86c61305cf68e32ab294fcc2d0746ac47f1468975049c54f04748d400c7112c6bdb0858b3775610ab98d4b76b17cd
7
+ data.tar.gz: 7130b25646d520f218095eab0249eccc9a98650768d65f710ac43f030d5006fae66df59e48a643d9a3a3b6b8aa80ee353e66122709ac2ec1e2eb8ab31530a44b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.493
1
+ 3.0.495
@@ -17,6 +17,17 @@
17
17
  module TencentCloud
18
18
  module Lcic
19
19
  module V20220817
20
+ # 应用配置信息
21
+ class AppConfig < TencentCloud::Common::AbstractModel
22
+
23
+
24
+ def initialize()
25
+ end
26
+
27
+ def deserialize(params)
28
+ end
29
+ end
30
+
20
31
  # 应用自定义内容
21
32
  class AppCustomContent < TencentCloud::Common::AbstractModel
22
33
  # @param Scene: 场景参数,一个应用下可以设置多个不同场景。
@@ -317,27 +328,58 @@ module TencentCloud
317
328
 
318
329
  # DescribeAppDetail请求参数结构体
319
330
  class DescribeAppDetailRequest < TencentCloud::Common::AbstractModel
331
+ # @param ApplicationId: 应用ID
332
+ # @type ApplicationId: String
333
+ # @param DeveloperId: 开发商ID
334
+ # @type DeveloperId: String
320
335
 
336
+ attr_accessor :ApplicationId, :DeveloperId
321
337
 
322
- def initialize()
338
+ def initialize(applicationid=nil, developerid=nil)
339
+ @ApplicationId = applicationid
340
+ @DeveloperId = developerid
323
341
  end
324
342
 
325
343
  def deserialize(params)
344
+ @ApplicationId = params['ApplicationId']
345
+ @DeveloperId = params['DeveloperId']
326
346
  end
327
347
  end
328
348
 
329
349
  # DescribeAppDetail返回参数结构体
330
350
  class DescribeAppDetailResponse < TencentCloud::Common::AbstractModel
351
+ # @param SdkAppId: SdkAppId
352
+ # @type SdkAppId: String
353
+ # @param AppConfig: 应用配置
354
+ # @type AppConfig: :class:`Tencentcloud::Lcic.v20220817.models.AppConfig`
355
+ # @param SceneConfig: 场景配置
356
+ # @type SceneConfig: Array
331
357
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
332
358
  # @type RequestId: String
333
359
 
334
- attr_accessor :RequestId
360
+ attr_accessor :SdkAppId, :AppConfig, :SceneConfig, :RequestId
335
361
 
336
- def initialize(requestid=nil)
362
+ def initialize(sdkappid=nil, appconfig=nil, sceneconfig=nil, requestid=nil)
363
+ @SdkAppId = sdkappid
364
+ @AppConfig = appconfig
365
+ @SceneConfig = sceneconfig
337
366
  @RequestId = requestid
338
367
  end
339
368
 
340
369
  def deserialize(params)
370
+ @SdkAppId = params['SdkAppId']
371
+ unless params['AppConfig'].nil?
372
+ @AppConfig = AppConfig.new
373
+ @AppConfig.deserialize(params['AppConfig'])
374
+ end
375
+ unless params['SceneConfig'].nil?
376
+ @SceneConfig = []
377
+ params['SceneConfig'].each do |i|
378
+ sceneitem_tmp = SceneItem.new
379
+ sceneitem_tmp.deserialize(i)
380
+ @SceneConfig << sceneitem_tmp
381
+ end
382
+ end
341
383
  @RequestId = params['RequestId']
342
384
  end
343
385
  end
@@ -784,6 +826,17 @@ module TencentCloud
784
826
  end
785
827
  end
786
828
 
829
+ # 场景配置
830
+ class SceneItem < TencentCloud::Common::AbstractModel
831
+
832
+
833
+ def initialize()
834
+ end
835
+
836
+ def deserialize(params)
837
+ end
838
+ end
839
+
787
840
  # SetAppCustomContent请求参数结构体
788
841
  class SetAppCustomContentRequest < TencentCloud::Common::AbstractModel
789
842
  # @param CustomContent: 自定义内容。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lcic
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.493
4
+ version: 3.0.495
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-13 00:00:00.000000000 Z
11
+ date: 2023-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common