tencentcloud-sdk-ame 1.0.200
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 +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-ame.rb +11 -0
- data/lib/v20190916/client.rb +516 -0
- data/lib/v20190916/models.rb +1786 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 119281e9d94c675d95840079264b9d905e601fc3
|
4
|
+
data.tar.gz: 0019c52874a88dc9b88478d82c82b38a6483f639
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 71dd5afd5f33743c6cacabef465213e39e448fb8d64e0adeb669f6c0e0f6349416511c544fed5c6b2b7c390181c8c636ca44680a0b61e6ffbea18515a9eb395f
|
7
|
+
data.tar.gz: c935d7970876192dc6b8254ba852b75cb3504e617de32850125eadcbc64d2af6dbdcf2115fd6d2468b7037d48cdd9bf52b564a854aafa917ba0df756ed97fb3e
|
data/lib/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.200
|
@@ -0,0 +1,516 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require 'json'
|
18
|
+
|
19
|
+
module TencentCloud
|
20
|
+
module Ame
|
21
|
+
module V20190916
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2019-09-16'
|
26
|
+
api_endpoint = 'ame.tencentcloudapi.com'
|
27
|
+
sdk_version = 'AME_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 获取授权项目信息列表
|
33
|
+
|
34
|
+
# @param request: Request instance for DescribeAuthInfo.
|
35
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeAuthInfoRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeAuthInfoResponse`
|
37
|
+
def DescribeAuthInfo(request)
|
38
|
+
body = send_request('DescribeAuthInfo', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = DescribeAuthInfoResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 获取云音乐播放信息接口
|
57
|
+
|
58
|
+
# @param request: Request instance for DescribeCloudMusic.
|
59
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeCloudMusicRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeCloudMusicResponse`
|
61
|
+
def DescribeCloudMusic(request)
|
62
|
+
body = send_request('DescribeCloudMusic', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = DescribeCloudMusicResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 获取授权项目下已购云音乐列表
|
81
|
+
|
82
|
+
# @param request: Request instance for DescribeCloudMusicPurchased.
|
83
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeCloudMusicPurchasedRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeCloudMusicPurchasedResponse`
|
85
|
+
def DescribeCloudMusicPurchased(request)
|
86
|
+
body = send_request('DescribeCloudMusicPurchased', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = DescribeCloudMusicPurchasedResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 根据歌曲ID查询歌曲信息
|
105
|
+
|
106
|
+
# @param request: Request instance for DescribeItemById.
|
107
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeItemByIdRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeItemByIdResponse`
|
109
|
+
def DescribeItemById(request)
|
110
|
+
body = send_request('DescribeItemById', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = DescribeItemByIdResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 该服务后续会停用,不再建议使用
|
129
|
+
|
130
|
+
# @param request: Request instance for DescribeItems.
|
131
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeItemsRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeItemsResponse`
|
133
|
+
def DescribeItems(request)
|
134
|
+
body = send_request('DescribeItems', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = DescribeItemsResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
152
|
+
# 根据 Id 查询歌曲的详细信息,包含基础信息及播放信息。
|
153
|
+
|
154
|
+
# @param request: Request instance for DescribeKTVMusicDetail.
|
155
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeKTVMusicDetailRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeKTVMusicDetailResponse`
|
157
|
+
def DescribeKTVMusicDetail(request)
|
158
|
+
body = send_request('DescribeKTVMusicDetail', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = DescribeKTVMusicDetailResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 根据歌单 Id 获取歌单详情,包括歌单的基础信息以及歌曲列表。
|
177
|
+
|
178
|
+
# @param request: Request instance for DescribeKTVPlaylistDetail.
|
179
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeKTVPlaylistDetailRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeKTVPlaylistDetailResponse`
|
181
|
+
def DescribeKTVPlaylistDetail(request)
|
182
|
+
body = send_request('DescribeKTVPlaylistDetail', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DescribeKTVPlaylistDetailResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 获取直播互动曲库推荐歌单列表。
|
201
|
+
|
202
|
+
# @param request: Request instance for DescribeKTVPlaylists.
|
203
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeKTVPlaylistsRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeKTVPlaylistsResponse`
|
205
|
+
def DescribeKTVPlaylists(request)
|
206
|
+
body = send_request('DescribeKTVPlaylists', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribeKTVPlaylistsResponse.new
|
210
|
+
model.deserialize(response['Response'])
|
211
|
+
model
|
212
|
+
else
|
213
|
+
code = response['Response']['Error']['Code']
|
214
|
+
message = response['Response']['Error']['Message']
|
215
|
+
reqid = response['Response']['RequestId']
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
217
|
+
end
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
219
|
+
raise e
|
220
|
+
rescue StandardError => e
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
|
+
end
|
223
|
+
|
224
|
+
# 根据接口的模式及歌曲ID来取得歌词信息或者波形图信息。
|
225
|
+
|
226
|
+
# @param request: Request instance for DescribeLyric.
|
227
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeLyricRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeLyricResponse`
|
229
|
+
def DescribeLyric(request)
|
230
|
+
body = send_request('DescribeLyric', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribeLyricResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 获取曲库包歌曲播放信息接口
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeMusic.
|
251
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeMusicRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeMusicResponse`
|
253
|
+
def DescribeMusic(request)
|
254
|
+
body = send_request('DescribeMusic', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeMusicResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
# 根据音乐信息查询音乐是否在售
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeMusicSaleStatus.
|
275
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeMusicSaleStatusRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeMusicSaleStatusResponse`
|
277
|
+
def DescribeMusicSaleStatus(request)
|
278
|
+
body = send_request('DescribeMusicSaleStatus', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeMusicSaleStatusResponse.new
|
282
|
+
model.deserialize(response['Response'])
|
283
|
+
model
|
284
|
+
else
|
285
|
+
code = response['Response']['Error']['Code']
|
286
|
+
message = response['Response']['Error']['Message']
|
287
|
+
reqid = response['Response']['RequestId']
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
289
|
+
end
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
291
|
+
raise e
|
292
|
+
rescue StandardError => e
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
294
|
+
end
|
295
|
+
|
296
|
+
# 获取曲库包下已核销歌曲列表接口
|
297
|
+
|
298
|
+
# @param request: Request instance for DescribePackageItems.
|
299
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribePackageItemsRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribePackageItemsResponse`
|
301
|
+
def DescribePackageItems(request)
|
302
|
+
body = send_request('DescribePackageItems', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribePackageItemsResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 获取已购曲库包列表接口
|
321
|
+
|
322
|
+
# @param request: Request instance for DescribePackages.
|
323
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribePackagesRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribePackagesResponse`
|
325
|
+
def DescribePackages(request)
|
326
|
+
body = send_request('DescribePackages', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DescribePackagesResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
344
|
+
# 根据购买曲库包用户可查询已回退的歌曲信息
|
345
|
+
|
346
|
+
# @param request: Request instance for DescribePkgOfflineMusic.
|
347
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribePkgOfflineMusicRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribePkgOfflineMusicResponse`
|
349
|
+
def DescribePkgOfflineMusic(request)
|
350
|
+
body = send_request('DescribePkgOfflineMusic', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DescribePkgOfflineMusicResponse.new
|
354
|
+
model.deserialize(response['Response'])
|
355
|
+
model
|
356
|
+
else
|
357
|
+
code = response['Response']['Error']['Code']
|
358
|
+
message = response['Response']['Error']['Message']
|
359
|
+
reqid = response['Response']['RequestId']
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
361
|
+
end
|
362
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
363
|
+
raise e
|
364
|
+
rescue StandardError => e
|
365
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
366
|
+
end
|
367
|
+
|
368
|
+
# 该服务后续会停用,不再建议使用
|
369
|
+
|
370
|
+
# @param request: Request instance for DescribeStations.
|
371
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::DescribeStationsRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::DescribeStationsResponse`
|
373
|
+
def DescribeStations(request)
|
374
|
+
body = send_request('DescribeStations', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DescribeStationsResponse.new
|
378
|
+
model.deserialize(response['Response'])
|
379
|
+
model
|
380
|
+
else
|
381
|
+
code = response['Response']['Error']['Code']
|
382
|
+
message = response['Response']['Error']['Message']
|
383
|
+
reqid = response['Response']['RequestId']
|
384
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
385
|
+
end
|
386
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
387
|
+
raise e
|
388
|
+
rescue StandardError => e
|
389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
390
|
+
end
|
391
|
+
|
392
|
+
# 根据资源方,需要变更的参数,请求该接口进行变更,为空的参数默认为无变更
|
393
|
+
|
394
|
+
# @param request: Request instance for ModifyMusicOnShelves.
|
395
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::ModifyMusicOnShelvesRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::ModifyMusicOnShelvesResponse`
|
397
|
+
def ModifyMusicOnShelves(request)
|
398
|
+
body = send_request('ModifyMusicOnShelves', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = ModifyMusicOnShelvesResponse.new
|
402
|
+
model.deserialize(response['Response'])
|
403
|
+
model
|
404
|
+
else
|
405
|
+
code = response['Response']['Error']['Code']
|
406
|
+
message = response['Response']['Error']['Message']
|
407
|
+
reqid = response['Response']['RequestId']
|
408
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
409
|
+
end
|
410
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
411
|
+
raise e
|
412
|
+
rescue StandardError => e
|
413
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
414
|
+
end
|
415
|
+
|
416
|
+
# 根据资源方所传歌曲信息,进行歌曲上架,多个歌曲同时请求时,需构造复合结构进行请求
|
417
|
+
|
418
|
+
# @param request: Request instance for PutMusicOnTheShelves.
|
419
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::PutMusicOnTheShelvesRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::PutMusicOnTheShelvesResponse`
|
421
|
+
def PutMusicOnTheShelves(request)
|
422
|
+
body = send_request('PutMusicOnTheShelves', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = PutMusicOnTheShelvesResponse.new
|
426
|
+
model.deserialize(response['Response'])
|
427
|
+
model
|
428
|
+
else
|
429
|
+
code = response['Response']['Error']['Code']
|
430
|
+
message = response['Response']['Error']['Message']
|
431
|
+
reqid = response['Response']['RequestId']
|
432
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
433
|
+
end
|
434
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
435
|
+
raise e
|
436
|
+
rescue StandardError => e
|
437
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
438
|
+
end
|
439
|
+
|
440
|
+
# 客户上报用户数据功能,为了更好地为用户提供优质服务
|
441
|
+
|
442
|
+
# @param request: Request instance for ReportData.
|
443
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::ReportDataRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::ReportDataResponse`
|
445
|
+
def ReportData(request)
|
446
|
+
body = send_request('ReportData', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = ReportDataResponse.new
|
450
|
+
model.deserialize(response['Response'])
|
451
|
+
model
|
452
|
+
else
|
453
|
+
code = response['Response']['Error']['Code']
|
454
|
+
message = response['Response']['Error']['Message']
|
455
|
+
reqid = response['Response']['RequestId']
|
456
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
457
|
+
end
|
458
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
459
|
+
raise e
|
460
|
+
rescue StandardError => e
|
461
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
462
|
+
end
|
463
|
+
|
464
|
+
# 根据搜索条件,返回匹配的歌曲列表。
|
465
|
+
|
466
|
+
# @param request: Request instance for SearchKTVMusics.
|
467
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::SearchKTVMusicsRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::SearchKTVMusicsResponse`
|
469
|
+
def SearchKTVMusics(request)
|
470
|
+
body = send_request('SearchKTVMusics', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = SearchKTVMusicsResponse.new
|
474
|
+
model.deserialize(response['Response'])
|
475
|
+
model
|
476
|
+
else
|
477
|
+
code = response['Response']['Error']['Code']
|
478
|
+
message = response['Response']['Error']['Message']
|
479
|
+
reqid = response['Response']['RequestId']
|
480
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
481
|
+
end
|
482
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
483
|
+
raise e
|
484
|
+
rescue StandardError => e
|
485
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
486
|
+
end
|
487
|
+
|
488
|
+
# 根据资源方所传MusicId进行将歌曲进行下架,多个MusicId使用逗号隔开
|
489
|
+
|
490
|
+
# @param request: Request instance for TakeMusicOffShelves.
|
491
|
+
# @type request: :class:`Tencentcloud::ame::V20190916::TakeMusicOffShelvesRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::ame::V20190916::TakeMusicOffShelvesResponse`
|
493
|
+
def TakeMusicOffShelves(request)
|
494
|
+
body = send_request('TakeMusicOffShelves', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = TakeMusicOffShelvesResponse.new
|
498
|
+
model.deserialize(response['Response'])
|
499
|
+
model
|
500
|
+
else
|
501
|
+
code = response['Response']['Error']['Code']
|
502
|
+
message = response['Response']['Error']['Message']
|
503
|
+
reqid = response['Response']['RequestId']
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
505
|
+
end
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
507
|
+
raise e
|
508
|
+
rescue StandardError => e
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
510
|
+
end
|
511
|
+
|
512
|
+
|
513
|
+
end
|
514
|
+
end
|
515
|
+
end
|
516
|
+
end
|