tencentcloud-sdk-billing 3.0.1189 → 3.0.1206
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/v20180709/client.rb +72 -0
- data/lib/v20180709/models.rb +238 -41
- 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: 6d86130cb81e40d53594c47f67c868f5a4447438
|
|
4
|
+
data.tar.gz: 79af297b39b7aac13940ced53e43d03ce3e25c2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d2e7be84d8505d183ea159c9a163799667211e448e82d974d2208564b28d071bbeeb51075478eaf4d21f018b963efb70bd76effbb0b06d897a8c3e1e855e90d
|
|
7
|
+
data.tar.gz: c9ffdcbbc7d564fcf3d02a549050a35cf0df54f384c5ec504aa39bde5c5b252c13772da0b1089e26b793ad30eeb2f5c83af9259337adb68dd6d5be085108c34c
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1206
|
data/lib/v20180709/client.rb
CHANGED
|
@@ -149,6 +149,30 @@ module TencentCloud
|
|
|
149
149
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
150
150
|
end
|
|
151
151
|
|
|
152
|
+
# 创建一个实例资源,会创建一个新购实例资源的订单,并通过腾讯云账户余额自动支付。调用该接口的账号需要授予finace:trade的权限,否则无法支付成功。目前已接入并支持购买的产品包括:T-Sec-Web应用防火墙、云防火墙、主机安全、主机容器、云安全中心、T-Sec-密钥管理系统。
|
|
153
|
+
|
|
154
|
+
# @param request: Request instance for CreateInstance.
|
|
155
|
+
# @type request: :class:`Tencentcloud::billing::V20180709::CreateInstanceRequest`
|
|
156
|
+
# @rtype: :class:`Tencentcloud::billing::V20180709::CreateInstanceResponse`
|
|
157
|
+
def CreateInstance(request)
|
|
158
|
+
body = send_request('CreateInstance', request.serialize)
|
|
159
|
+
response = JSON.parse(body)
|
|
160
|
+
if response['Response'].key?('Error') == false
|
|
161
|
+
model = CreateInstanceResponse.new
|
|
162
|
+
model.deserialize(response['Response'])
|
|
163
|
+
model
|
|
164
|
+
else
|
|
165
|
+
code = response['Response']['Error']['Code']
|
|
166
|
+
message = response['Response']['Error']['Message']
|
|
167
|
+
reqid = response['Response']['RequestId']
|
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
169
|
+
end
|
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
171
|
+
raise e
|
|
172
|
+
rescue StandardError => e
|
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
174
|
+
end
|
|
175
|
+
|
|
152
176
|
# 公摊规则删除接口
|
|
153
177
|
|
|
154
178
|
# @param request: Request instance for DeleteAllocationRule.
|
|
@@ -1548,6 +1572,54 @@ module TencentCloud
|
|
|
1548
1572
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1549
1573
|
end
|
|
1550
1574
|
|
|
1575
|
+
# 退订不再需要的实例,只退还实付金额的部分,已使用的代金券不退还,退还的实付金额默认退到腾讯云账户余额中。调用该接口的账号需要授予finace:RefundInstance的权限,否则无法支付成功。目前已接入并支持退订的产品包括:T-Sec-Web应用防火墙、云防火墙、主机安全、主机容器、云安全中心、T-Sec-密钥管理系统。
|
|
1576
|
+
|
|
1577
|
+
# @param request: Request instance for RefundInstance.
|
|
1578
|
+
# @type request: :class:`Tencentcloud::billing::V20180709::RefundInstanceRequest`
|
|
1579
|
+
# @rtype: :class:`Tencentcloud::billing::V20180709::RefundInstanceResponse`
|
|
1580
|
+
def RefundInstance(request)
|
|
1581
|
+
body = send_request('RefundInstance', request.serialize)
|
|
1582
|
+
response = JSON.parse(body)
|
|
1583
|
+
if response['Response'].key?('Error') == false
|
|
1584
|
+
model = RefundInstanceResponse.new
|
|
1585
|
+
model.deserialize(response['Response'])
|
|
1586
|
+
model
|
|
1587
|
+
else
|
|
1588
|
+
code = response['Response']['Error']['Code']
|
|
1589
|
+
message = response['Response']['Error']['Message']
|
|
1590
|
+
reqid = response['Response']['RequestId']
|
|
1591
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1592
|
+
end
|
|
1593
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1594
|
+
raise e
|
|
1595
|
+
rescue StandardError => e
|
|
1596
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1597
|
+
end
|
|
1598
|
+
|
|
1599
|
+
# 续费一台实例,调用该接口续费服务器时,您需要确保您的腾讯云账户余额充足,否则会续费失败。调用该接口的账号需要授予finace:trade的权限,否则无法续费成功。目前已接入并支持续费的产品包括:T-Sec-Web应用防火墙、云防火墙、主机安全、主机容器、云安全中心、T-Sec-密钥管理系统。
|
|
1600
|
+
|
|
1601
|
+
# @param request: Request instance for RenewInstance.
|
|
1602
|
+
# @type request: :class:`Tencentcloud::billing::V20180709::RenewInstanceRequest`
|
|
1603
|
+
# @rtype: :class:`Tencentcloud::billing::V20180709::RenewInstanceResponse`
|
|
1604
|
+
def RenewInstance(request)
|
|
1605
|
+
body = send_request('RenewInstance', request.serialize)
|
|
1606
|
+
response = JSON.parse(body)
|
|
1607
|
+
if response['Response'].key?('Error') == false
|
|
1608
|
+
model = RenewInstanceResponse.new
|
|
1609
|
+
model.deserialize(response['Response'])
|
|
1610
|
+
model
|
|
1611
|
+
else
|
|
1612
|
+
code = response['Response']['Error']['Code']
|
|
1613
|
+
message = response['Response']['Error']['Message']
|
|
1614
|
+
reqid = response['Response']['RequestId']
|
|
1615
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1616
|
+
end
|
|
1617
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1618
|
+
raise e
|
|
1619
|
+
rescue StandardError => e
|
|
1620
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1621
|
+
end
|
|
1622
|
+
|
|
1551
1623
|
|
|
1552
1624
|
end
|
|
1553
1625
|
end
|
data/lib/v20180709/models.rb
CHANGED
|
@@ -312,10 +312,10 @@ module TencentCloud
|
|
|
312
312
|
|
|
313
313
|
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
|
|
314
314
|
extend Gem::Deprecate
|
|
315
|
-
deprecate :SplitItemId, :none,
|
|
316
|
-
deprecate :SplitItemId=, :none,
|
|
317
|
-
deprecate :SplitItemName, :none,
|
|
318
|
-
deprecate :SplitItemName=, :none,
|
|
315
|
+
deprecate :SplitItemId, :none, 2026, 1
|
|
316
|
+
deprecate :SplitItemId=, :none, 2026, 1
|
|
317
|
+
deprecate :SplitItemName, :none, 2026, 1
|
|
318
|
+
deprecate :SplitItemName=, :none, 2026, 1
|
|
319
319
|
|
|
320
320
|
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)
|
|
321
321
|
@TreeNodeUniqKey = treenodeuniqkey
|
|
@@ -1235,10 +1235,10 @@ module TencentCloud
|
|
|
1235
1235
|
|
|
1236
1236
|
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
|
|
1237
1237
|
extend Gem::Deprecate
|
|
1238
|
-
deprecate :SplitItemId, :none,
|
|
1239
|
-
deprecate :SplitItemId=, :none,
|
|
1240
|
-
deprecate :SplitItemName, :none,
|
|
1241
|
-
deprecate :SplitItemName=, :none,
|
|
1238
|
+
deprecate :SplitItemId, :none, 2026, 1
|
|
1239
|
+
deprecate :SplitItemId=, :none, 2026, 1
|
|
1240
|
+
deprecate :SplitItemName, :none, 2026, 1
|
|
1241
|
+
deprecate :SplitItemName=, :none, 2026, 1
|
|
1242
1242
|
|
|
1243
1243
|
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)
|
|
1244
1244
|
@TreeNodeUniqKey = treenodeuniqkey
|
|
@@ -1488,10 +1488,10 @@ module TencentCloud
|
|
|
1488
1488
|
|
|
1489
1489
|
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
|
|
1490
1490
|
extend Gem::Deprecate
|
|
1491
|
-
deprecate :SplitItemId, :none,
|
|
1492
|
-
deprecate :SplitItemId=, :none,
|
|
1493
|
-
deprecate :SplitItemName, :none,
|
|
1494
|
-
deprecate :SplitItemName=, :none,
|
|
1491
|
+
deprecate :SplitItemId, :none, 2026, 1
|
|
1492
|
+
deprecate :SplitItemId=, :none, 2026, 1
|
|
1493
|
+
deprecate :SplitItemName, :none, 2026, 1
|
|
1494
|
+
deprecate :SplitItemName=, :none, 2026, 1
|
|
1495
1495
|
|
|
1496
1496
|
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)
|
|
1497
1497
|
@TreeNodeUniqKey = treenodeuniqkey
|
|
@@ -2499,10 +2499,10 @@ module TencentCloud
|
|
|
2499
2499
|
|
|
2500
2500
|
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
|
|
2501
2501
|
extend Gem::Deprecate
|
|
2502
|
-
deprecate :SpecifiedPrice, :none,
|
|
2503
|
-
deprecate :SpecifiedPrice=, :none,
|
|
2504
|
-
deprecate :SPDeduction, :none,
|
|
2505
|
-
deprecate :SPDeduction=, :none,
|
|
2502
|
+
deprecate :SpecifiedPrice, :none, 2026, 1
|
|
2503
|
+
deprecate :SpecifiedPrice=, :none, 2026, 1
|
|
2504
|
+
deprecate :SPDeduction, :none, 2026, 1
|
|
2505
|
+
deprecate :SPDeduction=, :none, 2026, 1
|
|
2506
2506
|
|
|
2507
2507
|
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)
|
|
2508
2508
|
@ComponentCodeName = componentcodename
|
|
@@ -2679,8 +2679,8 @@ module TencentCloud
|
|
|
2679
2679
|
|
|
2680
2680
|
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
|
|
2681
2681
|
extend Gem::Deprecate
|
|
2682
|
-
deprecate :SPDeduction, :none,
|
|
2683
|
-
deprecate :SPDeduction=, :none,
|
|
2682
|
+
deprecate :SPDeduction, :none, 2026, 1
|
|
2683
|
+
deprecate :SPDeduction=, :none, 2026, 1
|
|
2684
2684
|
|
|
2685
2685
|
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)
|
|
2686
2686
|
@BusinessCodeName = businesscodename
|
|
@@ -3038,8 +3038,8 @@ module TencentCloud
|
|
|
3038
3038
|
|
|
3039
3039
|
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
|
|
3040
3040
|
extend Gem::Deprecate
|
|
3041
|
-
deprecate :SPDeduction, :none,
|
|
3042
|
-
deprecate :SPDeduction=, :none,
|
|
3041
|
+
deprecate :SPDeduction, :none, 2026, 1
|
|
3042
|
+
deprecate :SPDeduction=, :none, 2026, 1
|
|
3043
3043
|
|
|
3044
3044
|
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)
|
|
3045
3045
|
@BusinessCodeName = businesscodename
|
|
@@ -5065,6 +5065,91 @@ module TencentCloud
|
|
|
5065
5065
|
end
|
|
5066
5066
|
end
|
|
5067
5067
|
|
|
5068
|
+
# CreateInstance请求参数结构体
|
|
5069
|
+
class CreateInstanceRequest < TencentCloud::Common::AbstractModel
|
|
5070
|
+
# @param ClientToken: ClientToken是一个由客户端生成的唯一的、区分大小写、不超过64个ASCII字符的字符串。例如,ClientToken=123e4567-e89b-12d3-a456-42665544****。
|
|
5071
|
+
# @type ClientToken: String
|
|
5072
|
+
# @param ProductCode: 产品一层code
|
|
5073
|
+
# @type ProductCode: String
|
|
5074
|
+
# @param SubProductCode: 产品二层code
|
|
5075
|
+
# @type SubProductCode: String
|
|
5076
|
+
# @param RegionCode: 地域code
|
|
5077
|
+
# @type RegionCode: String
|
|
5078
|
+
# @param ZoneCode: 可用区code
|
|
5079
|
+
# @type ZoneCode: String
|
|
5080
|
+
# @param PayMode: 付费类型,取值: PrePay:预付费
|
|
5081
|
+
# @type PayMode: String
|
|
5082
|
+
# @param Parameter: 商品详情信息
|
|
5083
|
+
# @type Parameter: String
|
|
5084
|
+
# @param Quantity: 商品数量,默认取值1
|
|
5085
|
+
# @type Quantity: Integer
|
|
5086
|
+
# @param ProjectId: 项目id,默认取0
|
|
5087
|
+
# @type ProjectId: Integer
|
|
5088
|
+
# @param Period: 新购时长,取值上限:36,默认取值1
|
|
5089
|
+
# @type Period: Integer
|
|
5090
|
+
# @param PeriodUnit: 新购时长单位,取值:m:按月购买,y:按年购买,默认取值m
|
|
5091
|
+
# @type PeriodUnit: String
|
|
5092
|
+
# @param RenewFlag: 自动续费标识,取值:NOTIFY_AND_MANUAL_RENEW:手动续费,NOTIFY_AND_AUTO_RENEW:自动续费,DISABLE_NOTIFY_AND_MANUAL_RENEW:到期不续,默认取值NOTIFY_AND_MANUAL_RENEW
|
|
5093
|
+
# @type RenewFlag: String
|
|
5094
|
+
|
|
5095
|
+
attr_accessor :ClientToken, :ProductCode, :SubProductCode, :RegionCode, :ZoneCode, :PayMode, :Parameter, :Quantity, :ProjectId, :Period, :PeriodUnit, :RenewFlag
|
|
5096
|
+
|
|
5097
|
+
def initialize(clienttoken=nil, productcode=nil, subproductcode=nil, regioncode=nil, zonecode=nil, paymode=nil, parameter=nil, quantity=nil, projectid=nil, period=nil, periodunit=nil, renewflag=nil)
|
|
5098
|
+
@ClientToken = clienttoken
|
|
5099
|
+
@ProductCode = productcode
|
|
5100
|
+
@SubProductCode = subproductcode
|
|
5101
|
+
@RegionCode = regioncode
|
|
5102
|
+
@ZoneCode = zonecode
|
|
5103
|
+
@PayMode = paymode
|
|
5104
|
+
@Parameter = parameter
|
|
5105
|
+
@Quantity = quantity
|
|
5106
|
+
@ProjectId = projectid
|
|
5107
|
+
@Period = period
|
|
5108
|
+
@PeriodUnit = periodunit
|
|
5109
|
+
@RenewFlag = renewflag
|
|
5110
|
+
end
|
|
5111
|
+
|
|
5112
|
+
def deserialize(params)
|
|
5113
|
+
@ClientToken = params['ClientToken']
|
|
5114
|
+
@ProductCode = params['ProductCode']
|
|
5115
|
+
@SubProductCode = params['SubProductCode']
|
|
5116
|
+
@RegionCode = params['RegionCode']
|
|
5117
|
+
@ZoneCode = params['ZoneCode']
|
|
5118
|
+
@PayMode = params['PayMode']
|
|
5119
|
+
@Parameter = params['Parameter']
|
|
5120
|
+
@Quantity = params['Quantity']
|
|
5121
|
+
@ProjectId = params['ProjectId']
|
|
5122
|
+
@Period = params['Period']
|
|
5123
|
+
@PeriodUnit = params['PeriodUnit']
|
|
5124
|
+
@RenewFlag = params['RenewFlag']
|
|
5125
|
+
end
|
|
5126
|
+
end
|
|
5127
|
+
|
|
5128
|
+
# CreateInstance返回参数结构体
|
|
5129
|
+
class CreateInstanceResponse < TencentCloud::Common::AbstractModel
|
|
5130
|
+
# @param OrderId: 订单号
|
|
5131
|
+
# @type OrderId: String
|
|
5132
|
+
# @param InstanceIdList: 实例列表,商品发货延迟可能返回空
|
|
5133
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
5134
|
+
# @type InstanceIdList: Array
|
|
5135
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5136
|
+
# @type RequestId: String
|
|
5137
|
+
|
|
5138
|
+
attr_accessor :OrderId, :InstanceIdList, :RequestId
|
|
5139
|
+
|
|
5140
|
+
def initialize(orderid=nil, instanceidlist=nil, requestid=nil)
|
|
5141
|
+
@OrderId = orderid
|
|
5142
|
+
@InstanceIdList = instanceidlist
|
|
5143
|
+
@RequestId = requestid
|
|
5144
|
+
end
|
|
5145
|
+
|
|
5146
|
+
def deserialize(params)
|
|
5147
|
+
@OrderId = params['OrderId']
|
|
5148
|
+
@InstanceIdList = params['InstanceIdList']
|
|
5149
|
+
@RequestId = params['RequestId']
|
|
5150
|
+
end
|
|
5151
|
+
end
|
|
5152
|
+
|
|
5068
5153
|
# 获取预算管理的基础信息分页数据
|
|
5069
5154
|
class DataForBudgetInfoPage < TencentCloud::Common::AbstractModel
|
|
5070
5155
|
# @param Pages: 分页
|
|
@@ -5522,10 +5607,10 @@ module TencentCloud
|
|
|
5522
5607
|
|
|
5523
5608
|
attr_accessor :Balance, :Uin, :RealBalance, :CashAccountBalance, :IncomeIntoAccountBalance, :PresentAccountBalance, :FreezeAmount, :OweAmount, :IsAllowArrears, :IsCreditLimited, :CreditAmount, :CreditBalance, :RealCreditBalance, :TempCredit, :TempAmountInfoList, :RequestId
|
|
5524
5609
|
extend Gem::Deprecate
|
|
5525
|
-
deprecate :IsAllowArrears, :none,
|
|
5526
|
-
deprecate :IsAllowArrears=, :none,
|
|
5527
|
-
deprecate :IsCreditLimited, :none,
|
|
5528
|
-
deprecate :IsCreditLimited=, :none,
|
|
5610
|
+
deprecate :IsAllowArrears, :none, 2026, 1
|
|
5611
|
+
deprecate :IsAllowArrears=, :none, 2026, 1
|
|
5612
|
+
deprecate :IsCreditLimited, :none, 2026, 1
|
|
5613
|
+
deprecate :IsCreditLimited=, :none, 2026, 1
|
|
5529
5614
|
|
|
5530
5615
|
def initialize(balance=nil, uin=nil, realbalance=nil, cashaccountbalance=nil, incomeintoaccountbalance=nil, presentaccountbalance=nil, freezeamount=nil, oweamount=nil, isallowarrears=nil, iscreditlimited=nil, creditamount=nil, creditbalance=nil, realcreditbalance=nil, tempcredit=nil, tempamountinfolist=nil, requestid=nil)
|
|
5531
5616
|
@Balance = balance
|
|
@@ -6474,8 +6559,8 @@ module TencentCloud
|
|
|
6474
6559
|
|
|
6475
6560
|
attr_accessor :Limit, :Offset, :Month, :PeriodType, :TreeNodeUniqKeys, :SortType, :Sort, :BillDates, :BusinessCodes, :SearchKey
|
|
6476
6561
|
extend Gem::Deprecate
|
|
6477
|
-
deprecate :SearchKey, :none,
|
|
6478
|
-
deprecate :SearchKey=, :none,
|
|
6562
|
+
deprecate :SearchKey, :none, 2026, 1
|
|
6563
|
+
deprecate :SearchKey=, :none, 2026, 1
|
|
6479
6564
|
|
|
6480
6565
|
def initialize(limit=nil, offset=nil, month=nil, periodtype=nil, treenodeuniqkeys=nil, sorttype=nil, sort=nil, billdates=nil, businesscodes=nil, searchkey=nil)
|
|
6481
6566
|
@Limit = limit
|
|
@@ -7159,8 +7244,8 @@ module TencentCloud
|
|
|
7159
7244
|
|
|
7160
7245
|
attr_accessor :Offset, :Limit, :PeriodType, :Month, :BeginTime, :EndTime, :NeedRecordNum, :PayMode, :ResourceId, :ActionType, :ProjectId, :BusinessCode, :Context
|
|
7161
7246
|
extend Gem::Deprecate
|
|
7162
|
-
deprecate :PeriodType, :none,
|
|
7163
|
-
deprecate :PeriodType=, :none,
|
|
7247
|
+
deprecate :PeriodType, :none, 2026, 1
|
|
7248
|
+
deprecate :PeriodType=, :none, 2026, 1
|
|
7164
7249
|
|
|
7165
7250
|
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)
|
|
7166
7251
|
@Offset = offset
|
|
@@ -7296,10 +7381,10 @@ module TencentCloud
|
|
|
7296
7381
|
|
|
7297
7382
|
attr_accessor :Offset, :Limit, :PeriodType, :Month, :BeginTime, :EndTime, :NeedRecordNum, :ProductCode, :PayMode, :ResourceId, :ActionType, :ProjectId, :BusinessCode, :Context, :PayerUin
|
|
7298
7383
|
extend Gem::Deprecate
|
|
7299
|
-
deprecate :PeriodType, :none,
|
|
7300
|
-
deprecate :PeriodType=, :none,
|
|
7301
|
-
deprecate :ProductCode, :none,
|
|
7302
|
-
deprecate :ProductCode=, :none,
|
|
7384
|
+
deprecate :PeriodType, :none, 2026, 1
|
|
7385
|
+
deprecate :PeriodType=, :none, 2026, 1
|
|
7386
|
+
deprecate :ProductCode, :none, 2026, 1
|
|
7387
|
+
deprecate :ProductCode=, :none, 2026, 1
|
|
7303
7388
|
|
|
7304
7389
|
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)
|
|
7305
7390
|
@Offset = offset
|
|
@@ -7621,8 +7706,8 @@ module TencentCloud
|
|
|
7621
7706
|
|
|
7622
7707
|
attr_accessor :Offset, :Limit, :Month, :PeriodType, :NeedRecordNum, :ActionType, :ResourceId, :PayMode, :BusinessCode, :TagKey, :TagValue
|
|
7623
7708
|
extend Gem::Deprecate
|
|
7624
|
-
deprecate :PeriodType, :none,
|
|
7625
|
-
deprecate :PeriodType=, :none,
|
|
7709
|
+
deprecate :PeriodType, :none, 2026, 1
|
|
7710
|
+
deprecate :PeriodType=, :none, 2026, 1
|
|
7626
7711
|
|
|
7627
7712
|
def initialize(offset=nil, limit=nil, month=nil, periodtype=nil, needrecordnum=nil, actiontype=nil, resourceid=nil, paymode=nil, businesscode=nil, tagkey=nil, tagvalue=nil)
|
|
7628
7713
|
@Offset = offset
|
|
@@ -7745,8 +7830,8 @@ module TencentCloud
|
|
|
7745
7830
|
|
|
7746
7831
|
attr_accessor :Offset, :Limit, :Month, :PeriodType, :NeedRecordNum, :ActionType, :ResourceId, :PayMode, :BusinessCode, :PayerUin, :TagKey, :TagValue
|
|
7747
7832
|
extend Gem::Deprecate
|
|
7748
|
-
deprecate :PeriodType, :none,
|
|
7749
|
-
deprecate :PeriodType=, :none,
|
|
7833
|
+
deprecate :PeriodType, :none, 2026, 1
|
|
7834
|
+
deprecate :PeriodType=, :none, 2026, 1
|
|
7750
7835
|
|
|
7751
7836
|
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)
|
|
7752
7837
|
@Offset = offset
|
|
@@ -8523,7 +8608,7 @@ module TencentCloud
|
|
|
8523
8608
|
# payerUin=支付者账号
|
|
8524
8609
|
# ownerUin=使用者账号
|
|
8525
8610
|
# @type Dimensions: String
|
|
8526
|
-
# @param FeeType: 费用类型:cost
|
|
8611
|
+
# @param FeeType: 费用类型:cost-折后总费用,totalCost-原价费用
|
|
8527
8612
|
# @type FeeType: String
|
|
8528
8613
|
# @param PageSize: 数量,每页最大值为100
|
|
8529
8614
|
# @type PageSize: Integer
|
|
@@ -10232,10 +10317,10 @@ module TencentCloud
|
|
|
10232
10317
|
|
|
10233
10318
|
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
|
|
10234
10319
|
extend Gem::Deprecate
|
|
10235
|
-
deprecate :SplitItemId, :none,
|
|
10236
|
-
deprecate :SplitItemId=, :none,
|
|
10237
|
-
deprecate :SplitItemName, :none,
|
|
10238
|
-
deprecate :SplitItemName=, :none,
|
|
10320
|
+
deprecate :SplitItemId, :none, 2026, 1
|
|
10321
|
+
deprecate :SplitItemId=, :none, 2026, 1
|
|
10322
|
+
deprecate :SplitItemName, :none, 2026, 1
|
|
10323
|
+
deprecate :SplitItemName=, :none, 2026, 1
|
|
10239
10324
|
|
|
10240
10325
|
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)
|
|
10241
10326
|
@PayerUin = payeruin
|
|
@@ -10875,6 +10960,58 @@ module TencentCloud
|
|
|
10875
10960
|
end
|
|
10876
10961
|
end
|
|
10877
10962
|
|
|
10963
|
+
# RefundInstance请求参数结构体
|
|
10964
|
+
class RefundInstanceRequest < TencentCloud::Common::AbstractModel
|
|
10965
|
+
# @param ClientToken: ClientToken是一个由客户端生成的唯一的、区分大小写、不超过64个ASCII字符的字符串。例如,ClientToken=123e4567-e89b-12d3-a456-42665544****。
|
|
10966
|
+
# @type ClientToken: String
|
|
10967
|
+
# @param ProductCode: 产品一层code
|
|
10968
|
+
# @type ProductCode: String
|
|
10969
|
+
# @param SubProductCode: 产品二层code
|
|
10970
|
+
# @type SubProductCode: String
|
|
10971
|
+
# @param InstanceId: 实例id
|
|
10972
|
+
# @type InstanceId: String
|
|
10973
|
+
# @param RegionCode: 地域code
|
|
10974
|
+
# @type RegionCode: String
|
|
10975
|
+
|
|
10976
|
+
attr_accessor :ClientToken, :ProductCode, :SubProductCode, :InstanceId, :RegionCode
|
|
10977
|
+
|
|
10978
|
+
def initialize(clienttoken=nil, productcode=nil, subproductcode=nil, instanceid=nil, regioncode=nil)
|
|
10979
|
+
@ClientToken = clienttoken
|
|
10980
|
+
@ProductCode = productcode
|
|
10981
|
+
@SubProductCode = subproductcode
|
|
10982
|
+
@InstanceId = instanceid
|
|
10983
|
+
@RegionCode = regioncode
|
|
10984
|
+
end
|
|
10985
|
+
|
|
10986
|
+
def deserialize(params)
|
|
10987
|
+
@ClientToken = params['ClientToken']
|
|
10988
|
+
@ProductCode = params['ProductCode']
|
|
10989
|
+
@SubProductCode = params['SubProductCode']
|
|
10990
|
+
@InstanceId = params['InstanceId']
|
|
10991
|
+
@RegionCode = params['RegionCode']
|
|
10992
|
+
end
|
|
10993
|
+
end
|
|
10994
|
+
|
|
10995
|
+
# RefundInstance返回参数结构体
|
|
10996
|
+
class RefundInstanceResponse < TencentCloud::Common::AbstractModel
|
|
10997
|
+
# @param OrderIdList: 订单号列表
|
|
10998
|
+
# @type OrderIdList: Array
|
|
10999
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11000
|
+
# @type RequestId: String
|
|
11001
|
+
|
|
11002
|
+
attr_accessor :OrderIdList, :RequestId
|
|
11003
|
+
|
|
11004
|
+
def initialize(orderidlist=nil, requestid=nil)
|
|
11005
|
+
@OrderIdList = orderidlist
|
|
11006
|
+
@RequestId = requestid
|
|
11007
|
+
end
|
|
11008
|
+
|
|
11009
|
+
def deserialize(params)
|
|
11010
|
+
@OrderIdList = params['OrderIdList']
|
|
11011
|
+
@RequestId = params['RequestId']
|
|
11012
|
+
end
|
|
11013
|
+
end
|
|
11014
|
+
|
|
10878
11015
|
# 按地域汇总消费详情
|
|
10879
11016
|
class RegionSummaryOverviewItem < TencentCloud::Common::AbstractModel
|
|
10880
11017
|
# @param RegionId: 地域ID
|
|
@@ -10927,6 +11064,66 @@ module TencentCloud
|
|
|
10927
11064
|
end
|
|
10928
11065
|
end
|
|
10929
11066
|
|
|
11067
|
+
# RenewInstance请求参数结构体
|
|
11068
|
+
class RenewInstanceRequest < TencentCloud::Common::AbstractModel
|
|
11069
|
+
# @param ClientToken: ClientToken是一个由客户端生成的唯一的、区分大小写、不超过64个ASCII字符的字符串。例如,ClientToken=123e4567-e89b-12d3-a456-42665544****。
|
|
11070
|
+
# @type ClientToken: String
|
|
11071
|
+
# @param ProductCode: 产品一层code
|
|
11072
|
+
# @type ProductCode: String
|
|
11073
|
+
# @param SubProductCode: 产品二层code
|
|
11074
|
+
# @type SubProductCode: String
|
|
11075
|
+
# @param RegionCode: 地域code
|
|
11076
|
+
# @type RegionCode: String
|
|
11077
|
+
# @param InstanceId: 实例ID
|
|
11078
|
+
# @type InstanceId: String
|
|
11079
|
+
# @param Period: 手动续费时长,取值上限:36,默认取值1
|
|
11080
|
+
# @type Period: Integer
|
|
11081
|
+
# @param PeriodUnit: 手动续费时长单位,取值:m:按月续费,y:按年续费,默认取值m
|
|
11082
|
+
# @type PeriodUnit: String
|
|
11083
|
+
|
|
11084
|
+
attr_accessor :ClientToken, :ProductCode, :SubProductCode, :RegionCode, :InstanceId, :Period, :PeriodUnit
|
|
11085
|
+
|
|
11086
|
+
def initialize(clienttoken=nil, productcode=nil, subproductcode=nil, regioncode=nil, instanceid=nil, period=nil, periodunit=nil)
|
|
11087
|
+
@ClientToken = clienttoken
|
|
11088
|
+
@ProductCode = productcode
|
|
11089
|
+
@SubProductCode = subproductcode
|
|
11090
|
+
@RegionCode = regioncode
|
|
11091
|
+
@InstanceId = instanceid
|
|
11092
|
+
@Period = period
|
|
11093
|
+
@PeriodUnit = periodunit
|
|
11094
|
+
end
|
|
11095
|
+
|
|
11096
|
+
def deserialize(params)
|
|
11097
|
+
@ClientToken = params['ClientToken']
|
|
11098
|
+
@ProductCode = params['ProductCode']
|
|
11099
|
+
@SubProductCode = params['SubProductCode']
|
|
11100
|
+
@RegionCode = params['RegionCode']
|
|
11101
|
+
@InstanceId = params['InstanceId']
|
|
11102
|
+
@Period = params['Period']
|
|
11103
|
+
@PeriodUnit = params['PeriodUnit']
|
|
11104
|
+
end
|
|
11105
|
+
end
|
|
11106
|
+
|
|
11107
|
+
# RenewInstance返回参数结构体
|
|
11108
|
+
class RenewInstanceResponse < TencentCloud::Common::AbstractModel
|
|
11109
|
+
# @param OrderIdList: 订单号列表
|
|
11110
|
+
# @type OrderIdList: Array
|
|
11111
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11112
|
+
# @type RequestId: String
|
|
11113
|
+
|
|
11114
|
+
attr_accessor :OrderIdList, :RequestId
|
|
11115
|
+
|
|
11116
|
+
def initialize(orderidlist=nil, requestid=nil)
|
|
11117
|
+
@OrderIdList = orderidlist
|
|
11118
|
+
@RequestId = requestid
|
|
11119
|
+
end
|
|
11120
|
+
|
|
11121
|
+
def deserialize(params)
|
|
11122
|
+
@OrderIdList = params['OrderIdList']
|
|
11123
|
+
@RequestId = params['RequestId']
|
|
11124
|
+
end
|
|
11125
|
+
end
|
|
11126
|
+
|
|
10930
11127
|
# 账单多维度汇总消费详情
|
|
10931
11128
|
class SummaryDetail < TencentCloud::Common::AbstractModel
|
|
10932
11129
|
# @param GroupKey: 账单维度编码
|
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.
|
|
4
|
+
version: 3.0.1206
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|