Class: TencentCloud::Trabbit::V20230418::DescribeRabbitMQServerlessInstanceResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trabbit::V20230418::DescribeRabbitMQServerlessInstanceResponse
- Defined in:
- lib/v20230418/models.rb
Overview
DescribeRabbitMQServerlessInstance返回参数结构体
Instance Attribute Summary collapse
- #ClusterInfo ⇒ Object
- #ClusterNetInfo ⇒ Object
- #ClusterSpecInfo ⇒ Object
- #ClusterWhiteListInfo ⇒ Object
- #ExchangeQuota ⇒ Object
- #QueueQuota ⇒ Object
- #RequestId ⇒ Object
- #UserQuota ⇒ Object
- #VirtualHostQuota ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(clusterinfo = nil, clusterspecinfo = nil, virtualhostquota = nil, exchangequota = nil, queuequota = nil, clusternetinfo = nil, clusterwhitelistinfo = nil, userquota = nil, requestid = nil) ⇒ DescribeRabbitMQServerlessInstanceResponse
constructor
A new instance of DescribeRabbitMQServerlessInstanceResponse.
Constructor Details
#initialize(clusterinfo = nil, clusterspecinfo = nil, virtualhostquota = nil, exchangequota = nil, queuequota = nil, clusternetinfo = nil, clusterwhitelistinfo = nil, userquota = nil, requestid = nil) ⇒ DescribeRabbitMQServerlessInstanceResponse
Returns a new instance of DescribeRabbitMQServerlessInstanceResponse.
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'lib/v20230418/models.rb', line 1074 def initialize(clusterinfo=nil, clusterspecinfo=nil, virtualhostquota=nil, exchangequota=nil, queuequota=nil, clusternetinfo=nil, clusterwhitelistinfo=nil, userquota=nil, requestid=nil) @ClusterInfo = clusterinfo @ClusterSpecInfo = clusterspecinfo @VirtualHostQuota = virtualhostquota @ExchangeQuota = exchangequota @QueueQuota = queuequota @ClusterNetInfo = clusternetinfo @ClusterWhiteListInfo = clusterwhitelistinfo @UserQuota = userquota @RequestId = requestid end |
Instance Attribute Details
#ClusterInfo ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def ClusterInfo @ClusterInfo end |
#ClusterNetInfo ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def ClusterNetInfo @ClusterNetInfo end |
#ClusterSpecInfo ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def ClusterSpecInfo @ClusterSpecInfo end |
#ClusterWhiteListInfo ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def ClusterWhiteListInfo @ClusterWhiteListInfo end |
#ExchangeQuota ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def ExchangeQuota @ExchangeQuota end |
#QueueQuota ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def QueueQuota @QueueQuota end |
#RequestId ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def RequestId @RequestId end |
#UserQuota ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def UserQuota @UserQuota end |
#VirtualHostQuota ⇒ Object
1072 1073 1074 |
# File 'lib/v20230418/models.rb', line 1072 def VirtualHostQuota @VirtualHostQuota end |
Instance Method Details
#deserialize(params) ⇒ Object
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 |
# File 'lib/v20230418/models.rb', line 1086 def deserialize(params) unless params['ClusterInfo'].nil? @ClusterInfo = RabbitMQClusterInfo.new @ClusterInfo.deserialize(params['ClusterInfo']) end unless params['ClusterSpecInfo'].nil? @ClusterSpecInfo = RabbitMQClusterSpecInfo.new @ClusterSpecInfo.deserialize(params['ClusterSpecInfo']) end unless params['VirtualHostQuota'].nil? @VirtualHostQuota = VirtualHostQuota.new @VirtualHostQuota.deserialize(params['VirtualHostQuota']) end unless params['ExchangeQuota'].nil? @ExchangeQuota = ExchangeQuota.new @ExchangeQuota.deserialize(params['ExchangeQuota']) end unless params['QueueQuota'].nil? @QueueQuota = QueueQuota.new @QueueQuota.deserialize(params['QueueQuota']) end unless params['ClusterNetInfo'].nil? @ClusterNetInfo = RabbitMQServerlessAccessInfo.new @ClusterNetInfo.deserialize(params['ClusterNetInfo']) end unless params['ClusterWhiteListInfo'].nil? @ClusterWhiteListInfo = RabbitMQServerlessWhiteListInfo.new @ClusterWhiteListInfo.deserialize(params['ClusterWhiteListInfo']) end unless params['UserQuota'].nil? @UserQuota = UserQuota.new @UserQuota.deserialize(params['UserQuota']) end @RequestId = params['RequestId'] end |