tencentcloud-sdk-car 3.0.580 → 3.0.581

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: 070bd4e4c9cd0b1a4b3e14be382735d2f4fdf3b2
4
+ data.tar.gz: f5235e7e5665189a06d2b9fb341885142356964a
5
5
  SHA512:
6
- metadata.gz: 5de362473763068fa6bbef4e29c06bc8759e41b88bc8b975ba60e9b813dd0b50798e70eedcdb73e3c94ca8e183b405c9ebc2f12d29d8c06209cb70fb2bd188ee
7
- data.tar.gz: 1c9476cf2196b73bb8896d1ec55822797cf7a97410fc5ab390ce9a2b2448f8af7b210f10a461619b2de41d78ab16c5b8ba1f9da02a2b953cee9caf7e56d9ad28
6
+ metadata.gz: d73edc39f09860cbd2f2bfa750c67fcd52e9c831b0f890c6859618a88a154d75f65b0690b4b4efd8acdf0f842e33c4b0b352551c34c90eb7a124a92ad632b9fc
7
+ data.tar.gz: 75cc72a0304a71581d81678422168c7a13531e14059d1dc1b4efaa7751594f7efabe6dc0904d5bb82b01e2a76e424e74821be2c635b68b0fbf83121d4a9418e1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.580
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.580
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-30 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