tencentcloud-sdk-gs 3.0.1106 → 3.0.1132

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 +49 -14
  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: 760485b98693bc7499b420183d96683aec886291
4
+ data.tar.gz: cc42ddab81a00b0c12a4c53b6e3f92f4c203a73a
5
5
  SHA512:
6
- metadata.gz: 5b607a0025e776c9a5ca6399dfb9f465834a12ff696536654eb2dccbc35a20261dcb935342c8e2a2b99d60fae87b90d37f485dc0806b5bc0200a146a1120ca55
7
- data.tar.gz: a6fe5cc2b3c41e51117f0ca484dc70020a840966de74b3530e911b2a6223da078bd4e0e882e380f988892b0be99812347e38ddd14d6a4f3823f02e2b2918e4bd
6
+ metadata.gz: bb74c9c416cdb7aba9313802a11fa746ec14ff64d8563d5aaa626afd150e11e8c4b91369bcc6341d3414126336b1990c1520e9c7db53217fb3bb4adf19af9778
7
+ data.tar.gz: 6dd806683eecdac523eb1e21b6ba708a9f925dc67df138332c19c1e62a4fb493d387dfb459f43892177e43d6180e28bdb37d7988bf42df8fec24c6503f6747d5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1106
1
+ 3.0.1132
@@ -275,8 +275,8 @@ module TencentCloud
275
275
 
276
276
  attr_accessor :AndroidAppId, :Name, :AndroidAppVersion, :PackageName, :PackageVersion, :PackageLabel, :VersionName
277
277
  extend Gem::Deprecate
278
- deprecate :PackageVersion, :none, 2025, 7
279
- deprecate :PackageVersion=, :none, 2025, 7
278
+ deprecate :PackageVersion, :none, 2025, 8
279
+ deprecate :PackageVersion=, :none, 2025, 8
280
280
 
281
281
  def initialize(androidappid=nil, name=nil, androidappversion=nil, packagename=nil, packageversion=nil, packagelabel=nil, versionname=nil)
282
282
  @AndroidAppId = androidappid
@@ -537,19 +537,23 @@ module TencentCloud
537
537
  # @type FileURL: String
538
538
  # @param DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
539
539
  # @type DestinationDirectory: String
540
+ # @param DestinationFileName: 目标文件名
541
+ # @type DestinationFileName: String
540
542
 
541
- attr_accessor :AndroidInstanceId, :FileURL, :DestinationDirectory
543
+ attr_accessor :AndroidInstanceId, :FileURL, :DestinationDirectory, :DestinationFileName
542
544
 
543
- def initialize(androidinstanceid=nil, fileurl=nil, destinationdirectory=nil)
545
+ def initialize(androidinstanceid=nil, fileurl=nil, destinationdirectory=nil, destinationfilename=nil)
544
546
  @AndroidInstanceId = androidinstanceid
545
547
  @FileURL = fileurl
546
548
  @DestinationDirectory = destinationdirectory
549
+ @DestinationFileName = destinationfilename
547
550
  end
548
551
 
549
552
  def deserialize(params)
550
553
  @AndroidInstanceId = params['AndroidInstanceId']
551
554
  @FileURL = params['FileURL']
552
555
  @DestinationDirectory = params['DestinationDirectory']
556
+ @DestinationFileName = params['DestinationFileName']
553
557
  end
554
558
  end
555
559
 
@@ -1288,16 +1292,19 @@ module TencentCloud
1288
1292
 
1289
1293
  # CreateCosCredential请求参数结构体
1290
1294
  class CreateCosCredentialRequest < TencentCloud::Common::AbstractModel
1291
- # @param CosType: Cos 密钥类型, Mobile 移动端, PC 桌面, AndroidApp 安卓应用
1295
+ # @param CosType: Cos 密钥类型,取值: Mobile 云手游、PC 云端游、AndroidApp 云手机应用管理、AndroidAppFile 云手机文件管理、AndroidAppBackup 云手机备份还原
1292
1296
  # @type CosType: String
1293
- # @param AndroidAppCosInfo: 云手机 Cos 数据
1297
+ # @param AndroidAppCosInfo: 云手机应用管理 Cos 数据
1294
1298
  # @type AndroidAppCosInfo: :class:`Tencentcloud::Gs.v20191118.models.AndroidAppCosInfo`
1299
+ # @param AndroidAppFileCosInfo: 云手机文件管理 Cos 数据
1300
+ # @type AndroidAppFileCosInfo: :class:`Tencentcloud::Gs.v20191118.models.FileCosInfo`
1295
1301
 
1296
- attr_accessor :CosType, :AndroidAppCosInfo
1302
+ attr_accessor :CosType, :AndroidAppCosInfo, :AndroidAppFileCosInfo
1297
1303
 
1298
- def initialize(costype=nil, androidappcosinfo=nil)
1304
+ def initialize(costype=nil, androidappcosinfo=nil, androidappfilecosinfo=nil)
1299
1305
  @CosType = costype
1300
1306
  @AndroidAppCosInfo = androidappcosinfo
