tencentcloud-sdk-mps 3.0.499 → 3.0.500
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/v20190612/models.rb +16 -4
- 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: 4078d219167963478398dcf4fdf4b062e19f60ef
|
|
4
|
+
data.tar.gz: 37bbbc9f6e5c93d0b03c7fcdcb530ae65f71eb80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d97759853c02269e20d5a67bc4dea6a332da6a3c3ab30fbce24fb7b635e93d47b5de0daddc1359d6d7c072ee4497cf05a7e241d893884ec5e48f45ba551f9dcd
|
|
7
|
+
data.tar.gz: 5759007b4c3eb76c3f1ed6991c79d76e6d5f8a99c581df6d5c20e32f7f4da3b4735a7dfd9d8ddf6e757d6586414cea4fa4d2bdf2c9fe905e1721ff5ac016ee6c
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.500
|
data/lib/v20190612/models.rb
CHANGED
|
@@ -4868,13 +4868,16 @@ module TencentCloud
|
|
|
4868
4868
|
# @type MaxBandwidth: Integer
|
|
4869
4869
|
# @param InputGroup: 流的输入组。
|
|
4870
4870
|
# @type InputGroup: Array
|
|
4871
|
+
# @param EventId: 该Flow关联的媒体传输事件ID,每个flow只能关联一个Event。
|
|
4872
|
+
# @type EventId: String
|
|
4871
4873
|
|
|
4872
|
-
attr_accessor :FlowName, :MaxBandwidth, :InputGroup
|
|
4874
|
+
attr_accessor :FlowName, :MaxBandwidth, :InputGroup, :EventId
|
|
4873
4875
|
|
|
4874
|
-
def initialize(flowname=nil, maxbandwidth=nil, inputgroup=nil)
|
|
4876
|
+
def initialize(flowname=nil, maxbandwidth=nil, inputgroup=nil, eventid=nil)
|
|
4875
4877
|
@FlowName = flowname
|
|
4876
4878
|
@MaxBandwidth = maxbandwidth
|
|
4877
4879
|
@InputGroup = inputgroup
|
|
4880
|
+
@EventId = eventid
|
|
4878
4881
|
end
|
|
4879
4882
|
|
|
4880
4883
|
def deserialize(params)
|
|
@@ -4888,6 +4891,7 @@ module TencentCloud
|
|
|
4888
4891
|
@InputGroup << createinput_tmp
|
|
4889
4892
|
end
|
|
4890
4893
|
end
|
|
4894
|
+
@EventId = params['EventId']
|
|
4891
4895
|
end
|
|
4892
4896
|
end
|
|
4893
4897
|
|
|
@@ -6089,16 +6093,22 @@ module TencentCloud
|
|
|
6089
6093
|
# @param OutputGroup: 输出组。
|
|
6090
6094
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6091
6095
|
# @type OutputGroup: Array
|
|
6096
|
+
# @param EventId: 该Flow关联的媒体传输事件EventId。
|
|
6097
|
+
# @type EventId: String
|
|
6098
|
+
# @param Region: 媒体传输输入流所属的区域,取值和InputRegion相同。
|
|
6099
|
+
# @type Region: String
|
|
6092
6100
|
|
|
6093
|
-
attr_accessor :FlowId, :FlowName, :State, :MaxBandwidth, :InputGroup, :OutputGroup
|
|
6101
|
+
attr_accessor :FlowId, :FlowName, :State, :MaxBandwidth, :InputGroup, :OutputGroup, :EventId, :Region
|
|
6094
6102
|
|
|
6095
|
-
def initialize(flowid=nil, flowname=nil, state=nil, maxbandwidth=nil, inputgroup=nil, outputgroup=nil)
|
|
6103
|
+
def initialize(flowid=nil, flowname=nil, state=nil, maxbandwidth=nil, inputgroup=nil, outputgroup=nil, eventid=nil, region=nil)
|
|
6096
6104
|
@FlowId = flowid
|
|
6097
6105
|
@FlowName = flowname
|
|
6098
6106
|
@State = state
|
|
6099
6107
|
@MaxBandwidth = maxbandwidth
|
|
6100
6108
|
@InputGroup = inputgroup
|
|
6101
6109
|
@OutputGroup = outputgroup
|
|
6110
|
+
@EventId = eventid
|
|
6111
|
+
@Region = region
|
|
6102
6112
|
end
|
|
6103
6113
|
|
|
6104
6114
|
def deserialize(params)
|
|
@@ -6122,6 +6132,8 @@ module TencentCloud
|
|
|
6122
6132
|
@OutputGroup << describeoutput_tmp
|
|
6123
6133
|
end
|
|
6124
6134
|
end
|
|
6135
|
+
@EventId = params['EventId']
|
|
6136
|
+
@Region = params['Region']
|
|
6125
6137
|
end
|
|
6126
6138
|
end
|
|
6127
6139
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-mps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.500
|
|
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-02-
|
|
11
|
+
date: 2023-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|