tencentcloud-sdk-mariadb 3.0.451 → 3.0.452
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +42 -12
- 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: 1d4a7c51efbfc5a8ae0f489fe547db5dd762e7b9
|
4
|
+
data.tar.gz: 8e52cbfa4eb16ab9db2b0378378c3dff65a3725d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99dec32cef53fb4f8912b3056b505f3be43b965458661ed8934dbe79ffc944f48d470e022444bb0e995f0dfe560eef26ad3f5c57379198de921bf640e274529e
|
7
|
+
data.tar.gz: 1afe328232ecb395e3aa27b1d7785c55a21309a2987d3bb8b1585306bc1b09ec2f8052d18388f121d47a6ec6cec33c4e035d8b3ff512239c76a54a99da87a8ef
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.452
|
data/lib/v20170312/models.rb
CHANGED
@@ -2547,10 +2547,14 @@ module TencentCloud
|
|
2547
2547
|
# @type Count: Integer
|
2548
2548
|
# @param Paymode: 付费类型。postpaid:按量付费 prepaid:预付费
|
2549
2549
|
# @type Paymode: String
|
2550
|
+
# @param AmountUnit: 价格金额单位,不传默认单位为分,取值:
|
2551
|
+
# * pent:分
|
2552
|
+
# * microPent:微分
|
2553
|
+
# @type AmountUnit: String
|
2550
2554
|
|
2551
|
-
attr_accessor :Zone, :NodeCount, :Memory, :Storage, :Period, :Count, :Paymode
|
2555
|
+
attr_accessor :Zone, :NodeCount, :Memory, :Storage, :Period, :Count, :Paymode, :AmountUnit
|
2552
2556
|
|
2553
|
-
def initialize(zone=nil, nodecount=nil, memory=nil, storage=nil, period=nil, count=nil, paymode=nil)
|
2557
|
+
def initialize(zone=nil, nodecount=nil, memory=nil, storage=nil, period=nil, count=nil, paymode=nil, amountunit=nil)
|
2554
2558
|
@Zone = zone
|
2555
2559
|
@NodeCount = nodecount
|
2556
2560
|
@Memory = memory
|
@@ -2558,6 +2562,7 @@ module TencentCloud
|
|
2558
2562
|
@Period = period
|
2559
2563
|
@Count = count
|
2560
2564
|
@Paymode = paymode
|
2565
|
+
@AmountUnit = amountunit
|
2561
2566
|
end
|
2562
2567
|
|
2563
2568
|
def deserialize(params)
|
@@ -2568,14 +2573,19 @@ module TencentCloud
|
|
2568
2573
|
@Period = params['Period']
|
2569
2574
|
@Count = params['Count']
|
2570
2575
|
@Paymode = params['Paymode']
|
2576
|
+
@AmountUnit = params['AmountUnit']
|
2571
2577
|
end
|
2572
2578
|
end
|
2573
2579
|
|
2574
2580
|
# DescribePrice返回参数结构体
|
2575
2581
|
class DescribePriceResponse < TencentCloud::Common::AbstractModel
|
2576
|
-
# @param OriginalPrice:
|
2582
|
+
# @param OriginalPrice: 原价
|
2583
|
+
# * 单位:默认为分,若请求参数带有AmountUnit,参考AmountUnit描述
|
2584
|
+
# * 币种:国内站为人民币,国际站为美元
|
2577
2585
|
# @type OriginalPrice: Integer
|
2578
|
-
# @param Price:
|
2586
|
+
# @param Price: 实际价格,受折扣等影响,可能和原价不同
|
2587
|
+
# * 单位:默认为分,若请求参数带有AmountUnit,参考AmountUnit描述
|
2588
|
+
# * 币种:国内站人民币,国际站美元
|
2579
2589
|
# @type Price: Integer
|
2580
2590
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2581
2591
|
# @type RequestId: String
|
@@ -2652,25 +2662,35 @@ module TencentCloud
|
|
2652
2662
|
# @type InstanceId: String
|
2653
2663
|
# @param Period: 续费时长,单位:月。不传则默认为1个月。
|
2654
2664
|
# @type Period: Integer
|
2665
|
+
# @param AmountUnit: 价格金额单位,不传默认单位为分,取值:
|
2666
|
+
# * pent:分
|
2667
|
+
# * microPent:微分
|
2668
|
+
# @type AmountUnit: String
|
2655
2669
|
|
2656
|
-
attr_accessor :InstanceId, :Period
|
2670
|
+
attr_accessor :InstanceId, :Period, :AmountUnit
|
2657
2671
|
|
2658
|
-
def initialize(instanceid=nil, period=nil)
|
2672
|
+
def initialize(instanceid=nil, period=nil, amountunit=nil)
|
2659
2673
|
@InstanceId = instanceid
|
2660
2674
|
@Period = period
|
2675
|
+
@AmountUnit = amountunit
|
2661
2676
|
end
|
2662
2677
|
|
2663
2678
|
def deserialize(params)
|
2664
2679
|
@InstanceId = params['InstanceId']
|
2665
2680
|
@Period = params['Period']
|
2681
|
+
@AmountUnit = params['AmountUnit']
|
2666
2682
|
end
|
2667
2683
|
end
|
2668
2684
|
|
2669
2685
|
# DescribeRenewalPrice返回参数结构体
|
2670
2686
|
class DescribeRenewalPriceResponse < TencentCloud::Common::AbstractModel
|
2671
|
-
# @param OriginalPrice:
|
2687
|
+
# @param OriginalPrice: 原价
|
2688
|
+
# * 单位:默认为分,若请求参数带有AmountUnit,参考AmountUnit描述
|
2689
|
+
# * 币种:国内站为人民币,国际站为美元
|
2672
2690
|
# @type OriginalPrice: Integer
|
2673
|
-
# @param Price:
|
2691
|
+
# @param Price: 实际价格,受折扣等影响,可能和原价不同
|
2692
|
+
# * 单位:默认为分,若请求参数带有AmountUnit,参考AmountUnit描述
|
2693
|
+
# * 币种:国内站人民币,国际站美元
|
2674
2694
|
# @type Price: Integer
|
2675
2695
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2676
2696
|
# @type RequestId: String
|
@@ -2740,14 +2760,19 @@ module TencentCloud
|
|
2740
2760
|
# @type Storage: Integer
|
2741
2761
|
# @param NodeCount: 新节点数,传0表示节点数不变
|
2742
2762
|
# @type NodeCount: Integer
|
2763
|
+
# @param AmountUnit: 价格金额单位,不传默认单位为分,取值:
|
2764
|
+
# * pent:分
|
2765
|
+
# * microPent:微分
|
2766
|
+
# @type AmountUnit: String
|
2743
2767
|
|
2744
|
-
attr_accessor :InstanceId, :Memory, :Storage, :NodeCount
|
2768
|
+
attr_accessor :InstanceId, :Memory, :Storage, :NodeCount, :AmountUnit
|
2745
2769
|
|
2746
|
-
def initialize(instanceid=nil, memory=nil, storage=nil, nodecount=nil)
|
2770
|
+
def initialize(instanceid=nil, memory=nil, storage=nil, nodecount=nil, amountunit=nil)
|
2747
2771
|
@InstanceId = instanceid
|
2748
2772
|
@Memory = memory
|
2749
2773
|
@Storage = storage
|
2750
2774
|
@NodeCount = nodecount
|
2775
|
+
@AmountUnit = amountunit
|
2751
2776
|
end
|
2752
2777
|
|
2753
2778
|
def deserialize(params)
|
@@ -2755,14 +2780,19 @@ module TencentCloud
|
|
2755
2780
|
@Memory = params['Memory']
|
2756
2781
|
@Storage = params['Storage']
|
2757
2782
|
@NodeCount = params['NodeCount']
|
2783
|
+
@AmountUnit = params['AmountUnit']
|
2758
2784
|
end
|
2759
2785
|
end
|
2760
2786
|
|
2761
2787
|
# DescribeUpgradePrice返回参数结构体
|
2762
2788
|
class DescribeUpgradePriceResponse < TencentCloud::Common::AbstractModel
|
2763
|
-
# @param OriginalPrice:
|
2789
|
+
# @param OriginalPrice: 原价
|
2790
|
+
# * 单位:默认为分,若请求参数带有AmountUnit,参考AmountUnit描述
|
2791
|
+
# * 币种:国内站为人民币,国际站为美元
|
2764
2792
|
# @type OriginalPrice: Integer
|
2765
|
-
# @param Price:
|
2793
|
+
# @param Price: 实际价格,受折扣等影响,可能和原价不同
|
2794
|
+
# * 单位:默认为分,若请求参数带有AmountUnit,参考AmountUnit描述
|
2795
|
+
# * 币种:国内站人民币,国际站美元
|
2766
2796
|
# @type Price: Integer
|
2767
2797
|
# @param Formula: 变配明细计算公式
|
2768
2798
|
# @type Formula: String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mariadb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.452
|
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-11-
|
11
|
+
date: 2022-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|