pulumi-cloudamqp 3.21.0a1744082841__py3-none-any.whl → 3.22.0__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-cloudamqp might be problematic. Click here for more details.
- pulumi_cloudamqp/__init__.py +3 -0
- pulumi_cloudamqp/_inputs.py +67 -66
- pulumi_cloudamqp/account_action.py +32 -28
- pulumi_cloudamqp/alarm.py +158 -154
- pulumi_cloudamqp/config/__init__.py +1 -0
- pulumi_cloudamqp/config/__init__.pyi +1 -0
- pulumi_cloudamqp/config/vars.py +1 -0
- pulumi_cloudamqp/custom_domain.py +32 -28
- pulumi_cloudamqp/extra_disk_size.py +74 -70
- pulumi_cloudamqp/get_account.py +2 -1
- pulumi_cloudamqp/get_account_vpcs.py +2 -1
- pulumi_cloudamqp/get_alarm.py +30 -29
- pulumi_cloudamqp/get_alarms.py +165 -0
- pulumi_cloudamqp/get_credentials.py +9 -8
- pulumi_cloudamqp/get_instance.py +24 -23
- pulumi_cloudamqp/get_nodes.py +7 -6
- pulumi_cloudamqp/get_notification.py +24 -23
- pulumi_cloudamqp/get_notifications.py +135 -0
- pulumi_cloudamqp/get_plugins.py +17 -16
- pulumi_cloudamqp/get_plugins_community.py +17 -16
- pulumi_cloudamqp/get_upgradable_versions.py +9 -8
- pulumi_cloudamqp/get_vpc_gcp_info.py +25 -24
- pulumi_cloudamqp/get_vpc_info.py +16 -15
- pulumi_cloudamqp/instance.py +200 -196
- pulumi_cloudamqp/integration_aws_eventbridge.py +95 -91
- pulumi_cloudamqp/integration_log.py +368 -364
- pulumi_cloudamqp/integration_metric.py +298 -294
- pulumi_cloudamqp/maintenance_window.py +60 -56
- pulumi_cloudamqp/node_actions.py +53 -49
- pulumi_cloudamqp/notification.py +74 -70
- pulumi_cloudamqp/outputs.py +334 -130
- pulumi_cloudamqp/plugin.py +88 -84
- pulumi_cloudamqp/plugin_community.py +88 -84
- pulumi_cloudamqp/privatelink_aws.py +81 -77
- pulumi_cloudamqp/privatelink_azure.py +81 -77
- pulumi_cloudamqp/provider.py +25 -21
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +172 -168
- pulumi_cloudamqp/security_firewall.py +46 -42
- pulumi_cloudamqp/upgrade_lavinmq.py +32 -28
- pulumi_cloudamqp/upgrade_rabbitmq.py +46 -42
- pulumi_cloudamqp/vpc.py +67 -63
- pulumi_cloudamqp/vpc_connect.py +123 -119
- pulumi_cloudamqp/vpc_gcp_peering.py +109 -105
- pulumi_cloudamqp/vpc_peering.py +81 -77
- pulumi_cloudamqp/webhook.py +102 -98
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/METADATA +1 -1
- pulumi_cloudamqp-3.22.0.dist-info/RECORD +52 -0
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/WHEEL +1 -1
- pulumi_cloudamqp-3.21.0a1744082841.dist-info/RECORD +0 -50
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/top_level.txt +0 -0
pulumi_cloudamqp/outputs.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -21,7 +22,9 @@ __all__ = [
|
|
|
21
22
|
'SecurityFirewallRule',
|
|
22
23
|
'GetAccountInstanceResult',
|
|
23
24
|
'GetAccountVpcsVpcResult',
|
|
25
|
+
'GetAlarmsAlarmResult',
|
|
24
26
|
'GetNodesNodeResult',
|
|
27
|
+
'GetNotificationsRecipientResult',
|
|
25
28
|
'GetPluginsCommunityPluginResult',
|
|
26
29
|
'GetPluginsPluginResult',
|
|
27
30
|
]
|
|
@@ -48,13 +51,13 @@ class ExtraDiskSizeNode(dict):
|
|
|
48
51
|
return super().get(key, default)
|
|
49
52
|
|
|
50
53
|
def __init__(__self__, *,
|
|
51
|
-
additional_disk_size: Optional[int] = None,
|
|
52
|
-
disk_size: Optional[int] = None,
|
|
53
|
-
name: Optional[str] = None):
|
|
54
|
+
additional_disk_size: Optional[builtins.int] = None,
|
|
55
|
+
disk_size: Optional[builtins.int] = None,
|
|
56
|
+
name: Optional[builtins.str] = None):
|
|
54
57
|
"""
|
|
55
|
-
:param int additional_disk_size: Additional added disk size
|
|
56
|
-
:param int disk_size: Subscription plan disk size
|
|
57
|
-
:param str name: Name of the node.
|
|
58
|
+
:param builtins.int additional_disk_size: Additional added disk size
|
|
59
|
+
:param builtins.int disk_size: Subscription plan disk size
|
|
60
|
+
:param builtins.str name: Name of the node.
|
|
58
61
|
"""
|
|
59
62
|
if additional_disk_size is not None:
|
|
60
63
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
@@ -65,7 +68,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
65
68
|
|
|
66
69
|
@property
|
|
67
70
|
@pulumi.getter(name="additionalDiskSize")
|
|
68
|
-
def additional_disk_size(self) -> Optional[int]:
|
|
71
|
+
def additional_disk_size(self) -> Optional[builtins.int]:
|
|
69
72
|
"""
|
|
70
73
|
Additional added disk size
|
|
71
74
|
"""
|
|
@@ -73,7 +76,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
73
76
|
|
|
74
77
|
@property
|
|
75
78
|
@pulumi.getter(name="diskSize")
|
|
76
|
-
def disk_size(self) -> Optional[int]:
|
|
79
|
+
def disk_size(self) -> Optional[builtins.int]:
|
|
77
80
|
"""
|
|
78
81
|
Subscription plan disk size
|
|
79
82
|
"""
|
|
@@ -81,7 +84,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
81
84
|
|
|
82
85
|
@property
|
|
83
86
|
@pulumi.getter
|
|
84
|
-
def name(self) -> Optional[str]:
|
|
87
|
+
def name(self) -> Optional[builtins.str]:
|
|
85
88
|
"""
|
|
86
89
|
Name of the node.
|
|
87
90
|
"""
|
|
@@ -108,14 +111,14 @@ class InstanceCopySetting(dict):
|
|
|
108
111
|
return super().get(key, default)
|
|
109
112
|
|
|
110
113
|
def __init__(__self__, *,
|
|
111
|
-
settings: Sequence[str],
|
|
112
|
-
subscription_id: str):
|
|
114
|
+
settings: Sequence[builtins.str],
|
|
115
|
+
subscription_id: builtins.str):
|
|
113
116
|
"""
|
|
114
|
-
:param Sequence[str] settings: Array of one or more settings to be copied. Allowed values:
|
|
117
|
+
:param Sequence[builtins.str] settings: Array of one or more settings to be copied. Allowed values:
|
|
115
118
|
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
116
119
|
|
|
117
120
|
See more below, [copy settings].
|
|
118
|
-
:param str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
121
|
+
:param builtins.str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
119
122
|
from.
|
|
120
123
|
"""
|
|
121
124
|
pulumi.set(__self__, "settings", settings)
|
|
@@ -123,7 +126,7 @@ class InstanceCopySetting(dict):
|
|
|
123
126
|
|
|
124
127
|
@property
|
|
125
128
|
@pulumi.getter
|
|
126
|
-
def settings(self) -> Sequence[str]:
|
|
129
|
+
def settings(self) -> Sequence[builtins.str]:
|
|
127
130
|
"""
|
|
128
131
|
Array of one or more settings to be copied. Allowed values:
|
|
129
132
|
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
@@ -134,7 +137,7 @@ class InstanceCopySetting(dict):
|
|
|
134
137
|
|
|
135
138
|
@property
|
|
136
139
|
@pulumi.getter(name="subscriptionId")
|
|
137
|
-
def subscription_id(self) -> str:
|
|
140
|
+
def subscription_id(self) -> builtins.str:
|
|
138
141
|
"""
|
|
139
142
|
Instance identifier of the CloudAMQP instance to copy the settings
|
|
140
143
|
from.
|
|
@@ -145,15 +148,15 @@ class InstanceCopySetting(dict):
|
|
|
145
148
|
@pulumi.output_type
|
|
146
149
|
class NotificationResponder(dict):
|
|
147
150
|
def __init__(__self__, *,
|
|
148
|
-
type: str,
|
|
149
|
-
id: Optional[str] = None,
|
|
150
|
-
name: Optional[str] = None,
|
|
151
|
-
username: Optional[str] = None):
|
|
152
|
-
"""
|
|
153
|
-
:param str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
154
|
-
:param str id: Identifier in UUID format
|
|
155
|
-
:param str name: Name of the responder
|
|
156
|
-
:param str username: Username of the responder
|
|
151
|
+
type: builtins.str,
|
|
152
|
+
id: Optional[builtins.str] = None,
|
|
153
|
+
name: Optional[builtins.str] = None,
|
|
154
|
+
username: Optional[builtins.str] = None):
|
|
155
|
+
"""
|
|
156
|
+
:param builtins.str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
157
|
+
:param builtins.str id: Identifier in UUID format
|
|
158
|
+
:param builtins.str name: Name of the responder
|
|
159
|
+
:param builtins.str username: Username of the responder
|
|
157
160
|
|
|
158
161
|
Responders of type `team`, `escalation` and `schedule` can use either id or name.
|
|
159
162
|
While `user` can use either id or username.
|
|
@@ -168,7 +171,7 @@ class NotificationResponder(dict):
|
|
|
168
171
|
|
|
169
172
|
@property
|
|
170
173
|
@pulumi.getter
|
|
171
|
-
def type(self) -> str:
|
|
174
|
+
def type(self) -> builtins.str:
|
|
172
175
|
"""
|
|
173
176
|
Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
174
177
|
"""
|
|
@@ -176,7 +179,7 @@ class NotificationResponder(dict):
|
|
|
176
179
|
|
|
177
180
|
@property
|
|
178
181
|
@pulumi.getter
|
|
179
|
-
def id(self) -> Optional[str]:
|
|
182
|
+
def id(self) -> Optional[builtins.str]:
|
|
180
183
|
"""
|
|
181
184
|
Identifier in UUID format
|
|
182
185
|
"""
|
|
@@ -184,7 +187,7 @@ class NotificationResponder(dict):
|
|
|
184
187
|
|
|
185
188
|
@property
|
|
186
189
|
@pulumi.getter
|
|
187
|
-
def name(self) -> Optional[str]:
|
|
190
|
+
def name(self) -> Optional[builtins.str]:
|
|
188
191
|
"""
|
|
189
192
|
Name of the responder
|
|
190
193
|
"""
|
|
@@ -192,7 +195,7 @@ class NotificationResponder(dict):
|
|
|
192
195
|
|
|
193
196
|
@property
|
|
194
197
|
@pulumi.getter
|
|
195
|
-
def username(self) -> Optional[str]:
|
|
198
|
+
def username(self) -> Optional[builtins.str]:
|
|
196
199
|
"""
|
|
197
200
|
Username of the responder
|
|
198
201
|
|
|
@@ -205,13 +208,13 @@ class NotificationResponder(dict):
|
|
|
205
208
|
@pulumi.output_type
|
|
206
209
|
class SecurityFirewallRule(dict):
|
|
207
210
|
def __init__(__self__, *,
|
|
208
|
-
ip: str,
|
|
209
|
-
description: Optional[str] = None,
|
|
210
|
-
ports: Optional[Sequence[int]] = None,
|
|
211
|
-
services: Optional[Sequence[str]] = None):
|
|
211
|
+
ip: builtins.str,
|
|
212
|
+
description: Optional[builtins.str] = None,
|
|
213
|
+
ports: Optional[Sequence[builtins.int]] = None,
|
|
214
|
+
services: Optional[Sequence[builtins.str]] = None):
|
|
212
215
|
"""
|
|
213
|
-
:param str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
214
|
-
:param str description: Description name of the rule. e.g. Default.
|
|
216
|
+
:param builtins.str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
217
|
+
:param builtins.str description: Description name of the rule. e.g. Default.
|
|
215
218
|
|
|
216
219
|
Pre-defined services for RabbitMQ:
|
|
217
220
|
|
|
@@ -236,8 +239,8 @@ class SecurityFirewallRule(dict):
|
|
|
236
239
|
| HTTPS | 443 |
|
|
237
240
|
| MQTT | 1883 |
|
|
238
241
|
| MQTTS | 8883 |
|
|
239
|
-
:param Sequence[int] ports: Custom ports to be opened
|
|
240
|
-
:param Sequence[str] services: Pre-defined service ports, see table below
|
|
242
|
+
:param Sequence[builtins.int] ports: Custom ports to be opened
|
|
243
|
+
:param Sequence[builtins.str] services: Pre-defined service ports, see table below
|
|
241
244
|
"""
|
|
242
245
|
pulumi.set(__self__, "ip", ip)
|
|
243
246
|
if description is not None:
|
|
@@ -249,7 +252,7 @@ class SecurityFirewallRule(dict):
|
|
|
249
252
|
|
|
250
253
|
@property
|
|
251
254
|
@pulumi.getter
|
|
252
|
-
def ip(self) -> str:
|
|
255
|
+
def ip(self) -> builtins.str:
|
|
253
256
|
"""
|
|
254
257
|
CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
255
258
|
"""
|
|
@@ -257,7 +260,7 @@ class SecurityFirewallRule(dict):
|
|
|
257
260
|
|
|
258
261
|
@property
|
|
259
262
|
@pulumi.getter
|
|
260
|
-
def description(self) -> Optional[str]:
|
|
263
|
+
def description(self) -> Optional[builtins.str]:
|
|
261
264
|
"""
|
|
262
265
|
Description name of the rule. e.g. Default.
|
|
263
266
|
|
|
@@ -289,7 +292,7 @@ class SecurityFirewallRule(dict):
|
|
|
289
292
|
|
|
290
293
|
@property
|
|
291
294
|
@pulumi.getter
|
|
292
|
-
def ports(self) -> Optional[Sequence[int]]:
|
|
295
|
+
def ports(self) -> Optional[Sequence[builtins.int]]:
|
|
293
296
|
"""
|
|
294
297
|
Custom ports to be opened
|
|
295
298
|
"""
|
|
@@ -297,7 +300,7 @@ class SecurityFirewallRule(dict):
|
|
|
297
300
|
|
|
298
301
|
@property
|
|
299
302
|
@pulumi.getter
|
|
300
|
-
def services(self) -> Optional[Sequence[str]]:
|
|
303
|
+
def services(self) -> Optional[Sequence[builtins.str]]:
|
|
301
304
|
"""
|
|
302
305
|
Pre-defined service ports, see table below
|
|
303
306
|
"""
|
|
@@ -307,17 +310,17 @@ class SecurityFirewallRule(dict):
|
|
|
307
310
|
@pulumi.output_type
|
|
308
311
|
class GetAccountInstanceResult(dict):
|
|
309
312
|
def __init__(__self__, *,
|
|
310
|
-
id: int,
|
|
311
|
-
name: str,
|
|
312
|
-
plan: str,
|
|
313
|
-
region: str,
|
|
314
|
-
tags: Optional[Sequence[str]] = None):
|
|
315
|
-
"""
|
|
316
|
-
:param int id: The instance identifier.
|
|
317
|
-
:param str name: The name of the instance.
|
|
318
|
-
:param str plan: The subscription plan used for the instance.
|
|
319
|
-
:param str region: The region were the instanece is located in.
|
|
320
|
-
:param Sequence[str] tags: Optional tags set for the instance.
|
|
313
|
+
id: builtins.int,
|
|
314
|
+
name: builtins.str,
|
|
315
|
+
plan: builtins.str,
|
|
316
|
+
region: builtins.str,
|
|
317
|
+
tags: Optional[Sequence[builtins.str]] = None):
|
|
318
|
+
"""
|
|
319
|
+
:param builtins.int id: The instance identifier.
|
|
320
|
+
:param builtins.str name: The name of the instance.
|
|
321
|
+
:param builtins.str plan: The subscription plan used for the instance.
|
|
322
|
+
:param builtins.str region: The region were the instanece is located in.
|
|
323
|
+
:param Sequence[builtins.str] tags: Optional tags set for the instance.
|
|
321
324
|
"""
|
|
322
325
|
pulumi.set(__self__, "id", id)
|
|
323
326
|
pulumi.set(__self__, "name", name)
|
|
@@ -328,7 +331,7 @@ class GetAccountInstanceResult(dict):
|
|
|
328
331
|
|
|
329
332
|
@property
|
|
330
333
|
@pulumi.getter
|
|
331
|
-
def id(self) -> int:
|
|
334
|
+
def id(self) -> builtins.int:
|
|
332
335
|
"""
|
|
333
336
|
The instance identifier.
|
|
334
337
|
"""
|
|
@@ -336,7 +339,7 @@ class GetAccountInstanceResult(dict):
|
|
|
336
339
|
|
|
337
340
|
@property
|
|
338
341
|
@pulumi.getter
|
|
339
|
-
def name(self) -> str:
|
|
342
|
+
def name(self) -> builtins.str:
|
|
340
343
|
"""
|
|
341
344
|
The name of the instance.
|
|
342
345
|
"""
|
|
@@ -344,7 +347,7 @@ class GetAccountInstanceResult(dict):
|
|
|
344
347
|
|
|
345
348
|
@property
|
|
346
349
|
@pulumi.getter
|
|
347
|
-
def plan(self) -> str:
|
|
350
|
+
def plan(self) -> builtins.str:
|
|
348
351
|
"""
|
|
349
352
|
The subscription plan used for the instance.
|
|
350
353
|
"""
|
|
@@ -352,7 +355,7 @@ class GetAccountInstanceResult(dict):
|
|
|
352
355
|
|
|
353
356
|
@property
|
|
354
357
|
@pulumi.getter
|
|
355
|
-
def region(self) -> str:
|
|
358
|
+
def region(self) -> builtins.str:
|
|
356
359
|
"""
|
|
357
360
|
The region were the instanece is located in.
|
|
358
361
|
"""
|
|
@@ -360,7 +363,7 @@ class GetAccountInstanceResult(dict):
|
|
|
360
363
|
|
|
361
364
|
@property
|
|
362
365
|
@pulumi.getter
|
|
363
|
-
def tags(self) -> Optional[Sequence[str]]:
|
|
366
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
|
364
367
|
"""
|
|
365
368
|
Optional tags set for the instance.
|
|
366
369
|
"""
|
|
@@ -370,19 +373,19 @@ class GetAccountInstanceResult(dict):
|
|
|
370
373
|
@pulumi.output_type
|
|
371
374
|
class GetAccountVpcsVpcResult(dict):
|
|
372
375
|
def __init__(__self__, *,
|
|
373
|
-
id: int,
|
|
374
|
-
name: str,
|
|
375
|
-
region: str,
|
|
376
|
-
subnet: str,
|
|
377
|
-
vpc_name: str,
|
|
378
|
-
tags: Optional[Sequence[str]] = None):
|
|
379
|
-
"""
|
|
380
|
-
:param int id: The VPC identifier.
|
|
381
|
-
:param str name: The VPC instance name.
|
|
382
|
-
:param str region: The region the VPC is hosted in.
|
|
383
|
-
:param str subnet: The VPC subnet.
|
|
384
|
-
:param str vpc_name: VPC name given when hosted at the cloud provider.
|
|
385
|
-
:param Sequence[str] tags: Optional tags set for the VPC.
|
|
376
|
+
id: builtins.int,
|
|
377
|
+
name: builtins.str,
|
|
378
|
+
region: builtins.str,
|
|
379
|
+
subnet: builtins.str,
|
|
380
|
+
vpc_name: builtins.str,
|
|
381
|
+
tags: Optional[Sequence[builtins.str]] = None):
|
|
382
|
+
"""
|
|
383
|
+
:param builtins.int id: The VPC identifier.
|
|
384
|
+
:param builtins.str name: The VPC instance name.
|
|
385
|
+
:param builtins.str region: The region the VPC is hosted in.
|
|
386
|
+
:param builtins.str subnet: The VPC subnet.
|
|
387
|
+
:param builtins.str vpc_name: VPC name given when hosted at the cloud provider.
|
|
388
|
+
:param Sequence[builtins.str] tags: Optional tags set for the VPC.
|
|
386
389
|
"""
|
|
387
390
|
pulumi.set(__self__, "id", id)
|
|
388
391
|
pulumi.set(__self__, "name", name)
|
|
@@ -394,7 +397,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
394
397
|
|
|
395
398
|
@property
|
|
396
399
|
@pulumi.getter
|
|
397
|
-
def id(self) -> int:
|
|
400
|
+
def id(self) -> builtins.int:
|
|
398
401
|
"""
|
|
399
402
|
The VPC identifier.
|
|
400
403
|
"""
|
|
@@ -402,7 +405,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
402
405
|
|
|
403
406
|
@property
|
|
404
407
|
@pulumi.getter
|
|
405
|
-
def name(self) -> str:
|
|
408
|
+
def name(self) -> builtins.str:
|
|
406
409
|
"""
|
|
407
410
|
The VPC instance name.
|
|
408
411
|
"""
|
|
@@ -410,7 +413,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
410
413
|
|
|
411
414
|
@property
|
|
412
415
|
@pulumi.getter
|
|
413
|
-
def region(self) -> str:
|
|
416
|
+
def region(self) -> builtins.str:
|
|
414
417
|
"""
|
|
415
418
|
The region the VPC is hosted in.
|
|
416
419
|
"""
|
|
@@ -418,7 +421,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
418
421
|
|
|
419
422
|
@property
|
|
420
423
|
@pulumi.getter
|
|
421
|
-
def subnet(self) -> str:
|
|
424
|
+
def subnet(self) -> builtins.str:
|
|
422
425
|
"""
|
|
423
426
|
The VPC subnet.
|
|
424
427
|
"""
|
|
@@ -426,7 +429,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
426
429
|
|
|
427
430
|
@property
|
|
428
431
|
@pulumi.getter(name="vpcName")
|
|
429
|
-
def vpc_name(self) -> str:
|
|
432
|
+
def vpc_name(self) -> builtins.str:
|
|
430
433
|
"""
|
|
431
434
|
VPC name given when hosted at the cloud provider.
|
|
432
435
|
"""
|
|
@@ -434,39 +437,178 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
434
437
|
|
|
435
438
|
@property
|
|
436
439
|
@pulumi.getter
|
|
437
|
-
def tags(self) -> Optional[Sequence[str]]:
|
|
440
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
|
438
441
|
"""
|
|
439
442
|
Optional tags set for the VPC.
|
|
440
443
|
"""
|
|
441
444
|
return pulumi.get(self, "tags")
|
|
442
445
|
|
|
443
446
|
|
|
447
|
+
@pulumi.output_type
|
|
448
|
+
class GetAlarmsAlarmResult(dict):
|
|
449
|
+
def __init__(__self__, *,
|
|
450
|
+
enabled: builtins.bool,
|
|
451
|
+
message_type: builtins.str,
|
|
452
|
+
queue_regex: builtins.str,
|
|
453
|
+
recipients: Sequence[builtins.int],
|
|
454
|
+
reminder_interval: builtins.int,
|
|
455
|
+
time_threshold: builtins.int,
|
|
456
|
+
value_threshold: builtins.int,
|
|
457
|
+
vhost_regex: builtins.str,
|
|
458
|
+
alarm_id: Optional[builtins.int] = None,
|
|
459
|
+
type: Optional[builtins.str] = None,
|
|
460
|
+
value_calculation: Optional[builtins.str] = None):
|
|
461
|
+
"""
|
|
462
|
+
:param builtins.bool enabled: Enable/disable status of the alarm.
|
|
463
|
+
:param builtins.str message_type: Message type `(total, unacked, ready)` used by queue alarm type.
|
|
464
|
+
:param builtins.str queue_regex: Regular expression for which queue to check.
|
|
465
|
+
:param Sequence[builtins.int] recipients: Identifier for recipient to be notified.
|
|
466
|
+
:param builtins.int reminder_interval: The reminder interval (in seconds) to resend the alarm if not resolved.
|
|
467
|
+
Set to 0 for no reminders.
|
|
468
|
+
:param builtins.int time_threshold: The time interval (in seconds) the `value_threshold` should be active
|
|
469
|
+
before trigger an alarm.
|
|
470
|
+
:param builtins.int value_threshold: The value threshold that triggers the alarm.
|
|
471
|
+
:param builtins.str vhost_regex: Regular expression for which vhost to check
|
|
472
|
+
:param builtins.int alarm_id: The alarm identifier.
|
|
473
|
+
:param builtins.str type: The alarm type to filter for. Supported
|
|
474
|
+
alarm types.
|
|
475
|
+
:param builtins.str value_calculation: Disk value threshold calculation, `(fixed, percentage)` of disk space
|
|
476
|
+
remaining.
|
|
477
|
+
"""
|
|
478
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
479
|
+
pulumi.set(__self__, "message_type", message_type)
|
|
480
|
+
pulumi.set(__self__, "queue_regex", queue_regex)
|
|
481
|
+
pulumi.set(__self__, "recipients", recipients)
|
|
482
|
+
pulumi.set(__self__, "reminder_interval", reminder_interval)
|
|
483
|
+
pulumi.set(__self__, "time_threshold", time_threshold)
|
|
484
|
+
pulumi.set(__self__, "value_threshold", value_threshold)
|
|
485
|
+
pulumi.set(__self__, "vhost_regex", vhost_regex)
|
|
486
|
+
if alarm_id is not None:
|
|
487
|
+
pulumi.set(__self__, "alarm_id", alarm_id)
|
|
488
|
+
if type is not None:
|
|
489
|
+
pulumi.set(__self__, "type", type)
|
|
490
|
+
if value_calculation is not None:
|
|
491
|
+
pulumi.set(__self__, "value_calculation", value_calculation)
|
|
492
|
+
|
|
493
|
+
@property
|
|
494
|
+
@pulumi.getter
|
|
495
|
+
def enabled(self) -> builtins.bool:
|
|
496
|
+
"""
|
|
497
|
+
Enable/disable status of the alarm.
|
|
498
|
+
"""
|
|
499
|
+
return pulumi.get(self, "enabled")
|
|
500
|
+
|
|
501
|
+
@property
|
|
502
|
+
@pulumi.getter(name="messageType")
|
|
503
|
+
def message_type(self) -> builtins.str:
|
|
504
|
+
"""
|
|
505
|
+
Message type `(total, unacked, ready)` used by queue alarm type.
|
|
506
|
+
"""
|
|
507
|
+
return pulumi.get(self, "message_type")
|
|
508
|
+
|
|
509
|
+
@property
|
|
510
|
+
@pulumi.getter(name="queueRegex")
|
|
511
|
+
def queue_regex(self) -> builtins.str:
|
|
512
|
+
"""
|
|
513
|
+
Regular expression for which queue to check.
|
|
514
|
+
"""
|
|
515
|
+
return pulumi.get(self, "queue_regex")
|
|
516
|
+
|
|
517
|
+
@property
|
|
518
|
+
@pulumi.getter
|
|
519
|
+
def recipients(self) -> Sequence[builtins.int]:
|
|
520
|
+
"""
|
|
521
|
+
Identifier for recipient to be notified.
|
|
522
|
+
"""
|
|
523
|
+
return pulumi.get(self, "recipients")
|
|
524
|
+
|
|
525
|
+
@property
|
|
526
|
+
@pulumi.getter(name="reminderInterval")
|
|
527
|
+
def reminder_interval(self) -> builtins.int:
|
|
528
|
+
"""
|
|
529
|
+
The reminder interval (in seconds) to resend the alarm if not resolved.
|
|
530
|
+
Set to 0 for no reminders.
|
|
531
|
+
"""
|
|
532
|
+
return pulumi.get(self, "reminder_interval")
|
|
533
|
+
|
|
534
|
+
@property
|
|
535
|
+
@pulumi.getter(name="timeThreshold")
|
|
536
|
+
def time_threshold(self) -> builtins.int:
|
|
537
|
+
"""
|
|
538
|
+
The time interval (in seconds) the `value_threshold` should be active
|
|
539
|
+
before trigger an alarm.
|
|
540
|
+
"""
|
|
541
|
+
return pulumi.get(self, "time_threshold")
|
|
542
|
+
|
|
543
|
+
@property
|
|
544
|
+
@pulumi.getter(name="valueThreshold")
|
|
545
|
+
def value_threshold(self) -> builtins.int:
|
|
546
|
+
"""
|
|
547
|
+
The value threshold that triggers the alarm.
|
|
548
|
+
"""
|
|
549
|
+
return pulumi.get(self, "value_threshold")
|
|
550
|
+
|
|
551
|
+
@property
|
|
552
|
+
@pulumi.getter(name="vhostRegex")
|
|
553
|
+
def vhost_regex(self) -> builtins.str:
|
|
554
|
+
"""
|
|
555
|
+
Regular expression for which vhost to check
|
|
556
|
+
"""
|
|
557
|
+
return pulumi.get(self, "vhost_regex")
|
|
558
|
+
|
|
559
|
+
@property
|
|
560
|
+
@pulumi.getter(name="alarmId")
|
|
561
|
+
def alarm_id(self) -> Optional[builtins.int]:
|
|
562
|
+
"""
|
|
563
|
+
The alarm identifier.
|
|
564
|
+
"""
|
|
565
|
+
return pulumi.get(self, "alarm_id")
|
|
566
|
+
|
|
567
|
+
@property
|
|
568
|
+
@pulumi.getter
|
|
569
|
+
def type(self) -> Optional[builtins.str]:
|
|
570
|
+
"""
|
|
571
|
+
The alarm type to filter for. Supported
|
|
572
|
+
alarm types.
|
|
573
|
+
"""
|
|
574
|
+
return pulumi.get(self, "type")
|
|
575
|
+
|
|
576
|
+
@property
|
|
577
|
+
@pulumi.getter(name="valueCalculation")
|
|
578
|
+
def value_calculation(self) -> Optional[builtins.str]:
|
|
579
|
+
"""
|
|
580
|
+
Disk value threshold calculation, `(fixed, percentage)` of disk space
|
|
581
|
+
remaining.
|
|
582
|
+
"""
|
|
583
|
+
return pulumi.get(self, "value_calculation")
|
|
584
|
+
|
|
585
|
+
|
|
444
586
|
@pulumi.output_type
|
|
445
587
|
class GetNodesNodeResult(dict):
|
|
446
588
|
def __init__(__self__, *,
|
|
447
|
-
additional_disk_size: int,
|
|
448
|
-
availability_zone: str,
|
|
449
|
-
configured: bool,
|
|
450
|
-
disk_size: int,
|
|
451
|
-
erlang_version: str,
|
|
452
|
-
hipe: bool,
|
|
453
|
-
hostname: str,
|
|
454
|
-
hostname_internal: str,
|
|
455
|
-
name: str,
|
|
456
|
-
rabbitmq_version: str,
|
|
457
|
-
running: bool):
|
|
458
|
-
"""
|
|
459
|
-
:param int additional_disk_size: Additional added disk size
|
|
460
|
-
:param str availability_zone: Availability zone the node is hosted in.
|
|
461
|
-
:param bool configured: Is the node configured?
|
|
462
|
-
:param int disk_size: Subscription plan disk size
|
|
463
|
-
:param str erlang_version: Currently used Erlang version on the node.
|
|
464
|
-
:param bool hipe: Enable or disable High-performance Erlang.
|
|
465
|
-
:param str hostname: External hostname assigned to the node.
|
|
466
|
-
:param str hostname_internal: Internal hostname assigned to the node.
|
|
467
|
-
:param str name: Name of the node.
|
|
468
|
-
:param str rabbitmq_version: Currently configured Rabbit MQ version on the node.
|
|
469
|
-
:param bool running: Is the node running?
|
|
589
|
+
additional_disk_size: builtins.int,
|
|
590
|
+
availability_zone: builtins.str,
|
|
591
|
+
configured: builtins.bool,
|
|
592
|
+
disk_size: builtins.int,
|
|
593
|
+
erlang_version: builtins.str,
|
|
594
|
+
hipe: builtins.bool,
|
|
595
|
+
hostname: builtins.str,
|
|
596
|
+
hostname_internal: builtins.str,
|
|
597
|
+
name: builtins.str,
|
|
598
|
+
rabbitmq_version: builtins.str,
|
|
599
|
+
running: builtins.bool):
|
|
600
|
+
"""
|
|
601
|
+
:param builtins.int additional_disk_size: Additional added disk size
|
|
602
|
+
:param builtins.str availability_zone: Availability zone the node is hosted in.
|
|
603
|
+
:param builtins.bool configured: Is the node configured?
|
|
604
|
+
:param builtins.int disk_size: Subscription plan disk size
|
|
605
|
+
:param builtins.str erlang_version: Currently used Erlang version on the node.
|
|
606
|
+
:param builtins.bool hipe: Enable or disable High-performance Erlang.
|
|
607
|
+
:param builtins.str hostname: External hostname assigned to the node.
|
|
608
|
+
:param builtins.str hostname_internal: Internal hostname assigned to the node.
|
|
609
|
+
:param builtins.str name: Name of the node.
|
|
610
|
+
:param builtins.str rabbitmq_version: Currently configured Rabbit MQ version on the node.
|
|
611
|
+
:param builtins.bool running: Is the node running?
|
|
470
612
|
"""
|
|
471
613
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
472
614
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
@@ -482,7 +624,7 @@ class GetNodesNodeResult(dict):
|
|
|
482
624
|
|
|
483
625
|
@property
|
|
484
626
|
@pulumi.getter(name="additionalDiskSize")
|
|
485
|
-
def additional_disk_size(self) -> int:
|
|
627
|
+
def additional_disk_size(self) -> builtins.int:
|
|
486
628
|
"""
|
|
487
629
|
Additional added disk size
|
|
488
630
|
"""
|
|
@@ -490,7 +632,7 @@ class GetNodesNodeResult(dict):
|
|
|
490
632
|
|
|
491
633
|
@property
|
|
492
634
|
@pulumi.getter(name="availabilityZone")
|
|
493
|
-
def availability_zone(self) -> str:
|
|
635
|
+
def availability_zone(self) -> builtins.str:
|
|
494
636
|
"""
|
|
495
637
|
Availability zone the node is hosted in.
|
|
496
638
|
"""
|
|
@@ -498,7 +640,7 @@ class GetNodesNodeResult(dict):
|
|
|
498
640
|
|
|
499
641
|
@property
|
|
500
642
|
@pulumi.getter
|
|
501
|
-
def configured(self) -> bool:
|
|
643
|
+
def configured(self) -> builtins.bool:
|
|
502
644
|
"""
|
|
503
645
|
Is the node configured?
|
|
504
646
|
"""
|
|
@@ -506,7 +648,7 @@ class GetNodesNodeResult(dict):
|
|
|
506
648
|
|
|
507
649
|
@property
|
|
508
650
|
@pulumi.getter(name="diskSize")
|
|
509
|
-
def disk_size(self) -> int:
|
|
651
|
+
def disk_size(self) -> builtins.int:
|
|
510
652
|
"""
|
|
511
653
|
Subscription plan disk size
|
|
512
654
|
"""
|
|
@@ -514,7 +656,7 @@ class GetNodesNodeResult(dict):
|
|
|
514
656
|
|
|
515
657
|
@property
|
|
516
658
|
@pulumi.getter(name="erlangVersion")
|
|
517
|
-
def erlang_version(self) -> str:
|
|
659
|
+
def erlang_version(self) -> builtins.str:
|
|
518
660
|
"""
|
|
519
661
|
Currently used Erlang version on the node.
|
|
520
662
|
"""
|
|
@@ -522,7 +664,7 @@ class GetNodesNodeResult(dict):
|
|
|
522
664
|
|
|
523
665
|
@property
|
|
524
666
|
@pulumi.getter
|
|
525
|
-
def hipe(self) -> bool:
|
|
667
|
+
def hipe(self) -> builtins.bool:
|
|
526
668
|
"""
|
|
527
669
|
Enable or disable High-performance Erlang.
|
|
528
670
|
"""
|
|
@@ -530,7 +672,7 @@ class GetNodesNodeResult(dict):
|
|
|
530
672
|
|
|
531
673
|
@property
|
|
532
674
|
@pulumi.getter
|
|
533
|
-
def hostname(self) -> str:
|
|
675
|
+
def hostname(self) -> builtins.str:
|
|
534
676
|
"""
|
|
535
677
|
External hostname assigned to the node.
|
|
536
678
|
"""
|
|
@@ -538,7 +680,7 @@ class GetNodesNodeResult(dict):
|
|
|
538
680
|
|
|
539
681
|
@property
|
|
540
682
|
@pulumi.getter(name="hostnameInternal")
|
|
541
|
-
def hostname_internal(self) -> str:
|
|
683
|
+
def hostname_internal(self) -> builtins.str:
|
|
542
684
|
"""
|
|
543
685
|
Internal hostname assigned to the node.
|
|
544
686
|
"""
|
|
@@ -546,7 +688,7 @@ class GetNodesNodeResult(dict):
|
|
|
546
688
|
|
|
547
689
|
@property
|
|
548
690
|
@pulumi.getter
|
|
549
|
-
def name(self) -> str:
|
|
691
|
+
def name(self) -> builtins.str:
|
|
550
692
|
"""
|
|
551
693
|
Name of the node.
|
|
552
694
|
"""
|
|
@@ -554,7 +696,7 @@ class GetNodesNodeResult(dict):
|
|
|
554
696
|
|
|
555
697
|
@property
|
|
556
698
|
@pulumi.getter(name="rabbitmqVersion")
|
|
557
|
-
def rabbitmq_version(self) -> str:
|
|
699
|
+
def rabbitmq_version(self) -> builtins.str:
|
|
558
700
|
"""
|
|
559
701
|
Currently configured Rabbit MQ version on the node.
|
|
560
702
|
"""
|
|
@@ -562,23 +704,85 @@ class GetNodesNodeResult(dict):
|
|
|
562
704
|
|
|
563
705
|
@property
|
|
564
706
|
@pulumi.getter
|
|
565
|
-
def running(self) -> bool:
|
|
707
|
+
def running(self) -> builtins.bool:
|
|
566
708
|
"""
|
|
567
709
|
Is the node running?
|
|
568
710
|
"""
|
|
569
711
|
return pulumi.get(self, "running")
|
|
570
712
|
|
|
571
713
|
|
|
714
|
+
@pulumi.output_type
|
|
715
|
+
class GetNotificationsRecipientResult(dict):
|
|
716
|
+
def __init__(__self__, *,
|
|
717
|
+
name: builtins.str,
|
|
718
|
+
options: Mapping[str, builtins.str],
|
|
719
|
+
recipient_id: builtins.int,
|
|
720
|
+
type: builtins.str,
|
|
721
|
+
value: builtins.str):
|
|
722
|
+
"""
|
|
723
|
+
:param builtins.str name: The name of the recipient.
|
|
724
|
+
:param Mapping[str, builtins.str] options: Options argument (e.g. `rk` used for VictorOps routing key).
|
|
725
|
+
:param builtins.int recipient_id: The identifier for the recipient.
|
|
726
|
+
:param builtins.str type: The type of the recipient.
|
|
727
|
+
:param builtins.str value: The notification endpoint, where to send the notification.
|
|
728
|
+
"""
|
|
729
|
+
pulumi.set(__self__, "name", name)
|
|
730
|
+
pulumi.set(__self__, "options", options)
|
|
731
|
+
pulumi.set(__self__, "recipient_id", recipient_id)
|
|
732
|
+
pulumi.set(__self__, "type", type)
|
|
733
|
+
pulumi.set(__self__, "value", value)
|
|
734
|
+
|
|
735
|
+
@property
|
|
736
|
+
@pulumi.getter
|
|
737
|
+
def name(self) -> builtins.str:
|
|
738
|
+
"""
|
|
739
|
+
The name of the recipient.
|
|
740
|
+
"""
|
|
741
|
+
return pulumi.get(self, "name")
|
|
742
|
+
|
|
743
|
+
@property
|
|
744
|
+
@pulumi.getter
|
|
745
|
+
def options(self) -> Mapping[str, builtins.str]:
|
|
746
|
+
"""
|
|
747
|
+
Options argument (e.g. `rk` used for VictorOps routing key).
|
|
748
|
+
"""
|
|
749
|
+
return pulumi.get(self, "options")
|
|
750
|
+
|
|
751
|
+
@property
|
|
752
|
+
@pulumi.getter(name="recipientId")
|
|
753
|
+
def recipient_id(self) -> builtins.int:
|
|
754
|
+
"""
|
|
755
|
+
The identifier for the recipient.
|
|
756
|
+
"""
|
|
757
|
+
return pulumi.get(self, "recipient_id")
|
|
758
|
+
|
|
759
|
+
@property
|
|
760
|
+
@pulumi.getter
|
|
761
|
+
def type(self) -> builtins.str:
|
|
762
|
+
"""
|
|
763
|
+
The type of the recipient.
|
|
764
|
+
"""
|
|
765
|
+
return pulumi.get(self, "type")
|
|
766
|
+
|
|
767
|
+
@property
|
|
768
|
+
@pulumi.getter
|
|
769
|
+
def value(self) -> builtins.str:
|
|
770
|
+
"""
|
|
771
|
+
The notification endpoint, where to send the notification.
|
|
772
|
+
"""
|
|
773
|
+
return pulumi.get(self, "value")
|
|
774
|
+
|
|
775
|
+
|
|
572
776
|
@pulumi.output_type
|
|
573
777
|
class GetPluginsCommunityPluginResult(dict):
|
|
574
778
|
def __init__(__self__, *,
|
|
575
|
-
description: str,
|
|
576
|
-
name: str,
|
|
577
|
-
require: str):
|
|
779
|
+
description: builtins.str,
|
|
780
|
+
name: builtins.str,
|
|
781
|
+
require: builtins.str):
|
|
578
782
|
"""
|
|
579
|
-
:param str description: Description of what the plugin does.
|
|
580
|
-
:param str name: The type of the recipient.
|
|
581
|
-
:param str require: Min. required Rabbit MQ version to be used.
|
|
783
|
+
:param builtins.str description: Description of what the plugin does.
|
|
784
|
+
:param builtins.str name: The type of the recipient.
|
|
785
|
+
:param builtins.str require: Min. required Rabbit MQ version to be used.
|
|
582
786
|
"""
|
|
583
787
|
pulumi.set(__self__, "description", description)
|
|
584
788
|
pulumi.set(__self__, "name", name)
|
|
@@ -586,7 +790,7 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
586
790
|
|
|
587
791
|
@property
|
|
588
792
|
@pulumi.getter
|
|
589
|
-
def description(self) -> str:
|
|
793
|
+
def description(self) -> builtins.str:
|
|
590
794
|
"""
|
|
591
795
|
Description of what the plugin does.
|
|
592
796
|
"""
|
|
@@ -594,7 +798,7 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
594
798
|
|
|
595
799
|
@property
|
|
596
800
|
@pulumi.getter
|
|
597
|
-
def name(self) -> str:
|
|
801
|
+
def name(self) -> builtins.str:
|
|
598
802
|
"""
|
|
599
803
|
The type of the recipient.
|
|
600
804
|
"""
|
|
@@ -602,7 +806,7 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
602
806
|
|
|
603
807
|
@property
|
|
604
808
|
@pulumi.getter
|
|
605
|
-
def require(self) -> str:
|
|
809
|
+
def require(self) -> builtins.str:
|
|
606
810
|
"""
|
|
607
811
|
Min. required Rabbit MQ version to be used.
|
|
608
812
|
"""
|
|
@@ -612,15 +816,15 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
612
816
|
@pulumi.output_type
|
|
613
817
|
class GetPluginsPluginResult(dict):
|
|
614
818
|
def __init__(__self__, *,
|
|
615
|
-
description: str,
|
|
616
|
-
enabled: bool,
|
|
617
|
-
name: str,
|
|
618
|
-
version: str):
|
|
819
|
+
description: builtins.str,
|
|
820
|
+
enabled: builtins.bool,
|
|
821
|
+
name: builtins.str,
|
|
822
|
+
version: builtins.str):
|
|
619
823
|
"""
|
|
620
|
-
:param str description: Description of what the plugin does.
|
|
621
|
-
:param bool enabled: Enable or disable information for the plugin.
|
|
622
|
-
:param str name: The type of the recipient.
|
|
623
|
-
:param str version: Rabbit MQ version that the plugins are shipped with.
|
|
824
|
+
:param builtins.str description: Description of what the plugin does.
|
|
825
|
+
:param builtins.bool enabled: Enable or disable information for the plugin.
|
|
826
|
+
:param builtins.str name: The type of the recipient.
|
|
827
|
+
:param builtins.str version: Rabbit MQ version that the plugins are shipped with.
|
|
624
828
|
"""
|
|
625
829
|
pulumi.set(__self__, "description", description)
|
|
626
830
|
pulumi.set(__self__, "enabled", enabled)
|
|
@@ -629,7 +833,7 @@ class GetPluginsPluginResult(dict):
|
|
|
629
833
|
|
|
630
834
|
@property
|
|
631
835
|
@pulumi.getter
|
|
632
|
-
def description(self) -> str:
|
|
836
|
+
def description(self) -> builtins.str:
|
|
633
837
|
"""
|
|
634
838
|
Description of what the plugin does.
|
|
635
839
|
"""
|
|
@@ -637,7 +841,7 @@ class GetPluginsPluginResult(dict):
|
|
|
637
841
|
|
|
638
842
|
@property
|
|
639
843
|
@pulumi.getter
|
|
640
|
-
def enabled(self) -> bool:
|
|
844
|
+
def enabled(self) -> builtins.bool:
|
|
641
845
|
"""
|
|
642
846
|
Enable or disable information for the plugin.
|
|
643
847
|
"""
|
|
@@ -645,7 +849,7 @@ class GetPluginsPluginResult(dict):
|
|
|
645
849
|
|
|
646
850
|
@property
|
|
647
851
|
@pulumi.getter
|
|
648
|
-
def name(self) -> str:
|
|
852
|
+
def name(self) -> builtins.str:
|
|
649
853
|
"""
|
|
650
854
|
The type of the recipient.
|
|
651
855
|
"""
|
|
@@ -653,7 +857,7 @@ class GetPluginsPluginResult(dict):
|
|
|
653
857
|
|
|
654
858
|
@property
|
|
655
859
|
@pulumi.getter
|
|
656
|
-
def version(self) -> str:
|
|
860
|
+
def version(self) -> builtins.str:
|
|
657
861
|
"""
|
|
658
862
|
Rabbit MQ version that the plugins are shipped with.
|
|
659
863
|
"""
|