pulumi-cloudamqp 3.18.0a1707284716__py3-none-any.whl → 3.18.0a1707889478__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.

@@ -4,6 +4,7 @@
4
4
 
5
5
 
6
6
  import asyncio
7
+ import importlib.metadata
7
8
  import importlib.util
8
9
  import inspect
9
10
  import json
@@ -18,11 +19,6 @@ from pulumi.runtime.sync_await import _sync_await
18
19
  from semver import VersionInfo as SemverVersion
19
20
  from parver import Version as PEP440Version
20
21
 
21
- if sys.version_info >= (3, 8):
22
- from importlib import metadata
23
- else:
24
- import importlib_metadata as metadata
25
-
26
22
 
27
23
  def get_env(*args):
28
24
  for v in args:
@@ -76,7 +72,7 @@ def _get_semver_version():
76
72
  # to receive a valid semver string when receiving requests from the language host, so it's our
77
73
  # responsibility as the library to convert our own PEP440 version into a valid semver string.
78
74
 
79
- pep440_version_string = metadata.version(root_package)
75
+ pep440_version_string = importlib.metadata.version(root_package)
80
76
  pep440_version = PEP440Version.parse(pep440_version_string)
81
77
  (major, minor, patch) = pep440_version.release
82
78
  prerelease = None
pulumi_cloudamqp/alarm.py CHANGED
@@ -476,7 +476,7 @@ class Alarm(pulumi.CustomResource):
476
476
  `cloudamqp_alarm` can be imported using CloudAMQP internal identifier of the alarm together (CSV separated) with the instance identifier. To retrieve the alarm identifier, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-alarms)
477
477
 
478
478
  ```sh
479
- $ pulumi import cloudamqp:index/alarm:Alarm alarm <id>,<instance_id>`
479
+ $ pulumi import cloudamqp:index/alarm:Alarm alarm <id>,<instance_id>`
480
480
  ```
481
481
 
482
482
  :param str resource_name: The name of the resource.
@@ -571,7 +571,7 @@ class Alarm(pulumi.CustomResource):
571
571
  `cloudamqp_alarm` can be imported using CloudAMQP internal identifier of the alarm together (CSV separated) with the instance identifier. To retrieve the alarm identifier, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-alarms)
572
572
 
573
573
  ```sh
574
- $ pulumi import cloudamqp:index/alarm:Alarm alarm <id>,<instance_id>`
574
+ $ pulumi import cloudamqp:index/alarm:Alarm alarm <id>,<instance_id>`
575
575
  ```
576
576
 
577
577
  :param str resource_name: The name of the resource.
@@ -127,10 +127,10 @@ class CustomDomain(pulumi.CustomResource):
127
127
  `cloudamqp_custom_domain` can be imported using CloudAMQP instance identifier.
128
128
 
129
129
  ```sh
130
- $ pulumi import cloudamqp:index/customDomain:CustomDomain settings <instance_id>`
130
+ $ pulumi import cloudamqp:index/customDomain:CustomDomain settings <instance_id>`
131
131
  ```
132
132
 
