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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20191118/models.rb +13 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5263b7dc6ad46bf7dd0f5a7ef3254dfbb2135ee6
|
4
|
+
data.tar.gz: 94a8754c0ac6af22890a3fb639da74e0519db75a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4b97092c009d4800b1b4520f4c30c4978785a0e70c3d863ffa05aa1c1e3c5ad5111c07678eaf3d233f93e117a03dca69d4842625f88bf3cd86926dd16523ba0
|
7
|
+
data.tar.gz: ecf3d5e72e56c60ff4dfcabcd5f205d9d3356c6c0c262f78f2afe4576a989432fcd1e52fa60d8ebcd24868a15ff087afe94454dcc7de85da93d82ab47e1b9f32
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1085
|
data/lib/v20191118/models.rb
CHANGED
@@ -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.
|
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-
|
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
|