tencentcloud-sdk-iss 3.0.924 → 3.0.926
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20230517/client.rb +1 -1
- data/lib/v20230517/models.rb +42 -22
- 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: a950b805c30e2cb7aa760d223d7f3739dcb6b239
|
4
|
+
data.tar.gz: 4584702b0eab0ab14474e89dd90969c6d14a03bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd6e8499ba1e20937d189f8b0f462d6473ce651b85e76c1aea6415cb4986d962e691f8bfccc860a00117d8a0d77257839af6b8fc08b639f92a4104901020fdbf
|
7
|
+
data.tar.gz: f87007fca7ac353f7c974801911c1991ea12783bfbfeceabfcd648e183abe075f26f6afc9f9f827598934f9aad6255b2300cc595c657c91a4f7d069fbf8c0f13
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.926
|
data/lib/v20230517/client.rb
CHANGED
@@ -1737,7 +1737,7 @@ module TencentCloud
|
|
1737
1737
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1738
1738
|
end
|
1739
1739
|
|
1740
|
-
#
|
1740
|
+
# 用于同步国标设备的通道(接口调用后,触发向设备请求通道列表,新增的通道入库,设备上已删除的通道需自行删除、后台不自动删除)。
|
1741
1741
|
|
1742
1742
|
# @param request: Request instance for RefreshDeviceChannel.
|
1743
1743
|
# @type request: :class:`Tencentcloud::iss::V20230517::RefreshDeviceChannelRequest`
|
data/lib/v20230517/models.rb
CHANGED
@@ -493,7 +493,7 @@ module TencentCloud
|
|
493
493
|
|
494
494
|
# AddOrganization请求参数结构体
|
495
495
|
class AddOrganizationRequest < TencentCloud::Common::AbstractModel
|
496
|
-
# @param Name:
|
496
|
+
# @param Name: 组织名称(仅支持中文、英文、数字、空格、中英文括号、_、-, 长度不超过64位,且组织名称不能重复)
|
497
497
|
# @type Name: String
|
498
498
|
# @param ParentId: 组织父节点 ID(从查询组织接口DescribeOrganization中获取,填0代表根组织)
|
499
499
|
# @type ParentId: String
|
@@ -796,10 +796,12 @@ module TencentCloud
|
|
796
796
|
# @type Channels: Array
|
797
797
|
# @param OrganizationId: 添加组织目录下所有设备通道,Json数组,可以为空,通道总数量不超过5000个(包括Channel字段的数量)
|
798
798
|
# @type OrganizationId: Array
|
799
|
+
# @param RepairMode: 录像补录模式(0:不启用,1:启用),无该字段,默认不启用
|
800
|
+
# @type RepairMode: Integer
|
799
801
|
|
800
|
-
attr_accessor :PlanName, :TemplateId, :LifeCycle, :Describe, :StreamType, :Channels, :OrganizationId
|
802
|
+
attr_accessor :PlanName, :TemplateId, :LifeCycle, :Describe, :StreamType, :Channels, :OrganizationId, :RepairMode
|
801
803
|
|
802
|
-
def initialize(planname=nil, templateid=nil, lifecycle=nil, describe=nil, streamtype=nil, channels=nil, organizationid=nil)
|
804
|
+
def initialize(planname=nil, templateid=nil, lifecycle=nil, describe=nil, streamtype=nil, channels=nil, organizationid=nil, repairmode=nil)
|
803
805
|
@PlanName = planname
|
804
806
|
@TemplateId = templateid
|
805
807
|
@LifeCycle = lifecycle
|
@@ -807,6 +809,7 @@ module TencentCloud
|
|
807
809
|
@StreamType = streamtype
|
808
810
|
@Channels = channels
|
809
811
|
@OrganizationId = organizationid
|
812
|
+
@RepairMode = repairmode
|
810
813
|
end
|
811
814
|
|
812
815
|
def deserialize(params)
|
@@ -827,6 +830,7 @@ module TencentCloud
|
|
827
830
|
end
|
828
831
|
end
|
829
832
|
@OrganizationId = params['OrganizationId']
|
833
|
+
@RepairMode = params['RepairMode']
|
830
834
|
end
|
831
835
|
end
|
832
836
|
|
@@ -904,7 +908,7 @@ module TencentCloud
|
|
904
908
|
|
905
909
|
# AddRecordRetrieveTask请求参数结构体
|
906
910
|
class AddRecordRetrieveTaskRequest < TencentCloud::Common::AbstractModel
|
907
|
-
# @param TaskName: 任务名称,仅支持中文、英文、数字、_、-,长度不超过32
|
911
|
+
# @param TaskName: 任务名称,仅支持中文、英文、数字、_、-,长度不超过32个字符,名称全局唯一,不能为空,不能重复
|
908
912
|
# @type TaskName: String
|
909
913
|
# @param StartTime: 取回录像的开始时间,UTC秒数,例如:1662114146,开始和结束时间段最长为一天,且不能跨天
|
910
914
|
# @type StartTime: Integer
|
@@ -1139,7 +1143,7 @@ module TencentCloud
|
|
1139
1143
|
|
1140
1144
|
# AddUserDevice请求参数结构体
|
1141
1145
|
class AddUserDeviceRequest < TencentCloud::Common::AbstractModel
|
1142
|
-
# @param Name:
|
1146
|
+
# @param Name: 设备名称,仅支持中文、英文、数字、空格、中英文括号、_、-, 长度不超过128位;(设备名称无需全局唯一,可以重复)
|
1143
1147
|
# @type Name: String
|
1144
1148
|
# @param AccessProtocol: 设备接入协议(1:RTMP,2:GB,3:GW,4:IVCP)
|
1145
1149
|
# @type AccessProtocol: Integer
|
@@ -1151,9 +1155,9 @@ module TencentCloud
|
|
1151
1155
|
# @type ClusterId: String
|
1152
1156
|
# @param TransportProtocol: 设备流传输协议,1:UDP,2:TCP;(国标设备有效,不填写则默认UDP协议)
|
1153
1157
|
# @type TransportProtocol: Integer
|
1154
|
-
# @param Password:
|
1158
|
+
# @param Password: 设备密码(国标,网关设备必填,长度为1-64个字符)
|
1155
1159
|
# @type Password: String
|
1156
|
-
# @param Description:
|
1160
|
+
# @param Description: 设备描述,长度不超过128个字符
|
1157
1161
|
# @type Description: String
|
1158
1162
|
# @param GatewayId: 设备接入网关ID,从查询网关列表接口中ListGateways获取(仅网关接入需要)
|
1159
1163
|
# @type GatewayId: String
|
@@ -1167,9 +1171,9 @@ module TencentCloud
|
|
1167
1171
|
# @type Username: String
|
1168
1172
|
# @param SNCode: 设备 SN,仅IVCP 协议设备需要
|
1169
1173
|
# @type SNCode: String
|
1170
|
-
# @param AppName: RTMP推流地址自定义AppName(仅RTMP
|
1174
|
+
# @param AppName: RTMP推流地址自定义AppName(仅RTMP需要,支持英文、数字、_、-、.、长度不超过64位)
|
1171
1175
|
# @type AppName: String
|
1172
|
-
# @param StreamName: RTMP推流地址自定义StreamName(仅RTMP
|
1176
|
+
# @param StreamName: RTMP推流地址自定义StreamName(仅RTMP需要,支持英文、数字、_、-、.、长度不超过64位)
|
1173
1177
|
# @type StreamName: String
|
1174
1178
|
|
1175
1179
|
attr_accessor :Name, :AccessProtocol, :Type, :OrganizationId, :ClusterId, :TransportProtocol, :Password, :Description, :GatewayId, :ProtocolType, :Ip, :Port, :Username, :SNCode, :AppName, :StreamName
|
@@ -1284,7 +1288,7 @@ module TencentCloud
|
|
1284
1288
|
class BatchOperateDeviceRequest < TencentCloud::Common::AbstractModel
|
1285
1289
|
# @param DeviceIds: 设备 ID 数组(从获取设备列表接口ListDevices中获取)
|
1286
1290
|
# @type DeviceIds: Array
|
1287
|
-
# @param Cmd: 操作命令(enable:启用;disable:禁用;delete:删除;upgrade:固件升级;reset:恢复出厂设置;reboot:重启)
|
1291
|
+
# @param Cmd: 操作命令(enable:启用;disable:禁用;delete:删除;sync:同步设备通道;upgrade:固件升级;reset:恢复出厂设置;reboot:重启)
|
1288
1292
|
# @type Cmd: String
|
1289
1293
|
|
1290
1294
|
attr_accessor :DeviceIds, :Cmd
|
@@ -6107,10 +6111,12 @@ module TencentCloud
|
|
6107
6111
|
# @type Status: Integer
|
6108
6112
|
# @param ChannelCount: 通道总数
|
6109
6113
|
# @type ChannelCount: Integer
|
6114
|
+
# @param RepairMode: 录像补录模式(0:不启用,1:启用)
|
6115
|
+
# @type RepairMode: Integer
|
6110
6116
|
|
6111
|
-
attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :StreamType, :LifeCycle, :Status, :ChannelCount
|
6117
|
+
attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :StreamType, :LifeCycle, :Status, :ChannelCount, :RepairMode
|
6112
6118
|
|
6113
|
-
def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, streamtype=nil, lifecycle=nil, status=nil, channelcount=nil)
|
6119
|
+
def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, streamtype=nil, lifecycle=nil, status=nil, channelcount=nil, repairmode=nil)
|
6114
6120
|
@PlanId = planid
|
6115
6121
|
@PlanName = planname
|
6116
6122
|
@TemplateId = templateid
|
@@ -6119,6 +6125,7 @@ module TencentCloud
|
|
6119
6125
|
@LifeCycle = lifecycle
|
6120
6126
|
@Status = status
|
6121
6127
|
@ChannelCount = channelcount
|
6128
|
+
@RepairMode = repairmode
|
6122
6129
|
end
|
6123
6130
|
|
6124
6131
|
def deserialize(params)
|
@@ -6133,6 +6140,7 @@ module TencentCloud
|
|
6133
6140
|
end
|
6134
6141
|
@Status = params['Status']
|
6135
6142
|
@ChannelCount = params['ChannelCount']
|
6143
|
+
@RepairMode = params['RepairMode']
|
6136
6144
|
end
|
6137
6145
|
end
|
6138
6146
|
|
@@ -6151,15 +6159,18 @@ module TencentCloud
|
|
6151
6159
|
# @param OrganizationName: 所属组织名称
|
6152
6160
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6153
6161
|
# @type OrganizationName: String
|
6162
|
+
# @param AccessProtocol: 通道所属设备的接入协议类型
|
6163
|
+
# @type AccessProtocol: Integer
|
6154
6164
|
|
6155
|
-
attr_accessor :DeviceId, :DeviceName, :ChannelId, :ChannelName, :OrganizationName
|
6165
|
+
attr_accessor :DeviceId, :DeviceName, :ChannelId, :ChannelName, :OrganizationName, :AccessProtocol
|
6156
6166
|
|
6157
|
-
def initialize(deviceid=nil, devicename=nil, channelid=nil, channelname=nil, organizationname=nil)
|
6167
|
+
def initialize(deviceid=nil, devicename=nil, channelid=nil, channelname=nil, organizationname=nil, accessprotocol=nil)
|
6158
6168
|
@DeviceId = deviceid
|
6159
6169
|
@DeviceName = devicename
|
6160
6170
|
@ChannelId = channelid
|
6161
6171
|
@ChannelName = channelname
|
6162
6172
|
@OrganizationName = organizationname
|
6173
|
+
@AccessProtocol = accessprotocol
|
6163
6174
|
end
|
6164
6175
|
|
6165
6176
|
def deserialize(params)
|
@@ -6168,6 +6179,7 @@ module TencentCloud
|
|
6168
6179
|
@ChannelId = params['ChannelId']
|
6169
6180
|
@ChannelName = params['ChannelName']
|
6170
6181
|
@OrganizationName = params['OrganizationName']
|
6182
|
+
@AccessProtocol = params['AccessProtocol']
|
6171
6183
|
end
|
6172
6184
|
end
|
6173
6185
|
|
@@ -6187,16 +6199,19 @@ module TencentCloud
|
|
6187
6199
|
# @param StreamType: 码流类型,default:设备默认码流类型,main:主码流,sub:子码流,其他根据设备能力集自定义
|
6188
6200
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6189
6201
|
# @type StreamType: String
|
6202
|
+
# @param RepairMode: 录像补录模式(0:不启用,1:启用)
|
6203
|
+
# @type RepairMode: Integer
|
6190
6204
|
|
6191
|
-
attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :LifeCycle, :StreamType
|
6205
|
+
attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :LifeCycle, :StreamType, :RepairMode
|
6192
6206
|
|
6193
|
-
def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, lifecycle=nil, streamtype=nil)
|
6207
|
+
def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, lifecycle=nil, streamtype=nil, repairmode=nil)
|
6194
6208
|
@PlanId = planid
|
6195
6209
|
@PlanName = planname
|
6196
6210
|
@TemplateId = templateid
|
6197
6211
|
@Describe = describe
|
6198
6212
|
@LifeCycle = lifecycle
|
6199
6213
|
@StreamType = streamtype
|
6214
|
+
@RepairMode = repairmode
|
6200
6215
|
end
|
6201
6216
|
|
6202
6217
|
def deserialize(params)
|
@@ -6209,6 +6224,7 @@ module TencentCloud
|
|
6209
6224
|
@LifeCycle.deserialize(params['LifeCycle'])
|
6210
6225
|
end
|
6211
6226
|
@StreamType = params['StreamType']
|
6227
|
+
@RepairMode = params['RepairMode']
|
6212
6228
|
end
|
6213
6229
|
end
|
6214
6230
|
|
@@ -7216,7 +7232,7 @@ module TencentCloud
|
|
7216
7232
|
class UpdateOrganizationRequest < TencentCloud::Common::AbstractModel
|
7217
7233
|
# @param OrganizationId: 组织ID(从查询组织接口DescribeOrganization中获取)
|
7218
7234
|
# @type OrganizationId: String
|
7219
|
-
# @param Name:
|
7235
|
+
# @param Name: 组织名称,支持中文、英文、数字、空格、中英文括号、_、-, 长度不超过64位,且组织名称不能重复
|
7220
7236
|
# @type Name: String
|
7221
7237
|
|
7222
7238
|
attr_accessor :OrganizationId, :Name
|
@@ -7569,10 +7585,12 @@ module TencentCloud
|
|
7569
7585
|
# @type Del: Array
|
7570
7586
|
# @param OrganizationId: 组织目录ID,添加组织目录下所有设备通道,Json数组,可以为空,并且通道总数量不超过5000个(包括Add字段通道数量)
|
7571
7587
|
# @type OrganizationId: Array
|
7588
|
+
# @param RepairMode: 录像补录模式(0:不启用,1:启用)
|
7589
|
+
# @type RepairMode: Integer
|
7572
7590
|
|
7573
|
-
attr_accessor :PlanName, :TemplateId, :Describe, :StreamType, :LifeCycle, :Add, :Del, :OrganizationId
|
7591
|
+
attr_accessor :PlanName, :TemplateId, :Describe, :StreamType, :LifeCycle, :Add, :Del, :OrganizationId, :RepairMode
|
7574
7592
|
|
7575
|
-
def initialize(planname=nil, templateid=nil, describe=nil, streamtype=nil, lifecycle=nil, add=nil, del=nil, organizationid=nil)
|
7593
|
+
def initialize(planname=nil, templateid=nil, describe=nil, streamtype=nil, lifecycle=nil, add=nil, del=nil, organizationid=nil, repairmode=nil)
|
7576
7594
|
@PlanName = planname
|
7577
7595
|
@TemplateId = templateid
|
7578
7596
|
@Describe = describe
|
@@ -7581,6 +7599,7 @@ module TencentCloud
|
|
7581
7599
|
@Add = add
|
7582
7600
|
@Del = del
|
7583
7601
|
@OrganizationId = organizationid
|
7602
|
+
@RepairMode = repairmode
|
7584
7603
|
end
|
7585
7604
|
|
7586
7605
|
def deserialize(params)
|
@@ -7602,6 +7621,7 @@ module TencentCloud
|
|
7602
7621
|
end
|
7603
7622
|
@Del = params['Del']
|
7604
7623
|
@OrganizationId = params['OrganizationId']
|
7624
|
+
@RepairMode = params['RepairMode']
|
7605
7625
|
end
|
7606
7626
|
end
|
7607
7627
|
|
@@ -7728,13 +7748,13 @@ module TencentCloud
|
|
7728
7748
|
class UpdateUserDeviceRequest < TencentCloud::Common::AbstractModel
|
7729
7749
|
# @param DeviceId: 设备ID(从获取设备列表接口ListDevices中获取)
|
7730
7750
|
# @type DeviceId: String
|
7731
|
-
# @param Name:
|
7751
|
+
# @param Name: 设备名称(仅支持中文、英文、数字、空格、中英文括号、_、-, 长度不超过128位)
|
7732
7752
|
# @type Name: String
|
7733
7753
|
# @param TransportProtocol: 设备流传输协议,仅国标设备有效,填0则不做更改(1:UDP,2:TCP)
|
7734
7754
|
# @type TransportProtocol: Integer
|
7735
|
-
# @param Password:
|
7755
|
+
# @param Password: 设备密码(仅国标,网关设备支持,长度不超过 64 位)
|
7736
7756
|
# @type Password: String
|
7737
|
-
# @param Description:
|
7757
|
+
# @param Description: 设备描述(长度不超过128位)
|
7738
7758
|
# @type Description: String
|
7739
7759
|
# @param Ip: 设备接入Ip(仅网关接入支持)
|
7740
7760
|
# @type Ip: String
|
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.926
|
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-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|