1307
+ @AndroidAppFileCosInfo = androidappfilecosinfo
1301
1308
  end
1302
1309
 
1303
1310
  def deserialize(params)
@@ -1306,6 +1313,10 @@ module TencentCloud
1306
1313
  @AndroidAppCosInfo = AndroidAppCosInfo.new
1307
1314
  @AndroidAppCosInfo.deserialize(params['AndroidAppCosInfo'])
1308
1315
  end
1316
+ unless params['AndroidAppFileCosInfo'].nil?
1317
+ @AndroidAppFileCosInfo = FileCosInfo.new
1318
+ @AndroidAppFileCosInfo.deserialize(params['AndroidAppFileCosInfo'])
1319
+ end
1309
1320
  end
1310
1321
  end
1311
1322
 
@@ -1884,8 +1895,8 @@ module TencentCloud
1884
1895
 
1885
1896
  attr_accessor :Total, :Labels, :AndroidInstanceLabels, :RequestId
1886
1897
  extend Gem::Deprecate
1887
- deprecate :Labels, :none, 2025, 7
1888
- deprecate :Labels=, :none, 2025, 7
1898
+ deprecate :Labels, :none, 2025, 8
1899
+ deprecate :Labels=, :none, 2025, 8
1889
1900
 
1890
1901
  def initialize(total=nil, labels=nil, androidinstancelabels=nil, requestid=nil)
1891
1902
  @Total = total
@@ -2330,19 +2341,23 @@ module TencentCloud
2330
2341
  # @type FileURL: String
2331
2342
  # @param DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
2332
2343
  # @type DestinationDirectory: String
2344
+ # @param DestinationFileName: 目标文件名
2345
+ # @type DestinationFileName: String
2333
2346
 
2334
- attr_accessor :AndroidInstanceIds, :FileURL, :DestinationDirectory
2347
+ attr_accessor :AndroidInstanceIds, :FileURL, :DestinationDirectory, :DestinationFileName
2335
2348
 
2336
- def initialize(androidinstanceids=nil, fileurl=nil, destinationdirectory=nil)
2349
+ def initialize(androidinstanceids=nil, fileurl=nil, destinationdirectory=nil, destinationfilename=nil)
2337
2350
  @AndroidInstanceIds = androidinstanceids
2338
2351
  @FileURL = fileurl
2339
2352
  @DestinationDirectory = destinationdirectory
2353
+ @DestinationFileName = destinationfilename
2340
2354
  end
2341
2355
 
2342
2356
  def deserialize(params)
2343
2357
  @AndroidInstanceIds = params['AndroidInstanceIds']
2344
2358
  @FileURL = params['FileURL']
2345
2359
  @DestinationDirectory = params['DestinationDirectory']
2360
+ @DestinationFileName = params['DestinationFileName']
2346
2361
  end
2347
2362
  end
2348
2363
 
@@ -2582,6 +2597,22 @@ module TencentCloud
2582
2597
  end
2583
2598
  end
2584
2599
 
2600
+ # 应用文件 Cos 信息
2601
+ class FileCosInfo < TencentCloud::Common::AbstractModel
2602
+ # @param FileId: 文件 Id
2603
+ # @type FileId: String
2604
+
2605
+ attr_accessor :FileId
2606
+
2607
+ def initialize(fileid=nil)
2608
+ @FileId = fileid
2609
+ end
2610
+
2611
+ def deserialize(params)
2612
+ @FileId = params['FileId']
2613
+ end
2614
+ end
2615
+
2585
2616
  # 过滤
2586
2617
  class Filter < TencentCloud::Common::AbstractModel
2587
2618
  # @param Name: 字段名
@@ -4359,19 +4390,23 @@ module TencentCloud
4359
4390
  # @type FileURL: String
4360
4391
  # @param DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
4361
4392
  # @type DestinationDirectory: String
4393
+ # @param DestinationFileName: 目标文件名
4394
+ # @type DestinationFileName: String
4362
4395
 
4363
- attr_accessor :AndroidInstanceIds, :FileURL, :DestinationDirectory
4396
+ attr_accessor :AndroidInstanceIds, :FileURL, :DestinationDirectory, :DestinationFileName
4364
4397
 
4365
- def initialize(androidinstanceids=nil, fileurl=nil, destinationdirectory=nil)
4398
+ def initialize(androidinstanceids=nil, fileurl=nil, destinationdirectory=nil, destinationfilename=nil)
4366
4399
  @AndroidInstanceIds = androidinstanceids
4367
4400
  @FileURL = fileurl
4368
4401
  @DestinationDirectory = destinationdirectory
4402
+ @DestinationFileName = destinationfilename
4369
4403
  end
4370
4404
 
4371
4405
  def deserialize(params)
4372
4406
  @AndroidInstanceIds = params['AndroidInstanceIds']
4373
4407
  @FileURL = params['FileURL']
4374
4408
  @DestinationDirectory = params['DestinationDirectory']
4409
+ @DestinationFileName = params['DestinationFileName']
4375
4410
  end
4376
4411
  end
4377
4412
 
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.1132
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-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common