tencentcloud-sdk-svp 3.0.1160 → 3.0.1196

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/v20240125/models.rb +22 -14
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 148093a761ae7c0464b22e4bbac2e97af4985e6a
4
- data.tar.gz: 1fa224706ea19b808de5d2d8d86e4cd1b46808fa
3
+ metadata.gz: 5fcfdb83b10f1d605337b1857dcd402d42603bd3
4
+ data.tar.gz: e3a43a7f7267a4d5b02956e780aeaf0c13720d08
5
5
  SHA512:
6
- metadata.gz: 22fcc6f54251225409bd59c3a1c04bee2695fe1d6376f5fdbcdf853da5b9a6311b95c85bb6c82a31b96d6f6a8bfe3870123febebb14fbef1a5a6da0f791dfefb
7
- data.tar.gz: a732df0e5697372f662d835ac3eaaa7652c534a71bea8473c1345e57e7a0d5fe6a6062de1305516e8bc6c53950f212356f03d419e828012dd60b15900ffc7453
6
+ metadata.gz: a64bc6a89df95a7c538ec1b552b54858546c023b9d8d134a1795f9ac896753c64f242d5ae153e44a37422a79b36fd89da9c274c793e250be9f8fb3cfb4b2066c
7
+ data.tar.gz: 8c87dbfc5d7684e57a8b2a69e558db7841ef388512ae92fd6030634719f4eb5b009c7656430dcc320be9379ae8b300fa8205e553c42e69cd8ba78f571f25bd31
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1160
1
+ 3.0.1196
@@ -562,6 +562,8 @@ module TencentCloud
562
562
 
563
563
  # 节省计划总览明细数据
564
564
  class SavingPlanOverviewDetail < TencentCloud::Common::AbstractModel
565
+ # @param SpId: 节省计划资源id
566
+ # @type SpId: String
565
567
  # @param SpType: 节省计划类型
566
568
  # @type SpType: String
567
569
  # @param PayAmount: 支付金额(单位:元)
@@ -584,9 +586,10 @@ module TencentCloud
584
586
  # 注意:此字段可能返回 null,表示取不到有效值。
585
587
  # @type PromiseAmount: String
586
588
 
587
- attr_accessor :SpType, :PayAmount, :StartTime, :EndTime, :Status, :SavingAmount, :Region, :PayType, :BuyTime, :PromiseAmount
589
+ attr_accessor :SpId, :SpType, :PayAmount, :StartTime, :EndTime, :Status, :SavingAmount, :Region, :PayType, :BuyTime, :PromiseAmount
588
590
 
589
- def initialize(sptype=nil, payamount=nil, starttime=nil, endtime=nil, status=nil, savingamount=nil, region=nil, paytype=nil, buytime=nil, promiseamount=nil)
591
+ def initialize(spid=nil, sptype=nil, payamount=nil, starttime=nil, endtime=nil, status=nil, savingamount=nil, region=nil, paytype=nil, buytime=nil, promiseamount=nil)
592
+ @SpId = spid
590
593
  @SpType = sptype
591
594
  @PayAmount = payamount
592
595
  @StartTime = starttime
@@ -600,6 +603,7 @@ module TencentCloud
600
603
  end
601
604
 
602
605
  def deserialize(params)
606
+ @SpId = params['SpId']
603
607
  @SpType = params['SpType']
604
608
  @PayAmount = params['PayAmount']
605
609
  @StartTime = params['StartTime']
@@ -615,30 +619,33 @@ module TencentCloud
615
619
 
616
620
  # 节省计划使用率数据
617
621
  class SavingPlanUsageDetail < TencentCloud::Common::AbstractModel
618
- # @param SpType: 节省计划类型
622
+ # @param SpId: <p>节省计划资源id</p>
623
+ # @type SpId: String
624
+ # @param SpType: <p>节省计划类型</p>
619
625
  # @type SpType: String
620
- # @param Status: 节省计划状态
626
+ # @param Status: <p>节省计划状态</p>枚举值:<ul><li> 1: 生效</li><li> 2: 失效 </li><li> 3: 作废</li></ul>
621
627
  # @type Status: Integer
622
- # @param DeductAmount: 累计抵扣的金额(单位:元)
628
+ # @param DeductAmount: <p>累计抵扣的金额(单位:元)</p>
623
629
  # @type DeductAmount: String
624
- # @param PromiseAmount: 累计承诺消费金额(单位:元)
630
+ # @param PromiseAmount: <p>累计承诺消费金额(单位:元)</p>
625
631
  # @type PromiseAmount: String
626
- # @param NetSavings: 累计净节省金额(单位:元)
632
+ # @param NetSavings: <p>累计净节省金额(单位:元)</p>
627
633
  # @type NetSavings: String
628
- # @param UtilizationRate: 使用率
634
+ # @param UtilizationRate: <p>使用率</p>
629
635
  # @type UtilizationRate: Float
630
- # @param LossAmount: 累计流失金额(单位:元)
636
+ # @param LossAmount: <p>累计流失金额(单位:元)</p>
631
637
  # @type LossAmount: String
632
- # @param DosageAmount: 累计按量计费预期金额(单位:元)
638
+ # @param DosageAmount: <p>累计按量计费预期金额(单位:元)</p>
633
639
  # @type DosageAmount: String
634
- # @param CostAmount: 累计成本金额(单位:元)
640
+ # @param CostAmount: <p>累计成本金额(单位:元)</p>
635
641
  # @type CostAmount: String
636
- # @param Region: 地域
642
+ # @param Region: <p>地域</p>
637
643
  # @type Region: Array
638
644
 
639
- attr_accessor :SpType, :Status, :DeductAmount, :PromiseAmount, :NetSavings, :UtilizationRate, :LossAmount, :DosageAmount, :CostAmount, :Region
645
+ attr_accessor :SpId, :SpType, :Status, :DeductAmount, :PromiseAmount, :NetSavings, :UtilizationRate, :LossAmount, :DosageAmount, :CostAmount, :Region
640
646
 
641
- def initialize(sptype=nil, status=nil, deductamount=nil, promiseamount=nil, netsavings=nil, utilizationrate=nil, lossamount=nil, dosageamount=nil, costamount=nil, region=nil)
647
+ def initialize(spid=nil, sptype=nil, status=nil, deductamount=nil, promiseamount=nil, netsavings=nil, utilizationrate=nil, lossamount=nil, dosageamount=nil, costamount=nil, region=nil)
648
+ @SpId = spid
642
649
  @SpType = sptype
643
650
  @Status = status
644
651
  @DeductAmount = deductamount
@@ -652,6 +659,7 @@ module TencentCloud
652
659
  end
653
660
 
654
661
  def deserialize(params)
662
+ @SpId = params['SpId']
655
663
  @SpType = params['SpType']
656
664
  @Status = params['Status']
657
665
  @DeductAmount = params['DeductAmount']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-svp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1160
4
+ version: 3.0.1196
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-10-28 00:00:00.000000000 Z
11
+ date: 2026-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -34,8 +34,8 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - lib/tencentcloud-sdk-svp.rb
37
- - lib/v20240125/models.rb
38
37
  - lib/v20240125/client.rb
38
+ - lib/v20240125/models.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: