tencentcloud-sdk-chc 3.0.1052 → 3.0.1054

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/v20230418/models.rb +33 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18aa1115091697950d8ac86497a20a9c5bdd1a7a
4
- data.tar.gz: 5348ae012d6652c81ccee2a2ab0265eb8852d349
3
+ metadata.gz: 7a4dc60f4fcdf7d20c5c742a95664771ebdac9f5
4
+ data.tar.gz: 4e99507eb833609743b91a00335b5578d10c7f42
5
5
  SHA512:
6
- metadata.gz: 38ca59a5be30586bff9bc592d946c7476a9abfc66eeb33ad88b58980f906870c61e85479d616a96c075251e7bf042d9822fca68b0103bd78734051a534707a01
7
- data.tar.gz: 461e208f423f8da078ef26d4a3daefff9eee4f6873196f7fbce0a2e08ea71df93b6c7e6e9c58b3ac1b974bbf178a8f956d02da92229212c254ed1697375d8654
6
+ metadata.gz: 9b761c61971f4f9b9eaf3c0fee222a8fd30fa51ec740830c0586de48d3b6a45d3d0a46810971e1afa1a33cae9d3d0e61dd818ed39b01644479f64379365e1144
7
+ data.tar.gz: 5e2863c9416e0a6919413a0d5001a7cfd6d69a4cd03af215e400ace5fc0a14af39424581c3b951c7c79e4e564b212caf3071527f7a52879bbacc78f30af4b614
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1052
1
+ 3.0.1054
@@ -846,7 +846,7 @@ module TencentCloud
846
846
  # @type ExpressInfo: :class:`Tencentcloud::Chc.v20230418.models.ExpressDelivery`
847
847
  # @param Remark: 备注
848
848
  # @type Remark: String
849
- # @param ServerDeviceList: 服务器收货列表
849
+ # @param ServerDeviceList: 服务器收货列表。最大值:200
850
850
  # @type ServerDeviceList: Array
851
851
  # @param NetDeviceList: 网络设备收货列表
852
852
  # @type NetDeviceList: Array
@@ -854,10 +854,20 @@ module TencentCloud
854
854
  # @type WireDeviceList: Array
855
855
  # @param OtherDeviceList: 其他设备收货列表
856
856
  # @type OtherDeviceList: Array
857
+ # @param WithRackOn: 收货后自动上架。此参数为true时,后台会自动提设备上架单
858
+ # @type WithRackOn: Boolean
859
+ # @param DeviceRackOnList: 设备上架信息。当WithRackOn为true此参数必传,且sn需要和收货的列表一致
860
+ # @type DeviceRackOnList: Array
861
+ # @param StuffOption: 上架人员 1.自行解决 2.由腾讯IDC负责
862
+ # @type StuffOption: String
863
+ # @param SelfOperationInfo: 自行解决信息。当StuffOption为1时,此参数必填
864
+ # @type SelfOperationInfo: :class:`Tencentcloud::Chc.v20230418.models.SelfOperation`
865
+ # @param WithPowerOn: 上架后自动开电。此参数为true时,后台会自动提设备开电单
866
+ # @type WithPowerOn: Boolean
857
867
 
858
- attr_accessor :IdcId, :DeviceType, :EntryTime, :ReceivingOperation, :IsExpressDelivery, :ExpressInfo, :Remark, :ServerDeviceList, :NetDeviceList, :WireDeviceList, :OtherDeviceList
868
+ attr_accessor :IdcId, :DeviceType, :EntryTime, :ReceivingOperation, :IsExpressDelivery, :ExpressInfo, :Remark, :ServerDeviceList, :NetDeviceList, :WireDeviceList, :OtherDeviceList, :WithRackOn, :DeviceRackOnList, :StuffOption, :SelfOperationInfo, :WithPowerOn
859
869
 
860
- def initialize(idcid=nil, devicetype=nil, entrytime=nil, receivingoperation=nil, isexpressdelivery=nil, expressinfo=nil, remark=nil, serverdevicelist=nil, netdevicelist=nil, wiredevicelist=nil, otherdevicelist=nil)
870
+ def initialize(idcid=nil, devicetype=nil, entrytime=nil, receivingoperation=nil, isexpressdelivery=nil, expressinfo=nil, remark=nil, serverdevicelist=nil, netdevicelist=nil, wiredevicelist=nil, otherdevicelist=nil, withrackon=nil, devicerackonlist=nil, stuffoption=nil, selfoperationinfo=nil, withpoweron=nil)
861
871
  @IdcId = idcid
862
872
  @DeviceType = devicetype
863
873
  @EntryTime = entrytime
@@ -869,6 +879,11 @@ module TencentCloud
869
879
  @NetDeviceList = netdevicelist
870
880
  @WireDeviceList = wiredevicelist
871
881
  @OtherDeviceList = otherdevicelist
882
+ @WithRackOn = withrackon
883
+ @DeviceRackOnList = devicerackonlist
884
+ @StuffOption = stuffoption
885
+ @SelfOperationInfo = selfoperationinfo
886
+ @WithPowerOn = withpoweron
872
887
  end
873
888
 
874
889
  def deserialize(params)
@@ -914,6 +929,21 @@ module TencentCloud
914
929
  @OtherDeviceList << otherdevreceivinginfo_tmp
915
930
  end
916
931
  end
932
+ @WithRackOn = params['WithRackOn']
933
+ unless params['DeviceRackOnList'].nil?
934
+ @DeviceRackOnList = []
935
+ params['DeviceRackOnList'].each do |i|
936
+ devicerackon_tmp = DeviceRackOn.new
937
+ devicerackon_tmp.deserialize(i)
938
+ @DeviceRackOnList << devicerackon_tmp
939
+ end
940
+ end
941
+ @StuffOption = params['StuffOption']
942
+ unless params['SelfOperationInfo'].nil?
943
+ @SelfOperationInfo = SelfOperation.new
944
+ @SelfOperationInfo.deserialize(params['SelfOperationInfo'])
945
+ end
946
+ @WithPowerOn = params['WithPowerOn']
917
947
  end
918
948
  end
919
949
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-chc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1052
4
+ version: 3.0.1054
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-30 00:00:00.000000000 Z
11
+ date: 2025-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common