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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2fbc6b036cb6d1116e69a142d7c98b12c3184d37
4
- data.tar.gz: 45a8b97432b2477b7e06a1149363345f420b4e7e
3
+ metadata.gz: 5177743bf8aa0154609ab8f9b31cfdc4b102caf2
4
+ data.tar.gz: e81ac5f1cb6f4335d4c53276303d418595f13f57
5
5
  SHA512:
6
- metadata.gz: 075dc4d4f251761cfe0e0e376f95f7ec939f7a5636476f4dfded5a8fc69faaeec18983f179c9d2e8683e232e0b0e14860f2f22a34c4546bc1353e5ce3065fb41
7
- data.tar.gz: 285795868f66e1c25303400043b8eabc9e4c801e2655d8fd88f3d45eb8667faa2e9f8541abdb9d1f1e2e40dd8e9c781bd7c14770f6ac4910e6de1439b90f007d
6
+ metadata.gz: 615891d31549684b921b3b93d162adefa9120e546ebfacd3399bd47347a6a716bcb3bfafae65759e4058de10947e779198b21f0f7145622e12254fb9396da9b9
7
+ data.tar.gz: d9f313c61589a4c5c8e97563a97bdd7c0b7c66f7dd1b28012d4542836424e47f74e687757cf0b080e9ee2a2a01858daef8afc9f0726b643a14875a5218747a06
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.762
1
+ 3.0.763
@@ -341,7 +341,7 @@ module TencentCloud
341
341
  # @param DeviceId: 设备iD
342
342
  # 注意:此字段可能返回 null,表示取不到有效值。
343
343
  # @type DeviceId: String
344
- # @param Code: 设备编码(即我们为设备生成的20位国标编码)
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.762
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-01 00:00:00.000000000 Z
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