tencentcloud-sdk-gs 3.0.1104 → 3.0.1109
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 +33 -6
- 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: 0de2edf7e0cbba7a34b477538c41ed993e1ce15b
|
4
|
+
data.tar.gz: d941a7645df253f9e17b391221f90b1a4a5cc18e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0e731152c51fca255e328c023fbe23e43ab61db1f90511cd0824df6a44b68e7d007874d91de460784146570a56480e3b7e6566b3c7e45db442f71c0f2011e03
|
7
|
+
data.tar.gz: effad34e73612e46e19045902d88c663bf57e21350d38bd1ce3b030126d4817e94be97865cb8feb0f42d7f9fed950bde60fd3ac0832ad7c5caae4fc4d3f27e25
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1109
|
data/lib/v20191118/models.rb
CHANGED
@@ -1288,16 +1288,19 @@ module TencentCloud
|
|
1288
1288
|
|
1289
1289
|
# CreateCosCredential请求参数结构体
|
1290
1290
|
class CreateCosCredentialRequest < TencentCloud::Common::AbstractModel
|
1291
|
-
# @param CosType: Cos
|
1291
|
+
# @param CosType: Cos 密钥类型,取值: Mobile 云手游、PC 云端游、AndroidApp 云手机应用管理、AndroidAppFile 云手机文件管理、AndroidAppBackup 云手机备份还原
|
1292
1292
|
# @type CosType: String
|
1293
|
-
# @param AndroidAppCosInfo:
|
1293
|
+
# @param AndroidAppCosInfo: 云手机应用管理 Cos 数据
|
1294
1294
|
# @type AndroidAppCosInfo: :class:`Tencentcloud::Gs.v20191118.models.AndroidAppCosInfo`
|
1295
|
+
# @param AndroidAppFileCosInfo: 云手机文件管理 Cos 数据
|
1296
|
+
# @type AndroidAppFileCosInfo: :class:`Tencentcloud::Gs.v20191118.models.FileCosInfo`
|
1295
1297
|
|
1296
|
-
attr_accessor :CosType, :AndroidAppCosInfo
|
1298
|
+
attr_accessor :CosType, :AndroidAppCosInfo, :AndroidAppFileCosInfo
|
1297
1299
|
|
1298
|
-
def initialize(costype=nil, androidappcosinfo=nil)
|
1300
|
+
def initialize(costype=nil, androidappcosinfo=nil, androidappfilecosinfo=nil)
|
1299
1301
|
@CosType = costype
|
1300
1302
|
@AndroidAppCosInfo = androidappcosinfo
|
1303
|
+
@AndroidAppFileCosInfo = androidappfilecosinfo
|
1301
1304
|
end
|
1302
1305
|
|
1303
1306
|
def deserialize(params)
|
@@ -1306,6 +1309,10 @@ module TencentCloud
|
|
1306
1309
|
@AndroidAppCosInfo = AndroidAppCosInfo.new
|
1307
1310
|
@AndroidAppCosInfo.deserialize(params['AndroidAppCosInfo'])
|
1308
1311
|
end
|
1312
|
+
unless params['AndroidAppFileCosInfo'].nil?
|
1313
|
+
@AndroidAppFileCosInfo = FileCosInfo.new
|
1314
|
+
@AndroidAppFileCosInfo.deserialize(params['AndroidAppFileCosInfo'])
|
1315
|
+
end
|
1309
1316
|
end
|
1310
1317
|
end
|
1311
1318
|
|
@@ -1926,14 +1933,17 @@ module TencentCloud
|
|
1926
1933
|
# @type Offset: Integer
|
1927
1934
|
# @param Limit: 限制量,默认为20,最大值为100
|
1928
1935
|
# @type Limit: Integer
|
1936
|
+
# @param RecentDays: 时间范围限制,以天数为单位
|
1937
|
+
# @type RecentDays: Integer
|
1929
1938
|
|
1930
|
-
attr_accessor :TaskIds, :Filter, :Offset, :Limit
|
1939
|
+
attr_accessor :TaskIds, :Filter, :Offset, :Limit, :RecentDays
|
1931
1940
|
|
1932
|
-
def initialize(taskids=nil, filter=nil, offset=nil, limit=nil)
|
1941
|
+
def initialize(taskids=nil, filter=nil, offset=nil, limit=nil, recentdays=nil)
|
1933
1942
|
@TaskIds = taskids
|
1934
1943
|
@Filter = filter
|
1935
1944
|
@Offset = offset
|
1936
1945
|
@Limit = limit
|
1946
|
+
@RecentDays = recentdays
|
1937
1947
|
end
|
1938
1948
|
|
1939
1949
|
def deserialize(params)
|
@@ -1948,6 +1958,7 @@ module TencentCloud
|
|
1948
1958
|
end
|
1949
1959
|
@Offset = params['Offset']
|
1950
1960
|
@Limit = params['Limit']
|
1961
|
+
@RecentDays = params['RecentDays']
|
1951
1962
|
end
|
1952
1963
|
end
|
1953
1964
|
|
@@ -2578,6 +2589,22 @@ module TencentCloud
|
|
2578
2589
|
end
|
2579
2590
|
end
|
2580
2591
|
|
2592
|
+
# 应用文件 Cos 信息
|
2593
|
+
class FileCosInfo < TencentCloud::Common::AbstractModel
|
2594
|
+
# @param FileId: 文件 Id
|
2595
|
+
# @type FileId: String
|
2596
|
+
|
2597
|
+
attr_accessor :FileId
|
2598
|
+
|
2599
|
+
def initialize(fileid=nil)
|
2600
|
+
@FileId = fileid
|
2601
|
+
end
|
2602
|
+
|
2603
|
+
def deserialize(params)
|
2604
|
+
@FileId = params['FileId']
|
2605
|
+
end
|
2606
|
+
end
|
2607
|
+
|
2581
2608
|
# 过滤
|
2582
2609
|
class Filter < TencentCloud::Common::AbstractModel
|
2583
2610
|
# @param Name: 字段名
|
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.1109
|
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-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|