133
- [Let's Encrypt]https://letsencrypt.org/
133
+ [Let's Encrypt]: https://letsencrypt.org/
134
134
 
135
135
  :param str resource_name: The name of the resource.
136
136
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -173,10 +173,10 @@ class CustomDomain(pulumi.CustomResource):
173
173
  `cloudamqp_custom_domain` can be imported using CloudAMQP instance identifier.
174
174
 
175
175
  ```sh
176
- $ pulumi import cloudamqp:index/customDomain:CustomDomain settings <instance_id>`
176
+ $ pulumi import cloudamqp:index/customDomain:CustomDomain settings <instance_id>`
177
177
  ```
178
178
 
179
- [Let's Encrypt]https://letsencrypt.org/
179
+ [Let's Encrypt]: https://letsencrypt.org/
180
180
 
181
181
  :param str resource_name: The name of the resource.
182
182
  :param CustomDomainArgs args: The arguments to use to populate this resource's properties.
@@ -799,7 +799,7 @@ class Instance(pulumi.CustomResource):
799
799
  `cloudamqp_instance`can be imported using CloudAMQP internal identifier.
800
800
 
801
801
  ```sh
802
- $ pulumi import cloudamqp:index/instance:Instance instance <id>`
802
+ $ pulumi import cloudamqp:index/instance:Instance instance <id>`
803
803
  ```
804
804
 
805
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.
@@ -1057,7 +1057,7 @@ class Instance(pulumi.CustomResource):
1057
1057
  `cloudamqp_instance`can be imported using CloudAMQP internal identifier.
1058
1058
 
1059
1059
  ```sh
1060
- $ pulumi import cloudamqp:index/instance:Instance instance <id>`
1060
+ $ pulumi import cloudamqp:index/instance:Instance instance <id>`
1061
1061
  ```
1062
1062
 
1063
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.
@@ -288,7 +288,7 @@ class IntegrationAwsEventbridge(pulumi.CustomResource):
288
288
  `cloudamqp_integration_aws_eventbridge` can be imported using CloudAMQP internal identifier of the AWS EventBridge together (CSV separated) with the instance identifier. To retrieve the AWS EventBridge identifier, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-eventbridges)
289
289
 
290
290
  ```sh
291
- $ pulumi import cloudamqp:index/integrationAwsEventbridge:IntegrationAwsEventbridge aws_eventbridge <id>,<instance_id>`
291
+ $ pulumi import cloudamqp:index/integrationAwsEventbridge:IntegrationAwsEventbridge aws_eventbridge <id>,<instance_id>`
292
292
  ```
293
293
 
294
294
  :param str resource_name: The name of the resource.
@@ -353,7 +353,7 @@ class IntegrationAwsEventbridge(pulumi.CustomResource):
353
353
  `cloudamqp_integration_aws_eventbridge` can be imported using CloudAMQP internal identifier of the AWS EventBridge together (CSV separated) with the instance identifier. To retrieve the AWS EventBridge identifier, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-eventbridges)
354
354
 
355
355
  ```sh
356
- $ pulumi import cloudamqp:index/integrationAwsEventbridge:IntegrationAwsEventbridge aws_eventbridge <id>,<instance_id>`
356
+ $ pulumi import cloudamqp:index/integrationAwsEventbridge:IntegrationAwsEventbridge aws_eventbridge <id>,<instance_id>`
357
357
  ```
358
358
 
359
359
  :param str resource_name: The name of the resource.
@@ -938,7 +938,7 @@ class IntegrationLog(pulumi.CustomResource):
938
938
  `cloudamqp_integration_log`can be imported using the resource identifier together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
939
939
 
940
940
  ```sh
941
- $ pulumi import cloudamqp:index/integrationLog:IntegrationLog <resource_name> <id>,<instance_id>`
941
+ $ pulumi import cloudamqp:index/integrationLog:IntegrationLog <resource_name> <id>,<instance_id>`
942
942
  ```
943
943
 
944
944
  :param str resource_name: The name of the resource.
@@ -1015,7 +1015,7 @@ class IntegrationLog(pulumi.CustomResource):
1015
1015
  `cloudamqp_integration_log`can be imported using the resource identifier together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
1016
1016
 
1017
1017
  ```sh
1018
- $ pulumi import cloudamqp:index/integrationLog:IntegrationLog <resource_name> <id>,<instance_id>`
1018
+ $ pulumi import cloudamqp:index/integrationLog:IntegrationLog <resource_name> <id>,<instance_id>`
1019
1019
  ```
1020
1020
 
1021
1021
  :param str resource_name: The name of the resource.
@@ -356,7 +356,7 @@ class Notification(pulumi.CustomResource):
356
356
  `cloudamqp_notification` can be imported using CloudAMQP internal identifier of a recipient together (CSV separated) with the instance identifier. To retrieve the identifier of a recipient, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-notification-recipients)
357
357
 
358
358
  ```sh
359
- $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
359
+ $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
360
360
  ```
361
361
 
362
362
  :param str resource_name: The name of the resource.
@@ -534,7 +534,7 @@ class Notification(pulumi.CustomResource):
534
534
  `cloudamqp_notification` can be imported using CloudAMQP internal identifier of a recipient together (CSV separated) with the instance identifier. To retrieve the identifier of a recipient, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-notification-recipients)
535
535
 
536
536
  ```sh
537
- $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
537
+ $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
538
538
  ```
539
539
 
540
540
  :param str resource_name: The name of the resource.
@@ -234,7 +234,7 @@ class Plugin(pulumi.CustomResource):
234
234
  `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
235
235
 
236
236
  ```sh
237
- $ pulumi import cloudamqp:index/plugin:Plugin rabbitmq_management rabbitmq_management,<instance_id>`
237
+ $ pulumi import cloudamqp:index/plugin:Plugin rabbitmq_management rabbitmq_management,<instance_id>`
238
238
  ```
239
239
 
240
240
  :param str resource_name: The name of the resource.
@@ -257,7 +257,7 @@ class Plugin(pulumi.CustomResource):
257
257
  `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
258
258
 
259
259
  ```sh
260
- $ pulumi import cloudamqp:index/plugin:Plugin rabbitmq_management rabbitmq_management,<instance_id>`
260
+ $ pulumi import cloudamqp:index/plugin:Plugin rabbitmq_management rabbitmq_management,<instance_id>`
261
261
  ```
262
262
 
263
263
  :param str resource_name: The name of the resource.
@@ -231,10 +231,12 @@ class PluginCommunity(pulumi.CustomResource):
231
231
  """
232
232
  ## Import
233
233
 
234
- `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
234
+ `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP
235
+
236
+ instance identifier. The name and identifier are CSV separated, see example below.
235
237
 
236
238
  ```sh
237
- $ pulumi import cloudamqp:index/pluginCommunity:PluginCommunity <resource_name> <plugin_name>,<instance_id>`
239
+ $ pulumi import cloudamqp:index/pluginCommunity:PluginCommunity <resource_name> <plugin_name>,<instance_id>`
238
240
  ```
239
241
 
240
242
  :param str resource_name: The name of the resource.
@@ -254,10 +256,12 @@ class PluginCommunity(pulumi.CustomResource):
254
256
  """
255
257
  ## Import
256
258
 
257
- `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
259
+ `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP
260
+
261
+ instance identifier. The name and identifier are CSV separated, see example below.
258
262
 
259
263
  ```sh
260
- $ pulumi import cloudamqp:index/pluginCommunity:PluginCommunity <resource_name> <plugin_name>,<instance_id>`
264
+ $ pulumi import cloudamqp:index/pluginCommunity:PluginCommunity <resource_name> <plugin_name>,<instance_id>`
261
265
  ```
262
266
 
263
267
  :param str resource_name: The name of the resource.
@@ -385,7 +385,7 @@ class PrivatelinkAws(pulumi.CustomResource):
385
385
  `cloudamqp_privatelink_aws` can be imported using CloudAMQP internal identifier.
386
386
 
387
387
  ```sh
388
- $ pulumi import cloudamqp:index/privatelinkAws:PrivatelinkAws privatelink <id>`
388
+ $ pulumi import cloudamqp:index/privatelinkAws:PrivatelinkAws privatelink <id>`
389
389
  ```
390
390
 
391
391
  The resource uses the same identifier as the CloudAMQP instance. 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).
@@ -556,7 +556,7 @@ class PrivatelinkAws(pulumi.CustomResource):
556
556
  `cloudamqp_privatelink_aws` can be imported using CloudAMQP internal identifier.
557
557
 
558
558
  ```sh
559
- $ pulumi import cloudamqp:index/privatelinkAws:PrivatelinkAws privatelink <id>`
559
+ $ pulumi import cloudamqp:index/privatelinkAws:PrivatelinkAws privatelink <id>`
560
560
  ```
561
561
 
562
562
  The resource uses the same identifier as the CloudAMQP instance. 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).
