tencentcloud-sdk-gs 3.0.1085 → 3.0.1092
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 +36 -9
- 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: eaa8e601598b6ab01e95a24ee890bb5374d4b869
|
4
|
+
data.tar.gz: d8187c9532e4422fb88575e1c31fcdaa6de5f3e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac892eeaa03b30189879a23c189a596a4363b88dc54d50579f4878d671be35da750a8e2b53e2a610a812fffcbac19ebfd5d368df7b545cd05f5dcf34a37f61b2
|
7
|
+
data.tar.gz: 300285755a5766b47a16d878878ffa4c705b66ec58d0ecffe45e4dc2f21e356981b88d585dc9a6a54987031a1ed0b6fddcc672ca866a4461991a909364216d00
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1092
|
data/lib/v20191118/models.rb
CHANGED
@@ -35,10 +35,12 @@ module TencentCloud
|
|
35
35
|
# @type AppMode: String
|
36
36
|
# @param UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
|
37
37
|
# @type UpdateState: String
|
38
|
+
# @param PackageName: 安卓应用包名
|
39
|
+
# @type PackageName: String
|
38
40
|
|
39
|
-
attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime, :UserId, :AppMode, :UpdateState
|
41
|
+
attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime, :UserId, :AppMode, :UpdateState, :PackageName
|
40
42
|
|
41
|
-
def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil, userid=nil, appmode=nil, updatestate=nil)
|
43
|
+
def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil, userid=nil, appmode=nil, updatestate=nil, packagename=nil)
|
42
44
|
@AndroidAppId = androidappid
|
43
45
|
@Name = name
|
44
46
|
@State = state
|
@@ -47,6 +49,7 @@ module TencentCloud
|
|
47
49
|
@UserId = userid
|
48
50
|
@AppMode = appmode
|
49
51
|
@UpdateState = updatestate
|
52
|
+
@PackageName = packagename
|
50
53
|
end
|
51
54
|
|
52
55
|
def deserialize(params)
|
@@ -65,6 +68,7 @@ module TencentCloud
|
|
65
68
|
@UserId = params['UserId']
|
66
69
|
@AppMode = params['AppMode']
|
67
70
|
@UpdateState = params['UpdateState']
|
71
|
+
@PackageName = params['PackageName']
|
68
72
|
end
|
69
73
|
end
|
70
74
|
|
@@ -104,12 +108,16 @@ module TencentCloud
|
|
104
108
|
# @type UninstallCommand: String
|
105
109
|
# @param CleanupMode: 应用资源清理模式(实例安装应用所用资源),取值:CLEANUP_ON_UNINSTALL(默认值),卸载 App 时清理;CLEANUP_AFTER_INSTALL,安装 App 后立即清理。普通应用只有 CLEANUP_AFTER_INSTALL 模式。
|
106
110
|
# @type CleanupMode: String
|
107
|
-
# @param AndroidAppVersionName:
|
111
|
+
# @param AndroidAppVersionName: 安卓应用版本名称(版本描述、备注)
|
108
112
|
# @type AndroidAppVersionName: String
|
113
|
+
# @param Activity: 安卓应用启动页
|
114
|
+
# @type Activity: String
|
115
|
+
# @param VersionName: 应用版本号(Version Name)
|
116
|
+
# @type VersionName: String
|
109
117
|
|
110
|
-
attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand, :CleanupMode, :AndroidAppVersionName
|
118
|
+
attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand, :CleanupMode, :AndroidAppVersionName, :Activity, :VersionName
|
111
119
|
|
112
|
-
def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil, cleanupmode=nil, androidappversionname=nil)
|
120
|
+
def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil, cleanupmode=nil, androidappversionname=nil, activity=nil, versionname=nil)
|
113
121
|
@AndroidAppVersion = androidappversion
|
114
122
|
@State = state
|
115
123
|
@CreateTime = createtime
|
@@ -117,6 +125,8 @@ module TencentCloud
|
|
117
125
|
@UninstallCommand = uninstallcommand
|
118
126
|
@CleanupMode = cleanupmode
|
119
127
|
@AndroidAppVersionName = androidappversionname
|
128
|
+
@Activity = activity
|
129
|
+
@VersionName = versionname
|
120
130
|
end
|
121
131
|
|
122
132
|
def deserialize(params)
|
@@ -127,6 +137,8 @@ module TencentCloud
|
|
127
137
|
@UninstallCommand = params['UninstallCommand']
|
128
138
|
@CleanupMode = params['CleanupMode']
|
129
139
|
@AndroidAppVersionName = params['AndroidAppVersionName']
|
140
|
+
@Activity = params['Activity']
|
141
|
+
@VersionName = params['VersionName']
|
130
142
|
end
|
131
143
|
end
|
132
144
|
|
@@ -1691,21 +1703,25 @@ module TencentCloud
|
|
1691
1703
|
class DescribeAndroidInstanceImagesRequest < TencentCloud::Common::AbstractModel
|
1692
1704
|
# @param AndroidInstanceImageIds: 镜像 ID 列表
|
1693
1705
|
# @type AndroidInstanceImageIds: Array
|
1706
|
+
# @param AndroidInstanceImageZones: 镜像可用区列表
|
1707
|
+
# @type AndroidInstanceImageZones: Array
|
1694
1708
|
# @param Offset: 偏移量,默认为0
|
1695
1709
|
# @type Offset: Integer
|
1696
1710
|
# @param Limit: 限制量,默认为20,最大值为100
|
1697
1711
|
# @type Limit: Integer
|
1698
1712
|
|
1699
|
-
attr_accessor :AndroidInstanceImageIds, :Offset, :Limit
|
1713
|
+
attr_accessor :AndroidInstanceImageIds, :AndroidInstanceImageZones, :Offset, :Limit
|
1700
1714
|
|
1701
|
-
def initialize(androidinstanceimageids=nil, offset=nil, limit=nil)
|
1715
|
+
def initialize(androidinstanceimageids=nil, androidinstanceimagezones=nil, offset=nil, limit=nil)
|
1702
1716
|
@AndroidInstanceImageIds = androidinstanceimageids
|
1717
|
+
@AndroidInstanceImageZones = androidinstanceimagezones
|
1703
1718
|
@Offset = offset
|
1704
1719
|
@Limit = limit
|
1705
1720
|
end
|
1706
1721
|
|
1707
1722
|
def deserialize(params)
|
1708
1723
|
@AndroidInstanceImageIds = params['AndroidInstanceImageIds']
|
1724
|
+
@AndroidInstanceImageZones = params['AndroidInstanceImageZones']
|
1709
1725
|
@Offset = params['Offset']
|
1710
1726
|
@Limit = params['Limit']
|
1711
1727
|
end
|
@@ -1919,19 +1935,30 @@ module TencentCloud
|
|
1919
1935
|
# @type Limit: Integer
|
1920
1936
|
# @param AndroidAppIds: 应用 ID 列表。通过应用 ID 做集合查询
|
1921
1937
|
# @type AndroidAppIds: Array
|
1938
|
+
# @param Filters: 字段过滤器。Filter 的 Name 有以下值: AndroidInstanceId:实例 ID
|
1939
|
+
# @type Filters: Array
|
1922
1940
|
|
1923
|
-
attr_accessor :Offset, :Limit, :AndroidAppIds
|
1941
|
+
attr_accessor :Offset, :Limit, :AndroidAppIds, :Filters
|
1924
1942
|
|
1925
|
-
def initialize(offset=nil, limit=nil, androidappids=nil)
|
1943
|
+
def initialize(offset=nil, limit=nil, androidappids=nil, filters=nil)
|
1926
1944
|
@Offset = offset
|
1927
1945
|
@Limit = limit
|
1928
1946
|
@AndroidAppIds = androidappids
|
1947
|
+
@Filters = filters
|
1929
1948
|
end
|
1930
1949
|
|
1931
1950
|
def deserialize(params)
|
1932
1951
|
@Offset = params['Offset']
|
1933
1952
|
@Limit = params['Limit']
|
1934
1953
|
@AndroidAppIds = params['AndroidAppIds']
|
1954
|
+
unless params['Filters'].nil?
|
1955
|
+
@Filters = []
|
1956
|
+
params['Filters'].each do |i|
|
1957
|
+
filter_tmp = Filter.new
|
1958
|
+
filter_tmp.deserialize(i)
|
1959
|
+
@Filters << filter_tmp
|
1960
|
+
end
|
1961
|
+
end
|
1935
1962
|
end
|
1936
1963
|
end
|
1937
1964
|
|
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.1092
|
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
|
+
date: 2025-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|