tencentcloud-sdk-gs 3.0.1081 → 3.0.1085

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 +13 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 95f7d2d1a1aa683dc02652af67940fd01e9019ce
4
- data.tar.gz: 8956d231da7f91be56d97dd386691136c1668a55
3
+ metadata.gz: 5263b7dc6ad46bf7dd0f5a7ef3254dfbb2135ee6
4
+ data.tar.gz: 94a8754c0ac6af22890a3fb639da74e0519db75a
5
5
  SHA512:
6
- metadata.gz: a3fdf006077b8851e603ef8935bf798e0f69f358aa97a031a9d4769ffb99a713a64cf84f574ddccaf8da4aea2a85ec2c34c94ef55b1b1c2fe82d8f0aae542d07
7
- data.tar.gz: b715f0e2ae3c8e65ba8dccdf3aa01fb9e42c94f616a4a3ecc102ef9dd9961818c3e3007ae2776024df74c9c13b7ca2d276fd1e15edbc0e8201a52a7db298250a
6
+ metadata.gz: e4b97092c009d4800b1b4520f4c30c4978785a0e70c3d863ffa05aa1c1e3c5ad5111c07678eaf3d233f93e117a03dca69d4842625f88bf3cd86926dd16523ba0
7
+ data.tar.gz: ecf3d5e72e56c60ff4dfcabcd5f205d9d3356c6c0c262f78f2afe4576a989432fcd1e52fa60d8ebcd24868a15ff087afe94454dcc7de85da93d82ab47e1b9f32
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1081
1
+ 3.0.1085
@@ -33,10 +33,12 @@ module TencentCloud
33
33
  # @type UserId: String
34
34
  # @param AppMode: 应用模式(NORMAL : 普通模式;ADVANCED : 高级模式)
35
35
  # @type AppMode: String
36
+ # @param UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
37
+ # @type UpdateState: String
36
38
 
37
- attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime, :UserId, :AppMode
39
+ attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime, :UserId, :AppMode, :UpdateState
38
40
 
39
- def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil, userid=nil, appmode=nil)
41
+ def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil, userid=nil, appmode=nil, updatestate=nil)
40
42
  @AndroidAppId = androidappid
41
43
  @Name = name
42
44
  @State = state
@@ -44,6 +46,7 @@ module TencentCloud
44
46
  @CreateTime = createtime
45
47
  @UserId = userid
46
48
  @AppMode = appmode
49
+ @UpdateState = updatestate
47
50
  end
48
51
 
49
52
  def deserialize(params)
@@ -61,6 +64,7 @@ module TencentCloud
61
64
  @CreateTime = params['CreateTime']
62
65
  @UserId = params['UserId']
63
66
  @AppMode = params['AppMode']
67
+ @UpdateState = params['UpdateState']
64
68
  end
65
69
  end
66
70
 
@@ -100,16 +104,19 @@ module TencentCloud
100
104
  # @type UninstallCommand: String
101
105
  # @param CleanupMode: 应用资源清理模式(实例安装应用所用资源),取值:CLEANUP_ON_UNINSTALL(默认值),卸载 App 时清理;CLEANUP_AFTER_INSTALL,安装 App 后立即清理。普通应用只有 CLEANUP_AFTER_INSTALL 模式。
102
106
  # @type CleanupMode: String
107
+ # @param AndroidAppVersionName: 安卓应用版本名称
108
+ # @type AndroidAppVersionName: String
103
109
 
104
- attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand, :CleanupMode
110
+ attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand, :CleanupMode, :AndroidAppVersionName
105
111
 
106
- def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil, cleanupmode=nil)
112
+ def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil, cleanupmode=nil, androidappversionname=nil)
107
113
  @AndroidAppVersion = androidappversion
108
114
  @State = state
109
115
  @CreateTime = createtime
110
116
  @Command = command
111
117
  @UninstallCommand = uninstallcommand
112
118
  @CleanupMode = cleanupmode
119
+ @AndroidAppVersionName = androidappversionname
113
120
  end
114
121
 
115
122
  def deserialize(params)
@@ -119,6 +126,7 @@ module TencentCloud
119
126
  @Command = params['Command']
120
127
  @UninstallCommand = params['UninstallCommand']
121
128
  @CleanupMode = params['CleanupMode']
129
+ @AndroidAppVersionName = params['AndroidAppVersionName']
122
130
  end
123
131
  end
124
132
 
@@ -1578,7 +1586,7 @@ module TencentCloud
1578
1586
  # @type Limit: Integer
1579
1587
  # @param AndroidAppIds: 应用ID数组
1580
1588
  # @type AndroidAppIds: Array
1581
- # @param Filters: 过滤条件
1589
+ # @param Filters: 过滤条件,支持过滤的字段有:UserId、State、UpdateState、Name、AppMode 。其中 Name 为模糊匹配,其他参数为精确匹配。
1582
1590
  # @type Filters: Array
1583
1591
 
1584
1592
  attr_accessor :Offset, :Limit, :AndroidAppIds, :Filters
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.1081
4
+ version: 3.0.1085
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-06-15 00:00:00.000000000 Z
11
+ date: 2025-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common