@@ -381,7 +381,7 @@ class PrivatelinkAzure(pulumi.CustomResource):
381
381
  `cloudamqp_privatelink_aws` can be imported using CloudAMQP internal identifier.
382
382
 
383
383
  ```sh
384
- $ pulumi import cloudamqp:index/privatelinkAzure:PrivatelinkAzure privatelink <id>`
384
+ $ pulumi import cloudamqp:index/privatelinkAzure:PrivatelinkAzure privatelink <id>`
385
385
  ```
386
386
 
387
387
  The resource uses the same identifier as the CloudAMQP instance. 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).
@@ -551,7 +551,7 @@ class PrivatelinkAzure(pulumi.CustomResource):
551
551
  `cloudamqp_privatelink_aws` can be imported using CloudAMQP internal identifier.
552
552
 
553
553
  ```sh
554
- $ pulumi import cloudamqp:index/privatelinkAzure:PrivatelinkAzure privatelink <id>`
554
+ $ pulumi import cloudamqp:index/privatelinkAzure:PrivatelinkAzure privatelink <id>`
555
555
  ```
556
556
 
557
557
  The resource uses the same identifier as the CloudAMQP instance. 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).
@@ -442,7 +442,7 @@ class RabbitConfiguration(pulumi.CustomResource):
442
442
  `cloudamqp_rabbitmq_configuration` can be imported using the CloudAMQP instance identifier.
443
443
 
444
444
  ```sh
445
- $ pulumi import cloudamqp:index/rabbitConfiguration:RabbitConfiguration config <instance_id>`
445
+ $ pulumi import cloudamqp:index/rabbitConfiguration:RabbitConfiguration config <instance_id>`
446
446
  ```
447
447
 
448
448
  :param str resource_name: The name of the resource.
@@ -474,7 +474,7 @@ class RabbitConfiguration(pulumi.CustomResource):
474
474
  `cloudamqp_rabbitmq_configuration` can be imported using the CloudAMQP instance identifier.
475
475
 
476
476
  ```sh
477
- $ pulumi import cloudamqp:index/rabbitConfiguration:RabbitConfiguration config <instance_id>`
477
+ $ pulumi import cloudamqp:index/rabbitConfiguration:RabbitConfiguration config <instance_id>`
478
478
  ```
479
479
 
480
480
  :param str resource_name: The name of the resource.
@@ -163,7 +163,7 @@ class SecurityFirewall(pulumi.CustomResource):
163
163
  `cloudamqp_security_firewall` can be imported using CloudAMQP instance identifier.
164
164
 
165
165
  ```sh
166
- $ pulumi import cloudamqp:index/securityFirewall:SecurityFirewall firewall <instance_id>`
166
+ $ pulumi import cloudamqp:index/securityFirewall:SecurityFirewall firewall <instance_id>`
167
167
  ```
168
168
 
169
169
  :param str resource_name: The name of the resource.
@@ -184,7 +184,7 @@ class SecurityFirewall(pulumi.CustomResource):
184
184
  `cloudamqp_security_firewall` can be imported using CloudAMQP instance identifier.
185
185
 
186
186
  ```sh
187
- $ pulumi import cloudamqp:index/securityFirewall:SecurityFirewall firewall <instance_id>`
187
+ $ pulumi import cloudamqp:index/securityFirewall:SecurityFirewall firewall <instance_id>`
188
188
  ```
189
189
 
190
190
  :param str resource_name: The name of the resource.
pulumi_cloudamqp/vpc.py CHANGED
@@ -216,10 +216,12 @@ class Vpc(pulumi.CustomResource):
216
216
  `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier.
217
217
 
218
218
  ```sh
219
- $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
219
+ $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
220
220
  ```
221
221
 
222
- To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs). Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
222
+ To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs).
223
+
224
+ Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
223
225
 
224
226
  :param str resource_name: The name of the resource.
225
227
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -271,10 +273,12 @@ class Vpc(pulumi.CustomResource):
271
273
  `cloudamqp_vpc` can be imported using the CloudAMQP VPC identifier.
272
274
 
273
275
  ```sh
