tencentcloud-sdk-chc 3.0.1094 → 3.0.1169
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20230418/models.rb +93 -11
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c93770180efcfa0607f02b9906744530ea8b38f
|
|
4
|
+
data.tar.gz: b6ba0b397ea1aa436a70b0bb40129a44f043833a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7d77bd2c897af52e7e16cff7b6dc425ab8824e9a6b9a2a30e30f994c910c272b3dbeef74e893ca0bcfa5d1c64858e741e1a58418a198504319b5be3af8c7496
|
|
7
|
+
data.tar.gz: e8fcba44348cfa6e717b5bc85efa9bbca11a1ea5751ff09e3ad5a45ef3fc4837222d3a6acdf800f8b73ae914a85f73a31f4cb4e621464c80b84fc98589ca4adc
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1169
|
data/lib/v20230418/models.rb
CHANGED
|
@@ -410,10 +410,12 @@ module TencentCloud
|
|
|
410
410
|
# @type VisitReason: Array
|
|
411
411
|
# @param VisitRemark: 到访说明
|
|
412
412
|
# @type VisitRemark: String
|
|
413
|
+
# @param CarSet: 到访人员车辆信息
|
|
414
|
+
# @type CarSet: Array
|
|
413
415
|
|
|
414
|
-
attr_accessor :PersonnelSet, :IdcId, :IdcUnitIdSet, :EnterStartTime, :EnterEndTime, :VisitReason, :VisitRemark
|
|
416
|
+
attr_accessor :PersonnelSet, :IdcId, :IdcUnitIdSet, :EnterStartTime, :EnterEndTime, :VisitReason, :VisitRemark, :CarSet
|
|
415
417
|
|
|
416
|
-
def initialize(personnelset=nil, idcid=nil, idcunitidset=nil, enterstarttime=nil, enterendtime=nil, visitreason=nil, visitremark=nil)
|
|
418
|
+
def initialize(personnelset=nil, idcid=nil, idcunitidset=nil, enterstarttime=nil, enterendtime=nil, visitreason=nil, visitremark=nil, carset=nil)
|
|
417
419
|
@PersonnelSet = personnelset
|
|
418
420
|
@IdcId = idcid
|
|
419
421
|
@IdcUnitIdSet = idcunitidset
|
|
@@ -421,6 +423,7 @@ module TencentCloud
|
|
|
421
423
|
@EnterEndTime = enterendtime
|
|
422
424
|
@VisitReason = visitreason
|
|
423
425
|
@VisitRemark = visitremark
|
|
426
|
+
@CarSet = carset
|
|
424
427
|
end
|
|
425
428
|
|
|
426
429
|
def deserialize(params)
|
|
@@ -438,6 +441,14 @@ module TencentCloud
|
|
|
438
441
|
@EnterEndTime = params['EnterEndTime']
|
|
439
442
|
@VisitReason = params['VisitReason']
|
|
440
443
|
@VisitRemark = params['VisitRemark']
|
|
444
|
+
unless params['CarSet'].nil?
|
|
445
|
+
@CarSet = []
|
|
446
|
+
params['CarSet'].each do |i|
|
|
447
|
+
personnelvisitcar_tmp = PersonnelVisitCar.new
|
|
448
|
+
personnelvisitcar_tmp.deserialize(i)
|
|
449
|
+
@CarSet << personnelvisitcar_tmp
|
|
450
|
+
end
|
|
451
|
+
end
|
|
441
452
|
end
|
|
442
453
|
end
|
|
443
454
|
|
|
@@ -609,10 +620,20 @@ module TencentCloud
|
|
|
609
620
|
# @type LogisticsReceipt: :class:`Tencentcloud::Chc.v20230418.models.LogisticsReceipt`
|
|
610
621
|
# @param CustomerReceipt: 客户上门自提必传
|
|
611
622
|
# @type CustomerReceipt: :class:`Tencentcloud::Chc.v20230418.models.CustomerReceipt`
|
|
623
|
+
# @param Building: 楼宇名
|
|
624
|
+
# @type Building: String
|
|
625
|
+
# @param IdcUnitId: 机房管理单元id
|
|
626
|
+
# @type IdcUnitId: String
|
|
627
|
+
# @param Isp: 运营商
|
|
628
|
+
# @type Isp: String
|
|
629
|
+
# @param EmailSet: 放行邮件目的邮箱
|
|
630
|
+
# @type EmailSet: Array
|
|
631
|
+
# @param FactorSet: 到访原因
|
|
632
|
+
# @type FactorSet: Array
|
|
612
633
|
|
|
613
|
-
attr_accessor :IdcId, :DeviceType, :StuffOption, :IsPowerOffConfirm, :DeviceSnList, :HandoverMethod, :SelfOperationInfo, :PowerOffConfirmInfo, :Remark, :LogisticsReceipt, :CustomerReceipt
|
|
634
|
+
attr_accessor :IdcId, :DeviceType, :StuffOption, :IsPowerOffConfirm, :DeviceSnList, :HandoverMethod, :SelfOperationInfo, :PowerOffConfirmInfo, :Remark, :LogisticsReceipt, :CustomerReceipt, :Building, :IdcUnitId, :Isp, :EmailSet, :FactorSet
|
|
614
635
|
|
|
615
|
-
def initialize(idcid=nil, devicetype=nil, stuffoption=nil, ispoweroffconfirm=nil, devicesnlist=nil, handovermethod=nil, selfoperationinfo=nil, poweroffconfirminfo=nil, remark=nil, logisticsreceipt=nil, customerreceipt=nil)
|
|
636
|
+
def initialize(idcid=nil, devicetype=nil, stuffoption=nil, ispoweroffconfirm=nil, devicesnlist=nil, handovermethod=nil, selfoperationinfo=nil, poweroffconfirminfo=nil, remark=nil, logisticsreceipt=nil, customerreceipt=nil, building=nil, idcunitid=nil, isp=nil, emailset=nil, factorset=nil)
|
|
616
637
|
@IdcId = idcid
|
|
617
638
|
@DeviceType = devicetype
|
|
618
639
|
@StuffOption = stuffoption
|
|
@@ -624,6 +645,11 @@ module TencentCloud
|
|
|
624
645
|
@Remark = remark
|
|
625
646
|
@LogisticsReceipt = logisticsreceipt
|
|
626
647
|
@CustomerReceipt = customerreceipt
|
|
648
|
+
@Building = building
|
|
649
|
+
@IdcUnitId = idcunitid
|
|
650
|
+
@Isp = isp
|
|
651
|
+
@EmailSet = emailset
|
|
652
|
+
@FactorSet = factorset
|
|
627
653
|
end
|
|
628
654
|
|
|
629
655
|
def deserialize(params)
|
|
@@ -650,6 +676,11 @@ module TencentCloud
|
|
|
650
676
|
@CustomerReceipt = CustomerReceipt.new
|
|
651
677
|
@CustomerReceipt.deserialize(params['CustomerReceipt'])
|
|
652
678
|
end
|
|
679
|
+
@Building = params['Building']
|
|
680
|
+
@IdcUnitId = params['IdcUnitId']
|
|
681
|
+
@Isp = params['Isp']
|
|
682
|
+
@EmailSet = params['EmailSet']
|
|
683
|
+
@FactorSet = params['FactorSet']
|
|
653
684
|
end
|
|
654
685
|
end
|
|
655
686
|
|
|
@@ -1127,7 +1158,7 @@ module TencentCloud
|
|
|
1127
1158
|
# @type PickUpStuff: String
|
|
1128
1159
|
# @param PickUpStuffContact: 自提人电话
|
|
1129
1160
|
# @type PickUpStuffContact: String
|
|
1130
|
-
# @param PickUpStuffIDCard:
|
|
1161
|
+
# @param PickUpStuffIDCard: 到访人证件号码
|
|
1131
1162
|
# @type PickUpStuffIDCard: String
|
|
1132
1163
|
# @param PickUpTime: 自提时间
|
|
1133
1164
|
# @type PickUpTime: String
|
|
@@ -1887,17 +1918,20 @@ module TencentCloud
|
|
|
1887
1918
|
# @type OrderStatus: String
|
|
1888
1919
|
# @param RejectReason: 拒绝原因
|
|
1889
1920
|
# @type RejectReason: String
|
|
1921
|
+
# @param CarSet: 到访人员车辆信息
|
|
1922
|
+
# @type CarSet: Array
|
|
1890
1923
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1891
1924
|
# @type RequestId: String
|
|
1892
1925
|
|
|
1893
|
-
attr_accessor :StepSet, :BaseInfo, :PersonnelSet, :OrderStatus, :RejectReason, :RequestId
|
|
1926
|
+
attr_accessor :StepSet, :BaseInfo, :PersonnelSet, :OrderStatus, :RejectReason, :CarSet, :RequestId
|
|
1894
1927
|
|
|
1895
|
-
def initialize(stepset=nil, baseinfo=nil, personnelset=nil, orderstatus=nil, rejectreason=nil, requestid=nil)
|
|
1928
|
+
def initialize(stepset=nil, baseinfo=nil, personnelset=nil, orderstatus=nil, rejectreason=nil, carset=nil, requestid=nil)
|
|
1896
1929
|
@StepSet = stepset
|
|
1897
1930
|
@BaseInfo = baseinfo
|
|
1898
1931
|
@PersonnelSet = personnelset
|
|
1899
1932
|
@OrderStatus = orderstatus
|
|
1900
1933
|
@RejectReason = rejectreason
|
|
1934
|
+
@CarSet = carset
|
|
1901
1935
|
@RequestId = requestid
|
|
1902
1936
|
end
|
|
1903
1937
|
|
|
@@ -1924,6 +1958,14 @@ module TencentCloud
|
|
|
1924
1958
|
end
|
|
1925
1959
|
@OrderStatus = params['OrderStatus']
|
|
1926
1960
|
@RejectReason = params['RejectReason']
|
|
1961
|
+
unless params['CarSet'].nil?
|
|
1962
|
+
@CarSet = []
|
|
1963
|
+
params['CarSet'].each do |i|
|
|
1964
|
+
personnelvisitcar_tmp = PersonnelVisitCar.new
|
|
1965
|
+
personnelvisitcar_tmp.deserialize(i)
|
|
1966
|
+
@CarSet << personnelvisitcar_tmp
|
|
1967
|
+
end
|
|
1968
|
+
end
|
|
1927
1969
|
@RequestId = params['RequestId']
|
|
1928
1970
|
end
|
|
1929
1971
|
end
|
|
@@ -2672,10 +2714,16 @@ module TencentCloud
|
|
|
2672
2714
|
# @type CustomerReceipt: :class:`Tencentcloud::Chc.v20230418.models.CustomerReceipt`
|
|
2673
2715
|
# @param LogisticsReceipt: 物流上门收货信息
|
|
2674
2716
|
# @type LogisticsReceipt: :class:`Tencentcloud::Chc.v20230418.models.LogisticsReceipt`
|
|
2717
|
+
# @param Building: 涉及物资放行时的楼宇
|
|
2718
|
+
# @type Building: String
|
|
2719
|
+
# @param EmailSet: 物资放行抄送邮箱
|
|
2720
|
+
# @type EmailSet: Array
|
|
2721
|
+
# @param FactorSet: 物资放行到访原因
|
|
2722
|
+
# @type FactorSet: Array
|
|
2675
2723
|
|
|
2676
|
-
attr_accessor :IdcId, :IdcName, :DeviceType, :Remark, :ReceivingOperation, :EntryTime, :IsExpressDelivery, :ExpressInfo, :StuffOption, :SelfOperationInfo, :WithPowerOn, :IsPowerOffConfirm, :PowerOffConfirmInfo, :HandoverMethod, :CustomerReceipt, :LogisticsReceipt
|
|
2724
|
+
attr_accessor :IdcId, :IdcName, :DeviceType, :Remark, :ReceivingOperation, :EntryTime, :IsExpressDelivery, :ExpressInfo, :StuffOption, :SelfOperationInfo, :WithPowerOn, :IsPowerOffConfirm, :PowerOffConfirmInfo, :HandoverMethod, :CustomerReceipt, :LogisticsReceipt, :Building, :EmailSet, :FactorSet
|
|
2677
2725
|
|
|
2678
|
-
def initialize(idcid=nil, idcname=nil, devicetype=nil, remark=nil, receivingoperation=nil, entrytime=nil, isexpressdelivery=nil, expressinfo=nil, stuffoption=nil, selfoperationinfo=nil, withpoweron=nil, ispoweroffconfirm=nil, poweroffconfirminfo=nil, handovermethod=nil, customerreceipt=nil, logisticsreceipt=nil)
|
|
2726
|
+
def initialize(idcid=nil, idcname=nil, devicetype=nil, remark=nil, receivingoperation=nil, entrytime=nil, isexpressdelivery=nil, expressinfo=nil, stuffoption=nil, selfoperationinfo=nil, withpoweron=nil, ispoweroffconfirm=nil, poweroffconfirminfo=nil, handovermethod=nil, customerreceipt=nil, logisticsreceipt=nil, building=nil, emailset=nil, factorset=nil)
|
|
2679
2727
|
@IdcId = idcid
|
|
2680
2728
|
@IdcName = idcname
|
|
2681
2729
|
@DeviceType = devicetype
|
|
@@ -2692,6 +2740,9 @@ module TencentCloud
|
|
|
2692
2740
|
@HandoverMethod = handovermethod
|
|
2693
2741
|
@CustomerReceipt = customerreceipt
|
|
2694
2742
|
@LogisticsReceipt = logisticsreceipt
|
|
2743
|
+
@Building = building
|
|
2744
|
+
@EmailSet = emailset
|
|
2745
|
+
@FactorSet = factorset
|
|
2695
2746
|
end
|
|
2696
2747
|
|
|
2697
2748
|
def deserialize(params)
|
|
@@ -2726,6 +2777,9 @@ module TencentCloud
|
|
|
2726
2777
|
@LogisticsReceipt = LogisticsReceipt.new
|
|
2727
2778
|
@LogisticsReceipt.deserialize(params['LogisticsReceipt'])
|
|
2728
2779
|
end
|
|
2780
|
+
@Building = params['Building']
|
|
2781
|
+
@EmailSet = params['EmailSet']
|
|
2782
|
+
@FactorSet = params['FactorSet']
|
|
2729
2783
|
end
|
|
2730
2784
|
end
|
|
2731
2785
|
|
|
@@ -3480,6 +3534,30 @@ module TencentCloud
|
|
|
3480
3534
|
end
|
|
3481
3535
|
end
|
|
3482
3536
|
|
|
3537
|
+
# 人员到访时的车辆信息
|
|
3538
|
+
class PersonnelVisitCar < TencentCloud::Common::AbstractModel
|
|
3539
|
+
# @param CarNumber: 车牌号
|
|
3540
|
+
# @type CarNumber: String
|
|
3541
|
+
# @param DriverName: 驾驶人姓名
|
|
3542
|
+
# @type DriverName: String
|
|
3543
|
+
# @param DriverNumber: 驾驶人身份证号
|
|
3544
|
+
# @type DriverNumber: String
|
|
3545
|
+
|
|
3546
|
+
attr_accessor :CarNumber, :DriverName, :DriverNumber
|
|
3547
|
+
|
|
3548
|
+
def initialize(carnumber=nil, drivername=nil, drivernumber=nil)
|
|
3549
|
+
@CarNumber = carnumber
|
|
3550
|
+
@DriverName = drivername
|
|
3551
|
+
@DriverNumber = drivernumber
|
|
3552
|
+
end
|
|
3553
|
+
|
|
3554
|
+
def deserialize(params)
|
|
3555
|
+
@CarNumber = params['CarNumber']
|
|
3556
|
+
@DriverName = params['DriverName']
|
|
3557
|
+
@DriverNumber = params['DriverNumber']
|
|
3558
|
+
end
|
|
3559
|
+
end
|
|
3560
|
+
|
|
3483
3561
|
# 机位信息
|
|
3484
3562
|
class Position < TencentCloud::Common::AbstractModel
|
|
3485
3563
|
# @param PositionId: 机位ID
|
|
@@ -3948,10 +4026,12 @@ module TencentCloud
|
|
|
3948
4026
|
# @type CreateTime: String
|
|
3949
4027
|
# @param FinishTime: 工单完成时间
|
|
3950
4028
|
# @type FinishTime: String
|
|
4029
|
+
# @param TicketId: 工单关联的dcops单号
|
|
4030
|
+
# @type TicketId: String
|
|
3951
4031
|
|
|
3952
|
-
attr_accessor :WorkOrderId, :ServiceType, :OrderType, :OrderStatus, :Creator, :CreateTime, :FinishTime
|
|
4032
|
+
attr_accessor :WorkOrderId, :ServiceType, :OrderType, :OrderStatus, :Creator, :CreateTime, :FinishTime, :TicketId
|
|
3953
4033
|
|
|
3954
|
-
def initialize(workorderid=nil, servicetype=nil, ordertype=nil, orderstatus=nil, creator=nil, createtime=nil, finishtime=nil)
|
|
4034
|
+
def initialize(workorderid=nil, servicetype=nil, ordertype=nil, orderstatus=nil, creator=nil, createtime=nil, finishtime=nil, ticketid=nil)
|
|
3955
4035
|
@WorkOrderId = workorderid
|
|
3956
4036
|
@ServiceType = servicetype
|
|
3957
4037
|
@OrderType = ordertype
|
|
@@ -3959,6 +4039,7 @@ module TencentCloud
|
|
|
3959
4039
|
@Creator = creator
|
|
3960
4040
|
@CreateTime = createtime
|
|
3961
4041
|
@FinishTime = finishtime
|
|
4042
|
+
@TicketId = ticketid
|
|
3962
4043
|
end
|
|
3963
4044
|
|
|
3964
4045
|
def deserialize(params)
|
|
@@ -3969,6 +4050,7 @@ module TencentCloud
|
|
|
3969
4050
|
@Creator = params['Creator']
|
|
3970
4051
|
@CreateTime = params['CreateTime']
|
|
3971
4052
|
@FinishTime = params['FinishTime']
|
|
4053
|
+
@TicketId = params['TicketId']
|
|
3972
4054
|
end
|
|
3973
4055
|
end
|
|
3974
4056
|
|
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.
|
|
4
|
+
version: 3.0.1169
|
|
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-
|
|
11
|
+
date: 2025-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/tencentcloud-sdk-chc.rb
|
|
37
36
|
- lib/v20230418/client.rb
|
|
38
37
|
- lib/v20230418/models.rb
|
|
38
|
+
- lib/tencentcloud-sdk-chc.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|