tencentcloud-sdk-tdmq 3.0.1195 → 3.0.1205
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/models.rb +68 -19
- 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: 88414346189077d69742b8b74eb3d83da8b110f0
|
|
4
|
+
data.tar.gz: b7e415b095dc2fad829313556c53cecceb4d52ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5636f63b28c9fbecd9137e3edcb54df383d1207e23f57b0e0bcd35b1a8f4c56af267c7f564f07340f308055ae415903a3a28660386fc55893d5cc1d012d012a3
|
|
7
|
+
data.tar.gz: a0a4f75de7f0982de43842f48eea72278d16ca1fbf50bd97f4b139d33841ca3e3c98548e93075c4f0da826b06e386e24ea003b90ca8ca9665123dc955f12d6f7
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1205
|
data/lib/v20200217/models.rb
CHANGED
|
@@ -2336,8 +2336,6 @@ module TencentCloud
|
|
|
2336
2336
|
# @type Name: String
|
|
2337
2337
|
# @param Spec: 集群规格,支持规格有 1.通用型:rocket-vip-basic-0; 2.基础型:rocket-vip-basic-1; 3.标准型:rocket-vip-basic-2; 4.高阶Ⅰ型:rocket-vip-basic-3; 5.高阶Ⅱ型:rocket-vip-basic-4
|
|
2338
2338
|
# @type Spec: String
|
|
2339
|
-
# @param NodeCount: 节点数量,最小2,最大20
|
|
2340
|
-
# @type NodeCount: Integer
|
|
2341
2339
|
# @param StorageSize: 单节点存储空间,GB为单位,最低200GB
|
|
2342
2340
|
# @type StorageSize: Integer
|
|
2343
2341
|
# @param ZoneIds: 节点部署的区域ID列表,如广州一区,则是100001,具体可查询腾讯云官网
|
|
@@ -2346,6 +2344,10 @@ module TencentCloud
|
|
|
2346
2344
|
# @type VpcInfo: :class:`Tencentcloud::Tdmq.v20200217.models.VpcInfo`
|
|
2347
2345
|
# @param TimeSpan: 购买时长,月为单位
|
|
2348
2346
|
# @type TimeSpan: Integer
|
|
2347
|
+
# @param NodeCount: 节点数量,创建专享集群时必填
|
|
2348
|
+
# @type NodeCount: Integer
|
|
2349
|
+
# @param GeneralSkuCode: 通用集群规格标识,新购通用集群时必填,从 [DescribeRocketMQGeneralSKUs](https://cloud.tencent.com/document/api/1179/127066) 接口返回的 [GeneralSKU](https://cloud.tencent.com/document/api/1179/46089#GeneralSKU) 字段获取。
|
|
2350
|
+
# @type GeneralSkuCode: String
|
|
2349
2351
|
# @param SupportsMigrateToCloud: 是否用于迁移上云,默认为false
|
|
2350
2352
|
# @type SupportsMigrateToCloud: Boolean
|
|
2351
2353
|
# @param EnablePublic: 是否开启公网
|
|
@@ -2357,16 +2359,17 @@ module TencentCloud
|
|
|
2357
2359
|
# @param Tags: 标签
|
|
2358
2360
|
# @type Tags: Array
|
|
2359
2361
|
|
|
2360
|
-
attr_accessor :Name, :Spec, :
|
|
2362
|
+
attr_accessor :Name, :Spec, :StorageSize, :ZoneIds, :VpcInfo, :TimeSpan, :NodeCount, :GeneralSkuCode, :SupportsMigrateToCloud, :EnablePublic, :Bandwidth, :IpRules, :Tags
|
|
2361
2363
|
|
|
2362
|
-
def initialize(name=nil, spec=nil,
|
|
2364
|
+
def initialize(name=nil, spec=nil, storagesize=nil, zoneids=nil, vpcinfo=nil, timespan=nil, nodecount=nil, generalskucode=nil, supportsmigratetocloud=nil, enablepublic=nil, bandwidth=nil, iprules=nil, tags=nil)
|
|
2363
2365
|
@Name = name
|
|
2364
2366
|
@Spec = spec
|
|
2365
|
-
@NodeCount = nodecount
|
|
2366
2367
|
@StorageSize = storagesize
|
|
2367
2368
|
@ZoneIds = zoneids
|
|
2368
2369
|
@VpcInfo = vpcinfo
|
|
2369
2370
|
@TimeSpan = timespan
|
|
2371
|
+
@NodeCount = nodecount
|
|
2372
|
+
@GeneralSkuCode = generalskucode
|
|
2370
2373
|
@SupportsMigrateToCloud = supportsmigratetocloud
|
|
2371
2374
|
@EnablePublic = enablepublic
|
|
2372
2375
|
@Bandwidth = bandwidth
|
|
@@ -2377,7 +2380,6 @@ module TencentCloud
|
|
|
2377
2380
|
def deserialize(params)
|
|
2378
2381
|
@Name = params['Name']
|
|
2379
2382
|
@Spec = params['Spec']
|
|
2380
|
-
@NodeCount = params['NodeCount']
|
|
2381
2383
|
@StorageSize = params['StorageSize']
|
|
2382
2384
|
@ZoneIds = params['ZoneIds']
|
|
2383
2385
|
unless params['VpcInfo'].nil?
|
|
@@ -2385,6 +2387,8 @@ module TencentCloud
|
|
|
2385
2387
|
@VpcInfo.deserialize(params['VpcInfo'])
|
|
2386
2388
|
end
|
|
2387
2389
|
@TimeSpan = params['TimeSpan']
|
|
2390
|
+
@NodeCount = params['NodeCount']
|
|
2391
|
+
@GeneralSkuCode = params['GeneralSkuCode']
|
|
2388
2392
|
@SupportsMigrateToCloud = params['SupportsMigrateToCloud']
|
|
2389
2393
|
@EnablePublic = params['EnablePublic']
|
|
2390
2394
|
@Bandwidth = params['Bandwidth']
|
|
@@ -9414,7 +9418,7 @@ module TencentCloud
|
|
|
9414
9418
|
class ModifyRabbitMQUserRequest < TencentCloud::Common::AbstractModel
|
|
9415
9419
|
# @param InstanceId: 实例 ID,形如 amqp-xxxxxxxx。有效的 InstanceId 可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询。
|
|
9416
9420
|
# @type InstanceId: String
|
|
9417
|
-
# @param User: 用户名,形如
|
|
9421
|
+
# @param User: 用户名,形如rabbitmq。有效的 User 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,点击集群列表中的集群,进入集群详情,并在用户与权限页签中找到用户列表,从而找到用户名称。当前不支持修改admin的密码。
|
|
9418
9422
|
# @type User: String
|
|
9419
9423
|
# @param Password: 密码,登录时使用。规范:不能为空,8-64个字符,至少要包含小写字母、大写字母、数字、特殊字符【()`~!@#$%^&*_=|{}[]:;',.?/】中的两项
|
|
9420
9424
|
# @type Password: String
|
|
@@ -9481,16 +9485,19 @@ module TencentCloud
|
|
|
9481
9485
|
# @type RemoveAllTags: Boolean
|
|
9482
9486
|
# @param Tags: 修改实例的标签信息,全量标签信息,非增量
|
|
9483
9487
|
# @type Tags: Array
|
|
9488
|
+
# @param EnableRiskWarning: 是否开启集群风险提示
|
|
9489
|
+
# @type EnableRiskWarning: Boolean
|
|
9484
9490
|
|
|
9485
|
-
attr_accessor :InstanceId, :ClusterName, :Remark, :EnableDeletionProtection, :RemoveAllTags, :Tags
|
|
9491
|
+
attr_accessor :InstanceId, :ClusterName, :Remark, :EnableDeletionProtection, :RemoveAllTags, :Tags, :EnableRiskWarning
|
|
9486
9492
|
|
|
9487
|
-
def initialize(instanceid=nil, clustername=nil, remark=nil, enabledeletionprotection=nil, removealltags=nil, tags=nil)
|
|
9493
|
+
def initialize(instanceid=nil, clustername=nil, remark=nil, enabledeletionprotection=nil, removealltags=nil, tags=nil, enableriskwarning=nil)
|
|
9488
9494
|
@InstanceId = instanceid
|
|
9489
9495
|
@ClusterName = clustername
|
|
9490
9496
|
@Remark = remark
|
|
9491
9497
|
@EnableDeletionProtection = enabledeletionprotection
|
|
9492
9498
|
@RemoveAllTags = removealltags
|
|
9493
9499
|
@Tags = tags
|
|
9500
|
+
@EnableRiskWarning = enableriskwarning
|
|
9494
9501
|
end
|
|
9495
9502
|
|
|
9496
9503
|
def deserialize(params)
|
|
@@ -9507,6 +9514,7 @@ module TencentCloud
|
|
|
9507
9514
|
@Tags << tag_tmp
|
|
9508
9515
|
end
|
|
9509
9516
|
end
|
|
9517
|
+
@EnableRiskWarning = params['EnableRiskWarning']
|
|
9510
9518
|
end
|
|
9511
9519
|
end
|
|
9512
9520
|
|
|
@@ -10958,10 +10966,16 @@ module TencentCloud
|
|
|
10958
10966
|
# @type PublicTlsAccessEndpoint: String
|
|
10959
10967
|
# @param PublicIpReused: 公网IP是否复用
|
|
10960
10968
|
# @type PublicIpReused: Boolean
|
|
10969
|
+
# @param PublicWebConsoleErrorMessage: 公网控制台接入点操作的错误信息
|
|
10970
|
+
# @type PublicWebConsoleErrorMessage: String
|
|
10971
|
+
# @param VpcWebConsoleErrorMessage: 内网控制台接入点操作的错误信息
|
|
10972
|
+
# @type VpcWebConsoleErrorMessage: String
|
|
10973
|
+
# @param PublicDataStreamErrorMessage: 公网接入点操作的错误信息
|
|
10974
|
+
# @type PublicDataStreamErrorMessage: String
|
|
10961
10975
|
|
|
10962
|
-
attr_accessor :PublicAccessEndpoint, :WebConsoleEndpoint, :WebConsoleUsername, :WebConsolePassword, :PublicAccessEndpointStatus, :PublicControlConsoleSwitchStatus, :VpcControlConsoleSwitchStatus, :VpcWebConsoleEndpoint, :PublicWebConsoleSwitchStatus, :VpcWebConsoleSwitchStatus, :PublicDataStreamStatus, :PrometheusEndpointInfo, :WebConsoleDomainEndpoint, :ControlPlaneEndpointInfo, :PublicTlsAccessEndpoint, :PublicIpReused
|
|
10976
|
+
attr_accessor :PublicAccessEndpoint, :WebConsoleEndpoint, :WebConsoleUsername, :WebConsolePassword, :PublicAccessEndpointStatus, :PublicControlConsoleSwitchStatus, :VpcControlConsoleSwitchStatus, :VpcWebConsoleEndpoint, :PublicWebConsoleSwitchStatus, :VpcWebConsoleSwitchStatus, :PublicDataStreamStatus, :PrometheusEndpointInfo, :WebConsoleDomainEndpoint, :ControlPlaneEndpointInfo, :PublicTlsAccessEndpoint, :PublicIpReused, :PublicWebConsoleErrorMessage, :VpcWebConsoleErrorMessage, :PublicDataStreamErrorMessage
|
|
10963
10977
|
|
|
10964
|
-
def initialize(publicaccessendpoint=nil, webconsoleendpoint=nil, webconsoleusername=nil, webconsolepassword=nil, publicaccessendpointstatus=nil, publiccontrolconsoleswitchstatus=nil, vpccontrolconsoleswitchstatus=nil, vpcwebconsoleendpoint=nil, publicwebconsoleswitchstatus=nil, vpcwebconsoleswitchstatus=nil, publicdatastreamstatus=nil, prometheusendpointinfo=nil, webconsoledomainendpoint=nil, controlplaneendpointinfo=nil, publictlsaccessendpoint=nil, publicipreused=nil)
|
|
10978
|
+
def initialize(publicaccessendpoint=nil, webconsoleendpoint=nil, webconsoleusername=nil, webconsolepassword=nil, publicaccessendpointstatus=nil, publiccontrolconsoleswitchstatus=nil, vpccontrolconsoleswitchstatus=nil, vpcwebconsoleendpoint=nil, publicwebconsoleswitchstatus=nil, vpcwebconsoleswitchstatus=nil, publicdatastreamstatus=nil, prometheusendpointinfo=nil, webconsoledomainendpoint=nil, controlplaneendpointinfo=nil, publictlsaccessendpoint=nil, publicipreused=nil, publicwebconsoleerrormessage=nil, vpcwebconsoleerrormessage=nil, publicdatastreamerrormessage=nil)
|
|
10965
10979
|
@PublicAccessEndpoint = publicaccessendpoint
|
|
10966
10980
|
@WebConsoleEndpoint = webconsoleendpoint
|
|
10967
10981
|
@WebConsoleUsername = webconsoleusername
|
|
@@ -10978,6 +10992,9 @@ module TencentCloud
|
|
|
10978
10992
|
@ControlPlaneEndpointInfo = controlplaneendpointinfo
|
|
10979
10993
|
@PublicTlsAccessEndpoint = publictlsaccessendpoint
|
|
10980
10994
|
@PublicIpReused = publicipreused
|
|
10995
|
+
@PublicWebConsoleErrorMessage = publicwebconsoleerrormessage
|
|
10996
|
+
@VpcWebConsoleErrorMessage = vpcwebconsoleerrormessage
|
|
10997
|
+
@PublicDataStreamErrorMessage = publicdatastreamerrormessage
|
|
10981
10998
|
end
|
|
10982
10999
|
|
|
10983
11000
|
def deserialize(params)
|
|
@@ -11003,6 +11020,9 @@ module TencentCloud
|
|
|
11003
11020
|
end
|
|
11004
11021
|
@PublicTlsAccessEndpoint = params['PublicTlsAccessEndpoint']
|
|
11005
11022
|
@PublicIpReused = params['PublicIpReused']
|
|
11023
|
+
@PublicWebConsoleErrorMessage = params['PublicWebConsoleErrorMessage']
|
|
11024
|
+
@VpcWebConsoleErrorMessage = params['VpcWebConsoleErrorMessage']
|
|
11025
|
+
@PublicDataStreamErrorMessage = params['PublicDataStreamErrorMessage']
|
|
11006
11026
|
end
|
|
11007
11027
|
end
|
|
11008
11028
|
|
|
@@ -11065,10 +11085,18 @@ module TencentCloud
|
|
|
11065
11085
|
# @type Tags: Array
|
|
11066
11086
|
# @param EnableDeletionProtection: 是否已开启删除保护
|
|
11067
11087
|
# @type EnableDeletionProtection: Boolean
|
|
11068
|
-
|
|
11069
|
-
|
|
11070
|
-
|
|
11071
|
-
|
|
11088
|
+
# @param MirroredQueueRisk: 是否有vhost未开启镜像队列风险
|
|
11089
|
+
# @type MirroredQueueRisk: Boolean
|
|
11090
|
+
# @param EnableRiskWarning: 是否提示风险
|
|
11091
|
+
# @type EnableRiskWarning: Boolean
|
|
11092
|
+
# @param ConsumeTimeout: 消费超时时间
|
|
11093
|
+
# @type ConsumeTimeout: Integer
|
|
11094
|
+
# @param ChannelMax: 最大Channel数
|
|
11095
|
+
# @type ChannelMax: Integer
|
|
11096
|
+
|
|
11097
|
+
attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :Vpcs, :ZoneIds, :VirtualHostNumber, :QueueNumber, :MessagePublishRate, :MessageStackNumber, :ExpireTime, :ChannelNumber, :ConnectionNumber, :ConsumerNumber, :ExchangeNumber, :ExceptionInformation, :ClusterStatus, :AutoRenewFlag, :MirrorQueuePolicyFlag, :MessageConsumeRate, :ClusterVersion, :PayMode, :InstanceType, :IsolatedTime, :Container, :Tags, :EnableDeletionProtection, :MirroredQueueRisk, :EnableRiskWarning, :ConsumeTimeout, :ChannelMax
|
|
11098
|
+
|
|
11099
|
+
def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, vpcs=nil, zoneids=nil, virtualhostnumber=nil, queuenumber=nil, messagepublishrate=nil, messagestacknumber=nil, expiretime=nil, channelnumber=nil, connectionnumber=nil, consumernumber=nil, exchangenumber=nil, exceptioninformation=nil, clusterstatus=nil, autorenewflag=nil, mirrorqueuepolicyflag=nil, messageconsumerate=nil, clusterversion=nil, paymode=nil, instancetype=nil, isolatedtime=nil, container=nil, tags=nil, enabledeletionprotection=nil, mirroredqueuerisk=nil, enableriskwarning=nil, consumetimeout=nil, channelmax=nil)
|
|
11072
11100
|
@ClusterId = clusterid
|
|
11073
11101
|
@ClusterName = clustername
|
|
11074
11102
|
@Region = region
|
|
@@ -11097,6 +11125,10 @@ module TencentCloud
|
|
|
11097
11125
|
@Container = container
|
|
11098
11126
|
@Tags = tags
|
|
11099
11127
|
@EnableDeletionProtection = enabledeletionprotection
|
|
11128
|
+
@MirroredQueueRisk = mirroredqueuerisk
|
|
11129
|
+
@EnableRiskWarning = enableriskwarning
|
|
11130
|
+
@ConsumeTimeout = consumetimeout
|
|
11131
|
+
@ChannelMax = channelmax
|
|
11100
11132
|
end
|
|
11101
11133
|
|
|
11102
11134
|
def deserialize(params)
|
|
@@ -11142,6 +11174,10 @@ module TencentCloud
|
|
|
11142
11174
|
end
|
|
11143
11175
|
end
|
|
11144
11176
|
@EnableDeletionProtection = params['EnableDeletionProtection']
|
|
11177
|
+
@MirroredQueueRisk = params['MirroredQueueRisk']
|
|
11178
|
+
@EnableRiskWarning = params['EnableRiskWarning']
|
|
11179
|
+
@ConsumeTimeout = params['ConsumeTimeout']
|
|
11180
|
+
@ChannelMax = params['ChannelMax']
|
|
11145
11181
|
end
|
|
11146
11182
|
end
|
|
11147
11183
|
|
|
@@ -12702,10 +12738,15 @@ module TencentCloud
|
|
|
12702
12738
|
# @type TopicNumUpperLimit: Integer
|
|
12703
12739
|
# @param SendReceiveRatio: 控制生产和消费消息的 TPS 占比,取值范围0~1,默认值为0.5
|
|
12704
12740
|
# @type SendReceiveRatio: Float
|
|
12741
|
+
# @param TpsLimit: 收发 TPS 峰值上限
|
|
12742
|
+
# @type TpsLimit: Integer
|
|
12743
|
+
# @param GeneralSkuCode: 通用集群规格
|
|
12744
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12745
|
+
# @type GeneralSkuCode: String
|
|
12705
12746
|
|
|
12706
|
-
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit, :SendReceiveRatio
|
|
12747
|
+
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit, :SendReceiveRatio, :TpsLimit, :GeneralSkuCode
|
|
12707
12748
|
|
|
12708
|
-
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, sendreceiveratio=nil)
|
|
12749
|
+
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, sendreceiveratio=nil, tpslimit=nil, generalskucode=nil)
|
|
12709
12750
|
@MaxTpsPerNamespace = maxtpspernamespace
|
|
12710
12751
|
@MaxNamespaceNum = maxnamespacenum
|
|
12711
12752
|
@UsedNamespaceNum = usednamespacenum
|
|
@@ -12724,6 +12765,8 @@ module TencentCloud
|
|
|
12724
12765
|
@TopicNumLowerLimit = topicnumlowerlimit
|
|
12725
12766
|
@TopicNumUpperLimit = topicnumupperlimit
|
|
12726
12767
|
@SendReceiveRatio = sendreceiveratio
|
|
12768
|
+
@TpsLimit = tpslimit
|
|
12769
|
+
@GeneralSkuCode = generalskucode
|
|
12727
12770
|
end
|
|
12728
12771
|
|
|
12729
12772
|
def deserialize(params)
|
|
@@ -12759,6 +12802,8 @@ module TencentCloud
|
|
|
12759
12802
|
@TopicNumLowerLimit = params['TopicNumLowerLimit']
|
|
12760
12803
|
@TopicNumUpperLimit = params['TopicNumUpperLimit']
|
|
12761
12804
|
@SendReceiveRatio = params['SendReceiveRatio']
|
|
12805
|
+
@TpsLimit = params['TpsLimit']
|
|
12806
|
+
@GeneralSkuCode = params['GeneralSkuCode']
|
|
12762
12807
|
end
|
|
12763
12808
|
end
|
|
12764
12809
|
|
|
@@ -14353,15 +14398,18 @@ module TencentCloud
|
|
|
14353
14398
|
# @type VpcDataStreamEndpointStatus: String
|
|
14354
14399
|
# @param VpcTlsEndpoint: TLS加密的数据流接入点
|
|
14355
14400
|
# @type VpcTlsEndpoint: String
|
|
14401
|
+
# @param VpcErrorMessage: VPC 接入点操作失败的错误信息
|
|
14402
|
+
# @type VpcErrorMessage: String
|
|
14356
14403
|
|
|
14357
|
-
attr_accessor :VpcId, :SubnetId, :VpcEndpoint, :VpcDataStreamEndpointStatus, :VpcTlsEndpoint
|
|
14404
|
+
attr_accessor :VpcId, :SubnetId, :VpcEndpoint, :VpcDataStreamEndpointStatus, :VpcTlsEndpoint, :VpcErrorMessage
|
|
14358
14405
|
|
|
14359
|
-
def initialize(vpcid=nil, subnetid=nil, vpcendpoint=nil, vpcdatastreamendpointstatus=nil, vpctlsendpoint=nil)
|
|
14406
|
+
def initialize(vpcid=nil, subnetid=nil, vpcendpoint=nil, vpcdatastreamendpointstatus=nil, vpctlsendpoint=nil, vpcerrormessage=nil)
|
|
14360
14407
|
@VpcId = vpcid
|
|
14361
14408
|
@SubnetId = subnetid
|
|
14362
14409
|
@VpcEndpoint = vpcendpoint
|
|
14363
14410
|
@VpcDataStreamEndpointStatus = vpcdatastreamendpointstatus
|
|
14364
14411
|
@VpcTlsEndpoint = vpctlsendpoint
|
|
14412
|
+
@VpcErrorMessage = vpcerrormessage
|
|
14365
14413
|
end
|
|
14366
14414
|
|
|
14367
14415
|
def deserialize(params)
|
|
@@ -14370,6 +14418,7 @@ module TencentCloud
|
|
|
14370
14418
|
@VpcEndpoint = params['VpcEndpoint']
|
|
14371
14419
|
@VpcDataStreamEndpointStatus = params['VpcDataStreamEndpointStatus']
|
|
14372
14420
|
@VpcTlsEndpoint = params['VpcTlsEndpoint']
|
|
14421
|
+
@VpcErrorMessage = params['VpcErrorMessage']
|
|
14373
14422
|
end
|
|
14374
14423
|
end
|
|
14375
14424
|
|
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.1205
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|