tencentcloud-sdk-cdc 1.0.362 → 3.0.371

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/v20201214/models.rb +29 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 15c380467a67640ca9f0b92640b43933002fd7fb
4
- data.tar.gz: 580993064071794ba5e7ed602c66d4b4e78844ff
3
+ metadata.gz: 61d9956344aa514c13929bdfb833e9657b5b5343
4
+ data.tar.gz: 036fa40a7dd3dd90f04f37d0ccb48f53c73adfbf
5
5
  SHA512:
6
- metadata.gz: ae8db4f4f840265bd7379e29f8f7bfdf9f142e1b599f5cd170764c3c30036cd700751b2999d95a479905096bce8773d2c2ed69dcf773d6db8063ee3c6e2745d0
7
- data.tar.gz: 3ec20493935dcfc157070d24618d37fba9ea0e060169878e84c6512b661970b7414346c34dc9f779693634c94601586ea1195e51743b7ec4a68abb793cfa3ad2
6
+ metadata.gz: 2aecf1b73569fcc79cc52e2844f24bc8d1998fa68e78210bba468c4afe5b005c54856f8b3f1181e26a7e333d911d33761f481b04f32b7875482a62ae161d95d8
7
+ data.tar.gz: f60c0276dc1aa170a677ccf4443421fe0ea40b2cbff7f7da250b81e39cd1d754d285efc7353b763a9f4b3ccb941c6d870883379588583c27d4c8b42f8dfae44a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.362
1
+ 3.0.371
@@ -483,10 +483,19 @@ module TencentCloud
483
483
  # @param PayStatus: 0代表未支付,1代表已支付
484
484
  # 注意:此字段可能返回 null,表示取不到有效值。
485
485
  # @type PayStatus: Integer
486
+ # @param PayType: 支付方式,一次性、按月、按年
487
+ # 注意:此字段可能返回 null,表示取不到有效值。
488
+ # @type PayType: String
489
+ # @param TimeUnit: 购买时长的单位
490
+ # 注意:此字段可能返回 null,表示取不到有效值。
491
+ # @type TimeUnit: String
492
+ # @param TimeSpan: 购买时长
493
+ # 注意:此字段可能返回 null,表示取不到有效值。
494
+ # @type TimeSpan: Integer
486
495
 
487
- attr_accessor :DedicatedClusterId, :DedicatedClusterTypeId, :SupportedStorageType, :SupportedUplinkSpeed, :SupportedInstanceFamily, :Weight, :PowerDraw, :OrderStatus, :CreateTime, :DedicatedClusterOrderId, :Action, :DedicatedClusterOrderItems, :Cpu, :Mem, :Gpu, :PayStatus
496
+ attr_accessor :DedicatedClusterId, :DedicatedClusterTypeId, :SupportedStorageType, :SupportedUplinkSpeed, :SupportedInstanceFamily, :Weight, :PowerDraw, :OrderStatus, :CreateTime, :DedicatedClusterOrderId, :Action, :DedicatedClusterOrderItems, :Cpu, :Mem, :Gpu, :PayStatus, :PayType, :TimeUnit, :TimeSpan
488
497
 
489
- def initialize(dedicatedclusterid=nil, dedicatedclustertypeid=nil, supportedstoragetype=nil, supporteduplinkspeed=nil, supportedinstancefamily=nil, weight=nil, powerdraw=nil, orderstatus=nil, createtime=nil, dedicatedclusterorderid=nil, action=nil, dedicatedclusterorderitems=nil, cpu=nil, mem=nil, gpu=nil, paystatus=nil)
498
+ def initialize(dedicatedclusterid=nil, dedicatedclustertypeid=nil, supportedstoragetype=nil, supporteduplinkspeed=nil, supportedinstancefamily=nil, weight=nil, powerdraw=nil, orderstatus=nil, createtime=nil, dedicatedclusterorderid=nil, action=nil, dedicatedclusterorderitems=nil, cpu=nil, mem=nil, gpu=nil, paystatus=nil, paytype=nil, timeunit=nil, timespan=nil)
490
499
  @DedicatedClusterId = dedicatedclusterid
491
500
  @DedicatedClusterTypeId = dedicatedclustertypeid
492
501
  @SupportedStorageType = supportedstoragetype
@@ -503,6 +512,9 @@ module TencentCloud
503
512
  @Mem = mem
504
513
  @Gpu = gpu
505
514
  @PayStatus = paystatus
515
+ @PayType = paytype
516
+ @TimeUnit = timeunit
517
+ @TimeSpan = timespan
506
518
  end
507
519
 
508
520
  def deserialize(params)
@@ -529,6 +541,9 @@ module TencentCloud
529
541
  @Mem = params['Mem']
530
542
  @Gpu = params['Gpu']
531
543
  @PayStatus = params['PayStatus']
544
+ @PayType = params['PayType']
545
+ @TimeUnit = params['TimeUnit']
546
+ @TimeSpan = params['TimeSpan']
532
547
  end
533
548
  end
534
549
 
@@ -569,10 +584,16 @@ module TencentCloud
569
584
  # @param ComputeFormat: 规格展示
570
585
  # 注意:此字段可能返回 null,表示取不到有效值。
571
586
  # @type ComputeFormat: String
587
+ # @param TypeFamily: 规格类型
588
+ # 注意:此字段可能返回 null,表示取不到有效值。
589
+ # @type TypeFamily: String
590
+ # @param SubOrderPayStatus: 0未支付,1已支付
591
+ # 注意:此字段可能返回 null,表示取不到有效值。
592
+ # @type SubOrderPayStatus: Integer
572
593
 
573
- attr_accessor :DedicatedClusterTypeId, :SupportedStorageType, :SupportedUplinkSpeed, :SupportedInstanceFamily, :Weight, :PowerDraw, :SubOrderStatus, :CreateTime, :SubOrderId, :Count, :Name, :Description, :TotalCpu, :TotalMem, :TotalGpu, :TypeName, :ComputeFormat
594
+ attr_accessor :DedicatedClusterTypeId, :SupportedStorageType, :SupportedUplinkSpeed, :SupportedInstanceFamily, :Weight, :PowerDraw, :SubOrderStatus, :CreateTime, :SubOrderId, :Count, :Name, :Description, :TotalCpu, :TotalMem, :TotalGpu, :TypeName, :ComputeFormat, :TypeFamily, :SubOrderPayStatus
574
595
 
575
- def initialize(dedicatedclustertypeid=nil, supportedstoragetype=nil, supporteduplinkspeed=nil, supportedinstancefamily=nil, weight=nil, powerdraw=nil, suborderstatus=nil, createtime=nil, suborderid=nil, count=nil, name=nil, description=nil, totalcpu=nil, totalmem=nil, totalgpu=nil, typename=nil, computeformat=nil)
596
+ def initialize(dedicatedclustertypeid=nil, supportedstoragetype=nil, supporteduplinkspeed=nil, supportedinstancefamily=nil, weight=nil, powerdraw=nil, suborderstatus=nil, createtime=nil, suborderid=nil, count=nil, name=nil, description=nil, totalcpu=nil, totalmem=nil, totalgpu=nil, typename=nil, computeformat=nil, typefamily=nil, suborderpaystatus=nil)
576
597
  @DedicatedClusterTypeId = dedicatedclustertypeid
577
598
  @SupportedStorageType = supportedstoragetype
578
599
  @SupportedUplinkSpeed = supporteduplinkspeed
@@ -590,6 +611,8 @@ module TencentCloud
590
611
  @TotalGpu = totalgpu
591
612
  @TypeName = typename
592
613
  @ComputeFormat = computeformat
614
+ @TypeFamily = typefamily
615
+ @SubOrderPayStatus = suborderpaystatus
593
616
  end
594
617
 
595
618
  def deserialize(params)
@@ -610,6 +633,8 @@ module TencentCloud
610
633
  @TotalGpu = params['TotalGpu']
611
634
  @TypeName = params['TypeName']
612
635
  @ComputeFormat = params['ComputeFormat']
636
+ @TypeFamily = params['TypeFamily']
637
+ @SubOrderPayStatus = params['SubOrderPayStatus']
613
638
  end
614
639
  end
615
640
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.362
4
+ version: 3.0.371
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-24 00:00:00.000000000 Z
11
+ date: 2022-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common