tencentcloud-sdk-iss 3.0.660 → 3.0.661

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20230517/models.rb +11 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eb280891e04e8043c7e7fae4168eec3b754327aa
4
- data.tar.gz: 8b93036c0cb31cca9ed3606ae2252038ad833bdf
3
+ metadata.gz: 3fc6543ee4484eba1859b5554be63eb60201a5d7
4
+ data.tar.gz: 4c179ed90d953af65475879a76ba13abc9dd867d
5
5
  SHA512:
6
- metadata.gz: 21ca2a3381a1442fc807665e4de4a2487d46596125734a241ec0bd26a9731f2f0d0f69c03a1a4610aee9c02e2278ff301c9fe82a67a1c935a587a7631b617e49
7
- data.tar.gz: 111101b6372f9475c6c3414a1db956f69a26dc15afb52f4556716c6d9e9b9cdce9d09999b5836f20efb852a191f5fd291cb95e0a24293a1a6fefa5f4697d9c58
6
+ metadata.gz: 1b12bf4db290a599a9d58bc8a4b976de717ff799586aa0f5c2284da46749854db4180043dfd45438a490fab5dcf6a9c185ff979f58b92630b4061bb8158b2a06
7
+ data.tar.gz: 28b11169820382267962960e66b8d66479bd2539e189e0240d90a1851f7e84cfa6813124fe058b0453bb84b06b044c94e2754a89dcaa1bcb596e039aef403b94
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.660
1
+ 3.0.661
@@ -6771,11 +6771,11 @@ module TencentCloud
6771
6771
  # @param LifeCycle: 生命周期(录像文件生命周期设置,管理文件冷、热存储的时间,不修改生命周期时,不需要该字段)
6772
6772
  # @type LifeCycle: :class:`Tencentcloud::Iss.v20230517.models.LifeCycleData`
6773
6773
  # @param Add: 要新增的设备通道(Json数组,没有新增时,不需要该字段,一次添加通道总数不超过5000个,包括组织目录下的通道数量)
6774
- # @type Add: String
6774
+ # @type Add: Array
6775
6775
  # @param Del: 要删除的设备通道(Json数组,内容为要删除的设备通道id,没有删除设备通道时,不需要该字段)
6776
- # @type Del: String
6776
+ # @type Del: Array
6777
6777
  # @param OrganizationId: 添加组织目录下所有设备通道(Json数组,可以为空,并且通道总数量不超过5000个(包括Add字段通道数量))
6778
- # @type OrganizationId: String
6778
+ # @type OrganizationId: Array
6779
6779
 
6780
6780
  attr_accessor :PlanName, :TemplateId, :Describe, :LifeCycle, :Add, :Del, :OrganizationId
6781
6781
 
@@ -6797,7 +6797,14 @@ module TencentCloud
6797
6797
  @LifeCycle = LifeCycleData.new
6798
6798
  @LifeCycle.deserialize(params['LifeCycle'])
6799
6799
  end
6800
- @Add = params['Add']
6800
+ unless params['Add'].nil?
6801
+ @Add = []
6802
+ params['Add'].each do |i|
6803
+ channelinfo_tmp = ChannelInfo.new
6804
+ channelinfo_tmp.deserialize(i)
6805
+ @Add << channelinfo_tmp
6806
+ end
6807
+ end
6801
6808
  @Del = params['Del']
6802
6809
  @OrganizationId = params['OrganizationId']
6803
6810
  end
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.660
4
+ version: 3.0.661
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-15 00:00:00.000000000 Z
11
+ date: 2023-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common