tencentcloud-sdk-ame 1.0.264 → 1.0.267
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190916/models.rb +22 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa33946abe1fc5b4e39b34850b8566012b5a6e99
|
4
|
+
data.tar.gz: 9454e2a8ab7c2e1ff321157618ed3b8c8c607f33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 496e6140fca90b7baaba3ed188ecd5c4a55dce95025faaefa9990fdcf00e40a6404868265b6d79bfe0cd7ebf8f7d9a2e3ee3920c6c133224c68c37e7210ff7c2
|
7
|
+
data.tar.gz: 33047dc3184959395766e169bbec7e02c92b956e78100658a4c287a594162b2cbfa34b7ca7fdf4cde805125f9b43505bbfb269c906312cc2e157eaf69768ea00
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.267
|
data/lib/v20190916/models.rb
CHANGED
@@ -567,18 +567,21 @@ module TencentCloud
|
|
567
567
|
# @type MidiJsonUrl: String
|
568
568
|
# @param ChorusClipSet: 副歌片段数据列表
|
569
569
|
# @type ChorusClipSet: Array
|
570
|
+
# @param PreludeInterval: 前奏间隔,单位:毫秒;注:若参数返回为0则无人声部分
|
571
|
+
# @type PreludeInterval: Integer
|
570
572
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
571
573
|
# @type RequestId: String
|
572
574
|
|
573
|
-
attr_accessor :KTVMusicBaseInfo, :PlayToken, :LyricsUrl, :DefinitionInfoSet, :MidiJsonUrl, :ChorusClipSet, :RequestId
|
575
|
+
attr_accessor :KTVMusicBaseInfo, :PlayToken, :LyricsUrl, :DefinitionInfoSet, :MidiJsonUrl, :ChorusClipSet, :PreludeInterval, :RequestId
|
574
576
|
|
575
|
-
def initialize(ktvmusicbaseinfo=nil, playtoken=nil, lyricsurl=nil, definitioninfoset=nil, midijsonurl=nil, chorusclipset=nil, requestid=nil)
|
577
|
+
def initialize(ktvmusicbaseinfo=nil, playtoken=nil, lyricsurl=nil, definitioninfoset=nil, midijsonurl=nil, chorusclipset=nil, preludeinterval=nil, requestid=nil)
|
576
578
|
@KTVMusicBaseInfo = ktvmusicbaseinfo
|
577
579
|
@PlayToken = playtoken
|
578
580
|
@LyricsUrl = lyricsurl
|
579
581
|
@DefinitionInfoSet = definitioninfoset
|
580
582
|
@MidiJsonUrl = midijsonurl
|
581
583
|
@ChorusClipSet = chorusclipset
|
584
|
+
@PreludeInterval = preludeinterval
|
582
585
|
@RequestId = requestid
|
583
586
|
end
|
584
587
|
|
@@ -606,6 +609,7 @@ module TencentCloud
|
|
606
609
|
@ChorusClipSet << chorusclip_tmp
|
607
610
|
end
|
608
611
|
end
|
612
|
+
@PreludeInterval = params['PreludeInterval']
|
609
613
|
@RequestId = params['RequestId']
|
610
614
|
end
|
611
615
|
end
|
@@ -1603,16 +1607,19 @@ module TencentCloud
|
|
1603
1607
|
# @type MidiJsonUrl: String
|
1604
1608
|
# @param ChorusClipSet: 副歌片段数据列表
|
1605
1609
|
# @type ChorusClipSet: Array
|
1610
|
+
# @param PreludeInterval: 前奏间隔,单位:毫秒;注:若参数返回为0则无人声部分
|
1611
|
+
# @type PreludeInterval: Integer
|
1606
1612
|
|
1607
|
-
attr_accessor :KTVMusicBaseInfo, :PlayToken, :LyricsUrl, :DefinitionInfoSet, :MidiJsonUrl, :ChorusClipSet
|
1613
|
+
attr_accessor :KTVMusicBaseInfo, :PlayToken, :LyricsUrl, :DefinitionInfoSet, :MidiJsonUrl, :ChorusClipSet, :PreludeInterval
|
1608
1614
|
|
1609
|
-
def initialize(ktvmusicbaseinfo=nil, playtoken=nil, lyricsurl=nil, definitioninfoset=nil, midijsonurl=nil, chorusclipset=nil)
|
1615
|
+
def initialize(ktvmusicbaseinfo=nil, playtoken=nil, lyricsurl=nil, definitioninfoset=nil, midijsonurl=nil, chorusclipset=nil, preludeinterval=nil)
|
1610
1616
|
@KTVMusicBaseInfo = ktvmusicbaseinfo
|
1611
1617
|
@PlayToken = playtoken
|
1612
1618
|
@LyricsUrl = lyricsurl
|
1613
1619
|
@DefinitionInfoSet = definitioninfoset
|
1614
1620
|
@MidiJsonUrl = midijsonurl
|
1615
1621
|
@ChorusClipSet = chorusclipset
|
1622
|
+
@PreludeInterval = preludeinterval
|
1616
1623
|
end
|
1617
1624
|
|
1618
1625
|
def deserialize(params)
|
@@ -1639,6 +1646,7 @@ module TencentCloud
|
|
1639
1646
|
@ChorusClipSet << chorusclip_tmp
|
1640
1647
|
end
|
1641
1648
|
end
|
1649
|
+
@PreludeInterval = params['PreludeInterval']
|
1642
1650
|
end
|
1643
1651
|
end
|
1644
1652
|
|
@@ -2517,25 +2525,32 @@ module TencentCloud
|
|
2517
2525
|
# @param Type: 变更类型,取值有:
|
2518
2526
|
# <li>Add:添加</li>
|
2519
2527
|
# <li>Delete:删除</li>
|
2528
|
+
# <li>ClearList:清空歌曲列表</li>
|
2529
|
+
# <li>Move:移动歌曲</li>
|
2520
2530
|
# @type Type: String
|
2521
2531
|
# @param Index: 歌单索引位置,
|
2522
2532
|
# 当 Type 取 Add 时,-1表示添加在列表最后位置,大于-1表示要添加的位置;
|
2523
|
-
# 当 Type 取 Delete
|
2533
|
+
# 当 Type 取 Delete 时,表示待删除歌曲的位置;
|
2534
|
+
# 当 Type 取 Move 时,表示待调整歌曲的位置。
|
2524
2535
|
# @type Index: Integer
|
2536
|
+
# @param ChangedIndex: 当 Type 取 Move 时,必填,表示移动歌曲的目标位置。
|
2537
|
+
# @type ChangedIndex: Integer
|
2525
2538
|
# @param MusicIds: 歌曲 ID 列表,当 Type 取 Add 时,必填。
|
2526
2539
|
# @type MusicIds: Array
|
2527
2540
|
|
2528
|
-
attr_accessor :Type, :Index, :MusicIds
|
2541
|
+
attr_accessor :Type, :Index, :ChangedIndex, :MusicIds
|
2529
2542
|
|
2530
|
-
def initialize(type=nil, index=nil, musicids=nil)
|
2543
|
+
def initialize(type=nil, index=nil, changedindex=nil, musicids=nil)
|
2531
2544
|
@Type = type
|
2532
2545
|
@Index = index
|
2546
|
+
@ChangedIndex = changedindex
|
2533
2547
|
@MusicIds = musicids
|
2534
2548
|
end
|
2535
2549
|
|
2536
2550
|
def deserialize(params)
|
2537
2551
|
@Type = params['Type']
|
2538
2552
|
@Index = params['Index']
|
2553
|
+
@ChangedIndex = params['ChangedIndex']
|
2539
2554
|
@MusicIds = params['MusicIds']
|
2540
2555
|
end
|
2541
2556
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ame
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.267
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|