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

Files changed (45) hide show
  1. pulumi_cloudamqp/__init__.py +9 -0
  2. pulumi_cloudamqp/_inputs.py +28 -9
  3. pulumi_cloudamqp/account_action.py +14 -7
  4. pulumi_cloudamqp/alarm.py +90 -30
  5. pulumi_cloudamqp/custom_domain.py +52 -10
  6. pulumi_cloudamqp/extra_disk_size.py +117 -101
  7. pulumi_cloudamqp/get_account.py +8 -2
  8. pulumi_cloudamqp/get_account_vpcs.py +13 -40
  9. pulumi_cloudamqp/get_alarm.py +50 -44
  10. pulumi_cloudamqp/get_credentials.py +10 -18
  11. pulumi_cloudamqp/get_instance.py +51 -2
  12. pulumi_cloudamqp/get_nodes.py +3 -50
  13. pulumi_cloudamqp/get_notification.py +17 -20
  14. pulumi_cloudamqp/get_plugins.py +15 -42
  15. pulumi_cloudamqp/get_plugins_community.py +16 -40
  16. pulumi_cloudamqp/get_upgradable_versions.py +10 -16
  17. pulumi_cloudamqp/get_vpc_gcp_info.py +23 -118
  18. pulumi_cloudamqp/get_vpc_info.py +18 -112
  19. pulumi_cloudamqp/instance.py +400 -177
  20. pulumi_cloudamqp/integration_aws_eventbridge.py +90 -26
  21. pulumi_cloudamqp/integration_log.py +135 -50
  22. pulumi_cloudamqp/integration_metric.py +50 -2
  23. pulumi_cloudamqp/maintenance_window.py +515 -0
  24. pulumi_cloudamqp/node_actions.py +32 -10
  25. pulumi_cloudamqp/notification.py +103 -22
  26. pulumi_cloudamqp/outputs.py +118 -28
  27. pulumi_cloudamqp/plugin.py +89 -25
  28. pulumi_cloudamqp/plugin_community.py +87 -27
  29. pulumi_cloudamqp/privatelink_aws.py +62 -270
  30. pulumi_cloudamqp/privatelink_azure.py +64 -268
  31. pulumi_cloudamqp/pulumi-plugin.json +1 -1
  32. pulumi_cloudamqp/rabbit_configuration.py +209 -86
  33. pulumi_cloudamqp/security_firewall.py +76 -23
  34. pulumi_cloudamqp/upgrade_lavinmq.py +0 -74
  35. pulumi_cloudamqp/upgrade_rabbitmq.py +14 -261
  36. pulumi_cloudamqp/vpc.py +48 -16
  37. pulumi_cloudamqp/vpc_connect.py +111 -499
  38. pulumi_cloudamqp/vpc_gcp_peering.py +141 -506
  39. pulumi_cloudamqp/vpc_peering.py +50 -36
  40. pulumi_cloudamqp/webhook.py +48 -9
  41. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/METADATA +1 -1
  42. pulumi_cloudamqp-3.21.0a1744082841.dist-info/RECORD +50 -0
  43. pulumi_cloudamqp-3.21.0a1743571485.dist-info/RECORD +0 -49
  44. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/WHEEL +0 -0
  45. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/top_level.txt +0 -0
pulumi_cloudamqp/vpc.py CHANGED
@@ -187,11 +187,12 @@ class Vpc(pulumi.CustomResource):
187
187
  """
188
188
  This resource allows you to manage standalone VPC.
189
189
 
190
- New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the managed vpc identifier , see example below, when creating the instance.
190
+ New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the
191
+ managed vpc identifier, see example below, when creating the instance.
191
192
 
192
193
  Only available for dedicated subscription plans.
193
194
 
194
- Pricing is available at [cloudamqp.com](https://www.cloudamqp.com/plans.html).
195
+ Pricing is available at [CloudAMQP plans].
195
196
 
196
197
  ## Example Usage
197
198
 
@@ -208,11 +209,10 @@ class Vpc(pulumi.CustomResource):
208
209
  # New instance, need to be created with a vpc
209
210
  instance = cloudamqp.Instance("instance",
210
211
  name="<Instance name>",
211
- plan="bunny-1",
212
+ plan="penguin-1",
212
213
  region="amazon-web-services::us-east-1",
213
214
  nodes=1,
214
215
  tags=[],
215
- rmq_version="3.9.13",
216
216
  vpc_id=vpc_cloudamq_vpc["id"],
217
217
  keep_associated_vpc=True)
218
218
  # Additional VPC information
@@ -221,15 +221,31 @@ class Vpc(pulumi.CustomResource):
221
221
 
222
222
  ## Import
223
223
 
224
- `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier.
224
+ `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier. To retrieve the identifier of an
225
+
226
+ instance, use [CloudAMQP API list vpcs].
227
+
228
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
229
+
230
+ hcl
231
+
232
+ import {
233
+
234
+ to = cloudamqp_vpc.vpc
235
+
236
+ id = <vpc_id>
237
+
238
+ }
239
+
240
+ Or with Terraform CLI:
225
241
 
226
242
  ```sh
227
- $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
243
+ $ pulumi import cloudamqp:index/vpc:Vpc vpc <vpc_id>`
228
244
  ```
229
245
 
230
- To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs).
246
+ [CloudAMQP API list vpcs]: https://docs.cloudamqp.com/#list-vpcs
231
247
 
232
- Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
248
+ [CloudAMQP plans]: https://www.cloudamqp.com/plans.html
233
249
 
234
250
  :param str resource_name: The name of the resource.
235
251
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -247,11 +263,12 @@ class Vpc(pulumi.CustomResource):
247
263
  """
248
264
  This resource allows you to manage standalone VPC.
249
265
 
250
- New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the managed vpc identifier , see example below, when creating the instance.
266
+ New Cloudamqp instances can be added to the managed VPC. Set the instance *vpc_id* attribute to the
267
+ managed vpc identifier, see example below, when creating the instance.
251
268
 
252
269
  Only available for dedicated subscription plans.
253
270
 
254
- Pricing is available at [cloudamqp.com](https://www.cloudamqp.com/plans.html).
271
+ Pricing is available at [CloudAMQP plans].
255
272
 
256
273
  ## Example Usage
257
274
 
@@ -268,11 +285,10 @@ class Vpc(pulumi.CustomResource):
268
285
  # New instance, need to be created with a vpc
269
286
  instance = cloudamqp.Instance("instance",
270
287
  name="<Instance name>",
271
- plan="bunny-1",
288
+ plan="penguin-1",
272
289
  region="amazon-web-services::us-east-1",
273
290
  nodes=1,
274
291
  tags=[],
275
- rmq_version="3.9.13",
276
292
  vpc_id=vpc_cloudamq_vpc["id"],
277
293
  keep_associated_vpc=True)
278
294
  # Additional VPC information
@@ -281,15 +297,31 @@ class Vpc(pulumi.CustomResource):
281
297
 
282
298
  ## Import
283
299
 
284
- `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier.
300
+ `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier. To retrieve the identifier of an
301
+
302
+ instance, use [CloudAMQP API list vpcs].
303
+
304
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
305
+
306
+ hcl
307
+
308
+ import {
309
+
310
+ to = cloudamqp_vpc.vpc
311
+
312
+ id = <vpc_id>
313
+
314
+ }
315
+
316
+ Or with Terraform CLI:
285
317
 
286
318
  ```sh
287
- $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
319
+ $ pulumi import cloudamqp:index/vpc:Vpc vpc <vpc_id>`
288
320
  ```
289
321
 
290
- To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs).
322
+ [CloudAMQP API list vpcs]: https://docs.cloudamqp.com/#list-vpcs
291
323
 
292
- Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
324
+ [CloudAMQP plans]: https://www.cloudamqp.com/plans.html
293
325
 
294
326
  :param str resource_name: The name of the resource.
295
327
  :param VpcArgs args: The arguments to use to populate this resource's properties.