tencentcloud-sdk-car 3.0.579 → 3.0.581

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd0ce032e04c2e5e8303361e69d1c0e160a0814e
4
- data.tar.gz: 0f6b1e2ef7610193636b981ff867ad1116c81b58
3
+ metadata.gz: 070bd4e4c9cd0b1a4b3e14be382735d2f4fdf3b2
4
+ data.tar.gz: f5235e7e5665189a06d2b9fb341885142356964a
5
5
  SHA512:
6
- metadata.gz: 255795ef822897e3f040df7e45a805b156192d8bd012f0755742ea172acc8891e64b9b6e7ffa49d931e8d734c0581e276699bc4fa75a463f532158c40f482698
7
- data.tar.gz: a9426a6de239c4195bb082c5cc0ed7becb73de07663f3918de819ac3b8687ac85ce4092ab52566085e7e285e7c31a8ae48e6226e4ae22c2ea6479d13e969880e
6
+ metadata.gz: d73edc39f09860cbd2f2bfa750c67fcd52e9c831b0f890c6859618a88a154d75f65b0690b4b4efd8acdf0f842e33c4b0b352551c34c90eb7a124a92ad632b9fc
7
+ data.tar.gz: 75cc72a0304a71581d81678422168c7a13531e14059d1dc1b4efaa7751594f7efabe6dc0904d5bb82b01e2a76e424e74821be2c635b68b0fbf83121d4a9418e1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.579
1
+ 3.0.581
@@ -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.579
4
+ version: 3.0.581
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-29 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common