tencentcloud-sdk-chc 3.0.1066 → 3.0.1068
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 +30 -8
- 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: ff9ce3cfb3ccdee177f7dfb5fe926ada140198e4
|
4
|
+
data.tar.gz: caad0086e7e37759e30f696608905759cff28fdd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6e7bb5013df5bb6644a798ee78e19430eda698303f06d7827dd33497a8e7794fbd92f3bfc36e29399b26658f6de2bb7efba45578eb4821850f865506af4bd7d
|
7
|
+
data.tar.gz: 6bc1fbf5427cc7651a83a58126bc7e8f56cfd093f9016a17748cd66559dde2ae5b78d3b12ee83f4414bdfcdac8831c223817c552ab8e5fab76cd3a1df4e7049e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1068
|
data/lib/v20230418/models.rb
CHANGED
@@ -1127,18 +1127,26 @@ module TencentCloud
|
|
1127
1127
|
# @type PickUpStuff: String
|
1128
1128
|
# @param PickUpStuffContact: 自提人电话
|
1129
1129
|
# @type PickUpStuffContact: String
|
1130
|
-
# @param PickUpStuffIDCard:
|
1130
|
+
# @param PickUpStuffIDCard: 自提人证件号码
|
1131
1131
|
# @type PickUpStuffIDCard: String
|
1132
1132
|
# @param PickUpTime: 自提时间
|
1133
1133
|
# @type PickUpTime: String
|
1134
|
+
# @param IDCardType: 证件类型,非必传,默认为IDENTITY_CARD。
|
1135
|
+
# 对应关系如下:IDENTITY_CARD: 身份证,
|
1136
|
+
# HONG_KONG_AND_MACAO_PASS: 港澳通行证',
|
1137
|
+
# PASSPORT: 护照,
|
1138
|
+
# DRIVING_LICENSE: 驾照,
|
1139
|
+
# OTHER: 其他
|
1140
|
+
# @type IDCardType: String
|
1134
1141
|
|
1135
|
-
attr_accessor :PickUpStuff, :PickUpStuffContact, :PickUpStuffIDCard, :PickUpTime
|
1142
|
+
attr_accessor :PickUpStuff, :PickUpStuffContact, :PickUpStuffIDCard, :PickUpTime, :IDCardType
|
1136
1143
|
|
1137
|
-
def initialize(pickupstuff=nil, pickupstuffcontact=nil, pickupstuffidcard=nil, pickuptime=nil)
|
1144
|
+
def initialize(pickupstuff=nil, pickupstuffcontact=nil, pickupstuffidcard=nil, pickuptime=nil, idcardtype=nil)
|
1138
1145
|
@PickUpStuff = pickupstuff
|
1139
1146
|
@PickUpStuffContact = pickupstuffcontact
|
1140
1147
|
@PickUpStuffIDCard = pickupstuffidcard
|
1141
1148
|
@PickUpTime = pickuptime
|
1149
|
+
@IDCardType = idcardtype
|
1142
1150
|
end
|
1143
1151
|
|
1144
1152
|
def deserialize(params)
|
@@ -1146,6 +1154,7 @@ module TencentCloud
|
|
1146
1154
|
@PickUpStuffContact = params['PickUpStuffContact']
|
1147
1155
|
@PickUpStuffIDCard = params['PickUpStuffIDCard']
|
1148
1156
|
@PickUpTime = params['PickUpTime']
|
1157
|
+
@IDCardType = params['IDCardType']
|
1149
1158
|
end
|
1150
1159
|
end
|
1151
1160
|
|
@@ -2120,14 +2129,17 @@ module TencentCloud
|
|
2120
2129
|
# @type Filters: Array
|
2121
2130
|
# @param DstService: 传入目标服务,返回允许进行此服务的机架列表;可以和Filters一起使用。允许的值:('rackPowerOn', 'rackPowerOff')
|
2122
2131
|
# @type DstService: String
|
2132
|
+
# @param RackName: 机架名称关键字实现模糊搜索
|
2133
|
+
# @type RackName: String
|
2123
2134
|
|
2124
|
-
attr_accessor :Offset, :Limit, :Filters, :DstService
|
2135
|
+
attr_accessor :Offset, :Limit, :Filters, :DstService, :RackName
|
2125
2136
|
|
2126
|
-
def initialize(offset=nil, limit=nil, filters=nil, dstservice=nil)
|
2137
|
+
def initialize(offset=nil, limit=nil, filters=nil, dstservice=nil, rackname=nil)
|
2127
2138
|
@Offset = offset
|
2128
2139
|
@Limit = limit
|
2129
2140
|
@Filters = filters
|
2130
2141
|
@DstService = dstservice
|
2142
|
+
@RackName = rackname
|
2131
2143
|
end
|
2132
2144
|
|
2133
2145
|
def deserialize(params)
|
@@ -2142,6 +2154,7 @@ module TencentCloud
|
|
2142
2154
|
end
|
2143
2155
|
end
|
2144
2156
|
@DstService = params['DstService']
|
2157
|
+
@RackName = params['RackName']
|
2145
2158
|
end
|
2146
2159
|
end
|
2147
2160
|
|
@@ -3619,20 +3632,28 @@ module TencentCloud
|
|
3619
3632
|
class SelfOperation < TencentCloud::Common::AbstractModel
|
3620
3633
|
# @param StuffContact: 联系人员电话
|
3621
3634
|
# @type StuffContact: String
|
3622
|
-
# @param StuffIDCard:
|
3635
|
+
# @param StuffIDCard: 证件号码
|
3623
3636
|
# @type StuffIDCard: String
|
3624
3637
|
# @param StuffName: 人员姓名
|
3625
3638
|
# @type StuffName: String
|
3626
3639
|
# @param OperationTime: 上门时间
|
3627
3640
|
# @type OperationTime: String
|
3641
|
+
# @param IDCardType: 证件类型,非必传,默认为IDENTITY_CARD。
|
3642
|
+
# 对应关系如下:IDENTITY_CARD: 身份证,
|
3643
|
+
# HONG_KONG_AND_MACAO_PASS: 港澳通行证',
|
3644
|
+
# PASSPORT: 护照,
|
3645
|
+
# DRIVING_LICENSE: 驾照,
|
3646
|
+
# OTHER: 其他
|
3647
|
+
# @type IDCardType: String
|
3628
3648
|
|
3629
|
-
attr_accessor :StuffContact, :StuffIDCard, :StuffName, :OperationTime
|
3649
|
+
attr_accessor :StuffContact, :StuffIDCard, :StuffName, :OperationTime, :IDCardType
|
3630
3650
|
|
3631
|
-
def initialize(stuffcontact=nil, stuffidcard=nil, stuffname=nil, operationtime=nil)
|
3651
|
+
def initialize(stuffcontact=nil, stuffidcard=nil, stuffname=nil, operationtime=nil, idcardtype=nil)
|
3632
3652
|
@StuffContact = stuffcontact
|
3633
3653
|
@StuffIDCard = stuffidcard
|
3634
3654
|
@StuffName = stuffname
|
3635
3655
|
@OperationTime = operationtime
|
3656
|
+
@IDCardType = idcardtype
|
3636
3657
|
end
|
3637
3658
|
|
3638
3659
|
def deserialize(params)
|
@@ -3640,6 +3661,7 @@ module TencentCloud
|
|
3640
3661
|
@StuffIDCard = params['StuffIDCard']
|
3641
3662
|
@StuffName = params['StuffName']
|
3642
3663
|
@OperationTime = params['OperationTime']
|
3664
|
+
@IDCardType = params['IDCardType']
|
3643
3665
|
end
|
3644
3666
|
end
|
3645
3667
|
|
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.1068
|
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-05-
|
11
|
+
date: 2025-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|