tencentcloud-sdk-car 3.0.580 → 3.0.582

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1f795a9bdd3e12b86d1a409e027d70aad3b96ed6
4
- data.tar.gz: d628bd8f5e0dae8b4e4c248b7d4812a1dc027dd5
3
+ metadata.gz: 4e80b9e62b287fc521c4102fb706a4af8130fcbc
4
+ data.tar.gz: e160bd70766b1ddb50e5d54e0320be306d1e9489
5
5
  SHA512:
6
- metadata.gz: 5de362473763068fa6bbef4e29c06bc8759e41b88bc8b975ba60e9b813dd0b50798e70eedcdb73e3c94ca8e183b405c9ebc2f12d29d8c06209cb70fb2bd188ee
7
- data.tar.gz: 1c9476cf2196b73bb8896d1ec55822797cf7a97410fc5ab390ce9a2b2448f8af7b210f10a461619b2de41d78ab16c5b8ba1f9da02a2b953cee9caf7e56d9ad28
6
+ metadata.gz: 78b01c45a5b4a8e9357fcba41bc57179e2baa379ef5a6d4b2dacb93cdc5c275597abefb15186a3fc433d82bc544a0ad24cef2a2517eb4461d6fe726c6256782c
7
+ data.tar.gz: fbe0098b3f08d9d4d766e876b496b0f8e0c83654be3219260a0272eade1c2110bb76ae5d2ced40ee9e5853b485893c21aa92c971e39298091c7c5c1d7ff832f8
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.580
1
+ 3.0.582
@@ -77,6 +77,11 @@ module TencentCloud
77
77
  # RunWithoutClient:允许无客户端连接的情况下仍保持云端 App 运行
78
78
  # 默认值(空):要求必须有客户端连接才会保持云端 App 运行。
79
79
  # @type RunMode: String
80
+ # @param ApplicationParameters: 应用启动参数。
81
+ # 如果请求的是多应用共享项目,此参数生效;
82
+ # 如果请求的是关闭预启动的单应用独享项目,此参数生效;
83
+ # 如果请求的是开启预启动的单应用独享项目,此参数失效。
84
+ # @type ApplicationParameters: String
80
85
  # @param HostUserId: 【多人互动】房主用户ID,在多人互动模式下为必填字段。
81
86
  # 如果该用户是房主,HostUserId需要和UserId保持一致;
82
87
  # 如果该用户非房主,HostUserId需要填写房主的HostUserId。
@@ -86,13 +91,14 @@ module TencentCloud
86
91
  # Viewer:观察者(只能观看,无法操作)
87
92
  # @type Role: String
88
93
 
89
- attr_accessor :UserId, :UserIp, :ClientSession, :RunMode, :HostUserId, :Role
94
+ attr_accessor :UserId, :UserIp, :ClientSession, :RunMode, :ApplicationParameters, :HostUserId, :Role
90
95
 
91
- def initialize(userid=nil, userip=nil, clientsession=nil, runmode=nil, hostuserid=nil, role=nil)
96
+ def initialize(userid=nil, userip=nil, clientsession=nil, runmode=nil, applicationparameters=nil, hostuserid=nil, role=nil)
92
97
  @UserId = userid
93
98
  @UserIp = userip
94
99
  @ClientSession = clientsession
95
100
  @RunMode = runmode
101
+ @ApplicationParameters = applicationparameters
96
102
  @HostUserId = hostuserid
97
103
  @Role = role
98
104
  end
@@ -102,6 +108,7 @@ module TencentCloud
102
108
  @UserIp = params['UserIp']
103
109
  @ClientSession = params['ClientSession']
104
110
  @RunMode = params['RunMode']
111
+ @ApplicationParameters = params['ApplicationParameters']
105
112
  @HostUserId = params['HostUserId']
106
113
  @Role = params['Role']
107
114
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-car
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.580
4
+ version: 3.0.582
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-30 00:00:00.000000000 Z
11
+ date: 2023-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common