tencentcloud-sdk-gs 3.0.1050 → 3.0.1051

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 +21 -9
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85a0e2ae980fca897e776a45047541c5a8b958d1
4
- data.tar.gz: 964fd765fcdf09df3c2e263899dd20f5f85347ad
3
+ metadata.gz: 9d8ae5fb9c0d3f42de12633ac7679bf3c8195d29
4
+ data.tar.gz: 0e838680211ec11a7e5901d133be21ded88406d8
5
5
  SHA512:
6
- metadata.gz: 9b859b01a0072593c8d6f4a9cfc090785be1bb6eb165288853354e21a1f6e9272917195d32e9dd25813638baf58fb4504fbe152e84ace7255d8f10e7b4da63d6
7
- data.tar.gz: 5bf4a96296fa37ce9cef3bf5293d834e793d4cea503fb88bc747805dfad8ba5fce46e7ce757a82dc6a937389974317ca96a412f43378a4ee12a9cdca7206f31a
6
+ metadata.gz: 062fa7ff19736707813e5e00eef3caecb546d83d5eb89d4798f89ab02035d9bd754545042e111c211e713eeb5bbb6837567af708a6a4e590401acdf949920f97
7
+ data.tar.gz: 9f09999b029c5cb1d5eb4119dac6925e3ec2310ce265c3ea9ca2eccb77fb94d0d4b0dd83c257cb2f6aef2682121cff8fab71732b885cd769317f23a18c74e767
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1050
1
+ 3.0.1051
@@ -94,16 +94,19 @@ module TencentCloud
94
94
  # @type State: String
95
95
  # @param CreateTime: 安卓应用版本创建时间
96
96
  # @type CreateTime: String
97
- # @param Command: shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
97
+ # @param Command: shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
98
98
  # @type Command: String
99
+ # @param UninstallCommand: shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
100
+ # @type UninstallCommand: String
99
101
 
100
- attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command
102
+ attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand
101
103
 
102
- def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil)
104
+ def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil)
103
105
  @AndroidAppVersion = androidappversion
104
106
  @State = state
105
107
  @CreateTime = createtime
106
108
  @Command = command
109
+ @UninstallCommand = uninstallcommand
107
110
  end
108
111
 
109
112
  def deserialize(params)
@@ -111,6 +114,7 @@ module TencentCloud
111
114
  @State = params['State']
112
115
  @CreateTime = params['CreateTime']
113
116
  @Command = params['Command']
117
+ @UninstallCommand = params['UninstallCommand']
114
118
  end
115
119
  end
116
120
 
@@ -581,21 +585,25 @@ module TencentCloud
581
585
  # @type AndroidAppId: String
582
586
  # @param DownloadUrl: 应用包下载地址
583
587
  # @type DownloadUrl: String
584
- # @param Command: shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
588
+ # @param Command: 应用 shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
585
589
  # @type Command: String
590
+ # @param UninstallCommand: 应用 shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
591
+ # @type UninstallCommand: String
586
592
 
587
- attr_accessor :AndroidAppId, :DownloadUrl, :Command
593
+ attr_accessor :AndroidAppId, :DownloadUrl, :Command, :UninstallCommand
588
594
 
589
- def initialize(androidappid=nil, downloadurl=nil, command=nil)
595
+ def initialize(androidappid=nil, downloadurl=nil, command=nil, uninstallcommand=nil)
590
596
  @AndroidAppId = androidappid
591
597
  @DownloadUrl = downloadurl
592
598
  @Command = command
599
+ @UninstallCommand = uninstallcommand
593
600
  end
594
601
 
595
602
  def deserialize(params)
596
603
  @AndroidAppId = params['AndroidAppId']
597
604
  @DownloadUrl = params['DownloadUrl']
598
605
  @Command = params['Command']
606
+ @UninstallCommand = params['UninstallCommand']
599
607
  end
600
608
  end
601
609
 
@@ -1930,16 +1938,19 @@ module TencentCloud
1930
1938
  # @type AndroidAppVersion: String
1931
1939
  # @param AndroidAppVersionName: 安卓应用版本名称
1932
1940
  # @type AndroidAppVersionName: String
1933
- # @param Command: shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1941
+ # @param Command: 应用 shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1934
1942
  # @type Command: String
1943
+ # @param UninstallCommand: 应用 shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1944
+ # @type UninstallCommand: String
1935
1945
 
1936
- attr_accessor :AndroidAppId, :AndroidAppVersion, :AndroidAppVersionName, :Command
1946
+ attr_accessor :AndroidAppId, :AndroidAppVersion, :AndroidAppVersionName, :Command, :UninstallCommand
1937
1947
 
1938
- def initialize(androidappid=nil, androidappversion=nil, androidappversionname=nil, command=nil)
1948
+ def initialize(androidappid=nil, androidappversion=nil, androidappversionname=nil, command=nil, uninstallcommand=nil)
1939
1949
  @AndroidAppId = androidappid
1940
1950
  @AndroidAppVersion = androidappversion
1941
1951
  @AndroidAppVersionName = androidappversionname
1942
1952
  @Command = command
1953
+ @UninstallCommand = uninstallcommand
1943
1954
  end
1944
1955
 
1945
1956
  def deserialize(params)
@@ -1947,6 +1958,7 @@ module TencentCloud
1947
1958
  @AndroidAppVersion = params['AndroidAppVersion']
1948
1959
  @AndroidAppVersionName = params['AndroidAppVersionName']
1949
1960
  @Command = params['Command']
1961
+ @UninstallCommand = params['UninstallCommand']
1950
1962
  end
1951
1963
  end
1952
1964
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1050
4
+ version: 3.0.1051
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud