pulumi-cloudamqp 3.17.4__py3-none-any.whl → 3.17.6__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/alarm.py +116 -16
- pulumi_cloudamqp/custom_domain.py +4 -2
- pulumi_cloudamqp/extra_disk_size.py +34 -8
- pulumi_cloudamqp/get_account.py +0 -66
- pulumi_cloudamqp/get_account_vpcs.py +2 -0
- pulumi_cloudamqp/get_alarm.py +4 -2
- pulumi_cloudamqp/get_credentials.py +4 -2
- pulumi_cloudamqp/get_instance.py +0 -42
- pulumi_cloudamqp/get_nodes.py +4 -2
- pulumi_cloudamqp/get_notification.py +4 -2
- pulumi_cloudamqp/get_plugins.py +4 -2
- pulumi_cloudamqp/get_plugins_community.py +4 -2
- pulumi_cloudamqp/get_upgradable_versions.py +4 -2
- pulumi_cloudamqp/get_vpc_gcp_info.py +6 -4
- pulumi_cloudamqp/get_vpc_info.py +6 -4
- pulumi_cloudamqp/instance.py +40 -100
- pulumi_cloudamqp/integration_aws_eventbridge.py +6 -2
- pulumi_cloudamqp/integration_log.py +406 -36
- pulumi_cloudamqp/node_actions.py +38 -36
- pulumi_cloudamqp/notification.py +56 -40
- pulumi_cloudamqp/plugin_community.py +2 -2
- pulumi_cloudamqp/privatelink_aws.py +18 -34
- pulumi_cloudamqp/privatelink_azure.py +18 -34
- pulumi_cloudamqp/provider.py +0 -5
- pulumi_cloudamqp/pulumi-plugin.json +2 -1
- pulumi_cloudamqp/upgrade_rabbitmq.py +16 -10
- pulumi_cloudamqp/vpc.py +12 -6
- pulumi_cloudamqp/vpc_connect.py +32 -54
- pulumi_cloudamqp/vpc_gcp_peering.py +202 -30
- pulumi_cloudamqp/webhook.py +6 -4
- {pulumi_cloudamqp-3.17.4.dist-info → pulumi_cloudamqp-3.17.6.dist-info}/METADATA +1 -1
- pulumi_cloudamqp-3.17.6.dist-info/RECORD +48 -0
- {pulumi_cloudamqp-3.17.4.dist-info → pulumi_cloudamqp-3.17.6.dist-info}/WHEEL +1 -1
- pulumi_cloudamqp-3.17.4.dist-info/RECORD +0 -48
- {pulumi_cloudamqp-3.17.4.dist-info → pulumi_cloudamqp-3.17.6.dist-info}/top_level.txt +0 -0
|
@@ -300,17 +300,102 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
300
300
|
<i>Default VPC peering firewall rule</i>
|
|
301
301
|
</summary>
|
|
302
302
|
|
|
303
|
+
## Example Usage
|
|
304
|
+
|
|
305
|
+
<details>
|
|
306
|
+
<summary>
|
|
307
|
+
<b>
|
|
308
|
+
<i>VPC peering pre v1.16.0</i>
|
|
309
|
+
</b>
|
|
310
|
+
</summary>
|
|
311
|
+
|
|
303
312
|
```python
|
|
304
313
|
import pulumi
|
|
314
|
+
import pulumi_cloudamqp as cloudamqp
|
|
315
|
+
|
|
316
|
+
# CloudAMQP instance
|
|
317
|
+
instance = cloudamqp.Instance("instance",
|
|
318
|
+
name="terraform-vpc-peering",
|
|
319
|
+
plan="bunny-1",
|
|
320
|
+
region="google-compute-engine::europe-north1",
|
|
321
|
+
tags=["terraform"],
|
|
322
|
+
vpc_subnet="10.40.72.0/24")
|
|
323
|
+
# VPC information
|
|
324
|
+
vpc_info = instance.id.apply(lambda id: cloudamqp.get_vpc_gcp_info_output(instance_id=id))
|
|
325
|
+
# VPC peering configuration
|
|
326
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
327
|
+
instance_id=instance.id,
|
|
328
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
305
329
|
```
|
|
306
330
|
|
|
307
331
|
</details>
|
|
308
332
|
|
|
309
|
-
|
|
333
|
+
<details>
|
|
334
|
+
<summary>
|
|
335
|
+
<b>
|
|
336
|
+
<i>VPC peering post v1.16.0 (Managed VPC)</i>
|
|
337
|
+
</b>
|
|
338
|
+
</summary>
|
|
339
|
+
|
|
340
|
+
```python
|
|
341
|
+
import pulumi
|
|
342
|
+
import pulumi_cloudamqp as cloudamqp
|
|
310
343
|
|
|
311
|
-
|
|
344
|
+
# Managed VPC resource
|
|
345
|
+
vpc = cloudamqp.Vpc("vpc",
|
|
346
|
+
name="<VPC name>",
|
|
347
|
+
region="google-compute-engine::europe-north1",
|
|
348
|
+
subnet="10.56.72.0/24",
|
|
349
|
+
tags=[])
|
|
350
|
+
# CloudAMQP instance
|
|
351
|
+
instance = cloudamqp.Instance("instance",
|
|
352
|
+
name="terraform-vpc-peering",
|
|
353
|
+
plan="bunny-1",
|
|
354
|
+
region="google-compute-engine::europe-north1",
|
|
355
|
+
tags=["terraform"],
|
|
356
|
+
vpc_id=vpc.id)
|
|
357
|
+
# VPC information
|
|
358
|
+
vpc_info = cloudamqp.get_vpc_gcp_info(vpc_id=vpc.info)
|
|
359
|
+
# VPC peering configuration
|
|
360
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
361
|
+
vpc_id=vpc.id,
|
|
362
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
</details>
|
|
366
|
+
|
|
367
|
+
<details>
|
|
368
|
+
<summary>
|
|
369
|
+
<b>
|
|
370
|
+
<i>VPC peering post v1.28.0, wait_on_peering_status </i>
|
|
371
|
+
</b>
|
|
372
|
+
</summary>
|
|
373
|
+
|
|
374
|
+
Default peering request, no need to set `wait_on_peering_status`. It's default set to false and will not wait on peering status.
|
|
375
|
+
|
|
376
|
+
```python
|
|
377
|
+
import pulumi
|
|
378
|
+
import pulumi_cloudamqp as cloudamqp
|
|
379
|
+
|
|
380
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
381
|
+
vpc_id=vpc["id"],
|
|
382
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
Peering request and waiting for peering status.
|
|
386
|
+
|
|
387
|
+
```python
|
|
388
|
+
import pulumi
|
|
389
|
+
import pulumi_cloudamqp as cloudamqp
|
|
390
|
+
|
|
391
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
392
|
+
vpc_id=vpc["id"],
|
|
393
|
+
wait_on_peering_status=True,
|
|
394
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
</details>
|
|
312
398
|
|
|
313
|
-
## Example Usage
|
|
314
399
|
### With Additional Firewall Rules
|
|
315
400
|
|
|
316
401
|
<details>
|
|
@@ -325,15 +410,15 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
325
410
|
import pulumi_cloudamqp as cloudamqp
|
|
326
411
|
|
|
327
412
|
# VPC peering configuration
|
|
328
|
-
vpc_peering_request = cloudamqp.VpcGcpPeering("
|
|
329
|
-
instance_id=
|
|
330
|
-
peer_network_uri=
|
|
413
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
414
|
+
instance_id=instance["id"],
|
|
415
|
+
peer_network_uri=peer_network_uri)
|
|
331
416
|
# Firewall rules
|
|
332
|
-
firewall_settings = cloudamqp.SecurityFirewall("
|
|
333
|
-
instance_id=
|
|
417
|
+
firewall_settings = cloudamqp.SecurityFirewall("firewall_settings",
|
|
418
|
+
instance_id=instance["id"],
|
|
334
419
|
rules=[
|
|
335
420
|
cloudamqp.SecurityFirewallRuleArgs(
|
|
336
|
-
ip=
|
|
421
|
+
ip=peer_subnet,
|
|
337
422
|
ports=[15672],
|
|
338
423
|
services=[
|
|
339
424
|
"AMQP",
|
|
@@ -373,15 +458,15 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
373
458
|
import pulumi_cloudamqp as cloudamqp
|
|
374
459
|
|
|
375
460
|
# VPC peering configuration
|
|
376
|
-
vpc_peering_request = cloudamqp.VpcGcpPeering("
|
|
377
|
-
vpc_id=
|
|
378
|
-
peer_network_uri=
|
|
461
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
462
|
+
vpc_id=vpc["id"],
|
|
463
|
+
peer_network_uri=peer_network_uri)
|
|
379
464
|
# Firewall rules
|
|
380
|
-
firewall_settings = cloudamqp.SecurityFirewall("
|
|
381
|
-
instance_id=
|
|
465
|
+
firewall_settings = cloudamqp.SecurityFirewall("firewall_settings",
|
|
466
|
+
instance_id=instance["id"],
|
|
382
467
|
rules=[
|
|
383
468
|
cloudamqp.SecurityFirewallRuleArgs(
|
|
384
|
-
ip=
|
|
469
|
+
ip=peer_subnet,
|
|
385
470
|
ports=[15672],
|
|
386
471
|
services=[
|
|
387
472
|
"AMQP",
|
|
@@ -402,6 +487,7 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
402
487
|
```
|
|
403
488
|
|
|
404
489
|
</details>
|
|
490
|
+
|
|
405
491
|
## Depedency
|
|
406
492
|
|
|
407
493
|
*Pre v1.16.0*
|
|
@@ -451,17 +537,102 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
451
537
|
<i>Default VPC peering firewall rule</i>
|
|
452
538
|
</summary>
|
|
453
539
|
|
|
540
|
+
## Example Usage
|
|
541
|
+
|
|
542
|
+
<details>
|
|
543
|
+
<summary>
|
|
544
|
+
<b>
|
|
545
|
+
<i>VPC peering pre v1.16.0</i>
|
|
546
|
+
</b>
|
|
547
|
+
</summary>
|
|
548
|
+
|
|
454
549
|
```python
|
|
455
550
|
import pulumi
|
|
551
|
+
import pulumi_cloudamqp as cloudamqp
|
|
552
|
+
|
|
553
|
+
# CloudAMQP instance
|
|
554
|
+
instance = cloudamqp.Instance("instance",
|
|
555
|
+
name="terraform-vpc-peering",
|
|
556
|
+
plan="bunny-1",
|
|
557
|
+
region="google-compute-engine::europe-north1",
|
|
558
|
+
tags=["terraform"],
|
|
559
|
+
vpc_subnet="10.40.72.0/24")
|
|
560
|
+
# VPC information
|
|
561
|
+
vpc_info = instance.id.apply(lambda id: cloudamqp.get_vpc_gcp_info_output(instance_id=id))
|
|
562
|
+
# VPC peering configuration
|
|
563
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
564
|
+
instance_id=instance.id,
|
|
565
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
456
566
|
```
|
|
457
567
|
|
|
458
568
|
</details>
|
|
459
569
|
|
|
460
|
-
|
|
570
|
+
<details>
|
|
571
|
+
<summary>
|
|
572
|
+
<b>
|
|
573
|
+
<i>VPC peering post v1.16.0 (Managed VPC)</i>
|
|
574
|
+
</b>
|
|
575
|
+
</summary>
|
|
576
|
+
|
|
577
|
+
```python
|
|
578
|
+
import pulumi
|
|
579
|
+
import pulumi_cloudamqp as cloudamqp
|
|
461
580
|
|
|
462
|
-
|
|
581
|
+
# Managed VPC resource
|
|
582
|
+
vpc = cloudamqp.Vpc("vpc",
|
|
583
|
+
name="<VPC name>",
|
|
584
|
+
region="google-compute-engine::europe-north1",
|
|
585
|
+
subnet="10.56.72.0/24",
|
|
586
|
+
tags=[])
|
|
587
|
+
# CloudAMQP instance
|
|
588
|
+
instance = cloudamqp.Instance("instance",
|
|
589
|
+
name="terraform-vpc-peering",
|
|
590
|
+
plan="bunny-1",
|
|
591
|
+
region="google-compute-engine::europe-north1",
|
|
592
|
+
tags=["terraform"],
|
|
593
|
+
vpc_id=vpc.id)
|
|
594
|
+
# VPC information
|
|
595
|
+
vpc_info = cloudamqp.get_vpc_gcp_info(vpc_id=vpc.info)
|
|
596
|
+
# VPC peering configuration
|
|
597
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
598
|
+
vpc_id=vpc.id,
|
|
599
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
600
|
+
```
|
|
601
|
+
|
|
602
|
+
</details>
|
|
603
|
+
|
|
604
|
+
<details>
|
|
605
|
+
<summary>
|
|
606
|
+
<b>
|
|
607
|
+
<i>VPC peering post v1.28.0, wait_on_peering_status </i>
|
|
608
|
+
</b>
|
|
609
|
+
</summary>
|
|
610
|
+
|
|
611
|
+
Default peering request, no need to set `wait_on_peering_status`. It's default set to false and will not wait on peering status.
|
|
612
|
+
|
|
613
|
+
```python
|
|
614
|
+
import pulumi
|
|
615
|
+
import pulumi_cloudamqp as cloudamqp
|
|
616
|
+
|
|
617
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
618
|
+
vpc_id=vpc["id"],
|
|
619
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
620
|
+
```
|
|
621
|
+
|
|
622
|
+
Peering request and waiting for peering status.
|
|
623
|
+
|
|
624
|
+
```python
|
|
625
|
+
import pulumi
|
|
626
|
+
import pulumi_cloudamqp as cloudamqp
|
|
627
|
+
|
|
628
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
629
|
+
vpc_id=vpc["id"],
|
|
630
|
+
wait_on_peering_status=True,
|
|
631
|
+
peer_network_uri="https://www.googleapis.com/compute/v1/projects/<PROJECT-NAME>/global/networks/<NETWORK-NAME>")
|
|
632
|
+
```
|
|
633
|
+
|
|
634
|
+
</details>
|
|
463
635
|
|
|
464
|
-
## Example Usage
|
|
465
636
|
### With Additional Firewall Rules
|
|
466
637
|
|
|
467
638
|
<details>
|
|
@@ -476,15 +647,15 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
476
647
|
import pulumi_cloudamqp as cloudamqp
|
|
477
648
|
|
|
478
649
|
# VPC peering configuration
|
|
479
|
-
vpc_peering_request = cloudamqp.VpcGcpPeering("
|
|
480
|
-
instance_id=
|
|
481
|
-
peer_network_uri=
|
|
650
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
651
|
+
instance_id=instance["id"],
|
|
652
|
+
peer_network_uri=peer_network_uri)
|
|
482
653
|
# Firewall rules
|
|
483
|
-
firewall_settings = cloudamqp.SecurityFirewall("
|
|
484
|
-
instance_id=
|
|
654
|
+
firewall_settings = cloudamqp.SecurityFirewall("firewall_settings",
|
|
655
|
+
instance_id=instance["id"],
|
|
485
656
|
rules=[
|
|
486
657
|
cloudamqp.SecurityFirewallRuleArgs(
|
|
487
|
-
ip=
|
|
658
|
+
ip=peer_subnet,
|
|
488
659
|
ports=[15672],
|
|
489
660
|
services=[
|
|
490
661
|
"AMQP",
|
|
@@ -524,15 +695,15 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
524
695
|
import pulumi_cloudamqp as cloudamqp
|
|
525
696
|
|
|
526
697
|
# VPC peering configuration
|
|
527
|
-
vpc_peering_request = cloudamqp.VpcGcpPeering("
|
|
528
|
-
vpc_id=
|
|
529
|
-
peer_network_uri=
|
|
698
|
+
vpc_peering_request = cloudamqp.VpcGcpPeering("vpc_peering_request",
|
|
699
|
+
vpc_id=vpc["id"],
|
|
700
|
+
peer_network_uri=peer_network_uri)
|
|
530
701
|
# Firewall rules
|
|
531
|
-
firewall_settings = cloudamqp.SecurityFirewall("
|
|
532
|
-
instance_id=
|
|
702
|
+
firewall_settings = cloudamqp.SecurityFirewall("firewall_settings",
|
|
703
|
+
instance_id=instance["id"],
|
|
533
704
|
rules=[
|
|
534
705
|
cloudamqp.SecurityFirewallRuleArgs(
|
|
535
|
-
ip=
|
|
706
|
+
ip=peer_subnet,
|
|
536
707
|
ports=[15672],
|
|
537
708
|
services=[
|
|
538
709
|
"AMQP",
|
|
@@ -553,6 +724,7 @@ class VpcGcpPeering(pulumi.CustomResource):
|
|
|
553
724
|
```
|
|
554
725
|
|
|
555
726
|
</details>
|
|
727
|
+
|
|
556
728
|
## Depedency
|
|
557
729
|
|
|
558
730
|
*Pre v1.16.0*
|
pulumi_cloudamqp/webhook.py
CHANGED
|
@@ -236,14 +236,15 @@ class Webhook(pulumi.CustomResource):
|
|
|
236
236
|
import pulumi
|
|
237
237
|
import pulumi_cloudamqp as cloudamqp
|
|
238
238
|
|
|
239
|
-
webhook_queue = cloudamqp.Webhook("
|
|
240
|
-
instance_id=
|
|
239
|
+
webhook_queue = cloudamqp.Webhook("webhook_queue",
|
|
240
|
+
instance_id=instance["id"],
|
|
241
241
|
vhost="myvhost",
|
|
242
242
|
queue="webhook-queue",
|
|
243
243
|
webhook_uri="https://example.com/webhook?key=secret",
|
|
244
244
|
retry_interval=5,
|
|
245
245
|
concurrency=5)
|
|
246
246
|
```
|
|
247
|
+
|
|
247
248
|
## Dependency
|
|
248
249
|
|
|
249
250
|
This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
@@ -282,14 +283,15 @@ class Webhook(pulumi.CustomResource):
|
|
|
282
283
|
import pulumi
|
|
283
284
|
import pulumi_cloudamqp as cloudamqp
|
|
284
285
|
|
|
285
|
-
webhook_queue = cloudamqp.Webhook("
|
|
286
|
-
instance_id=
|
|
286
|
+
webhook_queue = cloudamqp.Webhook("webhook_queue",
|
|
287
|
+
instance_id=instance["id"],
|
|
287
288
|
vhost="myvhost",
|
|
288
289
|
queue="webhook-queue",
|
|
289
290
|
webhook_uri="https://example.com/webhook?key=secret",
|
|
290
291
|
retry_interval=5,
|
|
291
292
|
concurrency=5)
|
|
292
293
|
```
|
|
294
|
+
|
|
293
295
|
## Dependency
|
|
294
296
|
|
|
295
297
|
This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
pulumi_cloudamqp/__init__.py,sha256=ewe1_AokqUeqzc8ZVq3PWAYhkNk4xBk4V3VNEWhk3uE,5552
|
|
2
|
+
pulumi_cloudamqp/_inputs.py,sha256=oKjcIeymBER8EgwRCQVWe2s7w2oVPdgRZJiltk3XvqQ,8830
|
|
3
|
+
pulumi_cloudamqp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
|
4
|
+
pulumi_cloudamqp/account_action.py,sha256=s-hJMsKAoKNPDUW3sNI-I8jtoLEy6g57e5gQ3nXzk6U,7688
|
|
5
|
+
pulumi_cloudamqp/alarm.py,sha256=9vaf8lulK6jSvS3SlwNpeaqPUl9e6EAClJYcNGBMCHA,38209
|
|
6
|
+
pulumi_cloudamqp/custom_domain.py,sha256=m98sZJNbs4bINPxhIfsG37Xyr3u-0Sc6tKURZS-8R0Y,9995
|
|
7
|
+
pulumi_cloudamqp/extra_disk_size.py,sha256=DKmwVdfhuMeqEMuGshlRhe4zmve1XciRrYEmVmEogmA,27778
|
|
8
|
+
pulumi_cloudamqp/get_account.py,sha256=rUzBSpqRfOxo0uCCSIKaEDXvR76lXYK3ysx94AooVTA,2605
|
|
9
|
+
pulumi_cloudamqp/get_account_vpcs.py,sha256=Pej4T-YmSd4x0ZeHJa_R7C4WFPNcqywPoder4SXvCDY,5127
|
|
10
|
+
pulumi_cloudamqp/get_alarm.py,sha256=d2s6GrR0hjtq2MXxPl6u-VfMf9XzrbFmsgwh1Lwy4SQ,11592
|
|
11
|
+
pulumi_cloudamqp/get_credentials.py,sha256=gqQDhS8SZO06Y2SXLL1KPI9JXn_wKRvAc5V5TQ9NMpA,4857
|
|
12
|
+
pulumi_cloudamqp/get_instance.py,sha256=aerhBMj1d-x6EMdiR1PnBzE1KW6gr0miXWml_lYW14A,9386
|
|
13
|
+
pulumi_cloudamqp/get_nodes.py,sha256=qY6Tn1Mq0DRfebxJObuQaLVLYnkDHP9C2nBjMbPEI_Q,5474
|
|
14
|
+
pulumi_cloudamqp/get_notification.py,sha256=SRnjv_M_vICk_o56tfe83vrPZGveyD84T_WHA0e1nEc,7007
|
|
15
|
+
pulumi_cloudamqp/get_plugins.py,sha256=sFF0k2iJqevBmeJCgLH55zeq8U4reXiJSgrClLiMx5E,5488
|
|
16
|
+
pulumi_cloudamqp/get_plugins_community.py,sha256=kp99ZUo1Jk_nvapK-Mkn2B1cmpTp6Tolz8e7Qrd0r84,5622
|
|
17
|
+
pulumi_cloudamqp/get_upgradable_versions.py,sha256=CjPl8qk7tHpDGeuipnh65TgthV_WW1rvsprmofAgOXY,5062
|
|
18
|
+
pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=9KAik-_oEzLOAYu0SNGHJ4DPwVQiRtkRox4tjMWewvI,9005
|
|
19
|
+
pulumi_cloudamqp/get_vpc_info.py,sha256=pBMRngdtxEjRLuXdC5UcWhNOeY-Nlk-D64fwUeL4YpI,8164
|
|
20
|
+
pulumi_cloudamqp/instance.py,sha256=yXoQ-gi-QpcLuG_iIwWBLXnWsC6lT78HF8a3nqtw2z8,58939
|
|
21
|
+
pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=zgL7vIMKmid8cKIEZFMoiqU8KD_MGbfizf8VRHvpb_U,22283
|
|
22
|
+
pulumi_cloudamqp/integration_log.py,sha256=18sFxKmFCH8WQfww3Jrniux8wYTBfNgmXTPJV3xm5KU,66081
|
|
23
|
+
pulumi_cloudamqp/integration_metric.py,sha256=Fx0mo6dmztZiGek3WIJ0cTVcVLyzcJSkFNHU2Pztabo,45257
|
|
24
|
+
pulumi_cloudamqp/node_actions.py,sha256=I0DvZgE2L5Nt-PBuRphkjudKjyyIoOCohXMhl3_o3zU,18115
|
|
25
|
+
pulumi_cloudamqp/notification.py,sha256=2jfJZh0SReZcfqK3awzs7fA_ORw3eb5fBLa-F4GoO4g,27440
|
|
26
|
+
pulumi_cloudamqp/outputs.py,sha256=JhmAvoEeY_c_wF4mvz8nuyBwTeqIZUHSpKf3B3LfMjs,16822
|
|
27
|
+
pulumi_cloudamqp/plugin.py,sha256=-FDLDuRtPB8cdE62Uk_3BYcR25ARyUXMCeZQ9bHGNS0,14901
|
|
28
|
+
pulumi_cloudamqp/plugin_community.py,sha256=Qwu7EfyGQ9BMMdXvKLrXioiVauDMxPNdmMlGqxW4jw8,15127
|
|
29
|
+
pulumi_cloudamqp/privatelink_aws.py,sha256=UhMXhEP3PW1Lv32ogiIcwy-Z7G5ohobWMJuFKnc03kg,27917
|
|
30
|
+
pulumi_cloudamqp/privatelink_azure.py,sha256=5SYEW3e_5NVhe7dIpGi35_8FOHYIL71wjQPFIOwEgMs,27173
|
|
31
|
+
pulumi_cloudamqp/provider.py,sha256=IwRPYsuoOzrUzVP2gmjIZ59mGte5_b0cd8_HYF0HhRc,6548
|
|
32
|
+
pulumi_cloudamqp/pulumi-plugin.json,sha256=e85qmsn5LK7M9O7JSc1Ps4CPPpyb-M1c3ekIASeki0s,69
|
|
33
|
+
pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
pulumi_cloudamqp/rabbit_configuration.py,sha256=9qT6ABDHPcurBcmlckrHJ_tt-SV5vGARHpF9xXWa0Pc,32730
|
|
35
|
+
pulumi_cloudamqp/security_firewall.py,sha256=5WgMYsKJp4SZRBm0PsJA2BDI0Rw9UyTdVHkFYhGv2e0,11654
|
|
36
|
+
pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=NMBsLYzYfuizMpJH3TOR1Cb1SmZFoqgOMNFSZtJewqk,11121
|
|
37
|
+
pulumi_cloudamqp/vpc.py,sha256=IpI_5Gqxjio5LO9AbVEDQQS43xxPDRY0RUZaJK80Odw,14630
|
|
38
|
+
pulumi_cloudamqp/vpc_connect.py,sha256=CaZrJ3PpFnWiNA2Yn12srx6kYlHgd2TI1zszKQO6pg4,44836
|
|
39
|
+
pulumi_cloudamqp/vpc_gcp_peering.py,sha256=_4-9OoAIKyQxz1ih9xV1AYpHrsILMerIvNN7Slb5kIo,35593
|
|
40
|
+
pulumi_cloudamqp/vpc_peering.py,sha256=1AsazWnJdpiKFKnLl7lHy6aJJrgFIG7FbHxJfN8hBzM,16351
|
|
41
|
+
pulumi_cloudamqp/webhook.py,sha256=JRoPmuzFXB0bDZ91STiDCDx-NRIKlmhzoIZWj2Zb_8o,17219
|
|
42
|
+
pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
43
|
+
pulumi_cloudamqp/config/__init__.pyi,sha256=UHTIxCey3Zv15sJPQ4FzkPz4--aJNEcw9OwBw7Q2kzc,549
|
|
44
|
+
pulumi_cloudamqp/config/vars.py,sha256=oFfIlqwVoffHyMowmkb9op1W1MBcSamLeviHi6IZino,939
|
|
45
|
+
pulumi_cloudamqp-3.17.6.dist-info/METADATA,sha256=UJvnp0OuZdFivE0nrxkQhYVZWsRJT2UZsmurJ7ja8IM,2744
|
|
46
|
+
pulumi_cloudamqp-3.17.6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
47
|
+
pulumi_cloudamqp-3.17.6.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
|
|
48
|
+
pulumi_cloudamqp-3.17.6.dist-info/RECORD,,
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
pulumi_cloudamqp/__init__.py,sha256=ewe1_AokqUeqzc8ZVq3PWAYhkNk4xBk4V3VNEWhk3uE,5552
|
|
2
|
-
pulumi_cloudamqp/_inputs.py,sha256=oKjcIeymBER8EgwRCQVWe2s7w2oVPdgRZJiltk3XvqQ,8830
|
|
3
|
-
pulumi_cloudamqp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
|
4
|
-
pulumi_cloudamqp/account_action.py,sha256=s-hJMsKAoKNPDUW3sNI-I8jtoLEy6g57e5gQ3nXzk6U,7688
|
|
5
|
-
pulumi_cloudamqp/alarm.py,sha256=OkFZUPZN1Wo2fBz3SumAftaqjHfLqZQNsTXYH2MDAD4,35195
|
|
6
|
-
pulumi_cloudamqp/custom_domain.py,sha256=FM-rc_1KI8J-6aQXAfjgIHVg_7UzK5JDgD_-kK6NNqQ,10037
|
|
7
|
-
pulumi_cloudamqp/extra_disk_size.py,sha256=hnw362SF0W4NfK4aU2fKycllPkhp95yt6snwXq490Ek,26432
|
|
8
|
-
pulumi_cloudamqp/get_account.py,sha256=BfYZORT5B_tt2xl7ibdvPlWZHvdIiTNaUKruBJ5NSpw,4971
|
|
9
|
-
pulumi_cloudamqp/get_account_vpcs.py,sha256=m6tudM2ihMzaZmtEhLaCflWBwWqKcRTXTNr1jnhz0jE,5125
|
|
10
|
-
pulumi_cloudamqp/get_alarm.py,sha256=XYq0mAQUcLuH06EubLf9OVjGUVBF5pazE1bJwnZrOnk,11634
|
|
11
|
-
pulumi_cloudamqp/get_credentials.py,sha256=y67FIj-54Z1EnQD_amE6Ie5s44mXPckkj_6ISGTiJWA,4899
|
|
12
|
-
pulumi_cloudamqp/get_instance.py,sha256=TjJSyQyVZU0j3DCwal8Wpat4bvp0bf9scHGEo0bx77U,12122
|
|
13
|
-
pulumi_cloudamqp/get_nodes.py,sha256=MhxoFwqZ3Mgn2VnjGSzt7tB4WULfMOFJqXStgQL384M,5516
|
|
14
|
-
pulumi_cloudamqp/get_notification.py,sha256=ZH2xLbuXgHCSlCCULqzJzIrhb_M2x5BBXb66ZH3petc,7049
|
|
15
|
-
pulumi_cloudamqp/get_plugins.py,sha256=xFGdbcE6n-pLkPgCwl5tG7GqBNfVkTcRXt-kbBMCU5o,5530
|
|
16
|
-
pulumi_cloudamqp/get_plugins_community.py,sha256=6IH-7LGwxha4M-cpTEJa0vhsjNRyRNIxjyLbYW-u8t0,5664
|
|
17
|
-
pulumi_cloudamqp/get_upgradable_versions.py,sha256=9Hy4W4hT8G8pOgBMUoVowZCDvvmK9F31s87AnXrD5XE,5104
|
|
18
|
-
pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=nLozPcHsK7uR-x1AfSCIbc01JqJETEPxdIIluSkjRCc,9081
|
|
19
|
-
pulumi_cloudamqp/get_vpc_info.py,sha256=Z9F1cNJE4A7t7y7zuKTg8zGjVAse5aunfvjzvfi30po,8240
|
|
20
|
-
pulumi_cloudamqp/instance.py,sha256=BZuYBtdfayGrx5yxmKr8gCrt-BkIr3HwpefkeezSAFA,60465
|
|
21
|
-
pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=z406aVV54Uv3UHmeT6jNctdGH3_omsXzvH8fhlf_U6w,22211
|
|
22
|
-
pulumi_cloudamqp/integration_log.py,sha256=nQ0Bx1-FOMy11QtynSSBF9fwEjt28miY7kx1ERvLLrU,58231
|
|
23
|
-
pulumi_cloudamqp/integration_metric.py,sha256=Fx0mo6dmztZiGek3WIJ0cTVcVLyzcJSkFNHU2Pztabo,45257
|
|
24
|
-
pulumi_cloudamqp/node_actions.py,sha256=gGaKlB6oM78zEmBEOs3ZrFtlj7j9HAU0XwtT2COi_cs,18537
|
|
25
|
-
pulumi_cloudamqp/notification.py,sha256=l_QiSjxHDTInn1PlaSwuitKIDUprl23o3JUn5hZ3JgU,27344
|
|
26
|
-
pulumi_cloudamqp/outputs.py,sha256=JhmAvoEeY_c_wF4mvz8nuyBwTeqIZUHSpKf3B3LfMjs,16822
|
|
27
|
-
pulumi_cloudamqp/plugin.py,sha256=-FDLDuRtPB8cdE62Uk_3BYcR25ARyUXMCeZQ9bHGNS0,14901
|
|
28
|
-
pulumi_cloudamqp/plugin_community.py,sha256=IkQp-V6TM3tTTQVVdRHO6kc7RzHyzBaxBa2MLCSJRAo,15129
|
|
29
|
-
pulumi_cloudamqp/privatelink_aws.py,sha256=0cVeBhPPeFsmDLmuQt4YENCVZCvXeiljKnlhss_0pVA,28693
|
|
30
|
-
pulumi_cloudamqp/privatelink_azure.py,sha256=DBmvczR0fNRz4_VWIsKHC3fc5mS4vAsk6QXd8xnKzCo,27953
|
|
31
|
-
pulumi_cloudamqp/provider.py,sha256=-1Yblud0x-19h9xdoBUvgYRToei3kqo4YVchG-i-XOo,6886
|
|
32
|
-
pulumi_cloudamqp/pulumi-plugin.json,sha256=So-I3JjRewZ_dOFdPPHpKB-8K3zcppOkGrDnWy-1N5s,46
|
|
33
|
-
pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
pulumi_cloudamqp/rabbit_configuration.py,sha256=9qT6ABDHPcurBcmlckrHJ_tt-SV5vGARHpF9xXWa0Pc,32730
|
|
35
|
-
pulumi_cloudamqp/security_firewall.py,sha256=5WgMYsKJp4SZRBm0PsJA2BDI0Rw9UyTdVHkFYhGv2e0,11654
|
|
36
|
-
pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=BYU-8NifTykI2W--UaQrUm6vzEeG26EM1VSsnYn3fD0,10867
|
|
37
|
-
pulumi_cloudamqp/vpc.py,sha256=yqxICPvBk-HFfJAuFX-0LoAFkjhUnNFAjCfH_uX-GsI,14432
|
|
38
|
-
pulumi_cloudamqp/vpc_connect.py,sha256=LQVrwm7lM6uwgTkwLHiu1gmvMDTm3YTySB-jdZdAeFY,45026
|
|
39
|
-
pulumi_cloudamqp/vpc_gcp_peering.py,sha256=3tpq3WLWUdc6gSfeWfrK05Yr9H3lzBKUZFd9qW0cIOc,29987
|
|
40
|
-
pulumi_cloudamqp/vpc_peering.py,sha256=1AsazWnJdpiKFKnLl7lHy6aJJrgFIG7FbHxJfN8hBzM,16351
|
|
41
|
-
pulumi_cloudamqp/webhook.py,sha256=LP8tD7fNGFw6E71qDCbj0nelwGaVzdXEPar0E7jkONI,17259
|
|
42
|
-
pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
43
|
-
pulumi_cloudamqp/config/__init__.pyi,sha256=UHTIxCey3Zv15sJPQ4FzkPz4--aJNEcw9OwBw7Q2kzc,549
|
|
44
|
-
pulumi_cloudamqp/config/vars.py,sha256=oFfIlqwVoffHyMowmkb9op1W1MBcSamLeviHi6IZino,939
|
|
45
|
-
pulumi_cloudamqp-3.17.4.dist-info/METADATA,sha256=NaSJdqW6yrYJS5Ijq69zAuDXsTbCluxyORenzue7Wk0,2744
|
|
46
|
-
pulumi_cloudamqp-3.17.4.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
47
|
-
pulumi_cloudamqp-3.17.4.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
|
|
48
|
-
pulumi_cloudamqp-3.17.4.dist-info/RECORD,,
|
|
File without changes
|