tencentcloud-sdk-gs 3.0.1030 → 3.0.1032

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 -6
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 057dd81daa4aad7d6b25049e5151dd13d0c59949
4
- data.tar.gz: 597f1f4116082591492b737da1bfb337b98183c6
3
+ metadata.gz: c32abf7d089188fcc718099f23bcf84cff133ee5
4
+ data.tar.gz: 31fb4a9bea3a4f8aa8e8c5a0c36fe8cc30f218dd
5
5
  SHA512:
6
- metadata.gz: bd71137476c2bc203e9d461fef330702854b932f6ba62506695d76bd7af3d7a5248b42eb036124d4b81f2465ad05d2255de95cde30e9d27c33a749b68bbeaa90
7
- data.tar.gz: 2a4514999944b6cdadbe0bc9ce54aa2724670dd837a709a62d66634fbf02311f1915c07ff822351a1e2d81a5ab13e44e83b64caf31594bbbdd31f93b0aae62db
6
+ metadata.gz: f5c9920c1065d832a62a45a5c058167fb417a2dda6e3c61351b1c756de94b1682e02fa69ab99bfdb718051652717646f07be812e3b820397489ea3888a0dc6e8
7
+ data.tar.gz: 7866d1532c7954ddec74ac1adc4dd673155baba9dd37012cac0253d3a7ec086fadad61051abbdfa880abee5435637353842c2a924d7a52c8a1e800c55fc2965e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1030
1
+ 3.0.1032
@@ -29,15 +29,18 @@ module TencentCloud
29
29
  # @type AndroidAppVersionInfo: Array
30
30
  # @param CreateTime: 安卓应用创建时间
31
31
  # @type CreateTime: String
32
+ # @param UserId: 用户 Id
33
+ # @type UserId: String
32
34
 
33
- attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime
35
+ attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime, :UserId
34
36
 
35
- def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil)
37
+ def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil, userid=nil)
36
38
  @AndroidAppId = androidappid
37
39
  @Name = name
38
40
  @State = state
39
41
  @AndroidAppVersionInfo = androidappversioninfo
40
42
  @CreateTime = createtime
43
+ @UserId = userid
41
44
  end
42
45
 
43
46
  def deserialize(params)
@@ -53,6 +56,7 @@ module TencentCloud
53
56
  end
54
57
  end
55
58
  @CreateTime = params['CreateTime']
59
+ @UserId = params['UserId']
56
60
  end
57
61
  end
58
62
 
@@ -849,19 +853,30 @@ module TencentCloud
849
853
  # @type Limit: Integer
850
854
  # @param AndroidAppIds: 应用ID数组
851
855
  # @type AndroidAppIds: Array
856
+ # @param Filters: 过滤条件
857
+ # @type Filters: Array
852
858
 
853
- attr_accessor :Offset, :Limit, :AndroidAppIds
859
+ attr_accessor :Offset, :Limit, :AndroidAppIds, :Filters
854
860
 
855
- def initialize(offset=nil, limit=nil, androidappids=nil)
861
+ def initialize(offset=nil, limit=nil, androidappids=nil, filters=nil)
856
862
  @Offset = offset
857
863
  @Limit = limit
858
864
  @AndroidAppIds = androidappids
865
+ @Filters = filters
859
866
  end
860
867
 
861
868
  def deserialize(params)
862
869
  @Offset = params['Offset']
863
870
  @Limit = params['Limit']
864
871
  @AndroidAppIds = params['AndroidAppIds']
872
+ unless params['Filters'].nil?
873
+ @Filters = []
874
+ params['Filters'].each do |i|
875
+ filter_tmp = Filter.new
876
+ filter_tmp.deserialize(i)
877
+ @Filters << filter_tmp
878
+ end
879
+ end
865
880
  end
866
881
  end
867
882
 
@@ -1459,11 +1474,17 @@ module TencentCloud
1459
1474
  class ModifyAndroidInstanceResolutionRequest < TencentCloud::Common::AbstractModel
1460
1475
  # @param AndroidInstanceId: 安卓实例 ID
1461
1476
  # @type AndroidInstanceId: String
1462
- # @param Width: 分辨率宽度
1477
+ # @param Width: 分辨率宽度。建议按照以下数值设置,避免出现性能不足问题:
1478
+ # 实例类型为单开(A1)、双开(A2)、三开( A3):建议设置为 1080
1479
+ # 实例类型为 四开(A4) 及以上:建议设置为 720
1463
1480
  # @type Width: Integer
1464
- # @param Height: 分辨率高度
1481
+ # @param Height: 分辨率高度。建议按照以下数值设置,避免出现性能不足问题:
1482
+ # 实例类型为单开(A1)、双开(A2)、三开( A3):建议设置为 1920
1483
+ # 实例类型为 四开(A4) 及以上:建议设置为 1280
1465
1484
  # @type Height: Integer
1466
1485
  # @param DPI: 每英寸像素点。如果不填,系统将会计算一个合理的数值。修改 DPI 可能会导致 App 异常退出,请谨慎使用!
1486
+ # 分辨率为 720x1280:建议配置为 320
1487
+ # 分辨率为 1080x1920:建议配置为 480
1467
1488
  # @type DPI: Integer
1468
1489
 
1469
1490
  attr_accessor :AndroidInstanceId, :Width, :Height, :DPI
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.1030
4
+ version: 3.0.1032
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-03-30 00:00:00.000000000 Z
11
+ date: 2025-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/tencentcloud-sdk-gs.rb
37
- - lib/v20191118/models.rb
38
36
  - lib/v20191118/client.rb
37
+ - lib/v20191118/models.rb
38
+ - lib/tencentcloud-sdk-gs.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: