tencentcloud-sdk-gs 3.0.1088 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20191118/models.rb +30 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 925a4a70639ed53d1bc165c83448531c2816f82f
4
- data.tar.gz: 6f5b22f5fb0dd741f1eaedba91f54927ad016f04
3
+ metadata.gz: eaa8e601598b6ab01e95a24ee890bb5374d4b869
4
+ data.tar.gz: d8187c9532e4422fb88575e1c31fcdaa6de5f3e3
5
5
  SHA512:
6
- metadata.gz: c0dcad2c8881b65d22dbed9620c916937b66f2cbb9f9882fdfec0460e1dcb35dd8f627c127818f03f4efc1d6c3a19c43aaa24b7d9633748f7094b2ed1c30684d
7
- data.tar.gz: c4304c1fa2c94f6a911638ab979be14d78c6632bb81ae0a50fbbb1bd393a4507867e926291b374adc0187466dce94a092b2a102e07b712fd2ffae60101e063f2
6
+ metadata.gz: ac892eeaa03b30189879a23c189a596a4363b88dc54d50579f4878d671be35da750a8e2b53e2a610a812fffcbac19ebfd5d368df7b545cd05f5dcf34a37f61b2
7
+ data.tar.gz: 300285755a5766b47a16d878878ffa4c705b66ec58d0ecffe45e4dc2f21e356981b88d585dc9a6a54987031a1ed0b6fddcc672ca866a4461991a909364216d00
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1088
1
+ 3.0.1092
@@ -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
 
@@ -1923,19 +1935,30 @@ module TencentCloud
1923
1935
  # @type Limit: Integer
1924
1936
  # @param AndroidAppIds: 应用 ID 列表。通过应用 ID 做集合查询
1925
1937
  # @type AndroidAppIds: Array
1938
+ # @param Filters: 字段过滤器。Filter 的 Name 有以下值: AndroidInstanceId:实例 ID
1939
+ # @type Filters: Array
1926
1940
 
1927
- attr_accessor :Offset, :Limit, :AndroidAppIds
1941
+ attr_accessor :Offset, :Limit, :AndroidAppIds, :Filters
1928
1942
 
1929
- def initialize(offset=nil, limit=nil, androidappids=nil)
1943
+ def initialize(offset=nil, limit=nil, androidappids=nil, filters=nil)
1930
1944
  @Offset = offset
1931
1945
  @Limit = limit
1932
1946
  @AndroidAppIds = androidappids
1947
+ @Filters = filters
1933
1948
  end
1934
1949
 
1935
1950
  def deserialize(params)
1936
1951
  @Offset = params['Offset']
1937
1952
  @Limit = params['Limit']
1938
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
1939
1962
  end
1940
1963
  end
1941
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.1088
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-06-24 00:00:00.000000000 Z
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