tencentcloud-sdk-gs 3.0.1095 → 3.0.1104
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 +48 -12
- 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: 9c39c8e96f579b9527b3e1dff0be7a8dd4305298
|
4
|
+
data.tar.gz: 79e15b4a0f2a495a86b8f9502452533158008816
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f711c8fe5a25150614f0d180053bef570c58e77ade721fb49142bb23a63e9c4f6b42f52fefa7cad3d4bffdc01e24fb72563da36da4a3d8170d9a2d7fc2907bb2
|
7
|
+
data.tar.gz: 3d33b79a59558cf8b2e3c91b6e0abb373841a4d115ba022fa5f52c14ef91d0ba6d16ec5e88efbaf3985e89c4921ae7074f84de4687e9ee8bd22bf00dffa7ffa7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1104
|
data/lib/v20191118/models.rb
CHANGED
@@ -33,7 +33,7 @@ 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 默认状态
|
36
|
+
# @param UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、PACKAGE_NAME_MISMATCH 包名不匹配、VERSION_ALREADY_EXISTS 版本已存在、APP_PARSE_FAIL app 解析失败、APP_EXISTS_SECURITY_RISK app 存在安全风险、NORMAL 默认状态
|
37
37
|
# @type UpdateState: String
|
38
38
|
# @param PackageName: 安卓应用包名
|
39
39
|
# @type PackageName: String
|
@@ -96,9 +96,7 @@ module TencentCloud
|
|
96
96
|
class AndroidAppVersionInfo < TencentCloud::Common::AbstractModel
|
97
97
|
# @param AndroidAppVersion: 安卓应用版本
|
98
98
|
# @type AndroidAppVersion: String
|
99
|
-
# @param State:
|
100
|
-
# CREATING: 创建中、
|
101
|
-
# CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
99
|
+
# @param State: 安卓应用版本创建状态,取值:NORMAL:无(默认)、UPLOADING:上传中、CREATING: 创建中、CREATE_FAIL:创建失败、PACKAGE_NAME_MISMATCH:包名不匹配、VERSION_ALREADY_EXISTS:版本已存在、APP_PARSE_FAIL: app 解析失败、APP_EXISTS_SECURITY_RISK:app 存在安全风险、CREATE_SUCCESS:创建成功
|
102
100
|
# @type State: String
|
103
101
|
# @param CreateTime: 安卓应用版本创建时间
|
104
102
|
# @type CreateTime: String
|
@@ -114,10 +112,16 @@ module TencentCloud
|
|
114
112
|
# @type Activity: String
|
115
113
|
# @param VersionName: 应用版本号(Version Name)
|
116
114
|
# @type VersionName: String
|
115
|
+
# @param MD5: 应用包 MD5
|
116
|
+
# @type MD5: String
|
117
|
+
# @param FileSize: 应用包文件大小(字节)
|
118
|
+
# @type FileSize: Integer
|
119
|
+
# @param PackageName: 安卓应用包名
|
120
|
+
# @type PackageName: String
|
117
121
|
|
118
|
-
attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand, :CleanupMode, :AndroidAppVersionName, :Activity, :VersionName
|
122
|
+
attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand, :CleanupMode, :AndroidAppVersionName, :Activity, :VersionName, :MD5, :FileSize, :PackageName
|
119
123
|
|
120
|
-
def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil, cleanupmode=nil, androidappversionname=nil, activity=nil, versionname=nil)
|
124
|
+
def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil, cleanupmode=nil, androidappversionname=nil, activity=nil, versionname=nil, md5=nil, filesize=nil, packagename=nil)
|
121
125
|
@AndroidAppVersion = androidappversion
|
122
126
|
@State = state
|
123
127
|
@CreateTime = createtime
|
@@ -127,6 +131,9 @@ module TencentCloud
|
|
127
131
|
@AndroidAppVersionName = androidappversionname
|
128
132
|
@Activity = activity
|
129
133
|
@VersionName = versionname
|
134
|
+
@MD5 = md5
|
135
|
+
@FileSize = filesize
|
136
|
+
@PackageName = packagename
|
130
137
|
end
|
131
138
|
|
132
139
|
def deserialize(params)
|
@@ -139,6 +146,9 @@ module TencentCloud
|
|
139
146
|
@AndroidAppVersionName = params['AndroidAppVersionName']
|
140
147
|
@Activity = params['Activity']
|
141
148
|
@VersionName = params['VersionName']
|
149
|
+
@MD5 = params['MD5']
|
150
|
+
@FileSize = params['FileSize']
|
151
|
+
@PackageName = params['PackageName']
|
142
152
|
end
|
143
153
|
end
|
144
154
|
|
@@ -342,17 +352,23 @@ module TencentCloud
|
|
342
352
|
# @type AndroidInstanceImageState: String
|
343
353
|
# @param AndroidInstanceImageZone: 镜像可用区
|
344
354
|
# @type AndroidInstanceImageZone: String
|
355
|
+
# @param AndroidInstanceImageDescription: 镜像描述
|
356
|
+
# @type AndroidInstanceImageDescription: String
|
345
357
|
# @param AndroidVersion: 安卓10
|
346
358
|
# @type AndroidVersion: String
|
359
|
+
# @param CreateTime: 创建时间
|
360
|
+
# @type CreateTime: String
|
347
361
|
|
348
|
-
attr_accessor :AndroidInstanceImageId, :AndroidInstanceImageName, :AndroidInstanceImageState, :AndroidInstanceImageZone, :AndroidVersion
|
362
|
+
attr_accessor :AndroidInstanceImageId, :AndroidInstanceImageName, :AndroidInstanceImageState, :AndroidInstanceImageZone, :AndroidInstanceImageDescription, :AndroidVersion, :CreateTime
|
349
363
|
|
350
|
-
def initialize(androidinstanceimageid=nil, androidinstanceimagename=nil, androidinstanceimagestate=nil, androidinstanceimagezone=nil, androidversion=nil)
|
364
|
+
def initialize(androidinstanceimageid=nil, androidinstanceimagename=nil, androidinstanceimagestate=nil, androidinstanceimagezone=nil, androidinstanceimagedescription=nil, androidversion=nil, createtime=nil)
|
351
365
|
@AndroidInstanceImageId = androidinstanceimageid
|
352
366
|
@AndroidInstanceImageName = androidinstanceimagename
|
353
367
|
@AndroidInstanceImageState = androidinstanceimagestate
|
354
368
|
@AndroidInstanceImageZone = androidinstanceimagezone
|
369
|
+
@AndroidInstanceImageDescription = androidinstanceimagedescription
|
355
370
|
@AndroidVersion = androidversion
|
371
|
+
@CreateTime = createtime
|
356
372
|
end
|
357
373
|
|
358
374
|
def deserialize(params)
|
@@ -360,7 +376,9 @@ module TencentCloud
|
|
360
376
|
@AndroidInstanceImageName = params['AndroidInstanceImageName']
|
361
377
|
@AndroidInstanceImageState = params['AndroidInstanceImageState']
|
362
378
|
@AndroidInstanceImageZone = params['AndroidInstanceImageZone']
|
379
|
+
@AndroidInstanceImageDescription = params['AndroidInstanceImageDescription']
|
363
380
|
@AndroidVersion = params['AndroidVersion']
|
381
|
+
@CreateTime = params['CreateTime']
|
364
382
|
end
|
365
383
|
end
|
366
384
|
|
@@ -914,17 +932,21 @@ module TencentCloud
|
|
914
932
|
# @type AndroidInstanceImageName: String
|
915
933
|
# @param AndroidInstanceId: 安卓实例 ID
|
916
934
|
# @type AndroidInstanceId: String
|
935
|
+
# @param AndroidInstanceImageDescription: 安卓实例镜像描述
|
936
|
+
# @type AndroidInstanceImageDescription: String
|
917
937
|
|
918
|
-
attr_accessor :AndroidInstanceImageName, :AndroidInstanceId
|
938
|
+
attr_accessor :AndroidInstanceImageName, :AndroidInstanceId, :AndroidInstanceImageDescription
|
919
939
|
|
920
|
-
def initialize(androidinstanceimagename=nil, androidinstanceid=nil)
|
940
|
+
def initialize(androidinstanceimagename=nil, androidinstanceid=nil, androidinstanceimagedescription=nil)
|
921
941
|
@AndroidInstanceImageName = androidinstanceimagename
|
922
942
|
@AndroidInstanceId = androidinstanceid
|
943
|
+
@AndroidInstanceImageDescription = androidinstanceimagedescription
|
923
944
|
end
|
924
945
|
|
925
946
|
def deserialize(params)
|
926
947
|
@AndroidInstanceImageName = params['AndroidInstanceImageName']
|
927
948
|
@AndroidInstanceId = params['AndroidInstanceId']
|
949
|
+
@AndroidInstanceImageDescription = params['AndroidInstanceImageDescription']
|
928
950
|
end
|
929
951
|
end
|
930
952
|
|
@@ -1758,14 +1780,20 @@ module TencentCloud
|
|
1758
1780
|
# @type Offset: Integer
|
1759
1781
|
# @param Limit: 限制量,默认为20,最大值为100
|
1760
1782
|
# @type Limit: Integer
|
1783
|
+
# @param Filters: 字段过滤器。Filter 的 Name 有以下值:
|
1784
|
+
# ImageName:镜像名称
|
1785
|
+
# ImageState:镜像状态
|
1786
|
+
# AndroidVersion:安卓版本
|
1787
|
+
# @type Filters: Array
|
1761
1788
|
|
1762
|
-
attr_accessor :AndroidInstanceImageIds, :AndroidInstanceImageZones, :Offset, :Limit
|
1789
|
+
attr_accessor :AndroidInstanceImageIds, :AndroidInstanceImageZones, :Offset, :Limit, :Filters
|
1763
1790
|
|
1764
|
-
def initialize(androidinstanceimageids=nil, androidinstanceimagezones=nil, offset=nil, limit=nil)
|
1791
|
+
def initialize(androidinstanceimageids=nil, androidinstanceimagezones=nil, offset=nil, limit=nil, filters=nil)
|
1765
1792
|
@AndroidInstanceImageIds = androidinstanceimageids
|
1766
1793
|
@AndroidInstanceImageZones = androidinstanceimagezones
|
1767
1794
|
@Offset = offset
|
1768
1795
|
@Limit = limit
|
1796
|
+
@Filters = filters
|
1769
1797
|
end
|
1770
1798
|
|
1771
1799
|
def deserialize(params)
|
@@ -1773,6 +1801,14 @@ module TencentCloud
|
|
1773
1801
|
@AndroidInstanceImageZones = params['AndroidInstanceImageZones']
|
1774
1802
|
@Offset = params['Offset']
|
1775
1803
|
@Limit = params['Limit']
|
1804
|
+
unless params['Filters'].nil?
|
1805
|
+
@Filters = []
|
1806
|
+
params['Filters'].each do |i|
|
1807
|
+
filter_tmp = Filter.new
|
1808
|
+
filter_tmp.deserialize(i)
|
1809
|
+
@Filters << filter_tmp
|
1810
|
+
end
|
1811
|
+
end
|
1776
1812
|
end
|
1777
1813
|
end
|
1778
1814
|
|
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.1104
|
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-07-
|
11
|
+
date: 2025-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|