274
- $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
276
+ $ pulumi import cloudamqp:index/vpc:Vpc <resource_name> <vpc_id>`
275
277
  ```
276
278
 
277
- To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs). Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
279
+ To retrieve the identifier for a VPC, either use [CloudAMQP customer API](https://docs.cloudamqp.com/#list-vpcs).
280
+
281
+ Or use the data source `cloudamqp_account_vpcs` to list all available standalone VPCs for an account.
278
282
 
279
283
  :param str resource_name: The name of the resource.
280
284
  :param VpcArgs args: The arguments to use to populate this resource's properties.
@@ -566,7 +566,7 @@ class VpcConnect(pulumi.CustomResource):
566
566
  `cloudamqp_vpc_connect` can be imported using CloudAMQP internal identifier.
567
567
 
568
568
  ```sh
569
- $ pulumi import cloudamqp:index/vpcConnect:VpcConnect vpc_connect <id>`
569
+ $ pulumi import cloudamqp:index/vpcConnect:VpcConnect vpc_connect <id>`
570
570
  ```
571
571
 
572
572
  The resource uses the same identifier as the CloudAMQP instance. 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).
@@ -801,7 +801,7 @@ class VpcConnect(pulumi.CustomResource):
801
801
  `cloudamqp_vpc_connect` can be imported using CloudAMQP internal identifier.
802
802
 
803
803
  ```sh
804
- $ pulumi import cloudamqp:index/vpcConnect:VpcConnect vpc_connect <id>`
804
+ $ pulumi import cloudamqp:index/vpcConnect:VpcConnect vpc_connect <id>`
805
805
  ```
806
806
 
807
807
  The resource uses the same identifier as the CloudAMQP instance. 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).
@@ -253,7 +253,7 @@ class Webhook(pulumi.CustomResource):
253
253
  `cloudamqp_webhook` can be imported using the resource identifier together with CloudAMQP instance identifier. The identifiers are CSV separated, see example below.
254
254
 
255
255
  ```sh
256
- $ pulumi import cloudamqp:index/webhook:Webhook webhook_queue <id>,<instance_id>`
256
+ $ pulumi import cloudamqp:index/webhook:Webhook webhook_queue <id>,<instance_id>`
257
257
  ```
258
258
 
259
259
  :param str resource_name: The name of the resource.
@@ -299,7 +299,7 @@ class Webhook(pulumi.CustomResource):
299
299
  `cloudamqp_webhook` can be imported using the resource identifier together with CloudAMQP instance identifier. The identifiers are CSV separated, see example below.
300
300
 
301
301
  ```sh
302
- $ pulumi import cloudamqp:index/webhook:Webhook webhook_queue <id>,<instance_id>`
302
+ $ pulumi import cloudamqp:index/webhook:Webhook webhook_queue <id>,<instance_id>`
303
303
  ```
304
304
 
305
305
  :param str resource_name: The name of the resource.
@@ -1,17 +1,16 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_cloudamqp
3
- Version: 3.18.0a1707284716
3
+ Version: 3.18.0a1707889478
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
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-cloudamqp
8
8
  Keywords: pulumi,cloudamqp
9
- Requires-Python: >=3.7
9
+ Requires-Python: >=3.8
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver >=0.2.1
12
12
  Requires-Dist: pulumi <4.0.0,>=3.0.0
13
13
  Requires-Dist: semver >=2.8.1
14
- Requires-Dist: importlib-metadata <7.0.0,>=6.0.0 ; python_version < "3.8"
15
14
 
