tencentcloud-sdk-iss 3.0.762 → 3.0.763
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 +9 -5
- 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: 5177743bf8aa0154609ab8f9b31cfdc4b102caf2
|
4
|
+
data.tar.gz: e81ac5f1cb6f4335d4c53276303d418595f13f57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 615891d31549684b921b3b93d162adefa9120e546ebfacd3399bd47347a6a716bcb3bfafae65759e4058de10947e779198b21f0f7145622e12254fb9396da9b9
|
7
|
+
data.tar.gz: d9f313c61589a4c5c8e97563a97bdd7c0b7c66f7dd1b28012d4542836424e47f74e687757cf0b080e9ee2a2a01858daef8afc9f0726b643a14875a5218747a06
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.763
|
data/lib/v20230517/models.rb
CHANGED
@@ -341,7 +341,7 @@ module TencentCloud
|
|
341
341
|
# @param DeviceId: 设备iD
|
342
342
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
343
343
|
# @type DeviceId: String
|
344
|
-
# @param Code:
|
344
|
+
# @param Code: 设备编码(国标设备即我们为设备生成的20位国标编码,rtmp 设备为10 位设备编码)
|
345
345
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
346
346
|
# @type Code: String
|
347
347
|
# @param Name: 设备名称
|
@@ -1141,9 +1141,9 @@ module TencentCloud
|
|
1141
1141
|
class AddUserDeviceRequest < TencentCloud::Common::AbstractModel
|
1142
1142
|
# @param Name: 设备名称,仅支持中文、英文、数字、_、-,长度不超过32个字符;(设备名称无需全局唯一,可以重复)
|
1143
1143
|
# @type Name: String
|
1144
|
-
# @param AccessProtocol: 设备接入协议(1:RTMP,2:GB,3:GW)
|
1144
|
+
# @param AccessProtocol: 设备接入协议(1:RTMP,2:GB,3:GW,4:IVCP)
|
1145
1145
|
# @type AccessProtocol: Integer
|
1146
|
-
# @param Type: 设备类型,1:IPC,2:NVR;(若设备接入协议选择RTMP,则设备类型只能选择IPC)
|
1146
|
+
# @param Type: 设备类型,1:IPC,2:NVR;(若设备接入协议选择RTMP,IVCP,则设备类型只能选择IPC)
|
1147
1147
|
# @type Type: Integer
|
1148
1148
|
# @param OrganizationId: 设备所属组织ID,从查询组织接口DescribeOrganization中获取
|
1149
1149
|
# @type OrganizationId: String
|
@@ -1165,10 +1165,12 @@ module TencentCloud
|
|
1165
1165
|
# @type Port: Integer
|
1166
1166
|
# @param Username: 设备用户名(仅网关接入需要)
|
1167
1167
|
# @type Username: String
|
1168
|
+
# @param SNCode: 设备 SN,仅IVCP 协议设备需要
|
1169
|
+
# @type SNCode: String
|
1168
1170
|
|
1169
|
-
attr_accessor :Name, :AccessProtocol, :Type, :OrganizationId, :ClusterId, :TransportProtocol, :Password, :Description, :GatewayId, :ProtocolType, :Ip, :Port, :Username
|
1171
|
+
attr_accessor :Name, :AccessProtocol, :Type, :OrganizationId, :ClusterId, :TransportProtocol, :Password, :Description, :GatewayId, :ProtocolType, :Ip, :Port, :Username, :SNCode
|
1170
1172
|
|
1171
|
-
def initialize(name=nil, accessprotocol=nil, type=nil, organizationid=nil, clusterid=nil, transportprotocol=nil, password=nil, description=nil, gatewayid=nil, protocoltype=nil, ip=nil, port=nil, username=nil)
|
1173
|
+
def initialize(name=nil, accessprotocol=nil, type=nil, organizationid=nil, clusterid=nil, transportprotocol=nil, password=nil, description=nil, gatewayid=nil, protocoltype=nil, ip=nil, port=nil, username=nil, sncode=nil)
|
1172
1174
|
@Name = name
|
1173
1175
|
@AccessProtocol = accessprotocol
|
1174
1176
|
@Type = type
|
@@ -1182,6 +1184,7 @@ module TencentCloud
|
|
1182
1184
|
@Ip = ip
|
1183
1185
|
@Port = port
|
1184
1186
|
@Username = username
|
1187
|
+
@SNCode = sncode
|
1185
1188
|
end
|
1186
1189
|
|
1187
1190
|
def deserialize(params)
|
@@ -1198,6 +1201,7 @@ module TencentCloud
|
|
1198
1201
|
@Ip = params['Ip']
|
1199
1202
|
@Port = params['Port']
|
1200
1203
|
@Username = params['Username']
|
1204
|
+
@SNCode = params['SNCode']
|
1201
1205
|
end
|
1202
1206
|
end
|
1203
1207
|
|
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.763
|
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-02-
|
11
|
+
date: 2024-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|