tencentcloud-sdk-tdmq 3.0.556 → 3.0.557
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/v20200217/client.rb +48 -0
- data/lib/v20200217/models.rb +327 -0
- 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: ac737e472d0d2347b700500355bcea13f404cb66
|
4
|
+
data.tar.gz: 9ccab4e9f96cefca01da90e2b634a7764e229bf5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65d5939332a83506e31cabc93ebd517c55c29df33142f64a4032fb38307ba24461fd991e7a54219ad2f0d85865927340c390adbc11eb592f9612de0233918786
|
7
|
+
data.tar.gz: 3eb8f7b3b9fb15e1c4f52fe69dd9bef87187957bf4af02c540fe6b75b0502aecdbc0a335629f41061e0108a10e2be838d2e147cfac630be9ad5d2d57386912b9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.557
|
data/lib/v20200217/client.rb
CHANGED
@@ -1621,6 +1621,54 @@ module TencentCloud
|
|
1621
1621
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1622
1622
|
end
|
1623
1623
|
|
1624
|
+
# 获取Pulsar专业版集群实例信息
|
1625
|
+
|
1626
|
+
# @param request: Request instance for DescribePulsarProInstanceDetail.
|
1627
|
+
# @type request: :class:`Tencentcloud::tdmq::V20200217::DescribePulsarProInstanceDetailRequest`
|
1628
|
+
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribePulsarProInstanceDetailResponse`
|
1629
|
+
def DescribePulsarProInstanceDetail(request)
|
1630
|
+
body = send_request('DescribePulsarProInstanceDetail', request.serialize)
|
1631
|
+
response = JSON.parse(body)
|
1632
|
+
if response['Response'].key?('Error') == false
|
1633
|
+
model = DescribePulsarProInstanceDetailResponse.new
|
1634
|
+
model.deserialize(response['Response'])
|
1635
|
+
model
|
1636
|
+
else
|
1637
|
+
code = response['Response']['Error']['Code']
|
1638
|
+
message = response['Response']['Error']['Message']
|
1639
|
+
reqid = response['Response']['RequestId']
|
1640
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1641
|
+
end
|
1642
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1643
|
+
raise e
|
1644
|
+
rescue StandardError => e
|
1645
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
# 查询用户已购的Pulsar专业版实例列表
|
1649
|
+
|
1650
|
+
# @param request: Request instance for DescribePulsarProInstances.
|
1651
|
+
# @type request: :class:`Tencentcloud::tdmq::V20200217::DescribePulsarProInstancesRequest`
|
1652
|
+
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribePulsarProInstancesResponse`
|
1653
|
+
def DescribePulsarProInstances(request)
|
1654
|
+
body = send_request('DescribePulsarProInstances', request.serialize)
|
1655
|
+
response = JSON.parse(body)
|
1656
|
+
if response['Response'].key?('Error') == false
|
1657
|
+
model = DescribePulsarProInstancesResponse.new
|
1658
|
+
model.deserialize(response['Response'])
|
1659
|
+
model
|
1660
|
+
else
|
1661
|
+
code = response['Response']['Error']['Code']
|
1662
|
+
message = response['Response']['Error']['Message']
|
1663
|
+
reqid = response['Response']['RequestId']
|
1664
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1665
|
+
end
|
1666
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1667
|
+
raise e
|
1668
|
+
rescue StandardError => e
|
1669
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1670
|
+
end
|
1671
|
+
|
1624
1672
|
# RabbitMQ专享版查询节点列表
|
1625
1673
|
|
1626
1674
|
# @param request: Request instance for DescribeRabbitMQNodeList.
|
data/lib/v20200217/models.rb
CHANGED
@@ -4617,6 +4617,127 @@ module TencentCloud
|
|
4617
4617
|
end
|
4618
4618
|
end
|
4619
4619
|
|
4620
|
+
# DescribePulsarProInstanceDetail请求参数结构体
|
4621
|
+
class DescribePulsarProInstanceDetailRequest < TencentCloud::Common::AbstractModel
|
4622
|
+
# @param ClusterId: 集群ID
|
4623
|
+
# @type ClusterId: String
|
4624
|
+
|
4625
|
+
attr_accessor :ClusterId
|
4626
|
+
|
4627
|
+
def initialize(clusterid=nil)
|
4628
|
+
@ClusterId = clusterid
|
4629
|
+
end
|
4630
|
+
|
4631
|
+
def deserialize(params)
|
4632
|
+
@ClusterId = params['ClusterId']
|
4633
|
+
end
|
4634
|
+
end
|
4635
|
+
|
4636
|
+
# DescribePulsarProInstanceDetail返回参数结构体
|
4637
|
+
class DescribePulsarProInstanceDetailResponse < TencentCloud::Common::AbstractModel
|
4638
|
+
# @param ClusterInfo: 集群信息
|
4639
|
+
# @type ClusterInfo: :class:`Tencentcloud::Tdmq.v20200217.models.PulsarProClusterInfo`
|
4640
|
+
# @param NetworkAccessPointInfos: 集群网络接入点信息
|
4641
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4642
|
+
# @type NetworkAccessPointInfos: Array
|
4643
|
+
# @param ClusterSpecInfo: 集群规格信息
|
4644
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4645
|
+
# @type ClusterSpecInfo: :class:`Tencentcloud::Tdmq.v20200217.models.PulsarProClusterSpecInfo`
|
4646
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4647
|
+
# @type RequestId: String
|
4648
|
+
|
4649
|
+
attr_accessor :ClusterInfo, :NetworkAccessPointInfos, :ClusterSpecInfo, :RequestId
|
4650
|
+
|
4651
|
+
def initialize(clusterinfo=nil, networkaccesspointinfos=nil, clusterspecinfo=nil, requestid=nil)
|
4652
|
+
@ClusterInfo = clusterinfo
|
4653
|
+
@NetworkAccessPointInfos = networkaccesspointinfos
|
4654
|
+
@ClusterSpecInfo = clusterspecinfo
|
4655
|
+
@RequestId = requestid
|
4656
|
+
end
|
4657
|
+
|
4658
|
+
def deserialize(params)
|
4659
|
+
unless params['ClusterInfo'].nil?
|
4660
|
+
@ClusterInfo = PulsarProClusterInfo.new
|
4661
|
+
@ClusterInfo.deserialize(params['ClusterInfo'])
|
4662
|
+
end
|
4663
|
+
unless params['NetworkAccessPointInfos'].nil?
|
4664
|
+
@NetworkAccessPointInfos = []
|
4665
|
+
params['NetworkAccessPointInfos'].each do |i|
|
4666
|
+
pulsarnetworkaccesspointinfo_tmp = PulsarNetworkAccessPointInfo.new
|
4667
|
+
pulsarnetworkaccesspointinfo_tmp.deserialize(i)
|
4668
|
+
@NetworkAccessPointInfos << pulsarnetworkaccesspointinfo_tmp
|
4669
|
+
end
|
4670
|
+
end
|
4671
|
+
unless params['ClusterSpecInfo'].nil?
|
4672
|
+
@ClusterSpecInfo = PulsarProClusterSpecInfo.new
|
4673
|
+
@ClusterSpecInfo.deserialize(params['ClusterSpecInfo'])
|
4674
|
+
end
|
4675
|
+
@RequestId = params['RequestId']
|
4676
|
+
end
|
4677
|
+
end
|
4678
|
+
|
4679
|
+
# DescribePulsarProInstances请求参数结构体
|
4680
|
+
class DescribePulsarProInstancesRequest < TencentCloud::Common::AbstractModel
|
4681
|
+
# @param Filters: 查询条件过滤器
|
4682
|
+
# @type Filters: Array
|
4683
|
+
# @param Limit: 查询数目上限,默认20
|
4684
|
+
# @type Limit: Integer
|
4685
|
+
# @param Offset: 查询起始位置
|
4686
|
+
# @type Offset: Integer
|
4687
|
+
|
4688
|
+
attr_accessor :Filters, :Limit, :Offset
|
4689
|
+
|
4690
|
+
def initialize(filters=nil, limit=nil, offset=nil)
|
4691
|
+
@Filters = filters
|
4692
|
+
@Limit = limit
|
4693
|
+
@Offset = offset
|
4694
|
+
end
|
4695
|
+
|
4696
|
+
def deserialize(params)
|
4697
|
+
unless params['Filters'].nil?
|
4698
|
+
@Filters = []
|
4699
|
+
params['Filters'].each do |i|
|
4700
|
+
filter_tmp = Filter.new
|
4701
|
+
filter_tmp.deserialize(i)
|
4702
|
+
@Filters << filter_tmp
|
4703
|
+
end
|
4704
|
+
end
|
4705
|
+
@Limit = params['Limit']
|
4706
|
+
@Offset = params['Offset']
|
4707
|
+
end
|
4708
|
+
end
|
4709
|
+
|
4710
|
+
# DescribePulsarProInstances返回参数结构体
|
4711
|
+
class DescribePulsarProInstancesResponse < TencentCloud::Common::AbstractModel
|
4712
|
+
# @param TotalCount: 未分页的总数目
|
4713
|
+
# @type TotalCount: Integer
|
4714
|
+
# @param Instances: 实例信息列表
|
4715
|
+
# @type Instances: Array
|
4716
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4717
|
+
# @type RequestId: String
|
4718
|
+
|
4719
|
+
attr_accessor :TotalCount, :Instances, :RequestId
|
4720
|
+
|
4721
|
+
def initialize(totalcount=nil, instances=nil, requestid=nil)
|
4722
|
+
@TotalCount = totalcount
|
4723
|
+
@Instances = instances
|
4724
|
+
@RequestId = requestid
|
4725
|
+
end
|
4726
|
+
|
4727
|
+
def deserialize(params)
|
4728
|
+
@TotalCount = params['TotalCount']
|
4729
|
+
unless params['Instances'].nil?
|
4730
|
+
@Instances = []
|
4731
|
+
params['Instances'].each do |i|
|
4732
|
+
pulsarproinstance_tmp = PulsarProInstance.new
|
4733
|
+
pulsarproinstance_tmp.deserialize(i)
|
4734
|
+
@Instances << pulsarproinstance_tmp
|
4735
|
+
end
|
4736
|
+
end
|
4737
|
+
@RequestId = params['RequestId']
|
4738
|
+
end
|
4739
|
+
end
|
4740
|
+
|
4620
4741
|
# DescribeRabbitMQNodeList请求参数结构体
|
4621
4742
|
class DescribeRabbitMQNodeListRequest < TencentCloud::Common::AbstractModel
|
4622
4743
|
# @param InstanceId: rabbitmq集群ID
|
@@ -6919,6 +7040,212 @@ module TencentCloud
|
|
6919
7040
|
end
|
6920
7041
|
end
|
6921
7042
|
|
7043
|
+
# Pulsar 网络接入点信息
|
7044
|
+
class PulsarNetworkAccessPointInfo < TencentCloud::Common::AbstractModel
|
7045
|
+
# @param VpcId: vpc的id,支撑网和公网接入点,该字段为空
|
7046
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7047
|
+
# @type VpcId: String
|
7048
|
+
# @param SubnetId: 子网id,支撑网和公网接入点,该字段为空
|
7049
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7050
|
+
# @type SubnetId: String
|
7051
|
+
# @param Endpoint: 接入地址
|
7052
|
+
# @type Endpoint: String
|
7053
|
+
# @param InstanceId: 实例id
|
7054
|
+
# @type InstanceId: String
|
7055
|
+
# @param RouteType: 接入点类型:
|
7056
|
+
# 0:支撑网接入点
|
7057
|
+
# 1:VPC接入点
|
7058
|
+
# 2:公网接入点
|
7059
|
+
# @type RouteType: Integer
|
7060
|
+
|
7061
|
+
attr_accessor :VpcId, :SubnetId, :Endpoint, :InstanceId, :RouteType
|
7062
|
+
|
7063
|
+
def initialize(vpcid=nil, subnetid=nil, endpoint=nil, instanceid=nil, routetype=nil)
|
7064
|
+
@VpcId = vpcid
|
7065
|
+
@SubnetId = subnetid
|
7066
|
+
@Endpoint = endpoint
|
7067
|
+
@InstanceId = instanceid
|
7068
|
+
@RouteType = routetype
|
7069
|
+
end
|
7070
|
+
|
7071
|
+
def deserialize(params)
|
7072
|
+
@VpcId = params['VpcId']
|
7073
|
+
@SubnetId = params['SubnetId']
|
7074
|
+
@Endpoint = params['Endpoint']
|
7075
|
+
@InstanceId = params['InstanceId']
|
7076
|
+
@RouteType = params['RouteType']
|
7077
|
+
end
|
7078
|
+
end
|
7079
|
+
|
7080
|
+
# Pulsar专业版集群信息
|
7081
|
+
class PulsarProClusterInfo < TencentCloud::Common::AbstractModel
|
7082
|
+
# @param ClusterId: 集群Id。
|
7083
|
+
# @type ClusterId: String
|
7084
|
+
# @param ClusterName: 集群名称。
|
7085
|
+
# @type ClusterName: String
|
7086
|
+
# @param Remark: 说明信息。
|
7087
|
+
# @type Remark: String
|
7088
|
+
# @param CreateTime: 创建时间
|
7089
|
+
# @type CreateTime: String
|
7090
|
+
# @param Status: 集群状态,0:创建中,1:正常,2:隔离
|
7091
|
+
# @type Status: Integer
|
7092
|
+
# @param Version: 集群版本
|
7093
|
+
# @type Version: String
|
7094
|
+
# @param NodeDistribution: 节点分布情况
|
7095
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7096
|
+
# @type NodeDistribution: Array
|
7097
|
+
# @param MaxStorage: 最大储存容量,单位:MB
|
7098
|
+
# @type MaxStorage: Integer
|
7099
|
+
|
7100
|
+
attr_accessor :ClusterId, :ClusterName, :Remark, :CreateTime, :Status, :Version, :NodeDistribution, :MaxStorage
|
7101
|
+
|
7102
|
+
def initialize(clusterid=nil, clustername=nil, remark=nil, createtime=nil, status=nil, version=nil, nodedistribution=nil, maxstorage=nil)
|
7103
|
+
@ClusterId = clusterid
|
7104
|
+
@ClusterName = clustername
|
7105
|
+
@Remark = remark
|
7106
|
+
@CreateTime = createtime
|
7107
|
+
@Status = status
|
7108
|
+
@Version = version
|
7109
|
+
@NodeDistribution = nodedistribution
|
7110
|
+
@MaxStorage = maxstorage
|
7111
|
+
end
|
7112
|
+
|
7113
|
+
def deserialize(params)
|
7114
|
+
@ClusterId = params['ClusterId']
|
7115
|
+
@ClusterName = params['ClusterName']
|
7116
|
+
@Remark = params['Remark']
|
7117
|
+
@CreateTime = params['CreateTime']
|
7118
|
+
@Status = params['Status']
|
7119
|
+
@Version = params['Version']
|
7120
|
+
unless params['NodeDistribution'].nil?
|
7121
|
+
@NodeDistribution = []
|
7122
|
+
params['NodeDistribution'].each do |i|
|
7123
|
+
instancenodedistribution_tmp = InstanceNodeDistribution.new
|
7124
|
+
instancenodedistribution_tmp.deserialize(i)
|
7125
|
+
@NodeDistribution << instancenodedistribution_tmp
|
7126
|
+
end
|
7127
|
+
end
|
7128
|
+
@MaxStorage = params['MaxStorage']
|
7129
|
+
end
|
7130
|
+
end
|
7131
|
+
|
7132
|
+
# Pulsar专业版集群规格信息
|
7133
|
+
class PulsarProClusterSpecInfo < TencentCloud::Common::AbstractModel
|
7134
|
+
# @param SpecName: 集群规格名称
|
7135
|
+
# @type SpecName: String
|
7136
|
+
# @param MaxTps: 峰值tps
|
7137
|
+
# @type MaxTps: Integer
|
7138
|
+
# @param MaxBandWidth: 峰值带宽。单位:mbps
|
7139
|
+
# @type MaxBandWidth: Integer
|
7140
|
+
# @param MaxNamespaces: 最大命名空间个数
|
7141
|
+
# @type MaxNamespaces: Integer
|
7142
|
+
# @param MaxTopics: 最大主题分区数
|
7143
|
+
# @type MaxTopics: Integer
|
7144
|
+
# @param ScalableTps: 规格外弹性TPS
|
7145
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7146
|
+
# @type ScalableTps: Integer
|
7147
|
+
|
7148
|
+
attr_accessor :SpecName, :MaxTps, :MaxBandWidth, :MaxNamespaces, :MaxTopics, :ScalableTps
|
7149
|
+
|
7150
|
+
def initialize(specname=nil, maxtps=nil, maxbandwidth=nil, maxnamespaces=nil, maxtopics=nil, scalabletps=nil)
|
7151
|
+
@SpecName = specname
|
7152
|
+
@MaxTps = maxtps
|
7153
|
+
@MaxBandWidth = maxbandwidth
|
7154
|
+
@MaxNamespaces = maxnamespaces
|
7155
|
+
@MaxTopics = maxtopics
|
7156
|
+
@ScalableTps = scalabletps
|
7157
|
+
end
|
7158
|
+
|
7159
|
+
def deserialize(params)
|
7160
|
+
@SpecName = params['SpecName']
|
7161
|
+
@MaxTps = params['MaxTps']
|
7162
|
+
@MaxBandWidth = params['MaxBandWidth']
|
7163
|
+
@MaxNamespaces = params['MaxNamespaces']
|
7164
|
+
@MaxTopics = params['MaxTopics']
|
7165
|
+
@ScalableTps = params['ScalableTps']
|
7166
|
+
end
|
7167
|
+
end
|
7168
|
+
|
7169
|
+
# Pulsar专业版实例信息
|
7170
|
+
class PulsarProInstance < TencentCloud::Common::AbstractModel
|
7171
|
+
# @param InstanceId: 实例id
|
7172
|
+
# @type InstanceId: String
|
7173
|
+
# @param InstanceName: 实例名称
|
7174
|
+
# @type InstanceName: String
|
7175
|
+
# @param InstanceVersion: 实例版本
|
7176
|
+
# @type InstanceVersion: String
|
7177
|
+
# @param Status: 实例状态,0-创建中,1-正常,2-隔离中,3-已销毁,4 - 异常, 5 - 发货失败,6-变配中,7-变配失败
|
7178
|
+
# @type Status: Integer
|
7179
|
+
# @param ConfigDisplay: 实例配置规格名称
|
7180
|
+
# @type ConfigDisplay: String
|
7181
|
+
# @param MaxTps: 峰值TPS
|
7182
|
+
# @type MaxTps: Integer
|
7183
|
+
# @param MaxStorage: 存储容量,GB为单位
|
7184
|
+
# @type MaxStorage: Integer
|
7185
|
+
# @param ExpireTime: 实例到期时间,毫秒为单位
|
7186
|
+
# @type ExpireTime: Integer
|
7187
|
+
# @param AutoRenewFlag: 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置)
|
7188
|
+
# @type AutoRenewFlag: Integer
|
7189
|
+
# @param PayMode: 0-后付费,1-预付费
|
7190
|
+
# @type PayMode: Integer
|
7191
|
+
# @param Remark: 备注信息
|
7192
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7193
|
+
# @type Remark: String
|
7194
|
+
# @param SpecName: 实例配置ID
|
7195
|
+
# @type SpecName: String
|
7196
|
+
# @param ScalableTps: 规格外弹性TPS
|
7197
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7198
|
+
# @type ScalableTps: Integer
|
7199
|
+
# @param VpcId: VPC的id
|
7200
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7201
|
+
# @type VpcId: String
|
7202
|
+
# @param SubnetId: 子网id
|
7203
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7204
|
+
# @type SubnetId: String
|
7205
|
+
# @param MaxBandWidth: 峰值带宽。单位:mbps
|
7206
|
+
# @type MaxBandWidth: Integer
|
7207
|
+
|
7208
|
+
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :ConfigDisplay, :MaxTps, :MaxStorage, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :ScalableTps, :VpcId, :SubnetId, :MaxBandWidth
|
7209
|
+
|
7210
|
+
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, configdisplay=nil, maxtps=nil, maxstorage=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, scalabletps=nil, vpcid=nil, subnetid=nil, maxbandwidth=nil)
|
7211
|
+
@InstanceId = instanceid
|
7212
|
+
@InstanceName = instancename
|
7213
|
+
@InstanceVersion = instanceversion
|
7214
|
+
@Status = status
|
7215
|
+
@ConfigDisplay = configdisplay
|
7216
|
+
@MaxTps = maxtps
|
7217
|
+
@MaxStorage = maxstorage
|
7218
|
+
@ExpireTime = expiretime
|
7219
|
+
@AutoRenewFlag = autorenewflag
|
7220
|
+
@PayMode = paymode
|
7221
|
+
@Remark = remark
|
7222
|
+
@SpecName = specname
|
7223
|
+
@ScalableTps = scalabletps
|
7224
|
+
@VpcId = vpcid
|
7225
|
+
@SubnetId = subnetid
|
7226
|
+
@MaxBandWidth = maxbandwidth
|
7227
|
+
end
|
7228
|
+
|
7229
|
+
def deserialize(params)
|
7230
|
+
@InstanceId = params['InstanceId']
|
7231
|
+
@InstanceName = params['InstanceName']
|
7232
|
+
@InstanceVersion = params['InstanceVersion']
|
7233
|
+
@Status = params['Status']
|
7234
|
+
@ConfigDisplay = params['ConfigDisplay']
|
7235
|
+
@MaxTps = params['MaxTps']
|
7236
|
+
@MaxStorage = params['MaxStorage']
|
7237
|
+
@ExpireTime = params['ExpireTime']
|
7238
|
+
@AutoRenewFlag = params['AutoRenewFlag']
|
7239
|
+
@PayMode = params['PayMode']
|
7240
|
+
@Remark = params['Remark']
|
7241
|
+
@SpecName = params['SpecName']
|
7242
|
+
@ScalableTps = params['ScalableTps']
|
7243
|
+
@VpcId = params['VpcId']
|
7244
|
+
@SubnetId = params['SubnetId']
|
7245
|
+
@MaxBandWidth = params['MaxBandWidth']
|
7246
|
+
end
|
7247
|
+
end
|
7248
|
+
|
6922
7249
|
# queue使用配额信息
|
6923
7250
|
class QueueQuota < TencentCloud::Common::AbstractModel
|
6924
7251
|
# @param MaxQueue: 可创建最大Queue数
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tdmq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.557
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|