tencentcloud-sdk-chc 3.0.1067 → 3.0.1069

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 +30 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e76ed0b602214ddb2d429af9c931873170a7ed3c
4
- data.tar.gz: 06618a9a988d9cb1932406685eaefd232b1a7898
3
+ metadata.gz: 0270c618dd59183e03fbc9ca200b139a3e013e34
4
+ data.tar.gz: 57e9ea2191ff36a07c29d53c0ca08d29e7ed6493
5
5
  SHA512:
6
- metadata.gz: af77f2c093b628272461cb67eb9cbb7344e0c86051d389ebba38b51abb427ce42c5bcc4f09703fa47438d3909bdd4606d45ccc24d0b1997ba185d8c8ce7c9fbe
7
- data.tar.gz: c5005e8f2d53ad397b3091c92e956acf340bfe7d1742bd04202a8c65e8da0faa8e368dff9c0d54ea5e631f9b2d8e43df0162eeb433277284305a31a5c7c565ea
6
+ metadata.gz: 506d9c491a13ff5c8c04189ad1f7b6d2b4ad48d17c89a81b24637544f568e022f4a06d7a5282f3d07541296004b4244e75dc80df836324488766ec464146375a
7
+ data.tar.gz: d9d9176881459f1aac30938ae6261ad78cc60ad41ae14ddef5697027a5ab06f3dbcd6023da6d5558565b72e586dd60dcc0db7fad9748d6b04721a4f6ad3fe41c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1067
1
+ 3.0.1069
@@ -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.1067
4
+ version: 3.0.1069
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-25 00:00:00.000000000 Z
11
+ date: 2025-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common