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.

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.0a1743485311.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.0a1743485311.dist-info/RECORD +0 -49
  44. {pulumi_cloudamqp-3.21.0a1743485311.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/WHEEL +0 -0
  45. {pulumi_cloudamqp-3.21.0a1743485311.dist-info → pulumi_cloudamqp-3.21.0a1744082841.dist-info}/top_level.txt +0 -0
@@ -29,12 +29,14 @@ class VpcPeeringArgs:
29
29
  :param pulumi.Input[str] peering_id: Peering identifier created by AW peering request.
30
30
  :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
31
31
 
32
- ***Deprecated: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
33
- :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or removing peering. Default set to 60 seconds.
34
- :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing peering. Default set to 3600 seconds.
32
+ ***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
33
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or
34
+ removing peering. Default set to 60 seconds.
35
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing
36
+ peering. Default set to 3600 seconds.
35
37
  :param pulumi.Input[str] vpc_id: The managed VPC identifier.
36
38
 
37
- ***Note: Introduced as optional in version v1.16.0, will be required in next major version (v2.0)***
39
+ ***Note:*** Available from [v1.16.0], will be required in next major version (v2.0)
38
40
  """
39
41
  pulumi.set(__self__, "peering_id", peering_id)
40
42
  if instance_id is not None:
@@ -64,7 +66,7 @@ class VpcPeeringArgs:
64
66
  """
65
67
  The CloudAMQP instance identifier.
66
68
 
67
- ***Deprecated: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
69
+ ***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
68
70
  """
69
71
  return pulumi.get(self, "instance_id")
70
72
 
@@ -76,7 +78,8 @@ class VpcPeeringArgs:
76
78
  @pulumi.getter
77
79
  def sleep(self) -> Optional[pulumi.Input[int]]:
78
80
  """
79
- Configurable sleep time (seconds) between retries for accepting or removing peering. Default set to 60 seconds.
81
+ Configurable sleep time (seconds) between retries for accepting or
82
+ removing peering. Default set to 60 seconds.
80
83
  """
81
84
  return pulumi.get(self, "sleep")
82
85
 
@@ -88,7 +91,8 @@ class VpcPeeringArgs:
88
91
  @pulumi.getter
89
92
  def timeout(self) -> Optional[pulumi.Input[int]]:
90
93
  """
91
- Configurable timeout time (seconds) for accepting or removing peering. Default set to 3600 seconds.
94
+ Configurable timeout time (seconds) for accepting or removing
95
+ peering. Default set to 3600 seconds.
92
96
  """
93
97
  return pulumi.get(self, "timeout")
94
98
 
@@ -102,7 +106,7 @@ class VpcPeeringArgs:
102
106
  """
103
107
  The managed VPC identifier.
104
108
 
105
- ***Note: Introduced as optional in version v1.16.0, will be required in next major version (v2.0)***
109
+ ***Note:*** Available from [v1.16.0], will be required in next major version (v2.0)
106
110
  """
107
111
  return pulumi.get(self, "vpc_id")
108
112
 
@@ -124,14 +128,16 @@ class _VpcPeeringState:
124
128
  Input properties used for looking up and filtering VpcPeering resources.
125
129
  :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
126
130
 
127
- ***Deprecated: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
131
+ ***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
128
132
  :param pulumi.Input[str] peering_id: Peering identifier created by AW peering request.
129
- :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or removing peering. Default set to 60 seconds.
133
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or
134
+ removing peering. Default set to 60 seconds.
130
135
  :param pulumi.Input[str] status: VPC peering status
131
- :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing peering. Default set to 3600 seconds.
136
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing
137
+ peering. Default set to 3600 seconds.
132
138
  :param pulumi.Input[str] vpc_id: The managed VPC identifier.
133
139
 
134
- ***Note: Introduced as optional in version v1.16.0, will be required in next major version (v2.0)***
140
+ ***Note:*** Available from [v1.16.0], will be required in next major version (v2.0)
135
141
  """
136
142
  if instance_id is not None:
137
143
  pulumi.set(__self__, "instance_id", instance_id)
@@ -152,7 +158,7 @@ class _VpcPeeringState:
152
158
  """
153
159
  The CloudAMQP instance identifier.
154
160
 
155
- ***Deprecated: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
161
+ ***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
156
162
  """
157
163
  return pulumi.get(self, "instance_id")
158
164
 
@@ -176,7 +182,8 @@ class _VpcPeeringState:
176
182
  @pulumi.getter
177
183
  def sleep(self) -> Optional[pulumi.Input[int]]:
178
184
  """
179
- Configurable sleep time (seconds) between retries for accepting or removing peering. Default set to 60 seconds.
185
+ Configurable sleep time (seconds) between retries for accepting or
186
+ removing peering. Default set to 60 seconds.
180
187
  """
181
188
  return pulumi.get(self, "sleep")
182
189
 
@@ -200,7 +207,8 @@ class _VpcPeeringState:
200
207
  @pulumi.getter
201
208
  def timeout(self) -> Optional[pulumi.Input[int]]:
202
209
  """
203
- Configurable timeout time (seconds) for accepting or removing peering. Default set to 3600 seconds.
210
+ Configurable timeout time (seconds) for accepting or removing
211
+ peering. Default set to 3600 seconds.
204
212
  """
205
213
  return pulumi.get(self, "timeout")
206
214
 
@@ -214,7 +222,7 @@ class _VpcPeeringState:
214
222
  """
215
223
  The managed VPC identifier.
216
224
 
217
- ***Note: Introduced as optional in version v1.16.0, will be required in next major version (v2.0)***
225
+ ***Note:*** Available from [v1.16.0], will be required in next major version (v2.0)
218
226
  """
219
227
  return pulumi.get(self, "vpc_id")
220
228
 
@@ -237,25 +245,27 @@ class VpcPeering(pulumi.CustomResource):
237
245
  """
238
246
  ## Import
239
247
 
240
- ### Peering Identifier
248
+ ### Peering identifier
241
249
 
242
- This can be found as *peering connection id* in your AWS VPC dashboard/Peering connections, for the correct VPC peering.
250
+ This can be found as *peering connection id* in your AWS VPC dashboard/Peering connections, for the
243
251
 
244
- Also available as the identifier for *aws_vpc_peering_connection* resource or
252
+ correct VPC peering.
245
253
 
246
- data source.
254
+ Also available as the identifier for `aws_vpc_peering_connection` [resource] or [data source].
247
255
 
248
256
  :param str resource_name: The name of the resource.
249
257
  :param pulumi.ResourceOptions opts: Options for the resource.
250
258
  :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
251
259
 
252
- ***Deprecated: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
260
+ ***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
253
261
  :param pulumi.Input[str] peering_id: Peering identifier created by AW peering request.
254
- :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or removing peering. Default set to 60 seconds.
255
- :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing peering. Default set to 3600 seconds.
262
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or
263
+ removing peering. Default set to 60 seconds.
264
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing
265
+ peering. Default set to 3600 seconds.
256
266
  :param pulumi.Input[str] vpc_id: The managed VPC identifier.
257
267
 
258
- ***Note: Introduced as optional in version v1.16.0, will be required in next major version (v2.0)***
268
+ ***Note:*** Available from [v1.16.0], will be required in next major version (v2.0)
259
269
  """
260
270
  ...
261
271
  @overload
@@ -266,13 +276,13 @@ class VpcPeering(pulumi.CustomResource):
266
276
  """
267
277
  ## Import
268
278
 
269
- ### Peering Identifier
279
+ ### Peering identifier
270
280
 
271
- This can be found as *peering connection id* in your AWS VPC dashboard/Peering connections, for the correct VPC peering.
281
+ This can be found as *peering connection id* in your AWS VPC dashboard/Peering connections, for the
272
282
 
273
- Also available as the identifier for *aws_vpc_peering_connection* resource or
283
+ correct VPC peering.
274
284
 
275
- data source.
285
+ Also available as the identifier for `aws_vpc_peering_connection` [resource] or [data source].
276
286
 
277
287
  :param str resource_name: The name of the resource.
278
288
  :param VpcPeeringArgs args: The arguments to use to populate this resource's properties.
@@ -336,14 +346,16 @@ class VpcPeering(pulumi.CustomResource):
336
346
  :param pulumi.ResourceOptions opts: Options for the resource.
337
347
  :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
338
348
 
339
- ***Deprecated: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
349
+ ***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
340
350
  :param pulumi.Input[str] peering_id: Peering identifier created by AW peering request.
341
- :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or removing peering. Default set to 60 seconds.
351
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries for accepting or
352
+ removing peering. Default set to 60 seconds.
342
353
  :param pulumi.Input[str] status: VPC peering status
343
- :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing peering. Default set to 3600 seconds.
354
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) for accepting or removing
355
+ peering. Default set to 3600 seconds.
344
356
  :param pulumi.Input[str] vpc_id: The managed VPC identifier.
345
357
 
346
- ***Note: Introduced as optional in version v1.16.0, will be required in next major version (v2.0)***
358
+ ***Note:*** Available from [v1.16.0], will be required in next major version (v2.0)
347
359
  """
348
360
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
349
361
 
@@ -363,7 +375,7 @@ class VpcPeering(pulumi.CustomResource):
363
375
  """
364
376
  The CloudAMQP instance identifier.
365
377
 
366
- ***Deprecated: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
378
+ ***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
367
379
  """
368
380
  return pulumi.get(self, "instance_id")
369
381
 
@@ -379,7 +391,8 @@ class VpcPeering(pulumi.CustomResource):
379
391
  @pulumi.getter
380
392
  def sleep(self) -> pulumi.Output[Optional[int]]:
381
393
  """
382
- Configurable sleep time (seconds) between retries for accepting or removing peering. Default set to 60 seconds.
394
+ Configurable sleep time (seconds) between retries for accepting or
395
+ removing peering. Default set to 60 seconds.
383
396
  """
384
397
  return pulumi.get(self, "sleep")
385
398
 
@@ -395,7 +408,8 @@ class VpcPeering(pulumi.CustomResource):
395
408
  @pulumi.getter
396
409
  def timeout(self) -> pulumi.Output[Optional[int]]:
397
410
  """
398
- Configurable timeout time (seconds) for accepting or removing peering. Default set to 3600 seconds.
411
+ Configurable timeout time (seconds) for accepting or removing
412
+ peering. Default set to 3600 seconds.
399
413
  """
400
414
  return pulumi.get(self, "timeout")
401
415
 
@@ -405,7 +419,7 @@ class VpcPeering(pulumi.CustomResource):
405
419
  """
406
420
  The managed VPC identifier.
407
421
 
408
- ***Note: Introduced as optional in version v1.16.0, will be required in next major version (v2.0)***
422
+ ***Note:*** Available from [v1.16.0], will be required in next major version (v2.0)
409
423
  """
410
424
  return pulumi.get(self, "vpc_id")
411
425
 
@@ -32,7 +32,8 @@ class WebhookArgs:
32
32
  :param pulumi.Input[int] instance_id: The CloudAMQP instance ID.
33
33
  :param pulumi.Input[str] queue: A (durable) queue on your RabbitMQ instance.
34
34
  :param pulumi.Input[str] vhost: The vhost the queue resides in.
35
- :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this endpoint.
35
+ :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this
36
+ endpoint.
36
37
  :param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for webhook
37
38
  :param pulumi.Input[int] timeout: Configurable timeout time in seconds for webhook
38
39
  """
@@ -98,7 +99,8 @@ class WebhookArgs:
98
99
  @pulumi.getter(name="webhookUri")
99
100
  def webhook_uri(self) -> pulumi.Input[str]:
100
101
  """
101
- A POST request will be made for each message in the queue to this endpoint.
102
+ A POST request will be made for each message in the queue to this
103
+ endpoint.
102
104
  """
103
105
  return pulumi.get(self, "webhook_uri")
104
106
 
@@ -149,7 +151,8 @@ class _WebhookState:
149
151
  :param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for webhook
150
152
  :param pulumi.Input[int] timeout: Configurable timeout time in seconds for webhook
151
153
  :param pulumi.Input[str] vhost: The vhost the queue resides in.
152
- :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this endpoint.
154
+ :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this
155
+ endpoint.
153
156
  """
154
157
  if concurrency is not None:
155
158
  pulumi.set(__self__, "concurrency", concurrency)
@@ -242,7 +245,8 @@ class _WebhookState:
242
245
  @pulumi.getter(name="webhookUri")
243
246
  def webhook_uri(self) -> Optional[pulumi.Input[str]]:
244
247
  """
245
- A POST request will be made for each message in the queue to this endpoint.
248
+ A POST request will be made for each message in the queue to this
249
+ endpoint.
246
250
  """
247
251
  return pulumi.get(self, "webhook_uri")
248
252
 
@@ -267,7 +271,23 @@ class Webhook(pulumi.CustomResource):
267
271
  """
268
272
  ## Import
269
273
 
270
- `cloudamqp_webhook` can be imported using the resource identifier together with CloudAMQP instance identifier. The identifiers are CSV separated, see example below.
274
+ `cloudamqp_webhook` can be imported using the resource identifier together with CloudAMQP instance
275
+
276
+ identifier (CSV separated). To retrieve the resource identifier, use [CloudAMQP API list webhooks].
277
+
278
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
279
+
280
+ hcl
281
+
282
+ import {
283
+
284
+ to = cloudamqp_webhook.webhook_queue
285
+
286
+ id = format("<id>,%s", cloudamqp_instance.instance.id)
287
+
288
+ }
289
+
290
+ Or use Terraform CLI:
271
291
 
272
292
  ```sh
273
293
  $ pulumi import cloudamqp:index/webhook:Webhook webhook_queue <id>,<instance_id>`
@@ -281,7 +301,8 @@ class Webhook(pulumi.CustomResource):
281
301
  :param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for webhook
282
302
  :param pulumi.Input[int] timeout: Configurable timeout time in seconds for webhook
283
303
  :param pulumi.Input[str] vhost: The vhost the queue resides in.
284
- :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this endpoint.
304
+ :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this
305
+ endpoint.
285
306
  """
286
307
  ...
287
308
  @overload
@@ -292,7 +313,23 @@ class Webhook(pulumi.CustomResource):
292
313
  """
293
314
  ## Import
294
315
 
295
- `cloudamqp_webhook` can be imported using the resource identifier together with CloudAMQP instance identifier. The identifiers are CSV separated, see example below.
316
+ `cloudamqp_webhook` can be imported using the resource identifier together with CloudAMQP instance
317
+
318
+ identifier (CSV separated). To retrieve the resource identifier, use [CloudAMQP API list webhooks].
319
+
320
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
321
+
322
+ hcl
323
+
324
+ import {
325
+
326
+ to = cloudamqp_webhook.webhook_queue
327
+
328
+ id = format("<id>,%s", cloudamqp_instance.instance.id)
329
+
330
+ }
331
+
332
+ Or use Terraform CLI:
296
333
 
297
334
  ```sh
298
335
  $ pulumi import cloudamqp:index/webhook:Webhook webhook_queue <id>,<instance_id>`
@@ -376,7 +413,8 @@ class Webhook(pulumi.CustomResource):
376
413
  :param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for webhook
377
414
  :param pulumi.Input[int] timeout: Configurable timeout time in seconds for webhook
378
415
  :param pulumi.Input[str] vhost: The vhost the queue resides in.
379
- :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this endpoint.
416
+ :param pulumi.Input[str] webhook_uri: A POST request will be made for each message in the queue to this
417
+ endpoint.
380
418
  """
381
419
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
382
420
 
@@ -443,7 +481,8 @@ class Webhook(pulumi.CustomResource):
443
481
  @pulumi.getter(name="webhookUri")
444
482
  def webhook_uri(self) -> pulumi.Output[str]:
445
483
  """
446
- A POST request will be made for each message in the queue to this endpoint.
484
+ A POST request will be made for each message in the queue to this
485
+ endpoint.
447
486
  """
448
487
  return pulumi.get(self, "webhook_uri")
449
488
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_cloudamqp
3
- Version: 3.21.0a1743485311
3
+ Version: 3.21.0a1744082841
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
@@ -0,0 +1,50 @@
1
+ pulumi_cloudamqp/__init__.py,sha256=T3QXm1h54-5xhGjspugsDiOTHfkPs5RQWWBlrYJgfuc,5987
2
+ pulumi_cloudamqp/_inputs.py,sha256=44mec2A4_015yarPRsgDrFUG_BNuh8MtJSIMhYbDTXk,13865
3
+ pulumi_cloudamqp/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
+ pulumi_cloudamqp/account_action.py,sha256=uDaPHZnwtnI85UNBjfvWNcUxHhaoGkGqkq-CdgSnFI0,7946
5
+ pulumi_cloudamqp/alarm.py,sha256=hyZPB6fZOd9F2PT28lkdLjr-Jw_O6pyKfckuJ7956RM,29691
6
+ pulumi_cloudamqp/custom_domain.py,sha256=wtxV6Px3NizNvQ_nLYXk8isJVXHqd8rENQesxmWbR3g,10943
7
+ pulumi_cloudamqp/extra_disk_size.py,sha256=Ed_1XBTMxv2U5VTWFpyK9dl8VcKofnlzVIPtkn8RvZg,28104
8
+ pulumi_cloudamqp/get_account.py,sha256=QyF_GSGbr_A9b8l17_n_TrFOYt-fZPk4iueDyFpsi_s,3300
9
+ pulumi_cloudamqp/get_account_vpcs.py,sha256=Wzy5owfVi2XU3QfBevqnvMgZNgTEsummlzF9FUEsLVs,4581
10
+ pulumi_cloudamqp/get_alarm.py,sha256=LPCpSWimPcV6247PKP0lSG-C9CnbEbkGV6VzMQIWyDk,12179
11
+ pulumi_cloudamqp/get_credentials.py,sha256=V2HgITYTNLgmFC0IMCdB9JpvZ_xc6ecRFWiu9ZG6juA,5188
12
+ pulumi_cloudamqp/get_instance.py,sha256=LxcB1wTgPEWXIcfkDwQFm7pBV1CoiBwj04N_XGC1-rM,12306
13
+ pulumi_cloudamqp/get_nodes.py,sha256=KmAtBCPfXvP-qaJXvgJR854dRd9hdfwiZJLGURiSdTc,4390
14
+ pulumi_cloudamqp/get_notification.py,sha256=txDjDNdQ2RM2h3V_MBKVkfG16FRXmyRS3CRD00y8Akg,7810
15
+ pulumi_cloudamqp/get_plugins.py,sha256=rNkHisA7jV3Er8PD7qYNPeaH4Rl6NBbEXqucF0n2-HU,6343
16
+ pulumi_cloudamqp/get_plugins_community.py,sha256=zNZW0Ggf-8-4ZE_96QFc6L-VfV3cWDuYTem3d3wPMpk,6693
17
+ pulumi_cloudamqp/get_upgradable_versions.py,sha256=WcOsWoSTi-g19VZhL-bSAAWfRZF5X5-a2PjDLx5wxVA,5569
18
+ pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=jXh3d4x8IyTABRvqz5WzuslZBXpuFcljS-AUqBnafvo,7716
19
+ pulumi_cloudamqp/get_vpc_info.py,sha256=4o7-EgRvg8J_urGDQ_zb6HbHuxvC4Cn5-6BMTH5Y3h8,6581
20
+ pulumi_cloudamqp/instance.py,sha256=Mu9n6VIXLdzMUwB6UE37VVhHMCGn9j5C3XDfGRV61sY,62033
21
+ pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=atAE5B1fqmp-N9lT4p4DEio2bmTl3C8Y3t9B3_JpySE,23507
22
+ pulumi_cloudamqp/integration_log.py,sha256=XKTJTNFlo8PoEioSQPgqdLjE_lixHPIXL3CjeDXZyrw,69337
23
+ pulumi_cloudamqp/integration_metric.py,sha256=RqcAP5Enw6XsTqoWwf2us8TsFGnwh80WTd3g2XjALXA,57736
24
+ pulumi_cloudamqp/maintenance_window.py,sha256=7YOA9GkMHpdOwnEGNBt59-pLGDqdeGjqE0QMa4XolS8,18661
25
+ pulumi_cloudamqp/node_actions.py,sha256=eKsv_-hFlUAN8B0kaue9hfa3fTntvsz5ZAslakKzH2M,19171
26
+ pulumi_cloudamqp/notification.py,sha256=bgnddfBV_WVkDYX-g0-9WGYH-T0-Mxo7sdteoSQspbY,30891
27
+ pulumi_cloudamqp/outputs.py,sha256=aU-YH5zSiNufZ9cGAuH2ih0HczW1h9skvVKC-1suIGg,19902
28
+ pulumi_cloudamqp/plugin.py,sha256=kkQMu6bioqhnJXPlD4N7OrM7lrzV2yL208Y87dyqa-s,17759
29
+ pulumi_cloudamqp/plugin_community.py,sha256=n6IEgEof-4u1NXloaRi1V2_tvLDbbZz5aLoCaoC92a4,18445
30
+ pulumi_cloudamqp/privatelink_aws.py,sha256=z0EEpZ1xlI9yJg9IkenwQ0h5RHf4vec9Yh2qmoshF6M,19871
31
+ pulumi_cloudamqp/privatelink_azure.py,sha256=u9BKCW9p6ENr3qiM064CDHqagrPRuIr5SRYyceEHOMg,19437
32
+ pulumi_cloudamqp/provider.py,sha256=ZsS3-l32jj2k9OK4bNg4MCgazokJJzV6IZwhfg2jxl4,6722
33
+ pulumi_cloudamqp/pulumi-plugin.json,sha256=vs4xXPEoj0J1nAZhSSRUtBvYQzMjsBst0WdR5klrt_0,86
34
+ pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ pulumi_cloudamqp/rabbit_configuration.py,sha256=kWgvGPlF117uTw4P0xO9A6KXU2UEwSzgY9LQJ4qDi7Y,34698
36
+ pulumi_cloudamqp/security_firewall.py,sha256=4OxKN0A5lGAaEh81onf7ioOkqPH8vbko1Si4kI6dDAs,15138
37
+ pulumi_cloudamqp/upgrade_lavinmq.py,sha256=6nL84TACw30gs_ldTJRXGndH7f6jnwUBkaHCALXbzWM,7771
38
+ pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=cO-Y53BWvHIfHWO3V-ifepCQVRMKSQRSiFohZrdKCyM,10168
39
+ pulumi_cloudamqp/vpc.py,sha256=25kcn8PeC5Nz4e0dEjPFjo9033oXpnyKJr_ccBH51GM,15076
40
+ pulumi_cloudamqp/vpc_connect.py,sha256=UQThSagDDIER6ub5ehapi6mkl0-lRimLTARDBFYnAJI,29025
41
+ pulumi_cloudamqp/vpc_gcp_peering.py,sha256=Em3kQ_gCXoEj8OIbx2lffkLlfuTeDTzoI2aOfqYTqLo,23587
42
+ pulumi_cloudamqp/vpc_peering.py,sha256=i2iSNOxCfdiopo2ClqnPcyySe_kRXY13u8Vg_KvGpLo,16820
43
+ pulumi_cloudamqp/webhook.py,sha256=d0D1FTsLEJ8Nottv8G5M90pruYUqNvpctgdM1tx16ZI,18221
44
+ pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
45
+ pulumi_cloudamqp/config/__init__.pyi,sha256=yRca3CWiHsleY1obkjqWJfprOQN8wfAyE-mfc0MtmJ4,723
46
+ pulumi_cloudamqp/config/vars.py,sha256=mXJq-A9lp-pr14Qy0DIYCzi3lavA-QL1eDCUw0lFoX0,1113
47
+ pulumi_cloudamqp-3.21.0a1744082841.dist-info/METADATA,sha256=VpINXI8WOj0tyeq6B5uH7TxuFcKYoqqhi8h6mR0WLMY,2818
48
+ pulumi_cloudamqp-3.21.0a1744082841.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
49
+ pulumi_cloudamqp-3.21.0a1744082841.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
50
+ pulumi_cloudamqp-3.21.0a1744082841.dist-info/RECORD,,
@@ -1,49 +0,0 @@
1
- pulumi_cloudamqp/__init__.py,sha256=bT-kE4oeSjvg0GGN_7rnfIasA01nGKIk0MKXAMG0VEo,5762
2
- pulumi_cloudamqp/_inputs.py,sha256=dRt4old8_KXd1ZpW2tO2yat1JFOnGCY9Ypuu-DSHqeY,13425
3
- pulumi_cloudamqp/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_cloudamqp/account_action.py,sha256=Gg38aF7VXXAX_76oVNm96WZTfNKYCRTKw6BVtm_IL6c,7862
5
- pulumi_cloudamqp/alarm.py,sha256=oE6D5-NG3BsczJlkIiF7GknsrCskCakolw8VF_f4-MU,28911
6
- pulumi_cloudamqp/custom_domain.py,sha256=MQJj8OxYbOn6j_8muF2SLJd9AvlgcVN5dmjrqb4Me7k,10169
7
- pulumi_cloudamqp/extra_disk_size.py,sha256=BFoAykaRDsSjzhXAoh9OkJSrhLBjCkXq5COCZNiGI_k,27934
8
- pulumi_cloudamqp/get_account.py,sha256=i-Suw_RNLmJLa6aGnaNN8GYe5MC8o0zEBrZrJOuI12g,3165
9
- pulumi_cloudamqp/get_account_vpcs.py,sha256=BEwkqsj9FZ4b-m6uHteQcz62jaMl7BLh5J8JwIMFJA4,5688
10
- pulumi_cloudamqp/get_alarm.py,sha256=tMUlF0JU0krUetrjSE9YFY5k6JjgWT2J7AObkwSZrd8,12988
11
- pulumi_cloudamqp/get_credentials.py,sha256=hv5e56ZLjv4jlqtrX7R2y38xlTWZtla58RLz58yWXhw,5584
12
- pulumi_cloudamqp/get_instance.py,sha256=fEQ6w8x-R2IqDGUehxiYutkwAIdVJlGba8G4kESboPI,10895
13
- pulumi_cloudamqp/get_nodes.py,sha256=LUqUuejplAjLxR1V3KyiA-SvgewEOMk9MTnDdyzO-NU,6412
14
- pulumi_cloudamqp/get_notification.py,sha256=-182DPh2cu-gcCO-Ujs5jSNbSFpKi1X3hGcZuu6jE-Q,7991
15
- pulumi_cloudamqp/get_plugins.py,sha256=2xMXWxb32ENv-gRCT06JzAPX3tDP7tpMBLixSOPHeXk,7370
16
- pulumi_cloudamqp/get_plugins_community.py,sha256=UKNJC0WVdNPkDwAWVXtl-h9Av1j6eVLnG7BZ-81GzWk,7570
17
- pulumi_cloudamqp/get_upgradable_versions.py,sha256=TywYSlmQdIdjmJD96R7UdLiutUlRil3iDORm6xh77SE,5853
18
- pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=iJQJ_JfO-oNQl_8oPjHoq-vSgapzd02V9FHL9W4WmS8,10196
19
- pulumi_cloudamqp/get_vpc_info.py,sha256=rdFStfmGuDG35fLVlXkfraUcCkCZ_pMcoODrjRuSGDk,9118
20
- pulumi_cloudamqp/instance.py,sha256=kqK8xBBGYd8R10m7p05oftwieX-2BnxEE8YDYI400r8,59175
21
- pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=IvqwG8SwNqSAaDN9JtCoA36gBkoFpFFiwy2IRgL7WT8,22457
22
- pulumi_cloudamqp/integration_log.py,sha256=CIcU5_TMIWeGGnShvXmaBc6amK6I_EDNXWiu4SDVn5k,67955
23
- pulumi_cloudamqp/integration_metric.py,sha256=ClsGq5j2yRmrIqA-4PIjOZdVZkhGg9-MEl0AGZcLzPI,56340
24
- pulumi_cloudamqp/node_actions.py,sha256=lzOBM5UFDfz4SBcOs9jT5QnJI-7oHVMqJXukV4pwmYA,18315
25
- pulumi_cloudamqp/notification.py,sha256=mDdUCirSx_pKh5-AgclGRNR9ILCSb_3Dtiry7sRsncM,28450
26
- pulumi_cloudamqp/outputs.py,sha256=jTOyqw5MAyXBYUIL1Ob7maMLJBvcqmIi9pWQgK8mMJM,17118
27
- pulumi_cloudamqp/plugin.py,sha256=-ntjQEgqztWqVO1Vc3uf6sMp4hXtfBltwAF-T91UgmQ,16629
28
- pulumi_cloudamqp/plugin_community.py,sha256=hIEB_d86kxemjJvGrxJkUl_Q3pNrpRCS1YPFa2StLJk,17065
29
- pulumi_cloudamqp/privatelink_aws.py,sha256=xWifEEsK9dIGNNaVBzwIDRB4Ka2TIqGyEdUPhVU4KJY,28007
30
- pulumi_cloudamqp/privatelink_azure.py,sha256=HqfcVHBorM9-BEQZGvQzlVRGA0_qwIqNkbJ_tI2iMMU,27263
31
- pulumi_cloudamqp/provider.py,sha256=ZsS3-l32jj2k9OK4bNg4MCgazokJJzV6IZwhfg2jxl4,6722
32
- pulumi_cloudamqp/pulumi-plugin.json,sha256=F7qE0ldZ8Xj0qEAjCj-LqABj8RSkT8vnyTHQs-QaiRY,86
33
- pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- pulumi_cloudamqp/rabbit_configuration.py,sha256=ZJxTD6BbI1RQxvzBDhWvr9ZuG5DexjfPJYnzE8z5WG4,32904
35
- pulumi_cloudamqp/security_firewall.py,sha256=RLEXyTVlUuKLv6FWMbRIIy-o57BwNOSpFCcdWb-cZy0,14220
36
- pulumi_cloudamqp/upgrade_lavinmq.py,sha256=SWZ8AVQiiX4qHxo3xbSwN6lmnPpQU0PuYqv14KZRHic,10187
37
- pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=d2agnQlxeX1VrfbDv71fmHGXV9GA3fMyNSh27-3N96A,21486
38
- pulumi_cloudamqp/vpc.py,sha256=Jl43qkKCpU5G0EvPFxk_cmJ5fHHOm8p6rqesOslN7vY,14804
39
- pulumi_cloudamqp/vpc_connect.py,sha256=2JCXbyEcOxMxh7_Oyz5_DZk86Os73Efeg5IzpC1e8OM,47126
40
- pulumi_cloudamqp/vpc_gcp_peering.py,sha256=FFxp4A-DvyGwB1K_fv8CTgTp_2vh_ugaggiEKaZUte0,36918
41
- pulumi_cloudamqp/vpc_peering.py,sha256=FAqyZ_4wUqBGs9XqsOlnOldeBy9EXDOpQ13lIoLfmWQ,16973
42
- pulumi_cloudamqp/webhook.py,sha256=WvJR3xfmIY9s8MrSaoD3wVuMwjlr8CbWLhB59PZFRFA,17501
43
- pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
44
- pulumi_cloudamqp/config/__init__.pyi,sha256=yRca3CWiHsleY1obkjqWJfprOQN8wfAyE-mfc0MtmJ4,723
45
- pulumi_cloudamqp/config/vars.py,sha256=mXJq-A9lp-pr14Qy0DIYCzi3lavA-QL1eDCUw0lFoX0,1113
46
- pulumi_cloudamqp-3.21.0a1743485311.dist-info/METADATA,sha256=BX3xYgqtKTUMctluhZyKjzJSwVHjArpZd1PU5hDu8mg,2818
47
- pulumi_cloudamqp-3.21.0a1743485311.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
48
- pulumi_cloudamqp-3.21.0a1743485311.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
49
- pulumi_cloudamqp-3.21.0a1743485311.dist-info/RECORD,,