tencentcloud-sdk-gs 3.0.1106 → 3.0.1109

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/v20191118/models.rb +27 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f10dd31715e43b0ca8ff5625faff76e645ffd127
4
- data.tar.gz: b9f4009cdc834a5d857c3353e3682a1a917b5a55
3
+ metadata.gz: 0de2edf7e0cbba7a34b477538c41ed993e1ce15b
4
+ data.tar.gz: d941a7645df253f9e17b391221f90b1a4a5cc18e
5
5
  SHA512:
6
- metadata.gz: 5b607a0025e776c9a5ca6399dfb9f465834a12ff696536654eb2dccbc35a20261dcb935342c8e2a2b99d60fae87b90d37f485dc0806b5bc0200a146a1120ca55
7
- data.tar.gz: a6fe5cc2b3c41e51117f0ca484dc70020a840966de74b3530e911b2a6223da078bd4e0e882e380f988892b0be99812347e38ddd14d6a4f3823f02e2b2918e4bd
6
+ metadata.gz: e0e731152c51fca255e328c023fbe23e43ab61db1f90511cd0824df6a44b68e7d007874d91de460784146570a56480e3b7e6566b3c7e45db442f71c0f2011e03
7
+ data.tar.gz: effad34e73612e46e19045902d88c663bf57e21350d38bd1ce3b030126d4817e94be97865cb8feb0f42d7f9fed950bde60fd3ac0832ad7c5caae4fc4d3f27e25
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1106
1
+ 3.0.1109
@@ -1288,16 +1288,19 @@ module TencentCloud
1288
1288
 
1289
1289
  # CreateCosCredential请求参数结构体
1290
1290
  class CreateCosCredentialRequest < TencentCloud::Common::AbstractModel
1291
- # @param CosType: Cos 密钥类型, Mobile 移动端, PC 桌面, AndroidApp 安卓应用
1291
+ # @param CosType: Cos 密钥类型,取值: Mobile 云手游、PC 云端游、AndroidApp 云手机应用管理、AndroidAppFile 云手机文件管理、AndroidAppBackup 云手机备份还原
1292
1292
  # @type CosType: String
1293
- # @param AndroidAppCosInfo: 云手机 Cos 数据
1293
+ # @param AndroidAppCosInfo: 云手机应用管理 Cos 数据
1294
1294
  # @type AndroidAppCosInfo: :class:`Tencentcloud::Gs.v20191118.models.AndroidAppCosInfo`
1295
+ # @param AndroidAppFileCosInfo: 云手机文件管理 Cos 数据
1296
+ # @type AndroidAppFileCosInfo: :class:`Tencentcloud::Gs.v20191118.models.FileCosInfo`
1295
1297
 
1296
- attr_accessor :CosType, :AndroidAppCosInfo
1298
+ attr_accessor :CosType, :AndroidAppCosInfo, :AndroidAppFileCosInfo
1297
1299
 
1298
- def initialize(costype=nil, androidappcosinfo=nil)
1300
+ def initialize(costype=nil, androidappcosinfo=nil, androidappfilecosinfo=nil)
1299
1301
  @CosType = costype
1300
1302
  @AndroidAppCosInfo = androidappcosinfo
1303
+ @AndroidAppFileCosInfo = androidappfilecosinfo
1301
1304
  end
1302
1305
 
1303
1306
  def deserialize(params)
@@ -1306,6 +1309,10 @@ module TencentCloud
1306
1309
  @AndroidAppCosInfo = AndroidAppCosInfo.new
1307
1310
  @AndroidAppCosInfo.deserialize(params['AndroidAppCosInfo'])
1308
1311
  end
1312
+ unless params['AndroidAppFileCosInfo'].nil?
1313
+ @AndroidAppFileCosInfo = FileCosInfo.new
1314
+ @AndroidAppFileCosInfo.deserialize(params['AndroidAppFileCosInfo'])
1315
+ end
1309
1316
  end
1310
1317
  end
1311
1318
 
@@ -2582,6 +2589,22 @@ module TencentCloud
2582
2589
  end
2583
2590
  end
2584
2591
 
2592
+ # 应用文件 Cos 信息
2593
+ class FileCosInfo < TencentCloud::Common::AbstractModel
2594
+ # @param FileId: 文件 Id
2595
+ # @type FileId: String
2596
+
2597
+ attr_accessor :FileId
2598
+
2599
+ def initialize(fileid=nil)
2600
+ @FileId = fileid
2601
+ end
2602
+
2603
+ def deserialize(params)
2604
+ @FileId = params['FileId']
2605
+ end
2606
+ end
2607
+
2585
2608
  # 过滤
2586
2609
  class Filter < TencentCloud::Common::AbstractModel
2587
2610
  # @param Name: 字段名
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1106
4
+ version: 3.0.1109
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-22 00:00:00.000000000 Z
11
+ date: 2025-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common