16
15
  [![Actions Status](https://github.com/pulumi/pulumi-cloudamqp/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-cloudamqp/actions)
17
16
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -1,9 +1,9 @@
1
1
  pulumi_cloudamqp/__init__.py,sha256=ewe1_AokqUeqzc8ZVq3PWAYhkNk4xBk4V3VNEWhk3uE,5552
2
2
  pulumi_cloudamqp/_inputs.py,sha256=oYiDDY_QRlu9kD32LviRmD6_C3dEwWf8rCW7eB8A9Y4,6371
3
- pulumi_cloudamqp/_utilities.py,sha256=jMbim532bPc1u3rZevJSaM4zw6tbQPf2c85Dkyq_7_g,9327
3
+ pulumi_cloudamqp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
4
  pulumi_cloudamqp/account_action.py,sha256=s-hJMsKAoKNPDUW3sNI-I8jtoLEy6g57e5gQ3nXzk6U,7688
5
- pulumi_cloudamqp/alarm.py,sha256=yB29EM-V6HKNTUtmcpbRLLmCKii0T8_qD503uhhSFnc,35197
6
- pulumi_cloudamqp/custom_domain.py,sha256=3yAs2IeSXSBliNTIBiKZCuuV8-V9IEbPdxZGNiR5Ly8,10037
5
+ pulumi_cloudamqp/alarm.py,sha256=OkFZUPZN1Wo2fBz3SumAftaqjHfLqZQNsTXYH2MDAD4,35195
6
+ pulumi_cloudamqp/custom_domain.py,sha256=FM-rc_1KI8J-6aQXAfjgIHVg_7UzK5JDgD_-kK6NNqQ,10037
7
7
  pulumi_cloudamqp/extra_disk_size.py,sha256=hnw362SF0W4NfK4aU2fKycllPkhp95yt6snwXq490Ek,26432
8
8
  pulumi_cloudamqp/get_account.py,sha256=BfYZORT5B_tt2xl7ibdvPlWZHvdIiTNaUKruBJ5NSpw,4971
9
9
  pulumi_cloudamqp/get_account_vpcs.py,sha256=m6tudM2ihMzaZmtEhLaCflWBwWqKcRTXTNr1jnhz0jE,5125
@@ -17,32 +17,32 @@ pulumi_cloudamqp/get_plugins_community.py,sha256=6IH-7LGwxha4M-cpTEJa0vhsjNRyRNI
17
17
  pulumi_cloudamqp/get_upgradable_versions.py,sha256=9Hy4W4hT8G8pOgBMUoVowZCDvvmK9F31s87AnXrD5XE,5104
18
18
  pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=nLozPcHsK7uR-x1AfSCIbc01JqJETEPxdIIluSkjRCc,9081
19
19
  pulumi_cloudamqp/get_vpc_info.py,sha256=Z9F1cNJE4A7t7y7zuKTg8zGjVAse5aunfvjzvfi30po,8240
20
- pulumi_cloudamqp/instance.py,sha256=RyOdw265YAjEc7EuSGUZzEVGVIFl_3LLgUHWGDWjEbo,60467
21
- pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=G0vW89_SICyQb_oRYeGSM0fq1Qy7YsA3s1-k5K5xckw,22213
22
- pulumi_cloudamqp/integration_log.py,sha256=PzGM3ozyM-4AngF3oDsoS0H3tD-3CGtZVyM3SgESlRI,58233
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
23
  pulumi_cloudamqp/integration_metric.py,sha256=Fx0mo6dmztZiGek3WIJ0cTVcVLyzcJSkFNHU2Pztabo,45257
24
24
  pulumi_cloudamqp/node_actions.py,sha256=gGaKlB6oM78zEmBEOs3ZrFtlj7j9HAU0XwtT2COi_cs,18537
25
- pulumi_cloudamqp/notification.py,sha256=HT3JdPc_uNHt8wITwCZ_hPrMGuWkJM_KLmVaytKpfNU,22654
25
+ pulumi_cloudamqp/notification.py,sha256=hMKWtzCv7zSXa2aYPhbW8aYL-n3OL7Z1VNU-x4-eOWY,22652
26
26
  pulumi_cloudamqp/outputs.py,sha256=XjDoOfbF0GqvBL7d-G8kgGFy9rXAvLaoXhVvhaPFaK0,14984
27
- pulumi_cloudamqp/plugin.py,sha256=Qj8lfDKdIZNncMSZ5K8_LOEwF2Qg3ThP1n2TEv_Z2S8,14903
28
- pulumi_cloudamqp/plugin_community.py,sha256=P102Iieo53oLk8vktQUo0YRcND4qfBaCgpk2LkSVM0I,15111
29
- pulumi_cloudamqp/privatelink_aws.py,sha256=VsjMlrLlSm_nZmg_7_UFGJSr8qNGltxIVCZ1ZckJhdk,28695
30
- pulumi_cloudamqp/privatelink_azure.py,sha256=6ASHDCxu6v85TFJ3NNw-K6g-rYBJ_7XVtlDhIPeMLE0,27955
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
31
  pulumi_cloudamqp/provider.py,sha256=-1Yblud0x-19h9xdoBUvgYRToei3kqo4YVchG-i-XOo,6886
32
32
  pulumi_cloudamqp/pulumi-plugin.json,sha256=So-I3JjRewZ_dOFdPPHpKB-8K3zcppOkGrDnWy-1N5s,46
33
33
  pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- pulumi_cloudamqp/rabbit_configuration.py,sha256=WUsIkaHflmXALm2ljKQUWj44o4FZjCiuPeoxm4BDGO8,32732
35
- pulumi_cloudamqp/security_firewall.py,sha256=Dm3pjIaQCuor6n28v35BPMVtzxuvtBHHWs4kMeORSNo,11656
34
+ pulumi_cloudamqp/rabbit_configuration.py,sha256=9qT6ABDHPcurBcmlckrHJ_tt-SV5vGARHpF9xXWa0Pc,32730
35
+ pulumi_cloudamqp/security_firewall.py,sha256=5WgMYsKJp4SZRBm0PsJA2BDI0Rw9UyTdVHkFYhGv2e0,11654
36
36
  pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=BYU-8NifTykI2W--UaQrUm6vzEeG26EM1VSsnYn3fD0,10867
37
- pulumi_cloudamqp/vpc.py,sha256=KEwIYDhvefVsxtYomCNAaqkZ2fIMJhjx-K6vtO3EN2g,14414
38
- pulumi_cloudamqp/vpc_connect.py,sha256=owRkgySDwpclvgDEZW5fTYc4DcPPtbwkr_YS703sD24,45028
37
+ pulumi_cloudamqp/vpc.py,sha256=yqxICPvBk-HFfJAuFX-0LoAFkjhUnNFAjCfH_uX-GsI,14432
38
+ pulumi_cloudamqp/vpc_connect.py,sha256=LQVrwm7lM6uwgTkwLHiu1gmvMDTm3YTySB-jdZdAeFY,45026
39
39
  pulumi_cloudamqp/vpc_gcp_peering.py,sha256=3tpq3WLWUdc6gSfeWfrK05Yr9H3lzBKUZFd9qW0cIOc,29987
40
40
  pulumi_cloudamqp/vpc_peering.py,sha256=1AsazWnJdpiKFKnLl7lHy6aJJrgFIG7FbHxJfN8hBzM,16351
41
- pulumi_cloudamqp/webhook.py,sha256=1lwTnaixOjy5K0ODjRM30Jn2GEzWAV9Z7E2CiZm_Lqc,17261
41
+ pulumi_cloudamqp/webhook.py,sha256=LP8tD7fNGFw6E71qDCbj0nelwGaVzdXEPar0E7jkONI,17259
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.18.0a1707284716.dist-info/METADATA,sha256=dKAPKryd_OANCL-BTl4K5gTzUx6B_kASxW8e95muXtc,2829
46
- pulumi_cloudamqp-3.18.0a1707284716.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
47
- pulumi_cloudamqp-3.18.0a1707284716.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
- pulumi_cloudamqp-3.18.0a1707284716.dist-info/RECORD,,
45
+ pulumi_cloudamqp-3.18.0a1707889478.dist-info/METADATA,sha256=UjgW7I3wYTD-pQHx8wtqMj0_goucgUBMKN4gdLJw9Ew,2755
46
+ pulumi_cloudamqp-3.18.0a1707889478.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
47
+ pulumi_cloudamqp-3.18.0a1707889478.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
+ pulumi_cloudamqp-3.18.0a1707889478.dist-info/RECORD,,