tencentcloud-sdk-iss 3.0.761 → 3.0.763

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b037111d8b1bce31a69d8a6451e9a00b42d51af
4
- data.tar.gz: 23331731ee4ee6a23f5e21a58c6c7a340e53e687
3
+ metadata.gz: 5177743bf8aa0154609ab8f9b31cfdc4b102caf2
4
+ data.tar.gz: e81ac5f1cb6f4335d4c53276303d418595f13f57
5
5
  SHA512:
6
- metadata.gz: ea34ca88024b5e53a07f77c9d5c45133799814c0d2a1b54c0cf666ad17b5e4bcb8a975f552dc2a621606797905d23be83294148b07e448f6f6b5198c8a7865aa
7
- data.tar.gz: a60018ada0e125d8ebf618b10759f7c8c4782e29528b8ca9b180a3391013875274a5711bbdfa7b80db9f7b9fa45cc133221c557efcf163f12f35c2dcc78dafff
6
+ metadata.gz: 615891d31549684b921b3b93d162adefa9120e546ebfacd3399bd47347a6a716bcb3bfafae65759e4058de10947e779198b21f0f7145622e12254fb9396da9b9
7
+ data.tar.gz: d9f313c61589a4c5c8e97563a97bdd7c0b7c66f7dd1b28012d4542836424e47f74e687757cf0b080e9ee2a2a01858daef8afc9f0726b643a14875a5218747a06
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.761
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.761
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-01-30 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