tencentcloud-sdk-iss 3.0.660 → 3.0.662

Sign up to get free protection for your applications and to get access to all the features.
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: 1cbae0a7e54c28b478f2e09bbec3fe4faab0905d
4
+ data.tar.gz: 3dc0f3b902107e83de00b2819306f4e3d2288fa8
5
5
  SHA512:
6
- metadata.gz: 21ca2a3381a1442fc807665e4de4a2487d46596125734a241ec0bd26a9731f2f0d0f69c03a1a4610aee9c02e2278ff301c9fe82a67a1c935a587a7631b617e49
7
- data.tar.gz: 111101b6372f9475c6c3414a1db956f69a26dc15afb52f4556716c6d9e9b9cdce9d09999b5836f20efb852a191f5fd291cb95e0a24293a1a6fefa5f4697d9c58
6
+ metadata.gz: 262cdc9d0370e0979cfb3879269c38a32b43c1a380232793cfbc8618d2cf35f1c4412b9e56164c07c01be90f48206fe3582b2ad53133f40ea79afdfc81ec0cb6
7
+ data.tar.gz: 918c2e9ab20635a6017e2acea70c199802b8c66748a1053dd5c6c7e56d36d0659da219b4b9d2f7ad31cdb7b1ebf44b1931a315bff9f81438abba949049a14dd4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.660
1
+ 3.0.662
@@ -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.662
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-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common