pulumi-cloudamqp 3.19.0a1722057587__py3-none-any.whl → 3.19.0a1722921913__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.

@@ -89,6 +89,7 @@ def get_nodes(instance_id: Optional[int] = None,
89
89
  The `nodes` block consist of
90
90
 
91
91
  * `hostname` - External hostname assigned to the node.
92
+ * `hostname_internal` - Internal hostname assigned to the node.
92
93
  * `name` - Name of the node.
93
94
  * `running` - Is the node running?
94
95
  * `rabbitmq_version` - Currently configured Rabbit MQ version on the node.
@@ -97,6 +98,7 @@ def get_nodes(instance_id: Optional[int] = None,
97
98
  * `configured` - Is the node configured?
98
99
  * `disk_size` - Subscription plan disk size
99
100
  * `additional_disk_size` - Additional added disk size
101
+ * `availability_zone` - Availability zone the node is hosted in.
100
102
 
101
103
  ***Note:*** *Total disk size = disk_size + additional_disk_size*
102
104
 
@@ -145,6 +147,7 @@ def get_nodes_output(instance_id: Optional[pulumi.Input[int]] = None,
145
147
  The `nodes` block consist of
146
148
 
147
149
  * `hostname` - External hostname assigned to the node.
150
+ * `hostname_internal` - Internal hostname assigned to the node.
148
151
  * `name` - Name of the node.
149
152
  * `running` - Is the node running?
150
153
  * `rabbitmq_version` - Currently configured Rabbit MQ version on the node.
@@ -153,6 +156,7 @@ def get_nodes_output(instance_id: Optional[pulumi.Input[int]] = None,
153
156
  * `configured` - Is the node configured?
154
157
  * `disk_size` - Subscription plan disk size
155
158
  * `additional_disk_size` - Additional added disk size
159
+ * `availability_zone` - Availability zone the node is hosted in.
156
160
 
157
161
  ***Note:*** *Total disk size = disk_size + additional_disk_size*
158
162
 
@@ -383,6 +383,24 @@ class Notification(pulumi.CustomResource):
383
383
 
384
384
  </details>
385
385
 
386
+ <details>
387
+ <summary>
388
+ <b>Slack recipient</b>
389
+ </summary>
390
+
391
+ ```python
392
+ import pulumi
393
+ import pulumi_cloudamqp as cloudamqp
394
+
395
+ slack_recipient = cloudamqp.Notification("slack_recipient",
396
+ instance_id=instance["id"],
397
+ type="slack",
398
+ value="<slack-webhook-url>",
399
+ name="Slack webhook recipient")
400
+ ```
401
+
402
+ </details>
403
+
386
404
  <details>
387
405
  <summary>
388
406
  <b>Webhook recipient</b>
@@ -432,7 +450,7 @@ class Notification(pulumi.CustomResource):
432
450
 
433
451
  (CSV separated) with the instance identifier. To retrieve the identifier of a recipient, use
434
452
 
435
- [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-notification-recipients)
453
+ [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-recipients).
436
454
 
437
455
  ```sh
438
456
  $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
@@ -591,6 +609,24 @@ class Notification(pulumi.CustomResource):
591
609
 
592
610
  </details>
593
611
 
612
+ <details>
613
+ <summary>
614
+ <b>Slack recipient</b>
615
+ </summary>
616
+
617
+ ```python
618
+ import pulumi
619
+ import pulumi_cloudamqp as cloudamqp
620
+
621
+ slack_recipient = cloudamqp.Notification("slack_recipient",
622
+ instance_id=instance["id"],
623
+ type="slack",
624
+ value="<slack-webhook-url>",
625
+ name="Slack webhook recipient")
626
+ ```
627
+
628
+ </details>
629
+
594
630
  <details>
595
631
  <summary>
596
632
  <b>Webhook recipient</b>
@@ -640,7 +676,7 @@ class Notification(pulumi.CustomResource):
640
676
 
641
677
  (CSV separated) with the instance identifier. To retrieve the identifier of a recipient, use
642
678
 
643
- [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-notification-recipients)
679
+ [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-recipients).
644
680
 
645
681
  ```sh
646
682
  $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
@@ -384,20 +384,24 @@ class GetAccountVpcsVpcResult(dict):
384
384
  class GetNodesNodeResult(dict):
385
385
  def __init__(__self__, *,
386
386
  additional_disk_size: int,
387
+ availability_zone: str,
387
388
  configured: bool,
388
389
  disk_size: int,
389
390
  erlang_version: str,
390
391
  hipe: bool,
391
392
  hostname: str,
393
+ hostname_internal: str,
392
394
  name: str,
393
395
  rabbitmq_version: str,
394
396
  running: bool):
395
397
  pulumi.set(__self__, "additional_disk_size", additional_disk_size)
398
+ pulumi.set(__self__, "availability_zone", availability_zone)
396
399
  pulumi.set(__self__, "configured", configured)
397
400
  pulumi.set(__self__, "disk_size", disk_size)
398
401
  pulumi.set(__self__, "erlang_version", erlang_version)
399
402
  pulumi.set(__self__, "hipe", hipe)
400
403
  pulumi.set(__self__, "hostname", hostname)
404
+ pulumi.set(__self__, "hostname_internal", hostname_internal)
401
405
  pulumi.set(__self__, "name", name)
402
406
  pulumi.set(__self__, "rabbitmq_version", rabbitmq_version)
403
407
  pulumi.set(__self__, "running", running)
@@ -407,6 +411,11 @@ class GetNodesNodeResult(dict):
407
411
  def additional_disk_size(self) -> int:
408
412
  return pulumi.get(self, "additional_disk_size")
409
413
 
414
+ @property
415
+ @pulumi.getter(name="availabilityZone")
416
+ def availability_zone(self) -> str:
417
+ return pulumi.get(self, "availability_zone")
418
+
410
419
  @property
411
420
  @pulumi.getter
412
421
  def configured(self) -> bool:
@@ -432,6 +441,11 @@ class GetNodesNodeResult(dict):
432
441
  def hostname(self) -> str:
433
442
  return pulumi.get(self, "hostname")
434
443
 
444
+ @property
445
+ @pulumi.getter(name="hostnameInternal")
446
+ def hostname_internal(self) -> str:
447
+ return pulumi.get(self, "hostname_internal")
448
+
435
449
  @property
436
450
  @pulumi.getter
437
451
  def name(self) -> str:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "cloudamqp",
4
- "version": "3.19.0-alpha.1722057587"
4
+ "version": "3.19.0-alpha.1722921913"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_cloudamqp
3
- Version: 3.19.0a1722057587
3
+ Version: 3.19.0a1722921913
4
4
  Summary: A Pulumi package for creating and managing CloudAMQP resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -10,7 +10,7 @@ pulumi_cloudamqp/get_account_vpcs.py,sha256=Pej4T-YmSd4x0ZeHJa_R7C4WFPNcqywPoder
10
10
  pulumi_cloudamqp/get_alarm.py,sha256=d2s6GrR0hjtq2MXxPl6u-VfMf9XzrbFmsgwh1Lwy4SQ,11592
11
11
  pulumi_cloudamqp/get_credentials.py,sha256=gqQDhS8SZO06Y2SXLL1KPI9JXn_wKRvAc5V5TQ9NMpA,4857
12
12
  pulumi_cloudamqp/get_instance.py,sha256=aerhBMj1d-x6EMdiR1PnBzE1KW6gr0miXWml_lYW14A,9386
13
- pulumi_cloudamqp/get_nodes.py,sha256=qY6Tn1Mq0DRfebxJObuQaLVLYnkDHP9C2nBjMbPEI_Q,5474
13
+ pulumi_cloudamqp/get_nodes.py,sha256=h4TtZPKS1D5CpC3K8h26IcQwSqD3rBo5yo2tDaRW41U,5764
14
14
  pulumi_cloudamqp/get_notification.py,sha256=SRnjv_M_vICk_o56tfe83vrPZGveyD84T_WHA0e1nEc,7007
15
15
  pulumi_cloudamqp/get_plugins.py,sha256=sFF0k2iJqevBmeJCgLH55zeq8U4reXiJSgrClLiMx5E,5488
16
16
  pulumi_cloudamqp/get_plugins_community.py,sha256=kp99ZUo1Jk_nvapK-Mkn2B1cmpTp6Tolz8e7Qrd0r84,5622
@@ -22,14 +22,14 @@ pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=zgL7vIMKmid8cKIEZFMoiqU8K
22
22
  pulumi_cloudamqp/integration_log.py,sha256=eD0lv55r-C2oDRUWPDTQuo41T_RvFe0gKQfZrO9FEuo,67781
23
23
  pulumi_cloudamqp/integration_metric.py,sha256=yJ46F-c8yExjja6wf0fPRGbtqtd8odKYFXdPkRKhTNg,53975
24
24
  pulumi_cloudamqp/node_actions.py,sha256=SzBUX5OBBxEnl3a7_dRYPfuuNyHPtLtCpvirkl5UeMc,18141
25
- pulumi_cloudamqp/notification.py,sha256=2jfJZh0SReZcfqK3awzs7fA_ORw3eb5fBLa-F4GoO4g,27440
26
- pulumi_cloudamqp/outputs.py,sha256=JhmAvoEeY_c_wF4mvz8nuyBwTeqIZUHSpKf3B3LfMjs,16822
25
+ pulumi_cloudamqp/notification.py,sha256=SYB2xByOqncxz4tgkzP5QZ3NIcP4mTgia5EZF-bfke4,28282
26
+ pulumi_cloudamqp/outputs.py,sha256=5OKhoZm9NSrbye_gVr7ILXU-9ca72BHcgEOJjHKiVFQ,17346
27
27
  pulumi_cloudamqp/plugin.py,sha256=-FDLDuRtPB8cdE62Uk_3BYcR25ARyUXMCeZQ9bHGNS0,14901
28
28
  pulumi_cloudamqp/plugin_community.py,sha256=Qwu7EfyGQ9BMMdXvKLrXioiVauDMxPNdmMlGqxW4jw8,15127
29
29
  pulumi_cloudamqp/privatelink_aws.py,sha256=1MPpdXwgKy0ZNgfiXJuL2vf050KvWQ8nalVer-7w_AQ,27921
30
30
  pulumi_cloudamqp/privatelink_azure.py,sha256=8on6_5fVFPxJMJDrKEok1zNQxZcM0cO4y7tJOXu8taY,27177
31
31
  pulumi_cloudamqp/provider.py,sha256=IwRPYsuoOzrUzVP2gmjIZ59mGte5_b0cd8_HYF0HhRc,6548
32
- pulumi_cloudamqp/pulumi-plugin.json,sha256=D66SzHcIsbefPiCw9vrft_w0ai7hgp8RLd0wqHHgG-M,86
32
+ pulumi_cloudamqp/pulumi-plugin.json,sha256=VVCYiOVpdpBM9QK4BOmsDpYvJyf2WQ07skmC2j-_5hE,86
33
33
  pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  pulumi_cloudamqp/rabbit_configuration.py,sha256=9qT6ABDHPcurBcmlckrHJ_tt-SV5vGARHpF9xXWa0Pc,32730
35
35
  pulumi_cloudamqp/security_firewall.py,sha256=5WgMYsKJp4SZRBm0PsJA2BDI0Rw9UyTdVHkFYhGv2e0,11654
@@ -42,7 +42,7 @@ pulumi_cloudamqp/webhook.py,sha256=szPc8AXkT-5xk3JfGOBdBcPMnnkZr02fpD_beQ_uyzI,1
42
42
  pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
43
43
  pulumi_cloudamqp/config/__init__.pyi,sha256=UHTIxCey3Zv15sJPQ4FzkPz4--aJNEcw9OwBw7Q2kzc,549
44
44
  pulumi_cloudamqp/config/vars.py,sha256=oFfIlqwVoffHyMowmkb9op1W1MBcSamLeviHi6IZino,939
45
- pulumi_cloudamqp-3.19.0a1722057587.dist-info/METADATA,sha256=pTBhjQTkOuEAMSgkUmb1Ee7kiaisAkIHNVeYy7Ve_VE,2755
46
- pulumi_cloudamqp-3.19.0a1722057587.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
47
- pulumi_cloudamqp-3.19.0a1722057587.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
- pulumi_cloudamqp-3.19.0a1722057587.dist-info/RECORD,,
45
+ pulumi_cloudamqp-3.19.0a1722921913.dist-info/METADATA,sha256=4FONHZaK5r9GjQJGnjitd7u1yltrtnfNHo_jKxb5LBU,2755
46
+ pulumi_cloudamqp-3.19.0a1722921913.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
47
+ pulumi_cloudamqp-3.19.0a1722921913.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
+ pulumi_cloudamqp-3.19.0a1722921913.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.1.0)
2
+ Generator: setuptools (72.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5