tencentcloud-sdk-iss 3.0.930 → 3.0.932
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/v20230517/models.rb +13 -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: 458c11d110902d18a4d6fd27f6f51c60026c4c55
|
4
|
+
data.tar.gz: e47e3d1fba042b3ee4f5b14dfbe6e0c78a57e0a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6d10033d726d84a3238f3369f3e74deb1d01cdce4d2ba8649eb670d6dfb4b6067aff20ddb7ad3e951bf55972ce809d323af48ac4a14febe8cd7531e1c6ff879
|
7
|
+
data.tar.gz: 5a2e0f7fe81404b026cb99ed14a0153b9a898f09ddc6b5b7964f6dc0157439d6d3830e744416b5a4a98a250a141d14c9983ffb2a84d29aa31a2089919e43db9e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.932
|
data/lib/v20230517/models.rb
CHANGED
@@ -2570,10 +2570,13 @@ module TencentCloud
|
|
2570
2570
|
# @param StreamName: RTMP推流地址自定义streamName
|
2571
2571
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2572
2572
|
# @type StreamName: String
|
2573
|
+
# @param SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
|
2574
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2575
|
+
# @type SilentFrameSwitch: Integer
|
2573
2576
|
|
2574
|
-
attr_accessor :DeviceId, :Code, :Name, :AccessProtocol, :Type, :ClusterId, :ClusterName, :TransportProtocol, :Password, :Description, :SipId, :SipDomain, :SipIp, :SipPort, :PushStreamUrl, :Status, :OrganizationId, :GatewayId, :GatewayName, :ProtocolTypeName, :ProtocolType, :Ip, :Port, :Username, :Region, :Manufacturer, :AudioSwitch, :SubscribeSwitch, :AppName, :StreamName
|
2577
|
+
attr_accessor :DeviceId, :Code, :Name, :AccessProtocol, :Type, :ClusterId, :ClusterName, :TransportProtocol, :Password, :Description, :SipId, :SipDomain, :SipIp, :SipPort, :PushStreamUrl, :Status, :OrganizationId, :GatewayId, :GatewayName, :ProtocolTypeName, :ProtocolType, :Ip, :Port, :Username, :Region, :Manufacturer, :AudioSwitch, :SubscribeSwitch, :AppName, :StreamName, :SilentFrameSwitch
|
2575
2578
|
|
2576
|
-
def initialize(deviceid=nil, code=nil, name=nil, accessprotocol=nil, type=nil, clusterid=nil, clustername=nil, transportprotocol=nil, password=nil, description=nil, sipid=nil, sipdomain=nil, sipip=nil, sipport=nil, pushstreamurl=nil, status=nil, organizationid=nil, gatewayid=nil, gatewayname=nil, protocoltypename=nil, protocoltype=nil, ip=nil, port=nil, username=nil, region=nil, manufacturer=nil, audioswitch=nil, subscribeswitch=nil, appname=nil, streamname=nil)
|
2579
|
+
def initialize(deviceid=nil, code=nil, name=nil, accessprotocol=nil, type=nil, clusterid=nil, clustername=nil, transportprotocol=nil, password=nil, description=nil, sipid=nil, sipdomain=nil, sipip=nil, sipport=nil, pushstreamurl=nil, status=nil, organizationid=nil, gatewayid=nil, gatewayname=nil, protocoltypename=nil, protocoltype=nil, ip=nil, port=nil, username=nil, region=nil, manufacturer=nil, audioswitch=nil, subscribeswitch=nil, appname=nil, streamname=nil, silentframeswitch=nil)
|
2577
2580
|
@DeviceId = deviceid
|
2578
2581
|
@Code = code
|
2579
2582
|
@Name = name
|
@@ -2604,6 +2607,7 @@ module TencentCloud
|
|
2604
2607
|
@SubscribeSwitch = subscribeswitch
|
2605
2608
|
@AppName = appname
|
2606
2609
|
@StreamName = streamname
|
2610
|
+
@SilentFrameSwitch = silentframeswitch
|
2607
2611
|
end
|
2608
2612
|
|
2609
2613
|
def deserialize(params)
|
@@ -2637,6 +2641,7 @@ module TencentCloud
|
|
2637
2641
|
@SubscribeSwitch = params['SubscribeSwitch']
|
2638
2642
|
@AppName = params['AppName']
|
2639
2643
|
@StreamName = params['StreamName']
|
2644
|
+
@SilentFrameSwitch = params['SilentFrameSwitch']
|
2640
2645
|
end
|
2641
2646
|
end
|
2642
2647
|
|
@@ -7768,10 +7773,12 @@ module TencentCloud
|
|
7768
7773
|
# @type AudioSwitch: Integer
|
7769
7774
|
# @param SubscribeSwitch: 订阅开关(0:关闭;1:开启)默认开启,开启状态下会订阅设备通道变化,仅国标NVR设备有效
|
7770
7775
|
# @type SubscribeSwitch: Integer
|
7776
|
+
# @param SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
|
7777
|
+
# @type SilentFrameSwitch: Integer
|
7771
7778
|
|
7772
|
-
attr_accessor :DeviceId, :Name, :TransportProtocol, :Password, :Description, :Ip, :Port, :Username, :ProtocolType, :AudioSwitch, :SubscribeSwitch
|
7779
|
+
attr_accessor :DeviceId, :Name, :TransportProtocol, :Password, :Description, :Ip, :Port, :Username, :ProtocolType, :AudioSwitch, :SubscribeSwitch, :SilentFrameSwitch
|
7773
7780
|
|
7774
|
-
def initialize(deviceid=nil, name=nil, transportprotocol=nil, password=nil, description=nil, ip=nil, port=nil, username=nil, protocoltype=nil, audioswitch=nil, subscribeswitch=nil)
|
7781
|
+
def initialize(deviceid=nil, name=nil, transportprotocol=nil, password=nil, description=nil, ip=nil, port=nil, username=nil, protocoltype=nil, audioswitch=nil, subscribeswitch=nil, silentframeswitch=nil)
|
7775
7782
|
@DeviceId = deviceid
|
7776
7783
|
@Name = name
|
7777
7784
|
@TransportProtocol = transportprotocol
|
@@ -7783,6 +7790,7 @@ module TencentCloud
|
|
7783
7790
|
@ProtocolType = protocoltype
|
7784
7791
|
@AudioSwitch = audioswitch
|
7785
7792
|
@SubscribeSwitch = subscribeswitch
|
7793
|
+
@SilentFrameSwitch = silentframeswitch
|
7786
7794
|
end
|
7787
7795
|
|
7788
7796
|
def deserialize(params)
|
@@ -7797,6 +7805,7 @@ module TencentCloud
|
|
7797
7805
|
@ProtocolType = params['ProtocolType']
|
7798
7806
|
@AudioSwitch = params['AudioSwitch']
|
7799
7807
|
@SubscribeSwitch = params['SubscribeSwitch']
|
7808
|
+
@SilentFrameSwitch = params['SilentFrameSwitch']
|
7800
7809
|
end
|
7801
7810
|
end
|
7802
7811
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.932
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|