pulumi-cloudamqp 3.21.0a1743571485__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.

Files changed (51) hide show
  1. pulumi_cloudamqp/__init__.py +12 -0
  2. pulumi_cloudamqp/_inputs.py +92 -72
  3. pulumi_cloudamqp/account_action.py +42 -31
  4. pulumi_cloudamqp/alarm.py +232 -168
  5. pulumi_cloudamqp/config/__init__.py +1 -0
  6. pulumi_cloudamqp/config/__init__.pyi +1 -0
  7. pulumi_cloudamqp/config/vars.py +1 -0
  8. pulumi_cloudamqp/custom_domain.py +84 -38
  9. pulumi_cloudamqp/extra_disk_size.py +175 -155
  10. pulumi_cloudamqp/get_account.py +10 -3
  11. pulumi_cloudamqp/get_account_vpcs.py +15 -41
  12. pulumi_cloudamqp/get_alarm.py +74 -67
  13. pulumi_cloudamqp/get_alarms.py +165 -0
  14. pulumi_cloudamqp/get_credentials.py +19 -26
  15. pulumi_cloudamqp/get_instance.py +75 -25
  16. pulumi_cloudamqp/get_nodes.py +10 -56
  17. pulumi_cloudamqp/get_notification.py +39 -41
  18. pulumi_cloudamqp/get_notifications.py +135 -0
  19. pulumi_cloudamqp/get_plugins.py +28 -54
  20. pulumi_cloudamqp/get_plugins_community.py +29 -52
  21. pulumi_cloudamqp/get_upgradable_versions.py +19 -24
  22. pulumi_cloudamqp/get_vpc_gcp_info.py +44 -138
  23. pulumi_cloudamqp/get_vpc_info.py +34 -127
  24. pulumi_cloudamqp/instance.py +560 -333
  25. pulumi_cloudamqp/integration_aws_eventbridge.py +185 -117
  26. pulumi_cloudamqp/integration_log.py +491 -402
  27. pulumi_cloudamqp/integration_metric.py +348 -296
  28. pulumi_cloudamqp/maintenance_window.py +519 -0
  29. pulumi_cloudamqp/node_actions.py +85 -59
  30. pulumi_cloudamqp/notification.py +177 -92
  31. pulumi_cloudamqp/outputs.py +419 -125
  32. pulumi_cloudamqp/plugin.py +173 -105
  33. pulumi_cloudamqp/plugin_community.py +171 -107
  34. pulumi_cloudamqp/privatelink_aws.py +143 -347
  35. pulumi_cloudamqp/privatelink_azure.py +145 -345
  36. pulumi_cloudamqp/provider.py +25 -21
  37. pulumi_cloudamqp/pulumi-plugin.json +1 -1
  38. pulumi_cloudamqp/rabbit_configuration.py +337 -210
  39. pulumi_cloudamqp/security_firewall.py +114 -57
  40. pulumi_cloudamqp/upgrade_lavinmq.py +32 -102
  41. pulumi_cloudamqp/upgrade_rabbitmq.py +56 -299
  42. pulumi_cloudamqp/vpc.py +115 -79
  43. pulumi_cloudamqp/vpc_connect.py +222 -606
  44. pulumi_cloudamqp/vpc_gcp_peering.py +230 -591
  45. pulumi_cloudamqp/vpc_peering.py +123 -105
  46. pulumi_cloudamqp/webhook.py +146 -103
  47. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/METADATA +1 -1
  48. pulumi_cloudamqp-3.22.0.dist-info/RECORD +52 -0
  49. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/WHEEL +1 -1
  50. pulumi_cloudamqp-3.21.0a1743571485.dist-info/RECORD +0 -49
  51. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/top_level.txt +0 -0
@@ -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,12 +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
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.
57
61
  """
58
62
  if additional_disk_size is not None:
59
63
  pulumi.set(__self__, "additional_disk_size", additional_disk_size)
@@ -64,7 +68,7 @@ class ExtraDiskSizeNode(dict):
64
68
 
65
69
  @property
66
70
  @pulumi.getter(name="additionalDiskSize")
67
- def additional_disk_size(self) -> Optional[int]:
71
+ def additional_disk_size(self) -> Optional[builtins.int]:
68
72
  """
69
73
  Additional added disk size
70
74
  """
@@ -72,7 +76,7 @@ class ExtraDiskSizeNode(dict):
72
76
 
73
77
  @property
74
78
  @pulumi.getter(name="diskSize")
75
- def disk_size(self) -> Optional[int]:
79
+ def disk_size(self) -> Optional[builtins.int]:
76
80
  """
77
81
  Subscription plan disk size
78
82
  """
@@ -80,7 +84,10 @@ class ExtraDiskSizeNode(dict):
80
84
 
81
85
  @property
82
86
  @pulumi.getter
83
- def name(self) -> Optional[str]:
87
+ def name(self) -> Optional[builtins.str]:
88
+ """
89
+ Name of the node.
90
+ """
84
91
  return pulumi.get(self, "name")
85
92
 
86
93
 
@@ -104,32 +111,36 @@ class InstanceCopySetting(dict):
104
111
  return super().get(key, default)
105
112
 
106
113
  def __init__(__self__, *,
107
- settings: Sequence[str],
108
- subscription_id: str):
114
+ settings: Sequence[builtins.str],
115
+ subscription_id: builtins.str):
109
116
  """
110
- :param Sequence[str] settings: Array of one or more settings to be copied. Allowed values: [alarms, config, definitions, firewall, logs, metrics, plugins]
117
+ :param Sequence[builtins.str] settings: Array of one or more settings to be copied. Allowed values:
118
+ [alarms, config, definitions, firewall, logs, metrics, plugins]
111
119
 
112
- See more below, copy settings
113
- :param str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings from.
120
+ See more below, [copy settings].
121
+ :param builtins.str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
122
+ from.
114
123
  """
115
124
  pulumi.set(__self__, "settings", settings)
116
125
  pulumi.set(__self__, "subscription_id", subscription_id)
117
126
 
118
127
  @property
119
128
  @pulumi.getter
120
- def settings(self) -> Sequence[str]:
129
+ def settings(self) -> Sequence[builtins.str]:
121
130
  """
122
- Array of one or more settings to be copied. Allowed values: [alarms, config, definitions, firewall, logs, metrics, plugins]
131
+ Array of one or more settings to be copied. Allowed values:
132
+ [alarms, config, definitions, firewall, logs, metrics, plugins]
123
133
 
124
- See more below, copy settings
134
+ See more below, [copy settings].
125
135
  """
126
136
  return pulumi.get(self, "settings")
127
137
 
128
138
  @property
129
139
  @pulumi.getter(name="subscriptionId")
130
- def subscription_id(self) -> str:
140
+ def subscription_id(self) -> builtins.str:
131
141
  """
132
- Instance identifier of the CloudAMQP instance to copy the settings from.
142
+ Instance identifier of the CloudAMQP instance to copy the settings
143
+ from.
133
144
  """
134
145
  return pulumi.get(self, "subscription_id")
135
146
 
@@ -137,15 +148,15 @@ class InstanceCopySetting(dict):
137
148
  @pulumi.output_type
138
149
  class NotificationResponder(dict):
139
150
  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
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
149
160
 
150
161
  Responders of type `team`, `escalation` and `schedule` can use either id or name.
151
162
  While `user` can use either id or username.
@@ -160,7 +171,7 @@ class NotificationResponder(dict):
160
171
 
161
172
  @property
162
173
  @pulumi.getter
163
- def type(self) -> str:
174
+ def type(self) -> builtins.str:
164
175
  """
165
176
  Type of responder. [`team`, `user`, `escalation`, `schedule`]
166
177
  """
@@ -168,7 +179,7 @@ class NotificationResponder(dict):
168
179
 
169
180
  @property
170
181
  @pulumi.getter
171
- def id(self) -> Optional[str]:
182
+ def id(self) -> Optional[builtins.str]:
172
183
  """
173
184
  Identifier in UUID format
174
185
  """
@@ -176,7 +187,7 @@ class NotificationResponder(dict):
176
187
 
177
188
  @property
178
189
  @pulumi.getter
179
- def name(self) -> Optional[str]:
190
+ def name(self) -> Optional[builtins.str]:
180
191
  """
181
192
  Name of the responder
182
193
  """
@@ -184,7 +195,7 @@ class NotificationResponder(dict):
184
195
 
185
196
  @property
186
197
  @pulumi.getter
187
- def username(self) -> Optional[str]:
198
+ def username(self) -> Optional[builtins.str]:
188
199
  """
189
200
  Username of the responder
190
201
 
@@ -197,13 +208,13 @@ class NotificationResponder(dict):
197
208
  @pulumi.output_type
198
209
  class SecurityFirewallRule(dict):
199
210
  def __init__(__self__, *,
200
- ip: str,
201
- description: Optional[str] = None,
202
- ports: Optional[Sequence[int]] = None,
203
- 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):
204
215
  """
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.
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.
207
218
 
208
219
  Pre-defined services for RabbitMQ:
209
220
 
@@ -226,8 +237,10 @@ class SecurityFirewallRule(dict):
226
237
  | AMQP | 5672 |
227
238
  | AMQPS | 5671 |
228
239
  | HTTPS | 443 |
229
- :param Sequence[int] ports: Custom ports to be opened
230
- :param Sequence[str] services: Pre-defined service ports, see table below
240
+ | MQTT | 1883 |
241
+ | MQTTS | 8883 |
242
+ :param Sequence[builtins.int] ports: Custom ports to be opened
243
+ :param Sequence[builtins.str] services: Pre-defined service ports, see table below
231
244
  """
232
245
  pulumi.set(__self__, "ip", ip)
233
246
  if description is not None:
@@ -239,7 +252,7 @@ class SecurityFirewallRule(dict):
239
252
 
240
253
  @property
241
254
  @pulumi.getter
242
- def ip(self) -> str:
255
+ def ip(self) -> builtins.str:
243
256
  """
244
257
  CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
245
258
  """
@@ -247,7 +260,7 @@ class SecurityFirewallRule(dict):
247
260
 
248
261
  @property
249
262
  @pulumi.getter
250
- def description(self) -> Optional[str]:
263
+ def description(self) -> Optional[builtins.str]:
251
264
  """
252
265
  Description name of the rule. e.g. Default.
253
266
 
@@ -272,12 +285,14 @@ class SecurityFirewallRule(dict):
272
285
  | AMQP | 5672 |
273
286
  | AMQPS | 5671 |
274
287
  | HTTPS | 443 |
288
+ | MQTT | 1883 |
289
+ | MQTTS | 8883 |
275
290
  """
276
291
  return pulumi.get(self, "description")
277
292
 
278
293
  @property
279
294
  @pulumi.getter
280
- def ports(self) -> Optional[Sequence[int]]:
295
+ def ports(self) -> Optional[Sequence[builtins.int]]:
281
296
  """
282
297
  Custom ports to be opened
283
298
  """
@@ -285,7 +300,7 @@ class SecurityFirewallRule(dict):
285
300
 
286
301
  @property
287
302
  @pulumi.getter
288
- def services(self) -> Optional[Sequence[str]]:
303
+ def services(self) -> Optional[Sequence[builtins.str]]:
289
304
  """
290
305
  Pre-defined service ports, see table below
291
306
  """
@@ -295,17 +310,17 @@ class SecurityFirewallRule(dict):
295
310
  @pulumi.output_type
296
311
  class GetAccountInstanceResult(dict):
297
312
  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: Tag 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.
309
324
  """
310
325
  pulumi.set(__self__, "id", id)
311
326
  pulumi.set(__self__, "name", name)
@@ -316,41 +331,41 @@ class GetAccountInstanceResult(dict):
316
331
 
317
332
  @property
318
333
  @pulumi.getter
319
- def id(self) -> int:
334
+ def id(self) -> builtins.int:
320
335
  """
321
- The instance identifier
336
+ The instance identifier.
322
337
  """
323
338
  return pulumi.get(self, "id")
324
339
 
325
340
  @property
326
341
  @pulumi.getter
327
- def name(self) -> str:
342
+ def name(self) -> builtins.str:
328
343
  """
329
- The name of the instance
344
+ The name of the instance.
330
345
  """
331
346
  return pulumi.get(self, "name")
332
347
 
333
348
  @property
334
349
  @pulumi.getter
335
- def plan(self) -> str:
350
+ def plan(self) -> builtins.str:
336
351
  """
337
- The subscription plan used for the instance
352
+ The subscription plan used for the instance.
338
353
  """
339
354
  return pulumi.get(self, "plan")
340
355
 
341
356
  @property
342
357
  @pulumi.getter
343
- def region(self) -> str:
358
+ def region(self) -> builtins.str:
344
359
  """
345
- The region were the instanece is located in
360
+ The region were the instanece is located in.
346
361
  """
347
362
  return pulumi.get(self, "region")
348
363
 
349
364
  @property
350
365
  @pulumi.getter
351
- def tags(self) -> Optional[Sequence[str]]:
366
+ def tags(self) -> Optional[Sequence[builtins.str]]:
352
367
  """
353
- Tag for the instance
368
+ Optional tags set for the instance.
354
369
  """
355
370
  return pulumi.get(self, "tags")
356
371
 
@@ -358,19 +373,19 @@ class GetAccountInstanceResult(dict):
358
373
  @pulumi.output_type
359
374
  class GetAccountVpcsVpcResult(dict):
360
375
  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 instance identifier
369
- :param str name: The name of the instance
370
- :param str region: The region were the instanece is located in
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: Tag the VPC instance with optional tags
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.
374
389
  """
375
390
  pulumi.set(__self__, "id", id)
376
391
  pulumi.set(__self__, "name", name)
@@ -382,67 +397,219 @@ class GetAccountVpcsVpcResult(dict):
382
397
 
383
398
  @property
384
399
  @pulumi.getter
385
- def id(self) -> int:
400
+ def id(self) -> builtins.int:
386
401
  """
387
- The instance identifier
402
+ The VPC identifier.
388
403
  """
389
404
  return pulumi.get(self, "id")
390
405
 
391
406
  @property
392
407
  @pulumi.getter
393
- def name(self) -> str:
408
+ def name(self) -> builtins.str:
394
409
  """
395
- The name of the instance
410
+ The VPC instance name.
396
411
  """
397
412
  return pulumi.get(self, "name")
398
413
 
399
414
  @property
400
415
  @pulumi.getter
401
- def region(self) -> str:
416
+ def region(self) -> builtins.str:
402
417
  """
403
- The region were the instanece is located in
418
+ The region the VPC is hosted in.
404
419
  """
405
420
  return pulumi.get(self, "region")
406
421
 
407
422
  @property
408
423
  @pulumi.getter
409
- def subnet(self) -> str:
424
+ def subnet(self) -> builtins.str:
410
425
  """
411
- The VPC subnet
426
+ The VPC subnet.
412
427
  """
413
428
  return pulumi.get(self, "subnet")
414
429
 
415
430
  @property
416
431
  @pulumi.getter(name="vpcName")
417
- def vpc_name(self) -> str:
432
+ def vpc_name(self) -> builtins.str:
418
433
  """
419
- VPC name given when hosted at the cloud provider
434
+ VPC name given when hosted at the cloud provider.
420
435
  """
421
436
  return pulumi.get(self, "vpc_name")
422
437
 
423
438
  @property
424
439
  @pulumi.getter
425
- def tags(self) -> Optional[Sequence[str]]:
440
+ def tags(self) -> Optional[Sequence[builtins.str]]:
426
441
  """
427
- Tag the VPC instance with optional tags
442
+ Optional tags set for the VPC.
428
443
  """
429
444
  return pulumi.get(self, "tags")
430
445
 
431
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
+
432
586
  @pulumi.output_type
433
587
  class GetNodesNodeResult(dict):
434
588
  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):
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?
612
+ """
446
613
  pulumi.set(__self__, "additional_disk_size", additional_disk_size)
447
614
  pulumi.set(__self__, "availability_zone", availability_zone)
448
615
  pulumi.set(__self__, "configured", configured)
@@ -457,93 +624,208 @@ class GetNodesNodeResult(dict):
457
624
 
458
625
  @property
459
626
  @pulumi.getter(name="additionalDiskSize")
460
- def additional_disk_size(self) -> int:
627
+ def additional_disk_size(self) -> builtins.int:
628
+ """
629
+ Additional added disk size
630
+ """
461
631
  return pulumi.get(self, "additional_disk_size")
462
632
 
463
633
  @property
464
634
  @pulumi.getter(name="availabilityZone")
465
- def availability_zone(self) -> str:
635
+ def availability_zone(self) -> builtins.str:
636
+ """
637
+ Availability zone the node is hosted in.
638
+ """
466
639
  return pulumi.get(self, "availability_zone")
467
640
 
468
641
  @property
469
642
  @pulumi.getter
470
- def configured(self) -> bool:
643
+ def configured(self) -> builtins.bool:
644
+ """
645
+ Is the node configured?
646
+ """
471
647
  return pulumi.get(self, "configured")
472
648
 
473
649
  @property
474
650
  @pulumi.getter(name="diskSize")
475
- def disk_size(self) -> int:
651
+ def disk_size(self) -> builtins.int:
652
+ """
653
+ Subscription plan disk size
654
+ """
476
655
  return pulumi.get(self, "disk_size")
477
656
 
478
657
  @property
479
658
  @pulumi.getter(name="erlangVersion")
480
- def erlang_version(self) -> str:
659
+ def erlang_version(self) -> builtins.str:
660
+ """
661
+ Currently used Erlang version on the node.
662
+ """
481
663
  return pulumi.get(self, "erlang_version")
482
664
 
483
665
  @property
484
666
  @pulumi.getter
485
- def hipe(self) -> bool:
667
+ def hipe(self) -> builtins.bool:
668
+ """
669
+ Enable or disable High-performance Erlang.
670
+ """
486
671
  return pulumi.get(self, "hipe")
487
672
 
488
673
  @property
489
674
  @pulumi.getter
490
- def hostname(self) -> str:
675
+ def hostname(self) -> builtins.str:
676
+ """
677
+ External hostname assigned to the node.
678
+ """
491
679
  return pulumi.get(self, "hostname")
492
680
 
493
681
  @property
494
682
  @pulumi.getter(name="hostnameInternal")
495
- def hostname_internal(self) -> str:
683
+ def hostname_internal(self) -> builtins.str:
684
+ """
685
+ Internal hostname assigned to the node.
686
+ """
496
687
  return pulumi.get(self, "hostname_internal")
497
688
 
498
689
  @property
499
690
  @pulumi.getter
500
- def name(self) -> str:
691
+ def name(self) -> builtins.str:
692
+ """
693
+ Name of the node.
694
+ """
501
695
  return pulumi.get(self, "name")
502
696
 
503
697
  @property
504
698
  @pulumi.getter(name="rabbitmqVersion")
505
- def rabbitmq_version(self) -> str:
699
+ def rabbitmq_version(self) -> builtins.str:
700
+ """
701
+ Currently configured Rabbit MQ version on the node.
702
+ """
506
703
  return pulumi.get(self, "rabbitmq_version")
507
704
 
508
705
  @property
509
706
  @pulumi.getter
510
- def running(self) -> bool:
707
+ def running(self) -> builtins.bool:
708
+ """
709
+ Is the node running?
710
+ """
511
711
  return pulumi.get(self, "running")
512
712
 
513
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
+
514
776
  @pulumi.output_type
515
777
  class GetPluginsCommunityPluginResult(dict):
516
778
  def __init__(__self__, *,
517
- description: str,
518
- name: str,
519
- require: str):
779
+ description: builtins.str,
780
+ name: builtins.str,
781
+ require: builtins.str):
782
+ """
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.
786
+ """
520
787
  pulumi.set(__self__, "description", description)
521
788
  pulumi.set(__self__, "name", name)
522
789
  pulumi.set(__self__, "require", require)
523
790
 
524
791
  @property
525
792
  @pulumi.getter
526
- def description(self) -> str:
793
+ def description(self) -> builtins.str:
794
+ """
795
+ Description of what the plugin does.
796
+ """
527
797
  return pulumi.get(self, "description")
528
798
 
529
799
  @property
530
800
  @pulumi.getter
531
- def name(self) -> str:
801
+ def name(self) -> builtins.str:
802
+ """
803
+ The type of the recipient.
804
+ """
532
805
  return pulumi.get(self, "name")
533
806
 
534
807
  @property
535
808
  @pulumi.getter
536
- def require(self) -> str:
809
+ def require(self) -> builtins.str:
810
+ """
811
+ Min. required Rabbit MQ version to be used.
812
+ """
537
813
  return pulumi.get(self, "require")
538
814
 
539
815
 
540
816
  @pulumi.output_type
541
817
  class GetPluginsPluginResult(dict):
542
818
  def __init__(__self__, *,
543
- description: str,
544
- enabled: bool,
545
- name: str,
546
- version: str):
819
+ description: builtins.str,
820
+ enabled: builtins.bool,
821
+ name: builtins.str,
822
+ version: builtins.str):
823
+ """
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.
828
+ """
547
829
  pulumi.set(__self__, "description", description)
548
830
  pulumi.set(__self__, "enabled", enabled)
549
831
  pulumi.set(__self__, "name", name)
@@ -551,22 +833,34 @@ class GetPluginsPluginResult(dict):
551
833
 
552
834
  @property
553
835
  @pulumi.getter
554
- def description(self) -> str:
836
+ def description(self) -> builtins.str:
837
+ """
838
+ Description of what the plugin does.
839
+ """
555
840
  return pulumi.get(self, "description")
556
841
 
557
842
  @property
558
843
  @pulumi.getter
559
- def enabled(self) -> bool:
844
+ def enabled(self) -> builtins.bool:
845
+ """
846
+ Enable or disable information for the plugin.
847
+ """
560
848
  return pulumi.get(self, "enabled")
561
849
 
562
850
  @property
563
851
  @pulumi.getter
564
- def name(self) -> str:
852
+ def name(self) -> builtins.str:
853
+ """
854
+ The type of the recipient.
855
+ """
565
856
  return pulumi.get(self, "name")
566
857
 
567
858
  @property
568
859
  @pulumi.getter
569
- def version(self) -> str:
860
+ def version(self) -> builtins.str:
861
+ """
862
+ Rabbit MQ version that the plugins are shipped with.
863
+ """
570
864
  return pulumi.get(self, "version")
571
865
 
572
866