pulumi-cloudamqp 3.18.0a1709359306__py3-none-any.whl → 3.18.0a1710914595__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 (33) hide show
  1. pulumi_cloudamqp/alarm.py +6 -0
  2. pulumi_cloudamqp/custom_domain.py +6 -0
  3. pulumi_cloudamqp/extra_disk_size.py +18 -0
  4. pulumi_cloudamqp/get_account.py +6 -0
  5. pulumi_cloudamqp/get_account_vpcs.py +6 -0
  6. pulumi_cloudamqp/get_alarm.py +6 -0
  7. pulumi_cloudamqp/get_credentials.py +6 -0
  8. pulumi_cloudamqp/get_instance.py +0 -42
  9. pulumi_cloudamqp/get_nodes.py +6 -0
  10. pulumi_cloudamqp/get_notification.py +6 -0
  11. pulumi_cloudamqp/get_plugins.py +6 -0
  12. pulumi_cloudamqp/get_plugins_community.py +6 -0
  13. pulumi_cloudamqp/get_upgradable_versions.py +6 -0
  14. pulumi_cloudamqp/get_vpc_gcp_info.py +10 -0
  15. pulumi_cloudamqp/get_vpc_info.py +10 -0
  16. pulumi_cloudamqp/instance.py +36 -2
  17. pulumi_cloudamqp/integration_aws_eventbridge.py +6 -0
  18. pulumi_cloudamqp/integration_log.py +426 -36
  19. pulumi_cloudamqp/node_actions.py +14 -0
  20. pulumi_cloudamqp/notification.py +34 -4
  21. pulumi_cloudamqp/plugin_community.py +2 -2
  22. pulumi_cloudamqp/privatelink_aws.py +22 -2
  23. pulumi_cloudamqp/privatelink_azure.py +22 -2
  24. pulumi_cloudamqp/upgrade_rabbitmq.py +12 -0
  25. pulumi_cloudamqp/vpc.py +8 -4
  26. pulumi_cloudamqp/vpc_connect.py +30 -2
  27. pulumi_cloudamqp/vpc_gcp_peering.py +86 -0
  28. pulumi_cloudamqp/webhook.py +6 -0
  29. {pulumi_cloudamqp-3.18.0a1709359306.dist-info → pulumi_cloudamqp-3.18.0a1710914595.dist-info}/METADATA +1 -1
  30. pulumi_cloudamqp-3.18.0a1710914595.dist-info/RECORD +48 -0
  31. {pulumi_cloudamqp-3.18.0a1709359306.dist-info → pulumi_cloudamqp-3.18.0a1710914595.dist-info}/WHEEL +1 -1
  32. pulumi_cloudamqp-3.18.0a1709359306.dist-info/RECORD +0 -48
  33. {pulumi_cloudamqp-3.18.0a1709359306.dist-info → pulumi_cloudamqp-3.18.0a1710914595.dist-info}/top_level.txt +0 -0
@@ -596,6 +596,7 @@ class Instance(pulumi.CustomResource):
596
596
  </b>
597
597
  </summary>
598
598
 
599
+ <!--Start PulumiCodeChooser -->
599
600
  ```python
600
601
  import pulumi
601
602
  import pulumi_cloudamqp as cloudamqp
@@ -616,6 +617,7 @@ class Instance(pulumi.CustomResource):
616
617
  region="amazon-web-services::us-west-1",
617
618
  tags=["terraform"])
618
619
  ```
620
+ <!--End PulumiCodeChooser -->
619
621
  </details>
620
622
 
621
623
  <details>
@@ -625,6 +627,7 @@ class Instance(pulumi.CustomResource):
625
627
  </b>
626
628
  </summary>
627
629
 
630
+ <!--Start PulumiCodeChooser -->
628
631
  ```python
629
632
  import pulumi
630
633
  import pulumi_cloudamqp as cloudamqp
@@ -635,6 +638,7 @@ class Instance(pulumi.CustomResource):
635
638
  tags=["terraform"],
636
639
  vpc_subnet="10.56.72.0/24")
637
640
  ```
641
+ <!--End PulumiCodeChooser -->
638
642
  </details>
639
643
 
640
644
  <details>
@@ -644,6 +648,7 @@ class Instance(pulumi.CustomResource):
644
648
  </b>
645
649
  </summary>
646
650
 
651
+ <!--Start PulumiCodeChooser -->
647
652
  ```python
648
653
  import pulumi
649
654
  import pulumi_cloudamqp as cloudamqp
@@ -655,11 +660,13 @@ class Instance(pulumi.CustomResource):
655
660
  tags=["terraform"],
656
661
  vpc_subnet="10.56.72.0/24")
657
662
  ```
663
+ <!--End PulumiCodeChooser -->
658
664
 
659
665
  Once the instance and the VPC are created, the VPC can be imported as managed VPC and added to the configuration file.
660
666
  Set attribute `vpc_id` to the managed VPC identifier. To keep the managed VPC when deleting the instance, set attribute `keep_associated_vpc` to true.
661
667
  For more information see guide Managed VPC.
662
668
 
669
+ <!--Start PulumiCodeChooser -->
663
670
  ```python
664
671
  import pulumi
665
672
  import pulumi_cloudamqp as cloudamqp
@@ -677,6 +684,7 @@ class Instance(pulumi.CustomResource):
677
684
  vpc_id=vpc.id,
678
685
  keep_associated_vpc=True)
679
686
  ```
687
+ <!--End PulumiCodeChooser -->
680
688
  </details>
681
689
 
682
690
  <details>
@@ -686,6 +694,7 @@ class Instance(pulumi.CustomResource):
686
694
  </b>
687
695
  </summary>
688
696
 
697
+ <!--Start PulumiCodeChooser -->
689
698
  ```python
690
699
  import pulumi
691
700
  import pulumi_cloudamqp as cloudamqp
@@ -710,9 +719,11 @@ class Instance(pulumi.CustomResource):
710
719
  vpc_id=vpc.id,
711
720
  keep_associated_vpc=True)
712
721
  ```
722
+ <!--End PulumiCodeChooser -->
713
723
 
714
724
  Set attribute `keep_associated_vpc` to true, will keep managed VPC when deleting the instances.
715
725
  </details>
726
+
716
727
  ## Upgrade and downgrade
717
728
 
718
729
  It's possible to upgrade or downgrade your subscription plan, this will either increase or decrease the underlying resource used for by the CloudAMQP instance. To do this, change the argument `plan` in the configuration and apply the changes. See available plans.
@@ -724,6 +735,7 @@ class Instance(pulumi.CustomResource):
724
735
  </b>
725
736
  </summary>
726
737
 
738
+ <!--Start PulumiCodeChooser -->
727
739
  ```python
728
740
  import pulumi
729
741
  import pulumi_cloudamqp as cloudamqp
@@ -734,6 +746,7 @@ class Instance(pulumi.CustomResource):
734
746
  region="amazon-web-services::us-west-1",
735
747
  tags=["terraform"])
736
748
  ```
749
+ <!--End PulumiCodeChooser -->
737
750
  </details>
738
751
 
739
752
  <details>
@@ -743,6 +756,7 @@ class Instance(pulumi.CustomResource):
743
756
  </b>
744
757
  </summary>
745
758
 
759
+ <!--Start PulumiCodeChooser -->
746
760
  ```python
747
761
  import pulumi
748
762
  import pulumi_cloudamqp as cloudamqp
@@ -753,6 +767,7 @@ class Instance(pulumi.CustomResource):
753
767
  region="amazon-web-services::us-west-1",
754
768
  tags=["terraform"])
755
769
  ```
770
+ <!--End PulumiCodeChooser -->
756
771
  </details>
757
772
 
758
773
  ## Copy settings to a new dedicated instance
@@ -770,6 +785,7 @@ class Instance(pulumi.CustomResource):
770
785
  </b>
771
786
  </summary>
772
787
 
788
+ <!--Start PulumiCodeChooser -->
773
789
  ```python
774
790
  import pulumi
775
791
  import pulumi_cloudamqp as cloudamqp
@@ -792,6 +808,7 @@ class Instance(pulumi.CustomResource):
792
808
  ],
793
809
  )])
794
810
  ```
811
+ <!--End PulumiCodeChooser -->
795
812
  </details>
796
813
 
797
814
  ## Import
@@ -802,7 +819,7 @@ class Instance(pulumi.CustomResource):
802
819
  $ pulumi import cloudamqp:index/instance:Instance instance <id>`
803
820
  ```
804
821
 
805
- To retrieve the identifier for an instance, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-instances) or use the data source [`cloudamqp_account`](./data-sources/account.md) to list all available instances for an account.
822
+ To retrieve the identifier for an instance, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-instances) or use the data source [`cloudamqp_account`](./data-sources/account.md) to list all available instances for an account.
806
823
 
807
824
  :param str resource_name: The name of the resource.
808
825
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -854,6 +871,7 @@ class Instance(pulumi.CustomResource):
854
871
  </b>
855
872
  </summary>
856
873
 
874
+ <!--Start PulumiCodeChooser -->
857
875
  ```python
858
876
  import pulumi
859
877
  import pulumi_cloudamqp as cloudamqp
@@ -874,6 +892,7 @@ class Instance(pulumi.CustomResource):
874
892
  region="amazon-web-services::us-west-1",
875
893
  tags=["terraform"])
876
894
  ```
895
+ <!--End PulumiCodeChooser -->
877
896
  </details>
878
897
 
879
898
  <details>
@@ -883,6 +902,7 @@ class Instance(pulumi.CustomResource):
883
902
  </b>
884
903
  </summary>
885
904
 
905
+ <!--Start PulumiCodeChooser -->
886
906
  ```python
887
907
  import pulumi
888
908
  import pulumi_cloudamqp as cloudamqp
@@ -893,6 +913,7 @@ class Instance(pulumi.CustomResource):
893
913
  tags=["terraform"],
894
914
  vpc_subnet="10.56.72.0/24")
895
915
  ```
916
+ <!--End PulumiCodeChooser -->
896
917
  </details>
897
918
 
898
919
  <details>
@@ -902,6 +923,7 @@ class Instance(pulumi.CustomResource):
902
923
  </b>
903
924
  </summary>
904
925
 
926
+ <!--Start PulumiCodeChooser -->
905
927
  ```python
906
928
  import pulumi
907
929
  import pulumi_cloudamqp as cloudamqp
@@ -913,11 +935,13 @@ class Instance(pulumi.CustomResource):
913
935
  tags=["terraform"],
914
936
  vpc_subnet="10.56.72.0/24")
915
937
  ```
938
+ <!--End PulumiCodeChooser -->
916
939
 
917
940
  Once the instance and the VPC are created, the VPC can be imported as managed VPC and added to the configuration file.
918
941
  Set attribute `vpc_id` to the managed VPC identifier. To keep the managed VPC when deleting the instance, set attribute `keep_associated_vpc` to true.
919
942
  For more information see guide Managed VPC.
920
943
 
944
+ <!--Start PulumiCodeChooser -->
921
945
  ```python
922
946
  import pulumi
923
947
  import pulumi_cloudamqp as cloudamqp
@@ -935,6 +959,7 @@ class Instance(pulumi.CustomResource):
935
959
  vpc_id=vpc.id,
936
960
  keep_associated_vpc=True)
937
961
  ```
962
+ <!--End PulumiCodeChooser -->
938
963
  </details>
939
964
 
940
965
  <details>
@@ -944,6 +969,7 @@ class Instance(pulumi.CustomResource):
944
969
  </b>
945
970
  </summary>
946
971
 
972
+ <!--Start PulumiCodeChooser -->
947
973
  ```python
948
974
  import pulumi
949
975
  import pulumi_cloudamqp as cloudamqp
@@ -968,9 +994,11 @@ class Instance(pulumi.CustomResource):
968
994
  vpc_id=vpc.id,
969
995
  keep_associated_vpc=True)
970
996
  ```
997
+ <!--End PulumiCodeChooser -->
971
998
 
972
999
  Set attribute `keep_associated_vpc` to true, will keep managed VPC when deleting the instances.
973
1000
  </details>
1001
+
974
1002
  ## Upgrade and downgrade
975
1003
 
976
1004
  It's possible to upgrade or downgrade your subscription plan, this will either increase or decrease the underlying resource used for by the CloudAMQP instance. To do this, change the argument `plan` in the configuration and apply the changes. See available plans.
@@ -982,6 +1010,7 @@ class Instance(pulumi.CustomResource):
982
1010
  </b>
983
1011
  </summary>
984
1012
 
1013
+ <!--Start PulumiCodeChooser -->
985
1014
  ```python
986
1015
  import pulumi
987
1016
  import pulumi_cloudamqp as cloudamqp
@@ -992,6 +1021,7 @@ class Instance(pulumi.CustomResource):
992
1021
  region="amazon-web-services::us-west-1",
993
1022
  tags=["terraform"])
994
1023
  ```
1024
+ <!--End PulumiCodeChooser -->
995
1025
  </details>
996
1026
 
997
1027
  <details>
@@ -1001,6 +1031,7 @@ class Instance(pulumi.CustomResource):
1001
1031
  </b>
1002
1032
  </summary>
1003
1033
 
1034
+ <!--Start PulumiCodeChooser -->
1004
1035
  ```python
1005
1036
  import pulumi
1006
1037
  import pulumi_cloudamqp as cloudamqp
@@ -1011,6 +1042,7 @@ class Instance(pulumi.CustomResource):
1011
1042
  region="amazon-web-services::us-west-1",
1012
1043
  tags=["terraform"])
1013
1044
  ```
1045
+ <!--End PulumiCodeChooser -->
1014
1046
  </details>
1015
1047
 
1016
1048
  ## Copy settings to a new dedicated instance
@@ -1028,6 +1060,7 @@ class Instance(pulumi.CustomResource):
1028
1060
  </b>
1029
1061
  </summary>
1030
1062
 
1063
+ <!--Start PulumiCodeChooser -->
1031
1064
  ```python
1032
1065
  import pulumi
1033
1066
  import pulumi_cloudamqp as cloudamqp
@@ -1050,6 +1083,7 @@ class Instance(pulumi.CustomResource):
1050
1083
  ],
1051
1084
  )])
1052
1085
  ```
1086
+ <!--End PulumiCodeChooser -->
1053
1087
  </details>
1054
1088
 
1055
1089
  ## Import
@@ -1060,7 +1094,7 @@ class Instance(pulumi.CustomResource):
1060
1094
  $ pulumi import cloudamqp:index/instance:Instance instance <id>`
1061
1095
  ```
1062
1096
 
1063
- To retrieve the identifier for an instance, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-instances) or use the data source [`cloudamqp_account`](./data-sources/account.md) to list all available instances for an account.
1097
+ To retrieve the identifier for an instance, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-instances) or use the data source [`cloudamqp_account`](./data-sources/account.md) to list all available instances for an account.
1064
1098
 
1065
1099
  :param str resource_name: The name of the resource.
1066
1100
  :param InstanceArgs args: The arguments to use to populate this resource's properties.
@@ -252,6 +252,7 @@ class IntegrationAwsEventbridge(pulumi.CustomResource):
252
252
 
253
253
  ## Example Usage
254
254
 
255
+ <!--Start PulumiCodeChooser -->
255
256
  ```python
256
257
  import pulumi
257
258
  import pulumi_cloudamqp as cloudamqp
@@ -269,6 +270,8 @@ class IntegrationAwsEventbridge(pulumi.CustomResource):
269
270
  aws_region="us-west-1",
270
271
  with_headers=True)
271
272
  ```
273
+ <!--End PulumiCodeChooser -->
274
+
272
275
  ## Argument references
273
276
 
274
277
  The following arguments are supported:
@@ -317,6 +320,7 @@ class IntegrationAwsEventbridge(pulumi.CustomResource):
317
320
 
318
321
  ## Example Usage
319
322
 
323
+ <!--Start PulumiCodeChooser -->
320
324
  ```python
321
325
  import pulumi
322
326
  import pulumi_cloudamqp as cloudamqp
@@ -334,6 +338,8 @@ class IntegrationAwsEventbridge(pulumi.CustomResource):
334
338
  aws_region="us-west-1",
335
339
  with_headers=True)
336
340
  ```
341
+ <!--End PulumiCodeChooser -->
342
+
337
343
  ## Argument references
338
344
 
339
345
  The following arguments are supported: