pulumi-cloudamqp 3.21.0a1743571485__py3-none-any.whl → 3.22.0a1744182778__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 +10 -0
- pulumi_cloudamqp/_inputs.py +92 -72
- pulumi_cloudamqp/account_action.py +39 -31
- pulumi_cloudamqp/alarm.py +229 -168
- 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 +81 -38
- pulumi_cloudamqp/extra_disk_size.py +172 -155
- pulumi_cloudamqp/get_account.py +10 -3
- pulumi_cloudamqp/get_account_vpcs.py +15 -41
- pulumi_cloudamqp/get_alarm.py +74 -67
- pulumi_cloudamqp/get_credentials.py +19 -26
- pulumi_cloudamqp/get_instance.py +75 -25
- pulumi_cloudamqp/get_nodes.py +10 -56
- pulumi_cloudamqp/get_notification.py +39 -41
- pulumi_cloudamqp/get_plugins.py +28 -54
- pulumi_cloudamqp/get_plugins_community.py +29 -52
- pulumi_cloudamqp/get_upgradable_versions.py +19 -24
- pulumi_cloudamqp/get_vpc_gcp_info.py +44 -138
- pulumi_cloudamqp/get_vpc_info.py +34 -127
- pulumi_cloudamqp/instance.py +557 -333
- pulumi_cloudamqp/integration_aws_eventbridge.py +182 -117
- pulumi_cloudamqp/integration_log.py +488 -402
- pulumi_cloudamqp/integration_metric.py +345 -296
- pulumi_cloudamqp/maintenance_window.py +516 -0
- pulumi_cloudamqp/node_actions.py +82 -59
- pulumi_cloudamqp/notification.py +174 -92
- pulumi_cloudamqp/outputs.py +216 -125
- pulumi_cloudamqp/plugin.py +170 -105
- pulumi_cloudamqp/plugin_community.py +168 -107
- pulumi_cloudamqp/privatelink_aws.py +140 -347
- pulumi_cloudamqp/privatelink_azure.py +142 -345
- pulumi_cloudamqp/provider.py +22 -21
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +334 -210
- pulumi_cloudamqp/security_firewall.py +111 -57
- pulumi_cloudamqp/upgrade_lavinmq.py +29 -102
- pulumi_cloudamqp/upgrade_rabbitmq.py +53 -299
- pulumi_cloudamqp/vpc.py +112 -79
- pulumi_cloudamqp/vpc_connect.py +219 -606
- pulumi_cloudamqp/vpc_gcp_peering.py +227 -591
- pulumi_cloudamqp/vpc_peering.py +120 -105
- pulumi_cloudamqp/webhook.py +143 -103
- {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0a1744182778.dist-info}/METADATA +1 -1
- pulumi_cloudamqp-3.22.0a1744182778.dist-info/RECORD +50 -0
- pulumi_cloudamqp-3.21.0a1743571485.dist-info/RECORD +0 -49
- {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0a1744182778.dist-info}/WHEEL +0 -0
- {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0a1744182778.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
|
|
@@ -48,12 +49,13 @@ class ExtraDiskSizeNode(dict):
|
|
|
48
49
|
return super().get(key, default)
|
|
49
50
|
|
|
50
51
|
def __init__(__self__, *,
|
|
51
|
-
additional_disk_size: Optional[int] = None,
|
|
52
|
-
disk_size: Optional[int] = None,
|
|
53
|
-
name: Optional[str] = None):
|
|
52
|
+
additional_disk_size: Optional[builtins.int] = None,
|
|
53
|
+
disk_size: Optional[builtins.int] = None,
|
|
54
|
+
name: Optional[builtins.str] = None):
|
|
54
55
|
"""
|
|
55
|
-
:param int additional_disk_size: Additional added disk size
|
|
56
|
-
:param int disk_size: Subscription plan disk size
|
|
56
|
+
:param builtins.int additional_disk_size: Additional added disk size
|
|
57
|
+
:param builtins.int disk_size: Subscription plan disk size
|
|
58
|
+
:param builtins.str name: Name of the node.
|
|
57
59
|
"""
|
|
58
60
|
if additional_disk_size is not None:
|
|
59
61
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
@@ -64,7 +66,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
64
66
|
|
|
65
67
|
@property
|
|
66
68
|
@pulumi.getter(name="additionalDiskSize")
|
|
67
|
-
def additional_disk_size(self) -> Optional[int]:
|
|
69
|
+
def additional_disk_size(self) -> Optional[builtins.int]:
|
|
68
70
|
"""
|
|
69
71
|
Additional added disk size
|
|
70
72
|
"""
|
|
@@ -72,7 +74,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
72
74
|
|
|
73
75
|
@property
|
|
74
76
|
@pulumi.getter(name="diskSize")
|
|
75
|
-
def disk_size(self) -> Optional[int]:
|
|
77
|
+
def disk_size(self) -> Optional[builtins.int]:
|
|
76
78
|
"""
|
|
77
79
|
Subscription plan disk size
|
|
78
80
|
"""
|
|
@@ -80,7 +82,10 @@ class ExtraDiskSizeNode(dict):
|
|
|
80
82
|
|
|
81
83
|
@property
|
|
82
84
|
@pulumi.getter
|
|
83
|
-
def name(self) -> Optional[str]:
|
|
85
|
+
def name(self) -> Optional[builtins.str]:
|
|
86
|
+
"""
|
|
87
|
+
Name of the node.
|
|
88
|
+
"""
|
|
84
89
|
return pulumi.get(self, "name")
|
|
85
90
|
|
|
86
91
|
|
|
@@ -104,32 +109,36 @@ class InstanceCopySetting(dict):
|
|
|
104
109
|
return super().get(key, default)
|
|
105
110
|
|
|
106
111
|
def __init__(__self__, *,
|
|
107
|
-
settings: Sequence[str],
|
|
108
|
-
subscription_id: str):
|
|
112
|
+
settings: Sequence[builtins.str],
|
|
113
|
+
subscription_id: builtins.str):
|
|
109
114
|
"""
|
|
110
|
-
:param Sequence[str] settings: Array of one or more settings to be copied. Allowed values:
|
|
115
|
+
:param Sequence[builtins.str] settings: Array of one or more settings to be copied. Allowed values:
|
|
116
|
+
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
111
117
|
|
|
112
|
-
See more below, copy settings
|
|
113
|
-
:param str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
118
|
+
See more below, [copy settings].
|
|
119
|
+
:param builtins.str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
120
|
+
from.
|
|
114
121
|
"""
|
|
115
122
|
pulumi.set(__self__, "settings", settings)
|
|
116
123
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
117
124
|
|
|
118
125
|
@property
|
|
119
126
|
@pulumi.getter
|
|
120
|
-
def settings(self) -> Sequence[str]:
|
|
127
|
+
def settings(self) -> Sequence[builtins.str]:
|
|
121
128
|
"""
|
|
122
|
-
Array of one or more settings to be copied. Allowed values:
|
|
129
|
+
Array of one or more settings to be copied. Allowed values:
|
|
130
|
+
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
123
131
|
|
|
124
|
-
See more below, copy settings
|
|
132
|
+
See more below, [copy settings].
|
|
125
133
|
"""
|
|
126
134
|
return pulumi.get(self, "settings")
|
|
127
135
|
|
|
128
136
|
@property
|
|
129
137
|
@pulumi.getter(name="subscriptionId")
|
|
130
|
-
def subscription_id(self) -> str:
|
|
138
|
+
def subscription_id(self) -> builtins.str:
|
|
131
139
|
"""
|
|
132
|
-
Instance identifier of the CloudAMQP instance to copy the settings
|
|
140
|
+
Instance identifier of the CloudAMQP instance to copy the settings
|
|
141
|
+
from.
|
|
133
142
|
"""
|
|
134
143
|
return pulumi.get(self, "subscription_id")
|
|
135
144
|
|
|
@@ -137,15 +146,15 @@ class InstanceCopySetting(dict):
|
|
|
137
146
|
@pulumi.output_type
|
|
138
147
|
class NotificationResponder(dict):
|
|
139
148
|
def __init__(__self__, *,
|
|
140
|
-
type: str,
|
|
141
|
-
id: Optional[str] = None,
|
|
142
|
-
name: Optional[str] = None,
|
|
143
|
-
username: Optional[str] = None):
|
|
144
|
-
"""
|
|
145
|
-
:param str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
146
|
-
:param str id: Identifier in UUID format
|
|
147
|
-
:param str name: Name of the responder
|
|
148
|
-
:param str username: Username of the responder
|
|
149
|
+
type: builtins.str,
|
|
150
|
+
id: Optional[builtins.str] = None,
|
|
151
|
+
name: Optional[builtins.str] = None,
|
|
152
|
+
username: Optional[builtins.str] = None):
|
|
153
|
+
"""
|
|
154
|
+
:param builtins.str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
155
|
+
:param builtins.str id: Identifier in UUID format
|
|
156
|
+
:param builtins.str name: Name of the responder
|
|
157
|
+
:param builtins.str username: Username of the responder
|
|
149
158
|
|
|
150
159
|
Responders of type `team`, `escalation` and `schedule` can use either id or name.
|
|
151
160
|
While `user` can use either id or username.
|
|
@@ -160,7 +169,7 @@ class NotificationResponder(dict):
|
|
|
160
169
|
|
|
161
170
|
@property
|
|
162
171
|
@pulumi.getter
|
|
163
|
-
def type(self) -> str:
|
|
172
|
+
def type(self) -> builtins.str:
|
|
164
173
|
"""
|
|
165
174
|
Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
166
175
|
"""
|
|
@@ -168,7 +177,7 @@ class NotificationResponder(dict):
|
|
|
168
177
|
|
|
169
178
|
@property
|
|
170
179
|
@pulumi.getter
|
|
171
|
-
def id(self) -> Optional[str]:
|
|
180
|
+
def id(self) -> Optional[builtins.str]:
|
|
172
181
|
"""
|
|
173
182
|
Identifier in UUID format
|
|
174
183
|
"""
|
|
@@ -176,7 +185,7 @@ class NotificationResponder(dict):
|
|
|
176
185
|
|
|
177
186
|
@property
|
|
178
187
|
@pulumi.getter
|
|
179
|
-
def name(self) -> Optional[str]:
|
|
188
|
+
def name(self) -> Optional[builtins.str]:
|
|
180
189
|
"""
|
|
181
190
|
Name of the responder
|
|
182
191
|
"""
|
|
@@ -184,7 +193,7 @@ class NotificationResponder(dict):
|
|
|
184
193
|
|
|
185
194
|
@property
|
|
186
195
|
@pulumi.getter
|
|
187
|
-
def username(self) -> Optional[str]:
|
|
196
|
+
def username(self) -> Optional[builtins.str]:
|
|
188
197
|
"""
|
|
189
198
|
Username of the responder
|
|
190
199
|
|
|
@@ -197,13 +206,13 @@ class NotificationResponder(dict):
|
|
|
197
206
|
@pulumi.output_type
|
|
198
207
|
class SecurityFirewallRule(dict):
|
|
199
208
|
def __init__(__self__, *,
|
|
200
|
-
ip: str,
|
|
201
|
-
description: Optional[str] = None,
|
|
202
|
-
ports: Optional[Sequence[int]] = None,
|
|
203
|
-
services: Optional[Sequence[str]] = None):
|
|
209
|
+
ip: builtins.str,
|
|
210
|
+
description: Optional[builtins.str] = None,
|
|
211
|
+
ports: Optional[Sequence[builtins.int]] = None,
|
|
212
|
+
services: Optional[Sequence[builtins.str]] = None):
|
|
204
213
|
"""
|
|
205
|
-
:param str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
206
|
-
:param str description: Description name of the rule. e.g. Default.
|
|
214
|
+
:param builtins.str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
215
|
+
:param builtins.str description: Description name of the rule. e.g. Default.
|
|
207
216
|
|
|
208
217
|
Pre-defined services for RabbitMQ:
|
|
209
218
|
|
|
@@ -226,8 +235,10 @@ class SecurityFirewallRule(dict):
|
|
|
226
235
|
| AMQP | 5672 |
|
|
227
236
|
| AMQPS | 5671 |
|
|
228
237
|
| HTTPS | 443 |
|
|
229
|
-
|
|
230
|
-
|
|
238
|
+
| MQTT | 1883 |
|
|
239
|
+
| MQTTS | 8883 |
|
|
240
|
+
:param Sequence[builtins.int] ports: Custom ports to be opened
|
|
241
|
+
:param Sequence[builtins.str] services: Pre-defined service ports, see table below
|
|
231
242
|
"""
|
|
232
243
|
pulumi.set(__self__, "ip", ip)
|
|
233
244
|
if description is not None:
|
|
@@ -239,7 +250,7 @@ class SecurityFirewallRule(dict):
|
|
|
239
250
|
|
|
240
251
|
@property
|
|
241
252
|
@pulumi.getter
|
|
242
|
-
def ip(self) -> str:
|
|
253
|
+
def ip(self) -> builtins.str:
|
|
243
254
|
"""
|
|
244
255
|
CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
245
256
|
"""
|
|
@@ -247,7 +258,7 @@ class SecurityFirewallRule(dict):
|
|
|
247
258
|
|
|
248
259
|
@property
|
|
249
260
|
@pulumi.getter
|
|
250
|
-
def description(self) -> Optional[str]:
|
|
261
|
+
def description(self) -> Optional[builtins.str]:
|
|
251
262
|
"""
|
|
252
263
|
Description name of the rule. e.g. Default.
|
|
253
264
|
|
|
@@ -272,12 +283,14 @@ class SecurityFirewallRule(dict):
|
|
|
272
283
|
| AMQP | 5672 |
|
|
273
284
|
| AMQPS | 5671 |
|
|
274
285
|
| HTTPS | 443 |
|
|
286
|
+
| MQTT | 1883 |
|
|
287
|
+
| MQTTS | 8883 |
|
|
275
288
|
"""
|
|
276
289
|
return pulumi.get(self, "description")
|
|
277
290
|
|
|
278
291
|
@property
|
|
279
292
|
@pulumi.getter
|
|
280
|
-
def ports(self) -> Optional[Sequence[int]]:
|
|
293
|
+
def ports(self) -> Optional[Sequence[builtins.int]]:
|
|
281
294
|
"""
|
|
282
295
|
Custom ports to be opened
|
|
283
296
|
"""
|
|
@@ -285,7 +298,7 @@ class SecurityFirewallRule(dict):
|
|
|
285
298
|
|
|
286
299
|
@property
|
|
287
300
|
@pulumi.getter
|
|
288
|
-
def services(self) -> Optional[Sequence[str]]:
|
|
301
|
+
def services(self) -> Optional[Sequence[builtins.str]]:
|
|
289
302
|
"""
|
|
290
303
|
Pre-defined service ports, see table below
|
|
291
304
|
"""
|
|
@@ -295,17 +308,17 @@ class SecurityFirewallRule(dict):
|
|
|
295
308
|
@pulumi.output_type
|
|
296
309
|
class GetAccountInstanceResult(dict):
|
|
297
310
|
def __init__(__self__, *,
|
|
298
|
-
id: int,
|
|
299
|
-
name: str,
|
|
300
|
-
plan: str,
|
|
301
|
-
region: str,
|
|
302
|
-
tags: Optional[Sequence[str]] = None):
|
|
303
|
-
"""
|
|
304
|
-
:param int id: The instance identifier
|
|
305
|
-
:param str name: The name of the instance
|
|
306
|
-
:param str plan: The subscription plan used for the instance
|
|
307
|
-
:param str region: The region were the instanece is located in
|
|
308
|
-
:param Sequence[str] tags:
|
|
311
|
+
id: builtins.int,
|
|
312
|
+
name: builtins.str,
|
|
313
|
+
plan: builtins.str,
|
|
314
|
+
region: builtins.str,
|
|
315
|
+
tags: Optional[Sequence[builtins.str]] = None):
|
|
316
|
+
"""
|
|
317
|
+
:param builtins.int id: The instance identifier.
|
|
318
|
+
:param builtins.str name: The name of the instance.
|
|
319
|
+
:param builtins.str plan: The subscription plan used for the instance.
|
|
320
|
+
:param builtins.str region: The region were the instanece is located in.
|
|
321
|
+
:param Sequence[builtins.str] tags: Optional tags set for the instance.
|
|
309
322
|
"""
|
|
310
323
|
pulumi.set(__self__, "id", id)
|
|
311
324
|
pulumi.set(__self__, "name", name)
|
|
@@ -316,41 +329,41 @@ class GetAccountInstanceResult(dict):
|
|
|
316
329
|
|
|
317
330
|
@property
|
|
318
331
|
@pulumi.getter
|
|
319
|
-
def id(self) -> int:
|
|
332
|
+
def id(self) -> builtins.int:
|
|
320
333
|
"""
|
|
321
|
-
The instance identifier
|
|
334
|
+
The instance identifier.
|
|
322
335
|
"""
|
|
323
336
|
return pulumi.get(self, "id")
|
|
324
337
|
|
|
325
338
|
@property
|
|
326
339
|
@pulumi.getter
|
|
327
|
-
def name(self) -> str:
|
|
340
|
+
def name(self) -> builtins.str:
|
|
328
341
|
"""
|
|
329
|
-
The name of the instance
|
|
342
|
+
The name of the instance.
|
|
330
343
|
"""
|
|
331
344
|
return pulumi.get(self, "name")
|
|
332
345
|
|
|
333
346
|
@property
|
|
334
347
|
@pulumi.getter
|
|
335
|
-
def plan(self) -> str:
|
|
348
|
+
def plan(self) -> builtins.str:
|
|
336
349
|
"""
|
|
337
|
-
The subscription plan used for the instance
|
|
350
|
+
The subscription plan used for the instance.
|
|
338
351
|
"""
|
|
339
352
|
return pulumi.get(self, "plan")
|
|
340
353
|
|
|
341
354
|
@property
|
|
342
355
|
@pulumi.getter
|
|
343
|
-
def region(self) -> str:
|
|
356
|
+
def region(self) -> builtins.str:
|
|
344
357
|
"""
|
|
345
|
-
The region were the instanece is located in
|
|
358
|
+
The region were the instanece is located in.
|
|
346
359
|
"""
|
|
347
360
|
return pulumi.get(self, "region")
|
|
348
361
|
|
|
349
362
|
@property
|
|
350
363
|
@pulumi.getter
|
|
351
|
-
def tags(self) -> Optional[Sequence[str]]:
|
|
364
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
|
352
365
|
"""
|
|
353
|
-
|
|
366
|
+
Optional tags set for the instance.
|
|
354
367
|
"""
|
|
355
368
|
return pulumi.get(self, "tags")
|
|
356
369
|
|
|
@@ -358,19 +371,19 @@ class GetAccountInstanceResult(dict):
|
|
|
358
371
|
@pulumi.output_type
|
|
359
372
|
class GetAccountVpcsVpcResult(dict):
|
|
360
373
|
def __init__(__self__, *,
|
|
361
|
-
id: int,
|
|
362
|
-
name: str,
|
|
363
|
-
region: str,
|
|
364
|
-
subnet: str,
|
|
365
|
-
vpc_name: str,
|
|
366
|
-
tags: Optional[Sequence[str]] = None):
|
|
367
|
-
"""
|
|
368
|
-
:param int id: The
|
|
369
|
-
:param str name: The
|
|
370
|
-
:param str region: The region
|
|
371
|
-
:param str subnet: The VPC subnet
|
|
372
|
-
:param str vpc_name: VPC name given when hosted at the cloud provider
|
|
373
|
-
:param Sequence[str] tags:
|
|
374
|
+
id: builtins.int,
|
|
375
|
+
name: builtins.str,
|
|
376
|
+
region: builtins.str,
|
|
377
|
+
subnet: builtins.str,
|
|
378
|
+
vpc_name: builtins.str,
|
|
379
|
+
tags: Optional[Sequence[builtins.str]] = None):
|
|
380
|
+
"""
|
|
381
|
+
:param builtins.int id: The VPC identifier.
|
|
382
|
+
:param builtins.str name: The VPC instance name.
|
|
383
|
+
:param builtins.str region: The region the VPC is hosted in.
|
|
384
|
+
:param builtins.str subnet: The VPC subnet.
|
|
385
|
+
:param builtins.str vpc_name: VPC name given when hosted at the cloud provider.
|
|
386
|
+
:param Sequence[builtins.str] tags: Optional tags set for the VPC.
|
|
374
387
|
"""
|
|
375
388
|
pulumi.set(__self__, "id", id)
|
|
376
389
|
pulumi.set(__self__, "name", name)
|
|
@@ -382,49 +395,49 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
382
395
|
|
|
383
396
|
@property
|
|
384
397
|
@pulumi.getter
|
|
385
|
-
def id(self) -> int:
|
|
398
|
+
def id(self) -> builtins.int:
|
|
386
399
|
"""
|
|
387
|
-
The
|
|
400
|
+
The VPC identifier.
|
|
388
401
|
"""
|
|
389
402
|
return pulumi.get(self, "id")
|
|
390
403
|
|
|
391
404
|
@property
|
|
392
405
|
@pulumi.getter
|
|
393
|
-
def name(self) -> str:
|
|
406
|
+
def name(self) -> builtins.str:
|
|
394
407
|
"""
|
|
395
|
-
The
|
|
408
|
+
The VPC instance name.
|
|
396
409
|
"""
|
|
397
410
|
return pulumi.get(self, "name")
|
|
398
411
|
|
|
399
412
|
@property
|
|
400
413
|
@pulumi.getter
|
|
401
|
-
def region(self) -> str:
|
|
414
|
+
def region(self) -> builtins.str:
|
|
402
415
|
"""
|
|
403
|
-
The region
|
|
416
|
+
The region the VPC is hosted in.
|
|
404
417
|
"""
|
|
405
418
|
return pulumi.get(self, "region")
|
|
406
419
|
|
|
407
420
|
@property
|
|
408
421
|
@pulumi.getter
|
|
409
|
-
def subnet(self) -> str:
|
|
422
|
+
def subnet(self) -> builtins.str:
|
|
410
423
|
"""
|
|
411
|
-
The VPC subnet
|
|
424
|
+
The VPC subnet.
|
|
412
425
|
"""
|
|
413
426
|
return pulumi.get(self, "subnet")
|
|
414
427
|
|
|
415
428
|
@property
|
|
416
429
|
@pulumi.getter(name="vpcName")
|
|
417
|
-
def vpc_name(self) -> str:
|
|
430
|
+
def vpc_name(self) -> builtins.str:
|
|
418
431
|
"""
|
|
419
|
-
VPC name given when hosted at the cloud provider
|
|
432
|
+
VPC name given when hosted at the cloud provider.
|
|
420
433
|
"""
|
|
421
434
|
return pulumi.get(self, "vpc_name")
|
|
422
435
|
|
|
423
436
|
@property
|
|
424
437
|
@pulumi.getter
|
|
425
|
-
def tags(self) -> Optional[Sequence[str]]:
|
|
438
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
|
426
439
|
"""
|
|
427
|
-
|
|
440
|
+
Optional tags set for the VPC.
|
|
428
441
|
"""
|
|
429
442
|
return pulumi.get(self, "tags")
|
|
430
443
|
|
|
@@ -432,17 +445,30 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
432
445
|
@pulumi.output_type
|
|
433
446
|
class GetNodesNodeResult(dict):
|
|
434
447
|
def __init__(__self__, *,
|
|
435
|
-
additional_disk_size: int,
|
|
436
|
-
availability_zone: str,
|
|
437
|
-
configured: bool,
|
|
438
|
-
disk_size: int,
|
|
439
|
-
erlang_version: str,
|
|
440
|
-
hipe: bool,
|
|
441
|
-
hostname: str,
|
|
442
|
-
hostname_internal: str,
|
|
443
|
-
name: str,
|
|
444
|
-
rabbitmq_version: str,
|
|
445
|
-
running: bool):
|
|
448
|
+
additional_disk_size: builtins.int,
|
|
449
|
+
availability_zone: builtins.str,
|
|
450
|
+
configured: builtins.bool,
|
|
451
|
+
disk_size: builtins.int,
|
|
452
|
+
erlang_version: builtins.str,
|
|
453
|
+
hipe: builtins.bool,
|
|
454
|
+
hostname: builtins.str,
|
|
455
|
+
hostname_internal: builtins.str,
|
|
456
|
+
name: builtins.str,
|
|
457
|
+
rabbitmq_version: builtins.str,
|
|
458
|
+
running: builtins.bool):
|
|
459
|
+
"""
|
|
460
|
+
:param builtins.int additional_disk_size: Additional added disk size
|
|
461
|
+
:param builtins.str availability_zone: Availability zone the node is hosted in.
|
|
462
|
+
:param builtins.bool configured: Is the node configured?
|
|
463
|
+
:param builtins.int disk_size: Subscription plan disk size
|
|
464
|
+
:param builtins.str erlang_version: Currently used Erlang version on the node.
|
|
465
|
+
:param builtins.bool hipe: Enable or disable High-performance Erlang.
|
|
466
|
+
:param builtins.str hostname: External hostname assigned to the node.
|
|
467
|
+
:param builtins.str hostname_internal: Internal hostname assigned to the node.
|
|
468
|
+
:param builtins.str name: Name of the node.
|
|
469
|
+
:param builtins.str rabbitmq_version: Currently configured Rabbit MQ version on the node.
|
|
470
|
+
:param builtins.bool running: Is the node running?
|
|
471
|
+
"""
|
|
446
472
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
447
473
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
448
474
|
pulumi.set(__self__, "configured", configured)
|
|
@@ -457,93 +483,146 @@ class GetNodesNodeResult(dict):
|
|
|
457
483
|
|
|
458
484
|
@property
|
|
459
485
|
@pulumi.getter(name="additionalDiskSize")
|
|
460
|
-
def additional_disk_size(self) -> int:
|
|
486
|
+
def additional_disk_size(self) -> builtins.int:
|
|
487
|
+
"""
|
|
488
|
+
Additional added disk size
|
|
489
|
+
"""
|
|
461
490
|
return pulumi.get(self, "additional_disk_size")
|
|
462
491
|
|
|
463
492
|
@property
|
|
464
493
|
@pulumi.getter(name="availabilityZone")
|
|
465
|
-
def availability_zone(self) -> str:
|
|
494
|
+
def availability_zone(self) -> builtins.str:
|
|
495
|
+
"""
|
|
496
|
+
Availability zone the node is hosted in.
|
|
497
|
+
"""
|
|
466
498
|
return pulumi.get(self, "availability_zone")
|
|
467
499
|
|
|
468
500
|
@property
|
|
469
501
|
@pulumi.getter
|
|
470
|
-
def configured(self) -> bool:
|
|
502
|
+
def configured(self) -> builtins.bool:
|
|
503
|
+
"""
|
|
504
|
+
Is the node configured?
|
|
505
|
+
"""
|
|
471
506
|
return pulumi.get(self, "configured")
|
|
472
507
|
|
|
473
508
|
@property
|
|
474
509
|
@pulumi.getter(name="diskSize")
|
|
475
|
-
def disk_size(self) -> int:
|
|
510
|
+
def disk_size(self) -> builtins.int:
|
|
511
|
+
"""
|
|
512
|
+
Subscription plan disk size
|
|
513
|
+
"""
|
|
476
514
|
return pulumi.get(self, "disk_size")
|
|
477
515
|
|
|
478
516
|
@property
|
|
479
517
|
@pulumi.getter(name="erlangVersion")
|
|
480
|
-
def erlang_version(self) -> str:
|
|
518
|
+
def erlang_version(self) -> builtins.str:
|
|
519
|
+
"""
|
|
520
|
+
Currently used Erlang version on the node.
|
|
521
|
+
"""
|
|
481
522
|
return pulumi.get(self, "erlang_version")
|
|
482
523
|
|
|
483
524
|
@property
|
|
484
525
|
@pulumi.getter
|
|
485
|
-
def hipe(self) -> bool:
|
|
526
|
+
def hipe(self) -> builtins.bool:
|
|
527
|
+
"""
|
|
528
|
+
Enable or disable High-performance Erlang.
|
|
529
|
+
"""
|
|
486
530
|
return pulumi.get(self, "hipe")
|
|
487
531
|
|
|
488
532
|
@property
|
|
489
533
|
@pulumi.getter
|
|
490
|
-
def hostname(self) -> str:
|
|
534
|
+
def hostname(self) -> builtins.str:
|
|
535
|
+
"""
|
|
536
|
+
External hostname assigned to the node.
|
|
537
|
+
"""
|
|
491
538
|
return pulumi.get(self, "hostname")
|
|
492
539
|
|
|
493
540
|
@property
|
|
494
541
|
@pulumi.getter(name="hostnameInternal")
|
|
495
|
-
def hostname_internal(self) -> str:
|
|
542
|
+
def hostname_internal(self) -> builtins.str:
|
|
543
|
+
"""
|
|
544
|
+
Internal hostname assigned to the node.
|
|
545
|
+
"""
|
|
496
546
|
return pulumi.get(self, "hostname_internal")
|
|
497
547
|
|
|
498
548
|
@property
|
|
499
549
|
@pulumi.getter
|
|
500
|
-
def name(self) -> str:
|
|
550
|
+
def name(self) -> builtins.str:
|
|
551
|
+
"""
|
|
552
|
+
Name of the node.
|
|
553
|
+
"""
|
|
501
554
|
return pulumi.get(self, "name")
|
|
502
555
|
|
|
503
556
|
@property
|
|
504
557
|
@pulumi.getter(name="rabbitmqVersion")
|
|
505
|
-
def rabbitmq_version(self) -> str:
|
|
558
|
+
def rabbitmq_version(self) -> builtins.str:
|
|
559
|
+
"""
|
|
560
|
+
Currently configured Rabbit MQ version on the node.
|
|
561
|
+
"""
|
|
506
562
|
return pulumi.get(self, "rabbitmq_version")
|
|
507
563
|
|
|
508
564
|
@property
|
|
509
565
|
@pulumi.getter
|
|
510
|
-
def running(self) -> bool:
|
|
566
|
+
def running(self) -> builtins.bool:
|
|
567
|
+
"""
|
|
568
|
+
Is the node running?
|
|
569
|
+
"""
|
|
511
570
|
return pulumi.get(self, "running")
|
|
512
571
|
|
|
513
572
|
|
|
514
573
|
@pulumi.output_type
|
|
515
574
|
class GetPluginsCommunityPluginResult(dict):
|
|
516
575
|
def __init__(__self__, *,
|
|
517
|
-
description: str,
|
|
518
|
-
name: str,
|
|
519
|
-
require: str):
|
|
576
|
+
description: builtins.str,
|
|
577
|
+
name: builtins.str,
|
|
578
|
+
require: builtins.str):
|
|
579
|
+
"""
|
|
580
|
+
:param builtins.str description: Description of what the plugin does.
|
|
581
|
+
:param builtins.str name: The type of the recipient.
|
|
582
|
+
:param builtins.str require: Min. required Rabbit MQ version to be used.
|
|
583
|
+
"""
|
|
520
584
|
pulumi.set(__self__, "description", description)
|
|
521
585
|
pulumi.set(__self__, "name", name)
|
|
522
586
|
pulumi.set(__self__, "require", require)
|
|
523
587
|
|
|
524
588
|
@property
|
|
525
589
|
@pulumi.getter
|
|
526
|
-
def description(self) -> str:
|
|
590
|
+
def description(self) -> builtins.str:
|
|
591
|
+
"""
|
|
592
|
+
Description of what the plugin does.
|
|
593
|
+
"""
|
|
527
594
|
return pulumi.get(self, "description")
|
|
528
595
|
|
|
529
596
|
@property
|
|
530
597
|
@pulumi.getter
|
|
531
|
-
def name(self) -> str:
|
|
598
|
+
def name(self) -> builtins.str:
|
|
599
|
+
"""
|
|
600
|
+
The type of the recipient.
|
|
601
|
+
"""
|
|
532
602
|
return pulumi.get(self, "name")
|
|
533
603
|
|
|
534
604
|
@property
|
|
535
605
|
@pulumi.getter
|
|
536
|
-
def require(self) -> str:
|
|
606
|
+
def require(self) -> builtins.str:
|
|
607
|
+
"""
|
|
608
|
+
Min. required Rabbit MQ version to be used.
|
|
609
|
+
"""
|
|
537
610
|
return pulumi.get(self, "require")
|
|
538
611
|
|
|
539
612
|
|
|
540
613
|
@pulumi.output_type
|
|
541
614
|
class GetPluginsPluginResult(dict):
|
|
542
615
|
def __init__(__self__, *,
|
|
543
|
-
description: str,
|
|
544
|
-
enabled: bool,
|
|
545
|
-
name: str,
|
|
546
|
-
version: str):
|
|
616
|
+
description: builtins.str,
|
|
617
|
+
enabled: builtins.bool,
|
|
618
|
+
name: builtins.str,
|
|
619
|
+
version: builtins.str):
|
|
620
|
+
"""
|
|
621
|
+
:param builtins.str description: Description of what the plugin does.
|
|
622
|
+
:param builtins.bool enabled: Enable or disable information for the plugin.
|
|
623
|
+
:param builtins.str name: The type of the recipient.
|
|
624
|
+
:param builtins.str version: Rabbit MQ version that the plugins are shipped with.
|
|
625
|
+
"""
|
|
547
626
|
pulumi.set(__self__, "description", description)
|
|
548
627
|
pulumi.set(__self__, "enabled", enabled)
|
|
549
628
|
pulumi.set(__self__, "name", name)
|
|
@@ -551,22 +630,34 @@ class GetPluginsPluginResult(dict):
|
|
|
551
630
|
|
|
552
631
|
@property
|
|
553
632
|
@pulumi.getter
|
|
554
|
-
def description(self) -> str:
|
|
633
|
+
def description(self) -> builtins.str:
|
|
634
|
+
"""
|
|
635
|
+
Description of what the plugin does.
|
|
636
|
+
"""
|
|
555
637
|
return pulumi.get(self, "description")
|
|
556
638
|
|
|
557
639
|
@property
|
|
558
640
|
@pulumi.getter
|
|
559
|
-
def enabled(self) -> bool:
|
|
641
|
+
def enabled(self) -> builtins.bool:
|
|
642
|
+
"""
|
|
643
|
+
Enable or disable information for the plugin.
|
|
644
|
+
"""
|
|
560
645
|
return pulumi.get(self, "enabled")
|
|
561
646
|
|
|
562
647
|
@property
|
|
563
648
|
@pulumi.getter
|
|
564
|
-
def name(self) -> str:
|
|
649
|
+
def name(self) -> builtins.str:
|
|
650
|
+
"""
|
|
651
|
+
The type of the recipient.
|
|
652
|
+
"""
|
|
565
653
|
return pulumi.get(self, "name")
|
|
566
654
|
|
|
567
655
|
@property
|
|
568
656
|
@pulumi.getter
|
|
569
|
-
def version(self) -> str:
|
|
657
|
+
def version(self) -> builtins.str:
|
|
658
|
+
"""
|
|
659
|
+
Rabbit MQ version that the plugins are shipped with.
|
|
660
|
+
"""
|
|
570
661
|
return pulumi.get(self, "version")
|
|
571
662
|
|
|
572
663
|
|