tencentcloud-sdk-cme 1.0.329 → 1.0.330

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20191029/models.rb +63 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef157ba8383a53a3af9db16a2b47a50aa44af5c8
4
- data.tar.gz: cf56174da8659868786500a636471ca9b28af1ae
3
+ metadata.gz: 3421469a9ab8adb8d7e8cc5fc0af74e74d0e85d2
4
+ data.tar.gz: e9cdfc0749e086d12dcadd9990a5b0c0d3b05307
5
5
  SHA512:
6
- metadata.gz: e9622db02e325b4cd2fb656ca7a5610bc5ed868775d670b058333790b02ac0fd479ff0b3314773d9615132242e92392c61bc8b3287da5ca98335c0c402029338
7
- data.tar.gz: b74dd629b9f8f6db579dddfb3319a8c2651db424df90d4887e765771963e1441132a2b96f725340b0cc359feb2739c69c1379b9a1a2e79ceccfc05c7600dceff
6
+ metadata.gz: 57ccaf53793e03c8f58669435c253d0dc4972d8dced63e0f7442313798b91f30faadaf6a1cdb0ca50e9f10fb35ee62d84a8e9e5d5a8b3cc2d3f98dae7332d37c
7
+ data.tar.gz: 5455546bfddcba89ecc26f3fa5fecd063c7b464e7cd755d7dfc8532379db048ab8392f72048fde2aca070973fa53627d91aa8eee4e5e7fb5f4e25243609d9c87
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.329
1
+ 1.0.330
@@ -4557,19 +4557,37 @@ module TencentCloud
4557
4557
  # @type ProjectId: String
4558
4558
  # @param Status: 项目状态,取值有:
4559
4559
  # <li>Working:云转推推流开始;</li>
4560
- # <li>Stopped:云转推推流结束。</li>
4560
+ # <li>Stopped:云转推推流结束;</li>
4561
+ # <li>InputInterrupted:云转推输入断流;</li>
4562
+ # <li>OutputInterrupted:云转推输出断流。</li>
4561
4563
  # @type Status: String
4564
+ # @param InputInterruptInfo: 云转推输入断流信息,仅当 Status 取值 InputInterrupted 时有效。
4565
+ # 注意:此字段可能返回 null,表示取不到有效值。
4566
+ # @type InputInterruptInfo: :class:`Tencentcloud::Cme.v20191029.models.StreamConnectInputInterruptInfo`
4567
+ # @param OutputInterruptInfo: 云转推输出断流信息,仅当 Status 取值 OutputInterrupted 时有效。
4568
+ # 注意:此字段可能返回 null,表示取不到有效值。
4569
+ # @type OutputInterruptInfo: :class:`Tencentcloud::Cme.v20191029.models.StreamConnectOutputInterruptInfo`
4562
4570
 
4563
- attr_accessor :ProjectId, :Status
4571
+ attr_accessor :ProjectId, :Status, :InputInterruptInfo, :OutputInterruptInfo
4564
4572
 
4565
- def initialize(projectid=nil, status=nil)
4573
+ def initialize(projectid=nil, status=nil, inputinterruptinfo=nil, outputinterruptinfo=nil)
4566
4574
  @ProjectId = projectid
4567
4575
  @Status = status
4576
+ @InputInterruptInfo = inputinterruptinfo
4577
+ @OutputInterruptInfo = outputinterruptinfo
4568
4578
  end
4569
4579
 
4570
4580
  def deserialize(params)
4571
4581
  @ProjectId = params['ProjectId']
4572
4582
  @Status = params['Status']
4583
+ unless params['InputInterruptInfo'].nil?
4584
+ @InputInterruptInfo = StreamConnectInputInterruptInfo.new
4585
+ @InputInterruptInfo.deserialize(params['InputInterruptInfo'])
4586
+ end
4587
+ unless params['OutputInterruptInfo'].nil?
4588
+ @OutputInterruptInfo = StreamConnectOutputInterruptInfo.new
4589
+ @OutputInterruptInfo.deserialize(params['OutputInterruptInfo'])
4590
+ end
4573
4591
  end
4574
4592
  end
4575
4593
 
@@ -5057,6 +5075,24 @@ module TencentCloud
5057
5075
  end
5058
5076
  end
5059
5077
 
5078
+ # 云转推输入断流信息。
5079
+ class StreamConnectInputInterruptInfo < TencentCloud::Common::AbstractModel
5080
+ # @param EndPoint: 云转推输入源标识,取值有:
5081
+ # <li>Main:主源;</li>
5082
+ # <li>Backup:备源。</li>
5083
+ # @type EndPoint: String
5084
+
5085
+ attr_accessor :EndPoint
5086
+
5087
+ def initialize(endpoint=nil)
5088
+ @EndPoint = endpoint
5089
+ end
5090
+
5091
+ def deserialize(params)
5092
+ @EndPoint = params['EndPoint']
5093
+ end
5094
+ end
5095
+
5060
5096
  # 云转推输出源。
5061
5097
  class StreamConnectOutput < TencentCloud::Common::AbstractModel
5062
5098
  # @param Id: 云转推输出源标识,转推项目级别唯一。若不填则由后端生成。
@@ -5113,6 +5149,30 @@ module TencentCloud
5113
5149
  end
5114
5150
  end
5115
5151
 
5152
+ # 云转推输出断流信息
5153
+ class StreamConnectOutputInterruptInfo < TencentCloud::Common::AbstractModel
5154
+ # @param Id: 云转推输出标识。
5155
+ # @type Id: String
5156
+ # @param Name: 云转推输出名称。
5157
+ # @type Name: String
5158
+ # @param Url: 云转推输出地址。
5159
+ # @type Url: String
5160
+
5161
+ attr_accessor :Id, :Name, :Url
5162
+
5163
+ def initialize(id=nil, name=nil, url=nil)
5164
+ @Id = id
5165
+ @Name = name
5166
+ @Url = url
5167
+ end
5168
+
5169
+ def deserialize(params)
5170
+ @Id = params['Id']
5171
+ @Name = params['Name']
5172
+ @Url = params['Url']
5173
+ end
5174
+ end
5175
+
5116
5176
  # 云转推项目信息,包含输入源、输出源、当前转推开始时间等信息。
5117
5177
  class StreamConnectProjectInfo < TencentCloud::Common::AbstractModel
5118
5178
  # @param Status: 转推项目状态,取值有:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.329
4
+ version: 1.0.330
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud