tencentcloud-sdk-trabbit 3.0.1069 → 3.0.1071
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/v20230418/models.rb +12 -4
- 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: 324e1009276a307a5f67eb310695a2fd91db680a
|
4
|
+
data.tar.gz: 355c7984826c706170a982292892eafe3913e300
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2fb549c79e4f6294d1b790b34e40f0187d9e2ca48c4f336239ef4bdcd5492af0563a9c35a4286dc3c937c712ea5c74ff622ec3d284c29efad0105eee4d78ad4
|
7
|
+
data.tar.gz: bd5d9ccdac6817467e88a248ccc99e19f3bba3c2a915203875994730f11a0f7a997bf236a3c1a82d66001e351613629c9bd604403ddd3358077dd5cb8a70dae6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1071
|
data/lib/v20230418/models.rb
CHANGED
@@ -2145,10 +2145,12 @@ module TencentCloud
|
|
2145
2145
|
# @type MaxBandWidth: Integer
|
2146
2146
|
# @param PublicNetworkTps: 公网带宽,已废弃
|
2147
2147
|
# @type PublicNetworkTps: Integer
|
2148
|
+
# @param Features: 实例对应的功能列表,true表示支持,false 表示不支持
|
2149
|
+
# @type Features: String
|
2148
2150
|
|
2149
|
-
attr_accessor :SpecName, :MaxTps, :MaxQueueNum, :MaxExchangeNum, :MaxVhostNum, :MaxConnNum, :MaxUserNum, :MaxBandWidth, :PublicNetworkTps
|
2151
|
+
attr_accessor :SpecName, :MaxTps, :MaxQueueNum, :MaxExchangeNum, :MaxVhostNum, :MaxConnNum, :MaxUserNum, :MaxBandWidth, :PublicNetworkTps, :Features
|
2150
2152
|
|
2151
|
-
def initialize(specname=nil, maxtps=nil, maxqueuenum=nil, maxexchangenum=nil, maxvhostnum=nil, maxconnnum=nil, maxusernum=nil, maxbandwidth=nil, publicnetworktps=nil)
|
2153
|
+
def initialize(specname=nil, maxtps=nil, maxqueuenum=nil, maxexchangenum=nil, maxvhostnum=nil, maxconnnum=nil, maxusernum=nil, maxbandwidth=nil, publicnetworktps=nil, features=nil)
|
2152
2154
|
@SpecName = specname
|
2153
2155
|
@MaxTps = maxtps
|
2154
2156
|
@MaxQueueNum = maxqueuenum
|
@@ -2158,6 +2160,7 @@ module TencentCloud
|
|
2158
2160
|
@MaxUserNum = maxusernum
|
2159
2161
|
@MaxBandWidth = maxbandwidth
|
2160
2162
|
@PublicNetworkTps = publicnetworktps
|
2163
|
+
@Features = features
|
2161
2164
|
end
|
2162
2165
|
|
2163
2166
|
def deserialize(params)
|
@@ -2170,6 +2173,7 @@ module TencentCloud
|
|
2170
2173
|
@MaxUserNum = params['MaxUserNum']
|
2171
2174
|
@MaxBandWidth = params['MaxBandWidth']
|
2172
2175
|
@PublicNetworkTps = params['PublicNetworkTps']
|
2176
|
+
@Features = params['Features']
|
2173
2177
|
end
|
2174
2178
|
end
|
2175
2179
|
|
@@ -2554,10 +2558,12 @@ module TencentCloud
|
|
2554
2558
|
# @type MaxStorage: Integer
|
2555
2559
|
# @param IsolatedTime: 隔离时间
|
2556
2560
|
# @type IsolatedTime: Integer
|
2561
|
+
# @param ServerlessExt: Serverless 扩展字段
|
2562
|
+
# @type ServerlessExt: String
|
2557
2563
|
|
2558
|
-
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :MaxTps, :MaxBandWidth, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :ExceptionInformation, :PublicAccessEndpoint, :Vpcs, :ClusterStatus, :InstanceType, :CreateTime, :NodeCount, :MaxStorage, :IsolatedTime
|
2564
|
+
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :MaxTps, :MaxBandWidth, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :ExceptionInformation, :PublicAccessEndpoint, :Vpcs, :ClusterStatus, :InstanceType, :CreateTime, :NodeCount, :MaxStorage, :IsolatedTime, :ServerlessExt
|
2559
2565
|
|
2560
|
-
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, maxtps=nil, maxbandwidth=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, exceptioninformation=nil, publicaccessendpoint=nil, vpcs=nil, clusterstatus=nil, instancetype=nil, createtime=nil, nodecount=nil, maxstorage=nil, isolatedtime=nil)
|
2566
|
+
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, maxtps=nil, maxbandwidth=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, exceptioninformation=nil, publicaccessendpoint=nil, vpcs=nil, clusterstatus=nil, instancetype=nil, createtime=nil, nodecount=nil, maxstorage=nil, isolatedtime=nil, serverlessext=nil)
|
2561
2567
|
@InstanceId = instanceid
|
2562
2568
|
@InstanceName = instancename
|
2563
2569
|
@InstanceVersion = instanceversion
|
@@ -2578,6 +2584,7 @@ module TencentCloud
|
|
2578
2584
|
@NodeCount = nodecount
|
2579
2585
|
@MaxStorage = maxstorage
|
2580
2586
|
@IsolatedTime = isolatedtime
|
2587
|
+
@ServerlessExt = serverlessext
|
2581
2588
|
end
|
2582
2589
|
|
2583
2590
|
def deserialize(params)
|
@@ -2608,6 +2615,7 @@ module TencentCloud
|
|
2608
2615
|
@NodeCount = params['NodeCount']
|
2609
2616
|
@MaxStorage = params['MaxStorage']
|
2610
2617
|
@IsolatedTime = params['IsolatedTime']
|
2618
|
+
@ServerlessExt = params['ServerlessExt']
|
2611
2619
|
end
|
2612
2620
|
end
|
2613
2621
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trabbit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1071
|
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-05-
|
11
|
+
date: 2025-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|