tencentcloud-sdk-gs 3.0.1171 → 3.0.1176

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 +18 -8
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 508fb0b654fe1a31721fbbaf6e7fe27c71dfde85
4
- data.tar.gz: e478c69fa4fbb9b05c4fa6e0afdc281247d411c4
3
+ metadata.gz: 68a8839be03b2b95b2354894e98581b5b0d8c87c
4
+ data.tar.gz: bf2670e20f42d7a0a98faa07bbc80d7a4b2b034a
5
5
  SHA512:
6
- metadata.gz: d710f7e007be974375ef3149879117293da5988d070d4ee022284770a2fa621e562b476cf5c0c685423200b28034c2f7be6a281dc4d2652607a713a5b9a13288
7
- data.tar.gz: 9fbf25089d2e975d15fc374c49aa4154c07b993963ac4cb57c990aaa182c6c3fd7f3da6c86976f33a39f6cabbe84b0866ccbcfeb2ac32f563917154bd3c1add9
6
+ metadata.gz: 5a6ca7b9afc4c5ffd4e7bb7b1884c94e80e54d6ab9dfeb828f497a91e9a7b188b17d03e7eef3668511a8b6734534b93f27da4c22f05dea0bf063cb9f87861c2f
7
+ data.tar.gz: d3c7ae06ba34fd7f4f5b418cc95b4e828ef56978ddd92fc1a32f11c14da4522683676d2d7d615576506ab8ff42c628c025e0b976a47f81c67dfb018167b2ede6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1171
1
+ 3.0.1176
@@ -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, 11
279
- deprecate :PackageVersion=, :none, 2025, 11
278
+ deprecate :PackageVersion, :none, 2025, 12
279
+ deprecate :PackageVersion=, :none, 2025, 12
280
280
 
281
281
  def initialize(androidappid=nil, name=nil, androidappversion=nil, packagename=nil, packageversion=nil, packagelabel=nil, versionname=nil)
282
282
  @AndroidAppId = androidappid
@@ -2092,8 +2092,8 @@ module TencentCloud
2092
2092
 
2093
2093
  attr_accessor :Total, :Labels, :AndroidInstanceLabels, :RequestId
2094
2094
  extend Gem::Deprecate
2095
- deprecate :Labels, :none, 2025, 11
2096
- deprecate :Labels=, :none, 2025, 11
2095
+ deprecate :Labels, :none, 2025, 12
2096
+ deprecate :Labels=, :none, 2025, 12
2097
2097
 
2098
2098
  def initialize(total=nil, labels=nil, androidinstancelabels=nil, requestid=nil)
2099
2099
  @Total = total
@@ -3008,19 +3008,25 @@ module TencentCloud
3008
3008
  # @type AndroidAppId: String
3009
3009
  # @param AndroidAppVersion: 应用版本
3010
3010
  # @type AndroidAppVersion: String
3011
+ # @param InstallationMethod: 安装方式。
3012
+ # CLEAR_DATA 默认,清理数据
3013
+ # KEEP_DATA 保留数据
3014
+ # @type InstallationMethod: String
3011
3015
 
3012
- attr_accessor :AndroidInstanceIds, :AndroidAppId, :AndroidAppVersion
3016
+ attr_accessor :AndroidInstanceIds, :AndroidAppId, :AndroidAppVersion, :InstallationMethod
3013
3017
 
3014
- def initialize(androidinstanceids=nil, androidappid=nil, androidappversion=nil)
3018
+ def initialize(androidinstanceids=nil, androidappid=nil, androidappversion=nil, installationmethod=nil)
3015
3019
  @AndroidInstanceIds = androidinstanceids
3016
3020
  @AndroidAppId = androidappid
3017
3021
  @AndroidAppVersion = androidappversion
3022
+ @InstallationMethod = installationmethod
3018
3023
  end
3019
3024
 
3020
3025
  def deserialize(params)
3021
3026
  @AndroidInstanceIds = params['AndroidInstanceIds']
3022
3027
  @AndroidAppId = params['AndroidAppId']
3023
3028
  @AndroidAppVersion = params['AndroidAppVersion']
3029
+ @InstallationMethod = params['InstallationMethod']
3024
3030
  end
3025
3031
  end
3026
3032
 
@@ -3635,17 +3641,21 @@ module TencentCloud
3635
3641
  # @type AndroidInstanceIds: Array
3636
3642
  # @param UserId: 用户 ID
3637
3643
  # @type UserId: String
3644
+ # @param ExpirationDuration: 有效时长。如果不填该字段,默认为永久。支持 s(秒)、m(分)、h(小时)、d(天)等单位,比如 12h 表示 12 小时,1h2m3s 表示一小时两分三秒
3645
+ # @type ExpirationDuration: String
3638
3646
 
3639
- attr_accessor :AndroidInstanceIds, :UserId
3647
+ attr_accessor :AndroidInstanceIds, :UserId, :ExpirationDuration
3640
3648
 
3641
- def initialize(androidinstanceids=nil, userid=nil)
3649
+ def initialize(androidinstanceids=nil, userid=nil, expirationduration=nil)
3642
3650
  @AndroidInstanceIds = androidinstanceids
3643
3651
  @UserId = userid
3652
+ @ExpirationDuration = expirationduration
3644
3653
  end
3645
3654
 
3646
3655
  def deserialize(params)
3647
3656
  @AndroidInstanceIds = params['AndroidInstanceIds']
3648
3657
  @UserId = params['UserId']
3658
+ @ExpirationDuration = params['ExpirationDuration']
3649
3659
  end
3650
3660
  end
3651
3661
 
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.1171
4
+ version: 3.0.1176
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-11-20 00:00:00.000000000 Z
11
+ date: 2025-12-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/v20191118/client.rb
37
- - lib/v20191118/models.rb
38
36
  - lib/tencentcloud-sdk-gs.rb
37
+ - lib/v20191118/models.rb
38
+ - lib/v20191118/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: