tencentcloud-sdk-billing 3.0.931 → 3.0.933

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0cfa44b1bf95b34dffd222a0c0f17d5c8228ee1
4
- data.tar.gz: e0090fcf77d2b94f843e52df8f66fb30e3ed951a
3
+ metadata.gz: 3285afa6fa4244d2e3f4201b21df8ac813565e8d
4
+ data.tar.gz: da55ad0645d90917aab0bbadbf57b1b06cf2fa0c
5
5
  SHA512:
6
- metadata.gz: 51b1a80b7325d55b16334af535f4116cdf9a22ec51d757c59c5e14be29537a9fc7cac5b1eadfcb32f145bbe14c70473ed2774b0774b7edc459083b3e02e3af76
7
- data.tar.gz: 7d960a9b360a58042d7d02b1b709ce72552bf64711ee4319c7b4458741ba0c396a476b0acc3f9cdb7cf666abd52cca42419ab9724ac87b29018bfc53062000a3
6
+ metadata.gz: 0a061c188c3a16b5725c49ec7a2120a55844aad52a15aac06b9723f14f9fd064af3c32a172a6f0b0cbe63a25edf50dbf7680a1f2775b1b4135d70cd39b534bb9
7
+ data.tar.gz: 31aa2305d01be0082a2c376a44473a3b81ec61c417b2b580f408398ff128f5c8059901c03783ee1e6e969d8ae5a82976744af897444e77b21bdf8fc352572573
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.931
1
+ 3.0.933
@@ -341,6 +341,30 @@ module TencentCloud
341
341
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
342
342
  end
343
343
 
344
+ # 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
345
+
346
+ # @param request: Request instance for DescribeBillAdjustInfo.
347
+ # @type request: :class:`Tencentcloud::billing::V20180709::DescribeBillAdjustInfoRequest`
348
+ # @rtype: :class:`Tencentcloud::billing::V20180709::DescribeBillAdjustInfoResponse`
349
+ def DescribeBillAdjustInfo(request)
350
+ body = send_request('DescribeBillAdjustInfo', request.serialize)
351
+ response = JSON.parse(body)
352
+ if response['Response'].key?('Error') == false
353
+ model = DescribeBillAdjustInfoResponse.new
354
+ model.deserialize(response['Response'])
355
+ model
356
+ else
357
+ code = response['Response']['Error']['Code']
358
+ message = response['Response']['Error']['Message']
359
+ reqid = response['Response']['RequestId']
360
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
361
+ end
362
+ rescue TencentCloud::Common::TencentCloudSDKException => e
363
+ raise e
364
+ rescue StandardError => e
365
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
366
+ end
367
+
344
368
  # 获取账单明细数据。
345
369
  # 注意事项:
346
370
  # 1.在请求接口时,由于网络不稳定或其它异常,可能会导致请求失败。如果您遇到这种情况,我们建议您在接口请求失败时,手动发起重试操作,这样可以更好地确保您的接口请求能够成功执行。
@@ -70,6 +70,51 @@ module TencentCloud
70
70
  end
71
71
  end
72
72
 
73
+ # UIN异常调整明细
74
+ class AdjustInfoDetail < TencentCloud::Common::AbstractModel
75
+ # @param PayerUin: 支付者UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识
76
+ # 注意:此字段可能返回 null,表示取不到有效值。
77
+ # @type PayerUin: String
78
+ # @param Month: 账单月份,格式:yyyy-MM
79
+ # 注意:此字段可能返回 null,表示取不到有效值。
80
+ # @type Month: String
81
+ # @param AdjustType: 调整类型
82
+ # 调账:manualAdjustment
83
+ # 补结算:supplementarySettlement
84
+ # 重结算:reSettlement
85
+ # 注意:此字段可能返回 null,表示取不到有效值。
86
+ # @type AdjustType: String
87
+ # @param AdjustNum: 调整单号
88
+ # 注意:此字段可能返回 null,表示取不到有效值。
89
+ # @type AdjustNum: String
90
+ # @param AdjustCompletionTime: 异常调整完成时间,格式:yyyy-MM-dd HH:mm:ss
91
+ # 注意:此字段可能返回 null,表示取不到有效值。
92
+ # @type AdjustCompletionTime: String
93
+ # @param AdjustAmount: 调整金额
94
+ # 注意:此字段可能返回 null,表示取不到有效值。
95
+ # @type AdjustAmount: Float
96
+
97
+ attr_accessor :PayerUin, :Month, :AdjustType, :AdjustNum, :AdjustCompletionTime, :AdjustAmount
98
+
99
+ def initialize(payeruin=nil, month=nil, adjusttype=nil, adjustnum=nil, adjustcompletiontime=nil, adjustamount=nil)
100
+ @PayerUin = payeruin
101
+ @Month = month
102
+ @AdjustType = adjusttype
103
+ @AdjustNum = adjustnum
104
+ @AdjustCompletionTime = adjustcompletiontime
105
+ @AdjustAmount = adjustamount
106
+ end
107
+
108
+ def deserialize(params)
109
+ @PayerUin = params['PayerUin']
110
+ @Month = params['Month']
111
+ @AdjustType = params['AdjustType']
112
+ @AdjustNum = params['AdjustNum']
113
+ @AdjustCompletionTime = params['AdjustCompletionTime']
114
+ @AdjustAmount = params['AdjustAmount']
115
+ end
116
+ end
117
+
73
118
  # 分账账单趋势图平均值
74
119
  class AllocationAverageData < TencentCloud::Common::AbstractModel
75
120
  # @param BeginMonth: 起始月份
@@ -329,15 +374,33 @@ module TencentCloud
329
374
  # 2 - 未分配
330
375
  # 注意:此字段可能返回 null,表示取不到有效值。
331
376
  # @type AllocationType: Integer
377
+ # @param DiscountObject: 当前消费项的优惠对象,例如:官网折扣、用户折扣、活动折扣。
378
+ # 注意:此字段可能返回 null,表示取不到有效值。
379
+ # @type DiscountObject: String
380
+ # @param DiscountType: 当前消费项的优惠类型,例如:折扣、合同价。
381
+ # 注意:此字段可能返回 null,表示取不到有效值。
382
+ # @type DiscountType: String
383
+ # @param DiscountContent: 对优惠类型的补充描述,例如:商务折扣8折,则优惠类型为“折扣”,优惠内容为“0.8”。
384
+ # 注意:此字段可能返回 null,表示取不到有效值。
385
+ # @type DiscountContent: String
386
+ # @param SPDeduction: SPDeduction
387
+ # 注意:此字段可能返回 null,表示取不到有效值。
388
+ # @type SPDeduction: String
389
+ # @param SPDeductionRate: SPDeduction
390
+ # 注意:此字段可能返回 null,表示取不到有效值。
391
+ # @type SPDeductionRate: String
392
+ # @param BillMonth: 账单月
393
+ # 注意:此字段可能返回 null,表示取不到有效值。
394
+ # @type BillMonth: String
332
395
 
333
- attr_accessor :TreeNodeUniqKey, :TreeNodeUniqKeyName, :BillDate, :PayerUin, :OwnerUin, :OperateUin, :BusinessCode, :BusinessCodeName, :PayMode, :PayModeName, :ProjectId, :ProjectName, :RegionId, :RegionName, :ZoneId, :ZoneName, :ResourceId, :ResourceName, :InstanceType, :InstanceTypeName, :SplitItemId, :SplitItemName, :ProductCode, :ProductCodeName, :ActionType, :ActionTypeName, :OrderId, :BillId, :PayTime, :FeeBeginTime, :FeeEndTime, :ComponentCode, :ComponentCodeName, :SinglePrice, :ContractPrice, :SinglePriceUnit, :UsedAmount, :UsedAmountUnit, :TimeSpan, :TimeUnit, :ReserveDetail, :SplitRatio, :TotalCost, :RITimeSpan, :RICost, :SPCost, :Discount, :BlendedDiscount, :RealTotalCost, :CashPayAmount, :VoucherPayAmount, :IncentivePayAmount, :TransferPayAmount, :Tag, :RegionType, :RegionTypeName, :ItemCode, :ItemCodeName, :AssociatedOrder, :PriceInfo, :Formula, :FormulaUrl, :RealTotalMeasure, :DeductedMeasure, :ComponentConfig, :AllocationType
396
+ attr_accessor :TreeNodeUniqKey, :TreeNodeUniqKeyName, :BillDate, :PayerUin, :OwnerUin, :OperateUin, :BusinessCode, :BusinessCodeName, :PayMode, :PayModeName, :ProjectId, :ProjectName, :RegionId, :RegionName, :ZoneId, :ZoneName, :ResourceId, :ResourceName, :InstanceType, :InstanceTypeName, :SplitItemId, :SplitItemName, :ProductCode, :ProductCodeName, :ActionType, :ActionTypeName, :OrderId, :BillId, :PayTime, :FeeBeginTime, :FeeEndTime, :ComponentCode, :ComponentCodeName, :SinglePrice, :ContractPrice, :SinglePriceUnit, :UsedAmount, :UsedAmountUnit, :TimeSpan, :TimeUnit, :ReserveDetail, :SplitRatio, :TotalCost, :RITimeSpan, :RICost, :SPCost, :Discount, :BlendedDiscount, :RealTotalCost, :CashPayAmount, :VoucherPayAmount, :IncentivePayAmount, :TransferPayAmount, :Tag, :RegionType, :RegionTypeName, :ItemCode, :ItemCodeName, :AssociatedOrder, :PriceInfo, :Formula, :FormulaUrl, :RealTotalMeasure, :DeductedMeasure, :ComponentConfig, :AllocationType, :DiscountObject, :DiscountType, :DiscountContent, :SPDeduction, :SPDeductionRate, :BillMonth
334
397
  extend Gem::Deprecate
335
- deprecate :SplitItemId, :none, 2024, 9
336
- deprecate :SplitItemId=, :none, 2024, 9
337
- deprecate :SplitItemName, :none, 2024, 9
338
- deprecate :SplitItemName=, :none, 2024, 9
398
+ deprecate :SplitItemId, :none, 2024, 10
399
+ deprecate :SplitItemId=, :none, 2024, 10
400
+ deprecate :SplitItemName, :none, 2024, 10
401
+ deprecate :SplitItemName=, :none, 2024, 10
339
402
 
340
- def initialize(treenodeuniqkey=nil, treenodeuniqkeyname=nil, billdate=nil, payeruin=nil, owneruin=nil, operateuin=nil, businesscode=nil, businesscodename=nil, paymode=nil, paymodename=nil, projectid=nil, projectname=nil, regionid=nil, regionname=nil, zoneid=nil, zonename=nil, resourceid=nil, resourcename=nil, instancetype=nil, instancetypename=nil, splititemid=nil, splititemname=nil, productcode=nil, productcodename=nil, actiontype=nil, actiontypename=nil, orderid=nil, billid=nil, paytime=nil, feebegintime=nil, feeendtime=nil, componentcode=nil, componentcodename=nil, singleprice=nil, contractprice=nil, singlepriceunit=nil, usedamount=nil, usedamountunit=nil, timespan=nil, timeunit=nil, reservedetail=nil, splitratio=nil, totalcost=nil, ritimespan=nil, ricost=nil, spcost=nil, discount=nil, blendeddiscount=nil, realtotalcost=nil, cashpayamount=nil, voucherpayamount=nil, incentivepayamount=nil, transferpayamount=nil, tag=nil, regiontype=nil, regiontypename=nil, itemcode=nil, itemcodename=nil, associatedorder=nil, priceinfo=nil, formula=nil, formulaurl=nil, realtotalmeasure=nil, deductedmeasure=nil, componentconfig=nil, allocationtype=nil)
403
+ def initialize(treenodeuniqkey=nil, treenodeuniqkeyname=nil, billdate=nil, payeruin=nil, owneruin=nil, operateuin=nil, businesscode=nil, businesscodename=nil, paymode=nil, paymodename=nil, projectid=nil, projectname=nil, regionid=nil, regionname=nil, zoneid=nil, zonename=nil, resourceid=nil, resourcename=nil, instancetype=nil, instancetypename=nil, splititemid=nil, splititemname=nil, productcode=nil, productcodename=nil, actiontype=nil, actiontypename=nil, orderid=nil, billid=nil, paytime=nil, feebegintime=nil, feeendtime=nil, componentcode=nil, componentcodename=nil, singleprice=nil, contractprice=nil, singlepriceunit=nil, usedamount=nil, usedamountunit=nil, timespan=nil, timeunit=nil, reservedetail=nil, splitratio=nil, totalcost=nil, ritimespan=nil, ricost=nil, spcost=nil, discount=nil, blendeddiscount=nil, realtotalcost=nil, cashpayamount=nil, voucherpayamount=nil, incentivepayamount=nil, transferpayamount=nil, tag=nil, regiontype=nil, regiontypename=nil, itemcode=nil, itemcodename=nil, associatedorder=nil, priceinfo=nil, formula=nil, formulaurl=nil, realtotalmeasure=nil, deductedmeasure=nil, componentconfig=nil, allocationtype=nil, discountobject=nil, discounttype=nil, discountcontent=nil, spdeduction=nil, spdeductionrate=nil, billmonth=nil)
341
404
  @TreeNodeUniqKey = treenodeuniqkey
342
405
  @TreeNodeUniqKeyName = treenodeuniqkeyname
343
406
  @BillDate = billdate
@@ -404,6 +467,12 @@ module TencentCloud
404
467
  @DeductedMeasure = deductedmeasure
405
468
  @ComponentConfig = componentconfig
406
469
  @AllocationType = allocationtype
470
+ @DiscountObject = discountobject
471
+ @DiscountType = discounttype
472
+ @DiscountContent = discountcontent
473
+ @SPDeduction = spdeduction
474
+ @SPDeductionRate = spdeductionrate
475
+ @BillMonth = billmonth
407
476
  end
408
477
 
409
478
  def deserialize(params)
@@ -480,6 +549,12 @@ module TencentCloud
480
549
  @DeductedMeasure = params['DeductedMeasure']
481
550
  @ComponentConfig = params['ComponentConfig']
482
551
  @AllocationType = params['AllocationType']
552
+ @DiscountObject = params['DiscountObject']
553
+ @DiscountType = params['DiscountType']
554
+ @DiscountContent = params['DiscountContent']
555
+ @SPDeduction = params['SPDeduction']
556
+ @SPDeductionRate = params['SPDeductionRate']
557
+ @BillMonth = params['BillMonth']
483
558
  end
484
559
  end
485
560
 
@@ -1147,15 +1222,36 @@ module TencentCloud
1147
1222
  # @param ComponentConfig: 配置描述:资源配置规格信息
1148
1223
  # 注意:此字段可能返回 null,表示取不到有效值。
1149
1224
  # @type ComponentConfig: String
1225
+ # @param SPDeduction: SPDeduction
1226
+ # 注意:此字段可能返回 null,表示取不到有效值。
1227
+ # @type SPDeduction: String
1228
+ # @param SPDeductionRate: 节省计划抵扣率:节省计划可用余额额度范围内,节省计划对于此组件打的折扣率
1229
+ # 注意:此字段可能返回 null,表示取不到有效值。
1230
+ # @type SPDeductionRate: String
1231
+ # @param AssociatedOrder: AssociatedOrder
1232
+ # 注意:此字段可能返回 null,表示取不到有效值。
1233
+ # @type AssociatedOrder: String
1234
+ # @param DiscountObject: 当前消费项的优惠对象,例如:官网折扣、用户折扣、活动折扣。
1235
+ # 注意:此字段可能返回 null,表示取不到有效值。
1236
+ # @type DiscountObject: String
1237
+ # @param DiscountType: 当前消费项的优惠类型,例如:折扣、合同价。
1238
+ # 注意:此字段可能返回 null,表示取不到有效值。
1239
+ # @type DiscountType: String
1240
+ # @param DiscountContent: 对优惠类型的补充描述,例如:商务折扣8折,则优惠类型为“折扣”,优惠内容为“0.8”。
1241
+ # 注意:此字段可能返回 null,表示取不到有效值。
1242
+ # @type DiscountContent: String
1243
+ # @param BillMonth: 账单月
1244
+ # 注意:此字段可能返回 null,表示取不到有效值。
1245
+ # @type BillMonth: String
1150
1246
 
1151
- attr_accessor :TreeNodeUniqKey, :TreeNodeUniqKeyName, :BillDate, :PayerUin, :OwnerUin, :OperateUin, :PayMode, :PayModeName, :ActionType, :ActionTypeName, :BusinessCode, :BusinessCodeName, :ProductCode, :ProductCodeName, :RegionId, :RegionName, :ZoneId, :ZoneName, :InstanceType, :InstanceTypeName, :ResourceId, :ResourceName, :Tag, :ProjectId, :ProjectName, :AllocationType, :TotalCost, :RiTimeSpan, :RiCost, :RealTotalCost, :CashPayAmount, :VoucherPayAmount, :IncentivePayAmount, :TransferPayAmount, :ItemCode, :ItemCodeName, :ComponentCode, :ComponentCodeName, :SplitItemId, :SplitItemName, :FeeBeginTime, :FeeEndTime, :SPCost, :RegionType, :RegionTypeName, :SinglePrice, :ContractPrice, :SinglePriceUnit, :UsedAmount, :UsedAmountUnit, :TimeSpan, :TimeUnit, :ReserveDetail, :RealTotalMeasure, :DeductedMeasure, :Discount, :BlendedDiscount, :PriceInfo, :Formula, :FormulaUrl, :ComponentConfig
1247
+ attr_accessor :TreeNodeUniqKey, :TreeNodeUniqKeyName, :BillDate, :PayerUin, :OwnerUin, :OperateUin, :PayMode, :PayModeName, :ActionType, :ActionTypeName, :BusinessCode, :BusinessCodeName, :ProductCode, :ProductCodeName, :RegionId, :RegionName, :ZoneId, :ZoneName, :InstanceType, :InstanceTypeName, :ResourceId, :ResourceName, :Tag, :ProjectId, :ProjectName, :AllocationType, :TotalCost, :RiTimeSpan, :RiCost, :RealTotalCost, :CashPayAmount, :VoucherPayAmount, :IncentivePayAmount, :TransferPayAmount, :ItemCode, :ItemCodeName, :ComponentCode, :ComponentCodeName, :SplitItemId, :SplitItemName, :FeeBeginTime, :FeeEndTime, :SPCost, :RegionType, :RegionTypeName, :SinglePrice, :ContractPrice, :SinglePriceUnit, :UsedAmount, :UsedAmountUnit, :TimeSpan, :TimeUnit, :ReserveDetail, :RealTotalMeasure, :DeductedMeasure, :Discount, :BlendedDiscount, :PriceInfo, :Formula, :FormulaUrl, :ComponentConfig, :SPDeduction, :SPDeductionRate, :AssociatedOrder, :DiscountObject, :DiscountType, :DiscountContent, :BillMonth
1152
1248
  extend Gem::Deprecate
1153
- deprecate :SplitItemId, :none, 2024, 9
1154
- deprecate :SplitItemId=, :none, 2024, 9
1155
- deprecate :SplitItemName, :none, 2024, 9
1156
- deprecate :SplitItemName=, :none, 2024, 9
1249
+ deprecate :SplitItemId, :none, 2024, 10
1250
+ deprecate :SplitItemId=, :none, 2024, 10
1251
+ deprecate :SplitItemName, :none, 2024, 10
1252
+ deprecate :SplitItemName=, :none, 2024, 10
1157
1253
 
1158
- def initialize(treenodeuniqkey=nil, treenodeuniqkeyname=nil, billdate=nil, payeruin=nil, owneruin=nil, operateuin=nil, paymode=nil, paymodename=nil, actiontype=nil, actiontypename=nil, businesscode=nil, businesscodename=nil, productcode=nil, productcodename=nil, regionid=nil, regionname=nil, zoneid=nil, zonename=nil, instancetype=nil, instancetypename=nil, resourceid=nil, resourcename=nil, tag=nil, projectid=nil, projectname=nil, allocationtype=nil, totalcost=nil, ritimespan=nil, ricost=nil, realtotalcost=nil, cashpayamount=nil, voucherpayamount=nil, incentivepayamount=nil, transferpayamount=nil, itemcode=nil, itemcodename=nil, componentcode=nil, componentcodename=nil, splititemid=nil, splititemname=nil, feebegintime=nil, feeendtime=nil, spcost=nil, regiontype=nil, regiontypename=nil, singleprice=nil, contractprice=nil, singlepriceunit=nil, usedamount=nil, usedamountunit=nil, timespan=nil, timeunit=nil, reservedetail=nil, realtotalmeasure=nil, deductedmeasure=nil, discount=nil, blendeddiscount=nil, priceinfo=nil, formula=nil, formulaurl=nil, componentconfig=nil)
1254
+ def initialize(treenodeuniqkey=nil, treenodeuniqkeyname=nil, billdate=nil, payeruin=nil, owneruin=nil, operateuin=nil, paymode=nil, paymodename=nil, actiontype=nil, actiontypename=nil, businesscode=nil, businesscodename=nil, productcode=nil, productcodename=nil, regionid=nil, regionname=nil, zoneid=nil, zonename=nil, instancetype=nil, instancetypename=nil, resourceid=nil, resourcename=nil, tag=nil, projectid=nil, projectname=nil, allocationtype=nil, totalcost=nil, ritimespan=nil, ricost=nil, realtotalcost=nil, cashpayamount=nil, voucherpayamount=nil, incentivepayamount=nil, transferpayamount=nil, itemcode=nil, itemcodename=nil, componentcode=nil, componentcodename=nil, splititemid=nil, splititemname=nil, feebegintime=nil, feeendtime=nil, spcost=nil, regiontype=nil, regiontypename=nil, singleprice=nil, contractprice=nil, singlepriceunit=nil, usedamount=nil, usedamountunit=nil, timespan=nil, timeunit=nil, reservedetail=nil, realtotalmeasure=nil, deductedmeasure=nil, discount=nil, blendeddiscount=nil, priceinfo=nil, formula=nil, formulaurl=nil, componentconfig=nil, spdeduction=nil, spdeductionrate=nil, associatedorder=nil, discountobject=nil, discounttype=nil, discountcontent=nil, billmonth=nil)
1159
1255
  @TreeNodeUniqKey = treenodeuniqkey
1160
1256
  @TreeNodeUniqKeyName = treenodeuniqkeyname
1161
1257
  @BillDate = billdate
@@ -1217,6 +1313,13 @@ module TencentCloud
1217
1313
  @Formula = formula
1218
1314
  @FormulaUrl = formulaurl
1219
1315
  @ComponentConfig = componentconfig
1316
+ @SPDeduction = spdeduction
1317
+ @SPDeductionRate = spdeductionrate
1318
+ @AssociatedOrder = associatedorder
1319
+ @DiscountObject = discountobject
1320
+ @DiscountType = discounttype
1321
+ @DiscountContent = discountcontent
1322
+ @BillMonth = billmonth
1220
1323
  end
1221
1324
 
1222
1325
  def deserialize(params)
@@ -1288,6 +1391,13 @@ module TencentCloud
1288
1391
  @Formula = params['Formula']
1289
1392
  @FormulaUrl = params['FormulaUrl']
1290
1393
  @ComponentConfig = params['ComponentConfig']
1394
+ @SPDeduction = params['SPDeduction']
1395
+ @SPDeductionRate = params['SPDeductionRate']
1396
+ @AssociatedOrder = params['AssociatedOrder']
1397
+ @DiscountObject = params['DiscountObject']
1398
+ @DiscountType = params['DiscountType']
1399
+ @DiscountContent = params['DiscountContent']
1400
+ @BillMonth = params['BillMonth']
1291
1401
  end
1292
1402
  end
1293
1403
 
@@ -1422,15 +1532,21 @@ module TencentCloud
1422
1532
  # @param ComponentConfig: 配置描述:对应资源下各组件名称及用量(如组件为用量累加型计费则为合计用量)
1423
1533
  # 注意:此字段可能返回 null,表示取不到有效值。
1424
1534
  # @type ComponentConfig: String
1535
+ # @param SPDeduction: SPDeduction
1536
+ # 注意:此字段可能返回 null,表示取不到有效值。
1537
+ # @type SPDeduction: String
1538
+ # @param BillMonth: 账单月
1539
+ # 注意:此字段可能返回 null,表示取不到有效值。
1540
+ # @type BillMonth: String
1425
1541
 
1426
- attr_accessor :TreeNodeUniqKey, :TreeNodeUniqKeyName, :BillDate, :PayerUin, :OwnerUin, :OperateUin, :PayMode, :PayModeName, :ActionType, :ActionTypeName, :BusinessCode, :BusinessCodeName, :ProductCode, :ProductCodeName, :RegionId, :RegionName, :ZoneId, :ZoneName, :InstanceType, :InstanceTypeName, :ResourceId, :ResourceName, :Tag, :ProjectId, :ProjectName, :AllocationType, :TotalCost, :RiTimeSpan, :RiCost, :RealTotalCost, :CashPayAmount, :VoucherPayAmount, :IncentivePayAmount, :TransferPayAmount, :SplitItemId, :SplitItemName, :FeeBeginTime, :FeeEndTime, :SPCost, :RegionType, :RegionTypeName, :ComponentConfig
1542
+ attr_accessor :TreeNodeUniqKey, :TreeNodeUniqKeyName, :BillDate, :PayerUin, :OwnerUin, :OperateUin, :PayMode, :PayModeName, :ActionType, :ActionTypeName, :BusinessCode, :BusinessCodeName, :ProductCode, :ProductCodeName, :RegionId, :RegionName, :ZoneId, :ZoneName, :InstanceType, :InstanceTypeName, :ResourceId, :ResourceName, :Tag, :ProjectId, :ProjectName, :AllocationType, :TotalCost, :RiTimeSpan, :RiCost, :RealTotalCost, :CashPayAmount, :VoucherPayAmount, :IncentivePayAmount, :TransferPayAmount, :SplitItemId, :SplitItemName, :FeeBeginTime, :FeeEndTime, :SPCost, :RegionType, :RegionTypeName, :ComponentConfig, :SPDeduction, :BillMonth
1427
1543
  extend Gem::Deprecate
1428
- deprecate :SplitItemId, :none, 2024, 9
1429
- deprecate :SplitItemId=, :none, 2024, 9
1430
- deprecate :SplitItemName, :none, 2024, 9
1431
- deprecate :SplitItemName=, :none, 2024, 9
1544
+ deprecate :SplitItemId, :none, 2024, 10
1545
+ deprecate :SplitItemId=, :none, 2024, 10
1546
+ deprecate :SplitItemName, :none, 2024, 10
1547
+ deprecate :SplitItemName=, :none, 2024, 10
1432
1548
 
1433
- def initialize(treenodeuniqkey=nil, treenodeuniqkeyname=nil, billdate=nil, payeruin=nil, owneruin=nil, operateuin=nil, paymode=nil, paymodename=nil, actiontype=nil, actiontypename=nil, businesscode=nil, businesscodename=nil, productcode=nil, productcodename=nil, regionid=nil, regionname=nil, zoneid=nil, zonename=nil, instancetype=nil, instancetypename=nil, resourceid=nil, resourcename=nil, tag=nil, projectid=nil, projectname=nil, allocationtype=nil, totalcost=nil, ritimespan=nil, ricost=nil, realtotalcost=nil, cashpayamount=nil, voucherpayamount=nil, incentivepayamount=nil, transferpayamount=nil, splititemid=nil, splititemname=nil, feebegintime=nil, feeendtime=nil, spcost=nil, regiontype=nil, regiontypename=nil, componentconfig=nil)
1549
+ def initialize(treenodeuniqkey=nil, treenodeuniqkeyname=nil, billdate=nil, payeruin=nil, owneruin=nil, operateuin=nil, paymode=nil, paymodename=nil, actiontype=nil, actiontypename=nil, businesscode=nil, businesscodename=nil, productcode=nil, productcodename=nil, regionid=nil, regionname=nil, zoneid=nil, zonename=nil, instancetype=nil, instancetypename=nil, resourceid=nil, resourcename=nil, tag=nil, projectid=nil, projectname=nil, allocationtype=nil, totalcost=nil, ritimespan=nil, ricost=nil, realtotalcost=nil, cashpayamount=nil, voucherpayamount=nil, incentivepayamount=nil, transferpayamount=nil, splititemid=nil, splititemname=nil, feebegintime=nil, feeendtime=nil, spcost=nil, regiontype=nil, regiontypename=nil, componentconfig=nil, spdeduction=nil, billmonth=nil)
1434
1550
  @TreeNodeUniqKey = treenodeuniqkey
1435
1551
  @TreeNodeUniqKeyName = treenodeuniqkeyname
1436
1552
  @BillDate = billdate
@@ -1473,6 +1589,8 @@ module TencentCloud
1473
1589
  @RegionType = regiontype
1474
1590
  @RegionTypeName = regiontypename
1475
1591
  @ComponentConfig = componentconfig
1592
+ @SPDeduction = spdeduction
1593
+ @BillMonth = billmonth
1476
1594
  end
1477
1595
 
1478
1596
  def deserialize(params)
@@ -1525,6 +1643,8 @@ module TencentCloud
1525
1643
  @RegionType = params['RegionType']
1526
1644
  @RegionTypeName = params['RegionTypeName']
1527
1645
  @ComponentConfig = params['ComponentConfig']
1646
+ @SPDeduction = params['SPDeduction']
1647
+ @BillMonth = params['BillMonth']
1528
1648
  end
1529
1649
  end
1530
1650
 
@@ -2441,10 +2561,10 @@ module TencentCloud
2441
2561
 
2442
2562
  attr_accessor :ComponentCodeName, :ItemCodeName, :SinglePrice, :SpecifiedPrice, :PriceUnit, :UsedAmount, :UsedAmountUnit, :RealTotalMeasure, :DeductedMeasure, :TimeSpan, :TimeUnitName, :Cost, :Discount, :ReduceType, :RealCost, :VoucherPayAmount, :CashPayAmount, :IncentivePayAmount, :TransferPayAmount, :ItemCode, :ComponentCode, :ContractPrice, :InstanceType, :RiTimeSpan, :OriginalCostWithRI, :SPDeductionRate, :SPDeduction, :OriginalCostWithSP, :BlendedDiscount, :ComponentConfig
2443
2563
  extend Gem::Deprecate
2444
- deprecate :SpecifiedPrice, :none, 2024, 9
2445
- deprecate :SpecifiedPrice=, :none, 2024, 9
2446
- deprecate :SPDeduction, :none, 2024, 9
2447
- deprecate :SPDeduction=, :none, 2024, 9
2564
+ deprecate :SpecifiedPrice, :none, 2024, 10
2565
+ deprecate :SpecifiedPrice=, :none, 2024, 10
2566
+ deprecate :SPDeduction, :none, 2024, 10
2567
+ deprecate :SPDeduction=, :none, 2024, 10
2448
2568
 
2449
2569
  def initialize(componentcodename=nil, itemcodename=nil, singleprice=nil, specifiedprice=nil, priceunit=nil, usedamount=nil, usedamountunit=nil, realtotalmeasure=nil, deductedmeasure=nil, timespan=nil, timeunitname=nil, cost=nil, discount=nil, reducetype=nil, realcost=nil, voucherpayamount=nil, cashpayamount=nil, incentivepayamount=nil, transferpayamount=nil, itemcode=nil, componentcode=nil, contractprice=nil, instancetype=nil, ritimespan=nil, originalcostwithri=nil, spdeductionrate=nil, spdeduction=nil, originalcostwithsp=nil, blendeddiscount=nil, componentconfig=nil)
2450
2570
  @ComponentCodeName = componentcodename
@@ -2626,8 +2746,8 @@ module TencentCloud
2626
2746
 
2627
2747
  attr_accessor :BusinessCodeName, :ProductCodeName, :PayModeName, :ProjectName, :RegionName, :ZoneName, :ResourceId, :ResourceName, :ActionTypeName, :OrderId, :PayTime, :FeeBeginTime, :FeeEndTime, :ConfigDesc, :ExtendField1, :ExtendField2, :TotalCost, :Discount, :ReduceType, :RealTotalCost, :VoucherPayAmount, :CashPayAmount, :IncentivePayAmount, :TransferPayAmount, :ExtendField3, :ExtendField4, :ExtendField5, :Tags, :OwnerUin, :OperateUin, :BusinessCode, :ProductCode, :RegionId, :InstanceType, :OriginalCostWithRI, :SPDeduction, :OriginalCostWithSP, :BillMonth
2628
2748
  extend Gem::Deprecate
2629
- deprecate :SPDeduction, :none, 2024, 9
2630
- deprecate :SPDeduction=, :none, 2024, 9
2749
+ deprecate :SPDeduction, :none, 2024, 10
2750
+ deprecate :SPDeduction=, :none, 2024, 10
2631
2751
 
2632
2752
  def initialize(businesscodename=nil, productcodename=nil, paymodename=nil, projectname=nil, regionname=nil, zonename=nil, resourceid=nil, resourcename=nil, actiontypename=nil, orderid=nil, paytime=nil, feebegintime=nil, feeendtime=nil, configdesc=nil, extendfield1=nil, extendfield2=nil, totalcost=nil, discount=nil, reducetype=nil, realtotalcost=nil, voucherpayamount=nil, cashpayamount=nil, incentivepayamount=nil, transferpayamount=nil, extendfield3=nil, extendfield4=nil, extendfield5=nil, tags=nil, owneruin=nil, operateuin=nil, businesscode=nil, productcode=nil, regionid=nil, instancetype=nil, originalcostwithri=nil, spdeduction=nil, originalcostwithsp=nil, billmonth=nil)
2633
2753
  @BusinessCodeName = businesscodename
@@ -2970,8 +3090,8 @@ module TencentCloud
2970
3090
 
2971
3091
  attr_accessor :BusinessCodeName, :ProductCodeName, :PayModeName, :ProjectName, :RegionName, :ZoneName, :ResourceId, :ResourceName, :ActionTypeName, :OrderId, :PayTime, :FeeBeginTime, :FeeEndTime, :ConfigDesc, :ExtendField1, :ExtendField2, :TotalCost, :Discount, :ReduceType, :RealTotalCost, :VoucherPayAmount, :CashPayAmount, :IncentivePayAmount, :TransferPayAmount, :ExtendField3, :ExtendField4, :ExtendField5, :Tags, :PayerUin, :OwnerUin, :OperateUin, :BusinessCode, :ProductCode, :RegionId, :InstanceType, :OriginalCostWithRI, :SPDeduction, :OriginalCostWithSP, :BillMonth
2972
3092
  extend Gem::Deprecate
2973
- deprecate :SPDeduction, :none, 2024, 9
2974
- deprecate :SPDeduction=, :none, 2024, 9
3093
+ deprecate :SPDeduction, :none, 2024, 10
3094
+ deprecate :SPDeduction=, :none, 2024, 10
2975
3095
 
2976
3096
  def initialize(businesscodename=nil, productcodename=nil, paymodename=nil, projectname=nil, regionname=nil, zonename=nil, resourceid=nil, resourcename=nil, actiontypename=nil, orderid=nil, paytime=nil, feebegintime=nil, feeendtime=nil, configdesc=nil, extendfield1=nil, extendfield2=nil, totalcost=nil, discount=nil, reducetype=nil, realtotalcost=nil, voucherpayamount=nil, cashpayamount=nil, incentivepayamount=nil, transferpayamount=nil, extendfield3=nil, extendfield4=nil, extendfield5=nil, tags=nil, payeruin=nil, owneruin=nil, operateuin=nil, businesscode=nil, productcode=nil, regionid=nil, instancetype=nil, originalcostwithri=nil, spdeduction=nil, originalcostwithsp=nil, billmonth=nil)
2977
3097
  @BusinessCodeName = businesscodename
@@ -4790,12 +4910,15 @@ module TencentCloud
4790
4910
  # @param AllocationTreeNode: 分账单元筛选列表
4791
4911
  # 注意:此字段可能返回 null,表示取不到有效值。
4792
4912
  # @type AllocationTreeNode: Array
4913
+ # @param TagKey: 分账标签键
4914
+ # 注意:此字段可能返回 null,表示取不到有效值。
4915
+ # @type TagKey: Array
4793
4916
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4794
4917
  # @type RequestId: String
4795
4918
 
4796
- attr_accessor :Business, :Product, :Item, :Region, :InstanceType, :PayMode, :Project, :Tag, :OwnerUin, :OperateUin, :BillDay, :ActionType, :Component, :Zone, :AllocationTreeNode, :RequestId
4919
+ attr_accessor :Business, :Product, :Item, :Region, :InstanceType, :PayMode, :Project, :Tag, :OwnerUin, :OperateUin, :BillDay, :ActionType, :Component, :Zone, :AllocationTreeNode, :TagKey, :RequestId
4797
4920
 
4798
- def initialize(business=nil, product=nil, item=nil, region=nil, instancetype=nil, paymode=nil, project=nil, tag=nil, owneruin=nil, operateuin=nil, billday=nil, actiontype=nil, component=nil, zone=nil, allocationtreenode=nil, requestid=nil)
4921
+ def initialize(business=nil, product=nil, item=nil, region=nil, instancetype=nil, paymode=nil, project=nil, tag=nil, owneruin=nil, operateuin=nil, billday=nil, actiontype=nil, component=nil, zone=nil, allocationtreenode=nil, tagkey=nil, requestid=nil)
4799
4922
  @Business = business
4800
4923
  @Product = product
4801
4924
  @Item = item
@@ -4811,6 +4934,7 @@ module TencentCloud
4811
4934
  @Component = component
4812
4935
  @Zone = zone
4813
4936
  @AllocationTreeNode = allocationtreenode
4937
+ @TagKey = tagkey
4814
4938
  @RequestId = requestid
4815
4939
  end
4816
4940
 
@@ -4935,6 +5059,7 @@ module TencentCloud
4935
5059
  @AllocationTreeNode << allocationtreenode_tmp
4936
5060
  end
4937
5061
  end
5062
+ @TagKey = params['TagKey']
4938
5063
  @RequestId = params['RequestId']
4939
5064
  end
4940
5065
  end
@@ -5285,8 +5410,8 @@ module TencentCloud
5285
5410
 
5286
5411
  attr_accessor :Limit, :Offset, :Month, :PeriodType, :TreeNodeUniqKeys, :SortType, :Sort, :BillDates, :BusinessCodes, :SearchKey
5287
5412
  extend Gem::Deprecate
5288
- deprecate :SearchKey, :none, 2024, 9
5289
- deprecate :SearchKey=, :none, 2024, 9
5413
+ deprecate :SearchKey, :none, 2024, 10
5414
+ deprecate :SearchKey=, :none, 2024, 10
5290
5415
 
5291
5416
  def initialize(limit=nil, offset=nil, month=nil, periodtype=nil, treenodeuniqkeys=nil, sorttype=nil, sort=nil, billdates=nil, businesscodes=nil, searchkey=nil)
5292
5417
  @Limit = limit
@@ -5742,6 +5867,64 @@ module TencentCloud
5742
5867
  end
5743
5868
  end
5744
5869
 
5870
+ # DescribeBillAdjustInfo请求参数结构体
5871
+ class DescribeBillAdjustInfoRequest < TencentCloud::Common::AbstractModel
5872
+ # @param Month: 格式:yyyy-MM
5873
+ # 账单月份,month和timeFrom&timeTo必传一个,如果有传timeFrom&timeTo则month字段无效
5874
+ # @type Month: String
5875
+ # @param TimeFrom: 格式:yyyy-MM-dd
5876
+ # 开始时间,month和timeFrom&timeTo必传一个,如果有该字段则month字段无效。timeFrom和timeTo必须一起传,且为相同月份,不支持跨月查询,查询结果是整月数据
5877
+ # @type TimeFrom: String
5878
+ # @param TimeTo: 格式:yyyy-MM-dd
5879
+ # 截止时间,month和timeFrom&timeTo必传一个,如果有该字段则month字段无效。timeFrom和timeTo必须一起传,且为相同月份,不支持跨月查询,查询结果是整月数据
5880
+ # @type TimeTo: String
5881
+
5882
+ attr_accessor :Month, :TimeFrom, :TimeTo
5883
+
5884
+ def initialize(month=nil, timefrom=nil, timeto=nil)
5885
+ @Month = month
5886
+ @TimeFrom = timefrom
5887
+ @TimeTo = timeto
5888
+ end
5889
+
5890
+ def deserialize(params)
5891
+ @Month = params['Month']
5892
+ @TimeFrom = params['TimeFrom']
5893
+ @TimeTo = params['TimeTo']
5894
+ end
5895
+ end
5896
+
5897
+ # DescribeBillAdjustInfo返回参数结构体
5898
+ class DescribeBillAdjustInfoResponse < TencentCloud::Common::AbstractModel
5899
+ # @param Total: 数据总量
5900
+ # @type Total: Integer
5901
+ # @param Data: 明细数据
5902
+ # @type Data: Array
5903
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5904
+ # @type RequestId: String
5905
+
5906
+ attr_accessor :Total, :Data, :RequestId
5907
+
5908
+ def initialize(total=nil, data=nil, requestid=nil)
5909
+ @Total = total
5910
+ @Data = data
5911
+ @RequestId = requestid
5912
+ end
5913
+
5914
+ def deserialize(params)
5915
+ @Total = params['Total']
5916
+ unless params['Data'].nil?
5917
+ @Data = []
5918
+ params['Data'].each do |i|
5919
+ adjustinfodetail_tmp = AdjustInfoDetail.new
5920
+ adjustinfodetail_tmp.deserialize(i)
5921
+ @Data << adjustinfodetail_tmp
5922
+ end
5923
+ end
5924
+ @RequestId = params['RequestId']
5925
+ end
5926
+ end
5927
+
5745
5928
  # DescribeBillDetailForOrganization请求参数结构体
5746
5929
  class DescribeBillDetailForOrganizationRequest < TencentCloud::Common::AbstractModel
5747
5930
  # @param Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200表示第三页,依次类推
@@ -5803,8 +5986,8 @@ module TencentCloud
5803
5986
 
5804
5987
  attr_accessor :Offset, :Limit, :PeriodType, :Month, :BeginTime, :EndTime, :NeedRecordNum, :PayMode, :ResourceId, :ActionType, :ProjectId, :BusinessCode, :Context
5805
5988
  extend Gem::Deprecate
5806
- deprecate :PeriodType, :none, 2024, 9
5807
- deprecate :PeriodType=, :none, 2024, 9
5989
+ deprecate :PeriodType, :none, 2024, 10
5990
+ deprecate :PeriodType=, :none, 2024, 10
5808
5991
 
5809
5992
  def initialize(offset=nil, limit=nil, periodtype=nil, month=nil, begintime=nil, endtime=nil, needrecordnum=nil, paymode=nil, resourceid=nil, actiontype=nil, projectid=nil, businesscode=nil, context=nil)
5810
5993
  @Offset = offset
@@ -5941,8 +6124,8 @@ module TencentCloud
5941
6124
 
5942
6125
  attr_accessor :Offset, :Limit, :PeriodType, :Month, :BeginTime, :EndTime, :NeedRecordNum, :ProductCode, :PayMode, :ResourceId, :ActionType, :ProjectId, :BusinessCode, :Context, :PayerUin
5943
6126
  extend Gem::Deprecate
5944
- deprecate :PeriodType, :none, 2024, 9
5945
- deprecate :PeriodType=, :none, 2024, 9
6127
+ deprecate :PeriodType, :none, 2024, 10
6128
+ deprecate :PeriodType=, :none, 2024, 10
5946
6129
 
5947
6130
  def initialize(offset=nil, limit=nil, periodtype=nil, month=nil, begintime=nil, endtime=nil, needrecordnum=nil, productcode=nil, paymode=nil, resourceid=nil, actiontype=nil, projectid=nil, businesscode=nil, context=nil, payeruin=nil)
5948
6131
  @Offset = offset
@@ -6266,8 +6449,8 @@ module TencentCloud
6266
6449
 
6267
6450
  attr_accessor :Offset, :Limit, :Month, :PeriodType, :NeedRecordNum, :ActionType, :ResourceId, :PayMode, :BusinessCode, :TagKey, :TagValue
6268
6451
  extend Gem::Deprecate
6269
- deprecate :PeriodType, :none, 2024, 9
6270
- deprecate :PeriodType=, :none, 2024, 9
6452
+ deprecate :PeriodType, :none, 2024, 10
6453
+ deprecate :PeriodType=, :none, 2024, 10
6271
6454
 
6272
6455
  def initialize(offset=nil, limit=nil, month=nil, periodtype=nil, needrecordnum=nil, actiontype=nil, resourceid=nil, paymode=nil, businesscode=nil, tagkey=nil, tagvalue=nil)
6273
6456
  @Offset = offset
@@ -6390,8 +6573,8 @@ module TencentCloud
6390
6573
 
6391
6574
  attr_accessor :Offset, :Limit, :Month, :PeriodType, :NeedRecordNum, :ActionType, :ResourceId, :PayMode, :BusinessCode, :PayerUin, :TagKey, :TagValue
6392
6575
  extend Gem::Deprecate
6393
- deprecate :PeriodType, :none, 2024, 9
6394
- deprecate :PeriodType=, :none, 2024, 9
6576
+ deprecate :PeriodType, :none, 2024, 10
6577
+ deprecate :PeriodType=, :none, 2024, 10
6395
6578
 
6396
6579
  def initialize(offset=nil, limit=nil, month=nil, periodtype=nil, needrecordnum=nil, actiontype=nil, resourceid=nil, paymode=nil, businesscode=nil, payeruin=nil, tagkey=nil, tagvalue=nil)
6397
6580
  @Offset = offset
@@ -8832,10 +9015,10 @@ module TencentCloud
8832
9015
 
8833
9016
  attr_accessor :PayerUin, :OwnerUin, :OperateUin, :InstanceType, :InstanceTypeName, :ResourceId, :ResourceName, :TreeNodeUniqKey, :TreeNodeUniqKeyName, :RuleId, :RuleName, :BusinessCode, :BusinessCodeName, :ItemCode, :ItemCodeName, :RegionId, :RegionName, :Tag, :RealTotalCost, :CashPayAmount, :VoucherPayAmount, :IncentivePayAmount, :TransferPayAmount, :AllocationType, :BelongTreeNodeUniqKey, :BelongRule, :OtherTreeNodeUniqKeys, :OtherRules, :ProjectId, :ProjectName, :ProductCode, :ProductCodeName, :PayMode, :PayModeName, :ActionType, :ActionTypeName, :SplitItemId, :SplitItemName
8834
9017
  extend Gem::Deprecate
8835
- deprecate :SplitItemId, :none, 2024, 9
8836
- deprecate :SplitItemId=, :none, 2024, 9
8837
- deprecate :SplitItemName, :none, 2024, 9
8838
- deprecate :SplitItemName=, :none, 2024, 9
9018
+ deprecate :SplitItemId, :none, 2024, 10
9019
+ deprecate :SplitItemId=, :none, 2024, 10
9020
+ deprecate :SplitItemName, :none, 2024, 10
9021
+ deprecate :SplitItemName=, :none, 2024, 10
8839
9022
 
8840
9023
  def initialize(payeruin=nil, owneruin=nil, operateuin=nil, instancetype=nil, instancetypename=nil, resourceid=nil, resourcename=nil, treenodeuniqkey=nil, treenodeuniqkeyname=nil, ruleid=nil, rulename=nil, businesscode=nil, businesscodename=nil, itemcode=nil, itemcodename=nil, regionid=nil, regionname=nil, tag=nil, realtotalcost=nil, cashpayamount=nil, voucherpayamount=nil, incentivepayamount=nil, transferpayamount=nil, allocationtype=nil, belongtreenodeuniqkey=nil, belongrule=nil, othertreenodeuniqkeys=nil, otherrules=nil, projectid=nil, projectname=nil, productcode=nil, productcodename=nil, paymode=nil, paymodename=nil, actiontype=nil, actiontypename=nil, splititemid=nil, splititemname=nil)
8841
9024
  @PayerUin = payeruin
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-billing
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.931
4
+ version: 3.0.933
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-23 00:00:00.000000000 Z
11
+ date: 2024-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common