pulumi-cloudamqp 3.21.0a1743485311__py3-none-any.whl → 3.21.0a1744082841__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 +9 -0
- pulumi_cloudamqp/_inputs.py +28 -9
- pulumi_cloudamqp/account_action.py +14 -7
- pulumi_cloudamqp/alarm.py +90 -30
- pulumi_cloudamqp/custom_domain.py +52 -10
- pulumi_cloudamqp/extra_disk_size.py +117 -101
- pulumi_cloudamqp/get_account.py +8 -2
- pulumi_cloudamqp/get_account_vpcs.py +13 -40
- pulumi_cloudamqp/get_alarm.py +50 -44
- pulumi_cloudamqp/get_credentials.py +10 -18
- pulumi_cloudamqp/get_instance.py +51 -2
- pulumi_cloudamqp/get_nodes.py +3 -50
- pulumi_cloudamqp/get_notification.py +17 -20
- pulumi_cloudamqp/get_plugins.py +15 -42
- pulumi_cloudamqp/get_plugins_community.py +16 -40
- pulumi_cloudamqp/get_upgradable_versions.py +10 -16
- pulumi_cloudamqp/get_vpc_gcp_info.py +23 -118
- pulumi_cloudamqp/get_vpc_info.py +18 -112
- pulumi_cloudamqp/instance.py +400 -177
- pulumi_cloudamqp/integration_aws_eventbridge.py +90 -26
- pulumi_cloudamqp/integration_log.py +135 -50
- pulumi_cloudamqp/integration_metric.py +50 -2
- pulumi_cloudamqp/maintenance_window.py +515 -0
- pulumi_cloudamqp/node_actions.py +32 -10
- pulumi_cloudamqp/notification.py +103 -22
- pulumi_cloudamqp/outputs.py +118 -28
- pulumi_cloudamqp/plugin.py +89 -25
- pulumi_cloudamqp/plugin_community.py +87 -27
- pulumi_cloudamqp/privatelink_aws.py +62 -270
- pulumi_cloudamqp/privatelink_azure.py +64 -268
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +209 -86
- pulumi_cloudamqp/security_firewall.py +76 -23
- pulumi_cloudamqp/upgrade_lavinmq.py +0 -74
- pulumi_cloudamqp/upgrade_rabbitmq.py +14 -261
- pulumi_cloudamqp/vpc.py +48 -16
- pulumi_cloudamqp/vpc_connect.py +111 -499
- pulumi_cloudamqp/vpc_gcp_peering.py +141 -506
- pulumi_cloudamqp/vpc_peering.py +50 -36
- pulumi_cloudamqp/webhook.py +48 -9
- {pulumi_cloudamqp-3.21.0a1743485311.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/METADATA +1 -1
- pulumi_cloudamqp-3.21.0a1744082841.dist-info/RECORD +50 -0
- pulumi_cloudamqp-3.21.0a1743485311.dist-info/RECORD +0 -49
- {pulumi_cloudamqp-3.21.0a1743485311.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/WHEEL +0 -0
- {pulumi_cloudamqp-3.21.0a1743485311.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/top_level.txt +0 -0
pulumi_cloudamqp/notification.py
CHANGED
|
@@ -39,6 +39,15 @@ class NotificationArgs:
|
|
|
39
39
|
|
|
40
40
|
___
|
|
41
41
|
|
|
42
|
+
The options parameter:
|
|
43
|
+
|
|
44
|
+
* rk - (Optional) Routing key to route alarm notification (can be used with Victorops).
|
|
45
|
+
* dedupkey - (Optional) If multiple alarms are triggered using a recipient with this key, only the
|
|
46
|
+
the first alarm will trigger a notification (can be used with PagerDuty). Leave blank
|
|
47
|
+
to use the generated dedup key.
|
|
48
|
+
|
|
49
|
+
___
|
|
50
|
+
|
|
42
51
|
The `responders` block consists of:
|
|
43
52
|
"""
|
|
44
53
|
pulumi.set(__self__, "instance_id", instance_id)
|
|
@@ -120,6 +129,15 @@ class NotificationArgs:
|
|
|
120
129
|
|
|
121
130
|
___
|
|
122
131
|
|
|
132
|
+
The options parameter:
|
|
133
|
+
|
|
134
|
+
* rk - (Optional) Routing key to route alarm notification (can be used with Victorops).
|
|
135
|
+
* dedupkey - (Optional) If multiple alarms are triggered using a recipient with this key, only the
|
|
136
|
+
the first alarm will trigger a notification (can be used with PagerDuty). Leave blank
|
|
137
|
+
to use the generated dedup key.
|
|
138
|
+
|
|
139
|
+
___
|
|
140
|
+
|
|
123
141
|
The `responders` block consists of:
|
|
124
142
|
"""
|
|
125
143
|
return pulumi.get(self, "responders")
|
|
@@ -148,6 +166,15 @@ class _NotificationState:
|
|
|
148
166
|
|
|
149
167
|
___
|
|
150
168
|
|
|
169
|
+
The options parameter:
|
|
170
|
+
|
|
171
|
+
* rk - (Optional) Routing key to route alarm notification (can be used with Victorops).
|
|
172
|
+
* dedupkey - (Optional) If multiple alarms are triggered using a recipient with this key, only the
|
|
173
|
+
the first alarm will trigger a notification (can be used with PagerDuty). Leave blank
|
|
174
|
+
to use the generated dedup key.
|
|
175
|
+
|
|
176
|
+
___
|
|
177
|
+
|
|
151
178
|
The `responders` block consists of:
|
|
152
179
|
:param pulumi.Input[str] type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
153
180
|
:param pulumi.Input[str] value: Integration/API key or endpoint to send the notification.
|
|
@@ -210,6 +237,15 @@ class _NotificationState:
|
|
|
210
237
|
|
|
211
238
|
___
|
|
212
239
|
|
|
240
|
+
The options parameter:
|
|
241
|
+
|
|
242
|
+
* rk - (Optional) Routing key to route alarm notification (can be used with Victorops).
|
|
243
|
+
* dedupkey - (Optional) If multiple alarms are triggered using a recipient with this key, only the
|
|
244
|
+
the first alarm will trigger a notification (can be used with PagerDuty). Leave blank
|
|
245
|
+
to use the generated dedup key.
|
|
246
|
+
|
|
247
|
+
___
|
|
248
|
+
|
|
213
249
|
The `responders` block consists of:
|
|
214
250
|
"""
|
|
215
251
|
return pulumi.get(self, "responders")
|
|
@@ -424,7 +460,7 @@ class Notification(pulumi.CustomResource):
|
|
|
424
460
|
|
|
425
461
|
</details>
|
|
426
462
|
|
|
427
|
-
## Notification
|
|
463
|
+
## Notification type reference
|
|
428
464
|
|
|
429
465
|
Valid options for notification type.
|
|
430
466
|
|
|
@@ -438,29 +474,38 @@ class Notification(pulumi.CustomResource):
|
|
|
438
474
|
* victorops
|
|
439
475
|
* webhook
|
|
440
476
|
|
|
441
|
-
## Options parameter
|
|
442
|
-
|
|
443
|
-
| Type | Options | Description | Note |
|
|
444
|
-
|---|---|---|---|
|
|
445
|
-
| Victorops | rk | Routing key to route alarm notification | - |
|
|
446
|
-
| PagerDuty | dedupkey | Default the dedup key for PagerDuty is generated depending on what alarm has triggered, but here you can set what `dedup` key to use so even if the same alarm is triggered for different resources you only get one notification. Leave blank to use the generated dedup key. | If multiple alarms are triggered using this recipient, since they all share `dedup` key only the first alarm will be shown in PagerDuty |
|
|
447
|
-
|
|
448
477
|
## Dependency
|
|
449
478
|
|
|
450
479
|
This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
451
480
|
|
|
452
481
|
## Import
|
|
453
482
|
|
|
454
|
-
`cloudamqp_notification` can be imported using
|
|
483
|
+
`cloudamqp_notification` can be imported using the resource identifier together with CloudAMQP
|
|
484
|
+
|
|
485
|
+
instance identifier (CSV separated). To retrieve the resource identifier, use
|
|
486
|
+
|
|
487
|
+
[CloudAMQP API list recipients].
|
|
488
|
+
|
|
489
|
+
From Terraform v1.5.0, the `import` block can be used to import this resource:
|
|
490
|
+
|
|
491
|
+
hcl
|
|
492
|
+
|
|
493
|
+
import {
|
|
494
|
+
|
|
495
|
+
to = cloudamqp_notification.recipient
|
|
455
496
|
|
|
456
|
-
|
|
497
|
+
id = format("<id>,%s", cloudamqp_instance.instance.id)
|
|
457
498
|
|
|
458
|
-
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
Or use Terraform CLI:
|
|
459
502
|
|
|
460
503
|
```sh
|
|
461
504
|
$ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
|
|
462
505
|
```
|
|
463
506
|
|
|
507
|
+
[CloudAMQP API list recipients]: https://docs.cloudamqp.com/cloudamqp_api.html#list-recipients
|
|
508
|
+
|
|
464
509
|
:param str resource_name: The name of the resource.
|
|
465
510
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
466
511
|
:param pulumi.Input[int] instance_id: The CloudAMQP instance ID.
|
|
@@ -471,6 +516,15 @@ class Notification(pulumi.CustomResource):
|
|
|
471
516
|
|
|
472
517
|
___
|
|
473
518
|
|
|
519
|
+
The options parameter:
|
|
520
|
+
|
|
521
|
+
* rk - (Optional) Routing key to route alarm notification (can be used with Victorops).
|
|
522
|
+
* dedupkey - (Optional) If multiple alarms are triggered using a recipient with this key, only the
|
|
523
|
+
the first alarm will trigger a notification (can be used with PagerDuty). Leave blank
|
|
524
|
+
to use the generated dedup key.
|
|
525
|
+
|
|
526
|
+
___
|
|
527
|
+
|
|
474
528
|
The `responders` block consists of:
|
|
475
529
|
:param pulumi.Input[str] type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
476
530
|
:param pulumi.Input[str] value: Integration/API key or endpoint to send the notification.
|
|
@@ -650,7 +704,7 @@ class Notification(pulumi.CustomResource):
|
|
|
650
704
|
|
|
651
705
|
</details>
|
|
652
706
|
|
|
653
|
-
## Notification
|
|
707
|
+
## Notification type reference
|
|
654
708
|
|
|
655
709
|
Valid options for notification type.
|
|
656
710
|
|
|
@@ -664,29 +718,38 @@ class Notification(pulumi.CustomResource):
|
|
|
664
718
|
* victorops
|
|
665
719
|
* webhook
|
|
666
720
|
|
|
667
|
-
## Options parameter
|
|
668
|
-
|
|
669
|
-
| Type | Options | Description | Note |
|
|
670
|
-
|---|---|---|---|
|
|
671
|
-
| Victorops | rk | Routing key to route alarm notification | - |
|
|
672
|
-
| PagerDuty | dedupkey | Default the dedup key for PagerDuty is generated depending on what alarm has triggered, but here you can set what `dedup` key to use so even if the same alarm is triggered for different resources you only get one notification. Leave blank to use the generated dedup key. | If multiple alarms are triggered using this recipient, since they all share `dedup` key only the first alarm will be shown in PagerDuty |
|
|
673
|
-
|
|
674
721
|
## Dependency
|
|
675
722
|
|
|
676
723
|
This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
677
724
|
|
|
678
725
|
## Import
|
|
679
726
|
|
|
680
|
-
`cloudamqp_notification` can be imported using
|
|
727
|
+
`cloudamqp_notification` can be imported using the resource identifier together with CloudAMQP
|
|
728
|
+
|
|
729
|
+
instance identifier (CSV separated). To retrieve the resource identifier, use
|
|
730
|
+
|
|
731
|
+
[CloudAMQP API list recipients].
|
|
732
|
+
|
|
733
|
+
From Terraform v1.5.0, the `import` block can be used to import this resource:
|
|
734
|
+
|
|
735
|
+
hcl
|
|
681
736
|
|
|
682
|
-
|
|
737
|
+
import {
|
|
683
738
|
|
|
684
|
-
|
|
739
|
+
to = cloudamqp_notification.recipient
|
|
740
|
+
|
|
741
|
+
id = format("<id>,%s", cloudamqp_instance.instance.id)
|
|
742
|
+
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
Or use Terraform CLI:
|
|
685
746
|
|
|
686
747
|
```sh
|
|
687
748
|
$ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
|
|
688
749
|
```
|
|
689
750
|
|
|
751
|
+
[CloudAMQP API list recipients]: https://docs.cloudamqp.com/cloudamqp_api.html#list-recipients
|
|
752
|
+
|
|
690
753
|
:param str resource_name: The name of the resource.
|
|
691
754
|
:param NotificationArgs args: The arguments to use to populate this resource's properties.
|
|
692
755
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -760,6 +823,15 @@ class Notification(pulumi.CustomResource):
|
|
|
760
823
|
|
|
761
824
|
___
|
|
762
825
|
|
|
826
|
+
The options parameter:
|
|
827
|
+
|
|
828
|
+
* rk - (Optional) Routing key to route alarm notification (can be used with Victorops).
|
|
829
|
+
* dedupkey - (Optional) If multiple alarms are triggered using a recipient with this key, only the
|
|
830
|
+
the first alarm will trigger a notification (can be used with PagerDuty). Leave blank
|
|
831
|
+
to use the generated dedup key.
|
|
832
|
+
|
|
833
|
+
___
|
|
834
|
+
|
|
763
835
|
The `responders` block consists of:
|
|
764
836
|
:param pulumi.Input[str] type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
765
837
|
:param pulumi.Input[str] value: Integration/API key or endpoint to send the notification.
|
|
@@ -809,6 +881,15 @@ class Notification(pulumi.CustomResource):
|
|
|
809
881
|
|
|
810
882
|
___
|
|
811
883
|
|
|
884
|
+
The options parameter:
|
|
885
|
+
|
|
886
|
+
* rk - (Optional) Routing key to route alarm notification (can be used with Victorops).
|
|
887
|
+
* dedupkey - (Optional) If multiple alarms are triggered using a recipient with this key, only the
|
|
888
|
+
the first alarm will trigger a notification (can be used with PagerDuty). Leave blank
|
|
889
|
+
to use the generated dedup key.
|
|
890
|
+
|
|
891
|
+
___
|
|
892
|
+
|
|
812
893
|
The `responders` block consists of:
|
|
813
894
|
"""
|
|
814
895
|
return pulumi.get(self, "responders")
|
pulumi_cloudamqp/outputs.py
CHANGED
|
@@ -54,6 +54,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
54
54
|
"""
|
|
55
55
|
:param int additional_disk_size: Additional added disk size
|
|
56
56
|
:param int disk_size: Subscription plan disk size
|
|
57
|
+
:param str name: Name of the node.
|
|
57
58
|
"""
|
|
58
59
|
if additional_disk_size is not None:
|
|
59
60
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
@@ -81,6 +82,9 @@ class ExtraDiskSizeNode(dict):
|
|
|
81
82
|
@property
|
|
82
83
|
@pulumi.getter
|
|
83
84
|
def name(self) -> Optional[str]:
|
|
85
|
+
"""
|
|
86
|
+
Name of the node.
|
|
87
|
+
"""
|
|
84
88
|
return pulumi.get(self, "name")
|
|
85
89
|
|
|
86
90
|
|
|
@@ -107,10 +111,12 @@ class InstanceCopySetting(dict):
|
|
|
107
111
|
settings: Sequence[str],
|
|
108
112
|
subscription_id: str):
|
|
109
113
|
"""
|
|
110
|
-
:param Sequence[str] settings: Array of one or more settings to be copied. Allowed values:
|
|
114
|
+
:param Sequence[str] settings: Array of one or more settings to be copied. Allowed values:
|
|
115
|
+
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
111
116
|
|
|
112
|
-
See more below, copy settings
|
|
113
|
-
:param str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
117
|
+
See more below, [copy settings].
|
|
118
|
+
:param str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
119
|
+
from.
|
|
114
120
|
"""
|
|
115
121
|
pulumi.set(__self__, "settings", settings)
|
|
116
122
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
@@ -119,9 +125,10 @@ class InstanceCopySetting(dict):
|
|
|
119
125
|
@pulumi.getter
|
|
120
126
|
def settings(self) -> Sequence[str]:
|
|
121
127
|
"""
|
|
122
|
-
Array of one or more settings to be copied. Allowed values:
|
|
128
|
+
Array of one or more settings to be copied. Allowed values:
|
|
129
|
+
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
123
130
|
|
|
124
|
-
See more below, copy settings
|
|
131
|
+
See more below, [copy settings].
|
|
125
132
|
"""
|
|
126
133
|
return pulumi.get(self, "settings")
|
|
127
134
|
|
|
@@ -129,7 +136,8 @@ class InstanceCopySetting(dict):
|
|
|
129
136
|
@pulumi.getter(name="subscriptionId")
|
|
130
137
|
def subscription_id(self) -> str:
|
|
131
138
|
"""
|
|
132
|
-
Instance identifier of the CloudAMQP instance to copy the settings
|
|
139
|
+
Instance identifier of the CloudAMQP instance to copy the settings
|
|
140
|
+
from.
|
|
133
141
|
"""
|
|
134
142
|
return pulumi.get(self, "subscription_id")
|
|
135
143
|
|
|
@@ -226,6 +234,8 @@ class SecurityFirewallRule(dict):
|
|
|
226
234
|
| AMQP | 5672 |
|
|
227
235
|
| AMQPS | 5671 |
|
|
228
236
|
| HTTPS | 443 |
|
|
237
|
+
| MQTT | 1883 |
|
|
238
|
+
| MQTTS | 8883 |
|
|
229
239
|
:param Sequence[int] ports: Custom ports to be opened
|
|
230
240
|
:param Sequence[str] services: Pre-defined service ports, see table below
|
|
231
241
|
"""
|
|
@@ -272,6 +282,8 @@ class SecurityFirewallRule(dict):
|
|
|
272
282
|
| AMQP | 5672 |
|
|
273
283
|
| AMQPS | 5671 |
|
|
274
284
|
| HTTPS | 443 |
|
|
285
|
+
| MQTT | 1883 |
|
|
286
|
+
| MQTTS | 8883 |
|
|
275
287
|
"""
|
|
276
288
|
return pulumi.get(self, "description")
|
|
277
289
|
|
|
@@ -301,11 +313,11 @@ class GetAccountInstanceResult(dict):
|
|
|
301
313
|
region: str,
|
|
302
314
|
tags: Optional[Sequence[str]] = None):
|
|
303
315
|
"""
|
|
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:
|
|
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.
|
|
309
321
|
"""
|
|
310
322
|
pulumi.set(__self__, "id", id)
|
|
311
323
|
pulumi.set(__self__, "name", name)
|
|
@@ -318,7 +330,7 @@ class GetAccountInstanceResult(dict):
|
|
|
318
330
|
@pulumi.getter
|
|
319
331
|
def id(self) -> int:
|
|
320
332
|
"""
|
|
321
|
-
The instance identifier
|
|
333
|
+
The instance identifier.
|
|
322
334
|
"""
|
|
323
335
|
return pulumi.get(self, "id")
|
|
324
336
|
|
|
@@ -326,7 +338,7 @@ class GetAccountInstanceResult(dict):
|
|
|
326
338
|
@pulumi.getter
|
|
327
339
|
def name(self) -> str:
|
|
328
340
|
"""
|
|
329
|
-
The name of the instance
|
|
341
|
+
The name of the instance.
|
|
330
342
|
"""
|
|
331
343
|
return pulumi.get(self, "name")
|
|
332
344
|
|
|
@@ -334,7 +346,7 @@ class GetAccountInstanceResult(dict):
|
|
|
334
346
|
@pulumi.getter
|
|
335
347
|
def plan(self) -> str:
|
|
336
348
|
"""
|
|
337
|
-
The subscription plan used for the instance
|
|
349
|
+
The subscription plan used for the instance.
|
|
338
350
|
"""
|
|
339
351
|
return pulumi.get(self, "plan")
|
|
340
352
|
|
|
@@ -342,7 +354,7 @@ class GetAccountInstanceResult(dict):
|
|
|
342
354
|
@pulumi.getter
|
|
343
355
|
def region(self) -> str:
|
|
344
356
|
"""
|
|
345
|
-
The region were the instanece is located in
|
|
357
|
+
The region were the instanece is located in.
|
|
346
358
|
"""
|
|
347
359
|
return pulumi.get(self, "region")
|
|
348
360
|
|
|
@@ -350,7 +362,7 @@ class GetAccountInstanceResult(dict):
|
|
|
350
362
|
@pulumi.getter
|
|
351
363
|
def tags(self) -> Optional[Sequence[str]]:
|
|
352
364
|
"""
|
|
353
|
-
|
|
365
|
+
Optional tags set for the instance.
|
|
354
366
|
"""
|
|
355
367
|
return pulumi.get(self, "tags")
|
|
356
368
|
|
|
@@ -365,12 +377,12 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
365
377
|
vpc_name: str,
|
|
366
378
|
tags: Optional[Sequence[str]] = None):
|
|
367
379
|
"""
|
|
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:
|
|
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.
|
|
374
386
|
"""
|
|
375
387
|
pulumi.set(__self__, "id", id)
|
|
376
388
|
pulumi.set(__self__, "name", name)
|
|
@@ -384,7 +396,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
384
396
|
@pulumi.getter
|
|
385
397
|
def id(self) -> int:
|
|
386
398
|
"""
|
|
387
|
-
The
|
|
399
|
+
The VPC identifier.
|
|
388
400
|
"""
|
|
389
401
|
return pulumi.get(self, "id")
|
|
390
402
|
|
|
@@ -392,7 +404,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
392
404
|
@pulumi.getter
|
|
393
405
|
def name(self) -> str:
|
|
394
406
|
"""
|
|
395
|
-
The
|
|
407
|
+
The VPC instance name.
|
|
396
408
|
"""
|
|
397
409
|
return pulumi.get(self, "name")
|
|
398
410
|
|
|
@@ -400,7 +412,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
400
412
|
@pulumi.getter
|
|
401
413
|
def region(self) -> str:
|
|
402
414
|
"""
|
|
403
|
-
The region
|
|
415
|
+
The region the VPC is hosted in.
|
|
404
416
|
"""
|
|
405
417
|
return pulumi.get(self, "region")
|
|
406
418
|
|
|
@@ -408,7 +420,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
408
420
|
@pulumi.getter
|
|
409
421
|
def subnet(self) -> str:
|
|
410
422
|
"""
|
|
411
|
-
The VPC subnet
|
|
423
|
+
The VPC subnet.
|
|
412
424
|
"""
|
|
413
425
|
return pulumi.get(self, "subnet")
|
|
414
426
|
|
|
@@ -416,7 +428,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
416
428
|
@pulumi.getter(name="vpcName")
|
|
417
429
|
def vpc_name(self) -> str:
|
|
418
430
|
"""
|
|
419
|
-
VPC name given when hosted at the cloud provider
|
|
431
|
+
VPC name given when hosted at the cloud provider.
|
|
420
432
|
"""
|
|
421
433
|
return pulumi.get(self, "vpc_name")
|
|
422
434
|
|
|
@@ -424,7 +436,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
424
436
|
@pulumi.getter
|
|
425
437
|
def tags(self) -> Optional[Sequence[str]]:
|
|
426
438
|
"""
|
|
427
|
-
|
|
439
|
+
Optional tags set for the VPC.
|
|
428
440
|
"""
|
|
429
441
|
return pulumi.get(self, "tags")
|
|
430
442
|
|
|
@@ -443,6 +455,19 @@ class GetNodesNodeResult(dict):
|
|
|
443
455
|
name: str,
|
|
444
456
|
rabbitmq_version: str,
|
|
445
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?
|
|
470
|
+
"""
|
|
446
471
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
447
472
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
448
473
|
pulumi.set(__self__, "configured", configured)
|
|
@@ -458,56 +483,89 @@ class GetNodesNodeResult(dict):
|
|
|
458
483
|
@property
|
|
459
484
|
@pulumi.getter(name="additionalDiskSize")
|
|
460
485
|
def additional_disk_size(self) -> int:
|
|
486
|
+
"""
|
|
487
|
+
Additional added disk size
|
|
488
|
+
"""
|
|
461
489
|
return pulumi.get(self, "additional_disk_size")
|
|
462
490
|
|
|
463
491
|
@property
|
|
464
492
|
@pulumi.getter(name="availabilityZone")
|
|
465
493
|
def availability_zone(self) -> str:
|
|
494
|
+
"""
|
|
495
|
+
Availability zone the node is hosted in.
|
|
496
|
+
"""
|
|
466
497
|
return pulumi.get(self, "availability_zone")
|
|
467
498
|
|
|
468
499
|
@property
|
|
469
500
|
@pulumi.getter
|
|
470
501
|
def configured(self) -> bool:
|
|
502
|
+
"""
|
|
503
|
+
Is the node configured?
|
|
504
|
+
"""
|
|
471
505
|
return pulumi.get(self, "configured")
|
|
472
506
|
|
|
473
507
|
@property
|
|
474
508
|
@pulumi.getter(name="diskSize")
|
|
475
509
|
def disk_size(self) -> int:
|
|
510
|
+
"""
|
|
511
|
+
Subscription plan disk size
|
|
512
|
+
"""
|
|
476
513
|
return pulumi.get(self, "disk_size")
|
|
477
514
|
|
|
478
515
|
@property
|
|
479
516
|
@pulumi.getter(name="erlangVersion")
|
|
480
517
|
def erlang_version(self) -> str:
|
|
518
|
+
"""
|
|
519
|
+
Currently used Erlang version on the node.
|
|
520
|
+
"""
|
|
481
521
|
return pulumi.get(self, "erlang_version")
|
|
482
522
|
|
|
483
523
|
@property
|
|
484
524
|
@pulumi.getter
|
|
485
525
|
def hipe(self) -> bool:
|
|
526
|
+
"""
|
|
527
|
+
Enable or disable High-performance Erlang.
|
|
528
|
+
"""
|
|
486
529
|
return pulumi.get(self, "hipe")
|
|
487
530
|
|
|
488
531
|
@property
|
|
489
532
|
@pulumi.getter
|
|
490
533
|
def hostname(self) -> str:
|
|
534
|
+
"""
|
|
535
|
+
External hostname assigned to the node.
|
|
536
|
+
"""
|
|
491
537
|
return pulumi.get(self, "hostname")
|
|
492
538
|
|
|
493
539
|
@property
|
|
494
540
|
@pulumi.getter(name="hostnameInternal")
|
|
495
541
|
def hostname_internal(self) -> str:
|
|
542
|
+
"""
|
|
543
|
+
Internal hostname assigned to the node.
|
|
544
|
+
"""
|
|
496
545
|
return pulumi.get(self, "hostname_internal")
|
|
497
546
|
|
|
498
547
|
@property
|
|
499
548
|
@pulumi.getter
|
|
500
549
|
def name(self) -> str:
|
|
550
|
+
"""
|
|
551
|
+
Name of the node.
|
|
552
|
+
"""
|
|
501
553
|
return pulumi.get(self, "name")
|
|
502
554
|
|
|
503
555
|
@property
|
|
504
556
|
@pulumi.getter(name="rabbitmqVersion")
|
|
505
557
|
def rabbitmq_version(self) -> str:
|
|
558
|
+
"""
|
|
559
|
+
Currently configured Rabbit MQ version on the node.
|
|
560
|
+
"""
|
|
506
561
|
return pulumi.get(self, "rabbitmq_version")
|
|
507
562
|
|
|
508
563
|
@property
|
|
509
564
|
@pulumi.getter
|
|
510
565
|
def running(self) -> bool:
|
|
566
|
+
"""
|
|
567
|
+
Is the node running?
|
|
568
|
+
"""
|
|
511
569
|
return pulumi.get(self, "running")
|
|
512
570
|
|
|
513
571
|
|
|
@@ -517,6 +575,11 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
517
575
|
description: str,
|
|
518
576
|
name: str,
|
|
519
577
|
require: str):
|
|
578
|
+
"""
|
|
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.
|
|
582
|
+
"""
|
|
520
583
|
pulumi.set(__self__, "description", description)
|
|
521
584
|
pulumi.set(__self__, "name", name)
|
|
522
585
|
pulumi.set(__self__, "require", require)
|
|
@@ -524,16 +587,25 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
524
587
|
@property
|
|
525
588
|
@pulumi.getter
|
|
526
589
|
def description(self) -> str:
|
|
590
|
+
"""
|
|
591
|
+
Description of what the plugin does.
|
|
592
|
+
"""
|
|
527
593
|
return pulumi.get(self, "description")
|
|
528
594
|
|
|
529
595
|
@property
|
|
530
596
|
@pulumi.getter
|
|
531
597
|
def name(self) -> str:
|
|
598
|
+
"""
|
|
599
|
+
The type of the recipient.
|
|
600
|
+
"""
|
|
532
601
|
return pulumi.get(self, "name")
|
|
533
602
|
|
|
534
603
|
@property
|
|
535
604
|
@pulumi.getter
|
|
536
605
|
def require(self) -> str:
|
|
606
|
+
"""
|
|
607
|
+
Min. required Rabbit MQ version to be used.
|
|
608
|
+
"""
|
|
537
609
|
return pulumi.get(self, "require")
|
|
538
610
|
|
|
539
611
|
|
|
@@ -544,6 +616,12 @@ class GetPluginsPluginResult(dict):
|
|
|
544
616
|
enabled: bool,
|
|
545
617
|
name: str,
|
|
546
618
|
version: str):
|
|
619
|
+
"""
|
|
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.
|
|
624
|
+
"""
|
|
547
625
|
pulumi.set(__self__, "description", description)
|
|
548
626
|
pulumi.set(__self__, "enabled", enabled)
|
|
549
627
|
pulumi.set(__self__, "name", name)
|
|
@@ -552,21 +630,33 @@ class GetPluginsPluginResult(dict):
|
|
|
552
630
|
@property
|
|
553
631
|
@pulumi.getter
|
|
554
632
|
def description(self) -> str:
|
|
633
|
+
"""
|
|
634
|
+
Description of what the plugin does.
|
|
635
|
+
"""
|
|
555
636
|
return pulumi.get(self, "description")
|
|
556
637
|
|
|
557
638
|
@property
|
|
558
639
|
@pulumi.getter
|
|
559
640
|
def enabled(self) -> bool:
|
|
641
|
+
"""
|
|
642
|
+
Enable or disable information for the plugin.
|
|
643
|
+
"""
|
|
560
644
|
return pulumi.get(self, "enabled")
|
|
561
645
|
|
|
562
646
|
@property
|
|
563
647
|
@pulumi.getter
|
|
564
648
|
def name(self) -> str:
|
|
649
|
+
"""
|
|
650
|
+
The type of the recipient.
|
|
651
|
+
"""
|
|
565
652
|
return pulumi.get(self, "name")
|
|
566
653
|
|
|
567
654
|
@property
|
|
568
655
|
@pulumi.getter
|
|
569
656
|
def version(self) -> str:
|
|
657
|
+
"""
|
|
658
|
+
Rabbit MQ version that the plugins are shipped with.
|
|
659
|
+
"""
|
|
570
660
|
return pulumi.get(self, "version")
|
|
571
661
|
|
|
572
662
|
|