pulumi-cloudamqp 3.18.1a1722508708__py3-none-any.whl → 3.19.0a1718255852__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,7 +4,6 @@
4
4
 
5
5
 
6
6
  import asyncio
7
- import functools
8
7
  import importlib.metadata
9
8
  import importlib.util
10
9
  import inspect
@@ -12,19 +11,14 @@ import json
12
11
  import os
13
12
  import sys
14
13
  import typing
15
- import warnings
16
- import base64
17
14
 
18
15
  import pulumi
19
16
  import pulumi.runtime
20
17
  from pulumi.runtime.sync_await import _sync_await
21
- from pulumi.runtime.proto import resource_pb2
22
18
 
23
19
  from semver import VersionInfo as SemverVersion
24
20
  from parver import Version as PEP440Version
25
21
 
26
- C = typing.TypeVar("C", bound=typing.Callable)
27
-
28
22
 
29
23
  def get_env(*args):
30
24
  for v in args:
@@ -102,6 +96,10 @@ def _get_semver_version():
102
96
  _version = _get_semver_version()
103
97
  _version_str = str(_version)
104
98
 
99
+
100
+ def get_version():
101
+ return _version_str
102
+
105
103
  def get_resource_opts_defaults() -> pulumi.ResourceOptions:
106
104
  return pulumi.ResourceOptions(
107
105
  version=get_version(),
@@ -289,39 +287,5 @@ async def _await_output(o: pulumi.Output[typing.Any]) -> typing.Tuple[object, bo
289
287
  await o._resources,
290
288
  )
291
289
 
292
-
293
- # This is included to provide an upgrade path for users who are using a version
294
- # of the Pulumi SDK (<3.121.0) that does not include the `deprecated` decorator.
295
- def deprecated(message: str) -> typing.Callable[[C], C]:
296
- """
297
- Decorator to indicate a function is deprecated.
298
-
299
- As well as inserting appropriate statements to indicate that the function is
300
- deprecated, this decorator also tags the function with a special attribute
301
- so that Pulumi code can detect that it is deprecated and react appropriately
302
- in certain situations.
303
-
304
- message is the deprecation message that should be printed if the function is called.
305
- """
306
-
307
- def decorator(fn: C) -> C:
308
- if not callable(fn):
309
- raise TypeError("Expected fn to be callable")
310
-
311
- @functools.wraps(fn)
312
- def deprecated_fn(*args, **kwargs):
313
- warnings.warn(message)
314
- pulumi.warn(f"{fn.__name__} is deprecated: {message}")
315
-
316
- return fn(*args, **kwargs)
317
-
318
- deprecated_fn.__dict__["_pulumi_deprecated_callable"] = fn
319
- return typing.cast(C, deprecated_fn)
320
-
321
- return decorator
322
-
323
290
  def get_plugin_download_url():
324
291
  return None
325
-
326
- def get_version():
327
- return _version_str
@@ -89,7 +89,6 @@ def get_nodes(instance_id: Optional[int] = None,
89
89
  The `nodes` block consist of
90
90
 
91
91
  * `hostname` - External hostname assigned to the node.
92
- * `hostname_internal` - Internal hostname assigned to the node.
93
92
  * `name` - Name of the node.
94
93
  * `running` - Is the node running?
95
94
  * `rabbitmq_version` - Currently configured Rabbit MQ version on the node.
@@ -98,7 +97,6 @@ def get_nodes(instance_id: Optional[int] = None,
98
97
  * `configured` - Is the node configured?
99
98
  * `disk_size` - Subscription plan disk size
100
99
  * `additional_disk_size` - Additional added disk size
101
- * `availability_zone` - Availability zone the node is hosted in.
102
100
 
103
101
  ***Note:*** *Total disk size = disk_size + additional_disk_size*
104
102
 
@@ -147,7 +145,6 @@ def get_nodes_output(instance_id: Optional[pulumi.Input[int]] = None,
147
145
  The `nodes` block consist of
148
146
 
149
147
  * `hostname` - External hostname assigned to the node.
150
- * `hostname_internal` - Internal hostname assigned to the node.
151
148
  * `name` - Name of the node.
152
149
  * `running` - Is the node running?
153
150
  * `rabbitmq_version` - Currently configured Rabbit MQ version on the node.
@@ -156,7 +153,6 @@ def get_nodes_output(instance_id: Optional[pulumi.Input[int]] = None,
156
153
  * `configured` - Is the node configured?
157
154
  * `disk_size` - Subscription plan disk size
158
155
  * `additional_disk_size` - Additional added disk size
159
- * `availability_zone` - Availability zone the node is hosted in.
160
156
 
161
157
  ***Note:*** *Total disk size = disk_size + additional_disk_size*
162
158
 
@@ -273,11 +273,13 @@ class IntegrationMetricArgs:
273
273
 
274
274
  @property
275
275
  @pulumi.getter(name="queueWhitelist")
276
- @_utilities.deprecated("""use queue_allowlist instead""")
277
276
  def queue_whitelist(self) -> Optional[pulumi.Input[str]]:
278
277
  """
279
278
  **Deprecated**
280
279
  """
280
+ warnings.warn("""use queue_allowlist instead""", DeprecationWarning)
281
+ pulumi.log.warn("""queue_whitelist is deprecated: use queue_allowlist instead""")
282
+
281
283
  return pulumi.get(self, "queue_whitelist")
282
284
 
283
285
  @queue_whitelist.setter
@@ -334,11 +336,13 @@ class IntegrationMetricArgs:
334
336
 
335
337
  @property
336
338
  @pulumi.getter(name="vhostWhitelist")
337
- @_utilities.deprecated("""use vhost_allowlist instead""")
338
339
  def vhost_whitelist(self) -> Optional[pulumi.Input[str]]:
339
340
  """
340
341
  **Deprecated**
341
342
  """
343
+ warnings.warn("""use vhost_allowlist instead""", DeprecationWarning)
344
+ pulumi.log.warn("""vhost_whitelist is deprecated: use vhost_allowlist instead""")
345
+
342
346
  return pulumi.get(self, "vhost_whitelist")
343
347
 
344
348
  @vhost_whitelist.setter
@@ -609,11 +613,13 @@ class _IntegrationMetricState:
609
613
 
610
614
  @property
611
615
  @pulumi.getter(name="queueWhitelist")
612
- @_utilities.deprecated("""use queue_allowlist instead""")
613
616
  def queue_whitelist(self) -> Optional[pulumi.Input[str]]:
614
617
  """
615
618
  **Deprecated**
616
619
  """
620
+ warnings.warn("""use queue_allowlist instead""", DeprecationWarning)
621
+ pulumi.log.warn("""queue_whitelist is deprecated: use queue_allowlist instead""")
622
+
617
623
  return pulumi.get(self, "queue_whitelist")
618
624
 
619
625
  @queue_whitelist.setter
@@ -670,11 +676,13 @@ class _IntegrationMetricState:
670
676
 
671
677
  @property
672
678
  @pulumi.getter(name="vhostWhitelist")
673
- @_utilities.deprecated("""use vhost_allowlist instead""")
674
679
  def vhost_whitelist(self) -> Optional[pulumi.Input[str]]:
675
680
  """
676
681
  **Deprecated**
677
682
  """
683
+ warnings.warn("""use vhost_allowlist instead""", DeprecationWarning)
684
+ pulumi.log.warn("""vhost_whitelist is deprecated: use vhost_allowlist instead""")
685
+
678
686
  return pulumi.get(self, "vhost_whitelist")
679
687
 
680
688
  @vhost_whitelist.setter
@@ -1317,11 +1325,13 @@ class IntegrationMetric(pulumi.CustomResource):
1317
1325
 
1318
1326
  @property
1319
1327
  @pulumi.getter(name="queueWhitelist")
1320
- @_utilities.deprecated("""use queue_allowlist instead""")
1321
1328
  def queue_whitelist(self) -> pulumi.Output[Optional[str]]:
1322
1329
  """
1323
1330
  **Deprecated**
1324
1331
  """
1332
+ warnings.warn("""use queue_allowlist instead""", DeprecationWarning)
1333
+ pulumi.log.warn("""queue_whitelist is deprecated: use queue_allowlist instead""")
1334
+
1325
1335
  return pulumi.get(self, "queue_whitelist")
1326
1336
 
1327
1337
  @property
@@ -1358,10 +1368,12 @@ class IntegrationMetric(pulumi.CustomResource):
1358
1368
 
1359
1369
  @property
1360
1370
  @pulumi.getter(name="vhostWhitelist")
1361
- @_utilities.deprecated("""use vhost_allowlist instead""")
1362
1371
  def vhost_whitelist(self) -> pulumi.Output[Optional[str]]:
1363
1372
  """
1364
1373
  **Deprecated**
1365
1374
  """
1375
+ warnings.warn("""use vhost_allowlist instead""", DeprecationWarning)
1376
+ pulumi.log.warn("""vhost_whitelist is deprecated: use vhost_allowlist instead""")
1377
+
1366
1378
  return pulumi.get(self, "vhost_whitelist")
1367
1379
 
@@ -195,12 +195,12 @@ class NodeActions(pulumi.CustomResource):
195
195
  instance_id=instance["id"],
196
196
  action="restart",
197
197
  node_name=list_nodes.nodes[1].name,
198
- opts = pulumi.ResourceOptions(depends_on=[restart01]))
198
+ opts=pulumi.ResourceOptions(depends_on=[restart01]))
199
199
  restart03 = cloudamqp.NodeActions("restart_03",
200
200
  instance_id=instance["id"],
201
201
  action="restart",
202
202
  node_name=list_nodes.nodes[2].name,
203
- opts = pulumi.ResourceOptions(depends_on=[
203
+ opts=pulumi.ResourceOptions(depends_on=[
204
204
  restart01,
205
205
  restart02,
206
206
  ]))
@@ -227,12 +227,12 @@ class NodeActions(pulumi.CustomResource):
227
227
  instance_id=instance["id"],
228
228
  action="restart",
229
229
  node_name=list_nodes.nodes[0].name,
230
- opts = pulumi.ResourceOptions(depends_on=[rabbitmq_config]))
230
+ opts=pulumi.ResourceOptions(depends_on=[rabbitmq_config]))
231
231
  restart02 = cloudamqp.NodeActions("restart_02",
232
232
  instance_id=instance["id"],
233
233
  action="restart",
234
234
  node_name=list_nodes.nodes[1].name,
235
- opts = pulumi.ResourceOptions(depends_on=[
235
+ opts=pulumi.ResourceOptions(depends_on=[
236
236
  rabbitmq_config,
237
237
  restart01,
238
238
  ]))
@@ -240,7 +240,7 @@ class NodeActions(pulumi.CustomResource):
240
240
  instance_id=instance["id"],
241
241
  action="restart",
242
242
  node_name=list_nodes.nodes[2].name,
243
- opts = pulumi.ResourceOptions(depends_on=[
243
+ opts=pulumi.ResourceOptions(depends_on=[
244
244
  rabbitmq_config,
245
245
  restart01,
246
246
  restart02,
@@ -331,12 +331,12 @@ class NodeActions(pulumi.CustomResource):
331
331
  instance_id=instance["id"],
332
332
  action="restart",
333
333
  node_name=list_nodes.nodes[1].name,
334
- opts = pulumi.ResourceOptions(depends_on=[restart01]))
334
+ opts=pulumi.ResourceOptions(depends_on=[restart01]))
335
335
  restart03 = cloudamqp.NodeActions("restart_03",
336
336
  instance_id=instance["id"],
337
337
  action="restart",
338
338
  node_name=list_nodes.nodes[2].name,
339
- opts = pulumi.ResourceOptions(depends_on=[
339
+ opts=pulumi.ResourceOptions(depends_on=[
340
340
  restart01,
341
341
  restart02,
342
342
  ]))
@@ -363,12 +363,12 @@ class NodeActions(pulumi.CustomResource):
363
363
  instance_id=instance["id"],
364
364
  action="restart",
365
365
  node_name=list_nodes.nodes[0].name,
366
- opts = pulumi.ResourceOptions(depends_on=[rabbitmq_config]))
366
+ opts=pulumi.ResourceOptions(depends_on=[rabbitmq_config]))
367
367
  restart02 = cloudamqp.NodeActions("restart_02",
368
368
  instance_id=instance["id"],
369
369
  action="restart",
370
370
  node_name=list_nodes.nodes[1].name,
371
- opts = pulumi.ResourceOptions(depends_on=[
371
+ opts=pulumi.ResourceOptions(depends_on=[
372
372
  rabbitmq_config,
373
373
  restart01,
374
374
  ]))
@@ -376,7 +376,7 @@ class NodeActions(pulumi.CustomResource):
376
376
  instance_id=instance["id"],
377
377
  action="restart",
378
378
  node_name=list_nodes.nodes[2].name,
379
- opts = pulumi.ResourceOptions(depends_on=[
379
+ opts=pulumi.ResourceOptions(depends_on=[
380
380
  rabbitmq_config,
381
381
  restart01,
382
382
  restart02,
@@ -383,24 +383,6 @@ class Notification(pulumi.CustomResource):
383
383
 
384
384
  </details>
385
385
 
386
- <details>
387
- <summary>
388
- <b>Slack recipient</b>
389
- </summary>
390
-
391
- ```python
392
- import pulumi
393
- import pulumi_cloudamqp as cloudamqp
394
-
395
- slack_recipient = cloudamqp.Notification("slack_recipient",
396
- instance_id=instance["id"],
397
- type="slack",
398
- value="<slack-webhook-url>",
399
- name="Slack webhook recipient")
400
- ```
401
-
402
- </details>
403
-
404
386
  <details>
405
387
  <summary>
406
388
  <b>Webhook recipient</b>
@@ -450,7 +432,7 @@ class Notification(pulumi.CustomResource):
450
432
 
451
433
  (CSV separated) with the instance identifier. To retrieve the identifier of a recipient, use
452
434
 
453
- [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-recipients).
435
+ [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-notification-recipients)
454
436
 
455
437
  ```sh
456
438
  $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
@@ -609,24 +591,6 @@ class Notification(pulumi.CustomResource):
609
591
 
610
592
  </details>
611
593
 
612
- <details>
613
- <summary>
614
- <b>Slack recipient</b>
615
- </summary>
616
-
617
- ```python
618
- import pulumi
619
- import pulumi_cloudamqp as cloudamqp
620
-
621
- slack_recipient = cloudamqp.Notification("slack_recipient",
622
- instance_id=instance["id"],
623
- type="slack",
624
- value="<slack-webhook-url>",
625
- name="Slack webhook recipient")
626
- ```
627
-
628
- </details>
629
-
630
594
  <details>
631
595
  <summary>
632
596
  <b>Webhook recipient</b>
@@ -676,7 +640,7 @@ class Notification(pulumi.CustomResource):
676
640
 
677
641
  (CSV separated) with the instance identifier. To retrieve the identifier of a recipient, use
678
642
 
679
- [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-recipients).
643
+ [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-notification-recipients)
680
644
 
681
645
  ```sh
682
646
  $ pulumi import cloudamqp:index/notification:Notification recipient <id>,<instance_id>`
@@ -384,24 +384,20 @@ class GetAccountVpcsVpcResult(dict):
384
384
  class GetNodesNodeResult(dict):
385
385
  def __init__(__self__, *,
386
386
  additional_disk_size: int,
387
- availability_zone: str,
388
387
  configured: bool,
389
388
  disk_size: int,
390
389
  erlang_version: str,
391
390
  hipe: bool,
392
391
  hostname: str,
393
- hostname_internal: str,
394
392
  name: str,
395
393
  rabbitmq_version: str,
396
394
  running: bool):
397
395
  pulumi.set(__self__, "additional_disk_size", additional_disk_size)
398
- pulumi.set(__self__, "availability_zone", availability_zone)
399
396
  pulumi.set(__self__, "configured", configured)
400
397
  pulumi.set(__self__, "disk_size", disk_size)
401
398
  pulumi.set(__self__, "erlang_version", erlang_version)
402
399
  pulumi.set(__self__, "hipe", hipe)
403
400
  pulumi.set(__self__, "hostname", hostname)
404
- pulumi.set(__self__, "hostname_internal", hostname_internal)
405
401
  pulumi.set(__self__, "name", name)
406
402
  pulumi.set(__self__, "rabbitmq_version", rabbitmq_version)
407
403
  pulumi.set(__self__, "running", running)
@@ -411,11 +407,6 @@ class GetNodesNodeResult(dict):
411
407
  def additional_disk_size(self) -> int:
412
408
  return pulumi.get(self, "additional_disk_size")
413
409
 
414
- @property
415
- @pulumi.getter(name="availabilityZone")
416
- def availability_zone(self) -> str:
417
- return pulumi.get(self, "availability_zone")
418
-
419
410
  @property
420
411
  @pulumi.getter
421
412
  def configured(self) -> bool:
@@ -441,11 +432,6 @@ class GetNodesNodeResult(dict):
441
432
  def hostname(self) -> str:
442
433
  return pulumi.get(self, "hostname")
443
434
 
444
- @property
445
- @pulumi.getter(name="hostnameInternal")
446
- def hostname_internal(self) -> str:
447
- return pulumi.get(self, "hostname_internal")
448
-
449
435
  @property
450
436
  @pulumi.getter
451
437
  def name(self) -> str:
@@ -354,7 +354,7 @@ class PrivatelinkAws(pulumi.CustomResource):
354
354
  services=["HTTPS"],
355
355
  ),
356
356
  ],
357
- opts = pulumi.ResourceOptions(depends_on=[privatelink]))
357
+ opts=pulumi.ResourceOptions(depends_on=[privatelink]))
358
358
  ```
359
359
 
360
360
  </details>
@@ -517,7 +517,7 @@ class PrivatelinkAws(pulumi.CustomResource):
517
517
  services=["HTTPS"],
518
518
  ),
519
519
  ],
520
- opts = pulumi.ResourceOptions(depends_on=[privatelink]))
520
+ opts=pulumi.ResourceOptions(depends_on=[privatelink]))
521
521
  ```
522
522
 
523
523
  </details>
@@ -350,7 +350,7 @@ class PrivatelinkAzure(pulumi.CustomResource):
350
350
  services=["HTTPS"],
351
351
  ),
352
352
  ],
353
- opts = pulumi.ResourceOptions(depends_on=[privatelink]))
353
+ opts=pulumi.ResourceOptions(depends_on=[privatelink]))
354
354
  ```
355
355
 
356
356
  </details>
@@ -512,7 +512,7 @@ class PrivatelinkAzure(pulumi.CustomResource):
512
512
  services=["HTTPS"],
513
513
  ),
514
514
  ],
515
- opts = pulumi.ResourceOptions(depends_on=[privatelink]))
515
+ opts=pulumi.ResourceOptions(depends_on=[privatelink]))
516
516
  ```
517
517
 
518
518
  </details>
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "cloudamqp",
4
- "version": "3.18.1-alpha.1722508708"
4
+ "version": "3.19.0-alpha.1718255852"
5
5
  }
@@ -529,7 +529,7 @@ class VpcConnect(pulumi.CustomResource):
529
529
  services=["HTTPS"],
530
530
  ),
531
531
  ],
532
- opts = pulumi.ResourceOptions(depends_on=[vpc_connect]))
532
+ opts=pulumi.ResourceOptions(depends_on=[vpc_connect]))
533
533
  ```
534
534
 
535
535
  </details>
@@ -753,7 +753,7 @@ class VpcConnect(pulumi.CustomResource):
753
753
  services=["HTTPS"],
754
754
  ),
755
755
  ],
756
- opts = pulumi.ResourceOptions(depends_on=[vpc_connect]))
756
+ opts=pulumi.ResourceOptions(depends_on=[vpc_connect]))
757
757
  ```
758
758
 
759
759
  </details>
@@ -441,7 +441,7 @@ class VpcGcpPeering(pulumi.CustomResource):
441
441
  ],
442
442
  ),
443
443
  ],
444
- opts = pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
444
+ opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
445
445
  ```
446
446
 
447
447
  </details>
@@ -483,7 +483,7 @@ class VpcGcpPeering(pulumi.CustomResource):
483
483
  description="MGMT interface",
484
484
  ),
485
485
  ],
486
- opts = pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
486
+ opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
487
487
  ```
488
488
 
489
489
  </details>
@@ -678,7 +678,7 @@ class VpcGcpPeering(pulumi.CustomResource):
678
678
  ],
679
679
  ),
680
680
  ],
681
- opts = pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
681
+ opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
682
682
  ```
683
683
 
684
684
  </details>
@@ -720,7 +720,7 @@ class VpcGcpPeering(pulumi.CustomResource):
720
720
  description="MGMT interface",
721
721
  ),
722
722
  ],
723
- opts = pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
723
+ opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
724
724
  ```
725
725
 
726
726
  </details>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_cloudamqp
3
- Version: 3.18.1a1722508708
3
+ Version: 3.19.0a1718255852
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
@@ -1,6 +1,6 @@
1
1
  pulumi_cloudamqp/__init__.py,sha256=ewe1_AokqUeqzc8ZVq3PWAYhkNk4xBk4V3VNEWhk3uE,5552
2
2
  pulumi_cloudamqp/_inputs.py,sha256=oKjcIeymBER8EgwRCQVWe2s7w2oVPdgRZJiltk3XvqQ,8830
3
- pulumi_cloudamqp/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
3
+ pulumi_cloudamqp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
4
  pulumi_cloudamqp/account_action.py,sha256=s-hJMsKAoKNPDUW3sNI-I8jtoLEy6g57e5gQ3nXzk6U,7688
5
5
  pulumi_cloudamqp/alarm.py,sha256=TyaVOiWMPIunhmYMd9Lrr5W9Lzh22-hVe4KkbDsAr7o,28737
6
6
  pulumi_cloudamqp/custom_domain.py,sha256=m98sZJNbs4bINPxhIfsG37Xyr3u-0Sc6tKURZS-8R0Y,9995
@@ -10,7 +10,7 @@ pulumi_cloudamqp/get_account_vpcs.py,sha256=Pej4T-YmSd4x0ZeHJa_R7C4WFPNcqywPoder
10
10
  pulumi_cloudamqp/get_alarm.py,sha256=d2s6GrR0hjtq2MXxPl6u-VfMf9XzrbFmsgwh1Lwy4SQ,11592
11
11
  pulumi_cloudamqp/get_credentials.py,sha256=gqQDhS8SZO06Y2SXLL1KPI9JXn_wKRvAc5V5TQ9NMpA,4857
12
12
  pulumi_cloudamqp/get_instance.py,sha256=aerhBMj1d-x6EMdiR1PnBzE1KW6gr0miXWml_lYW14A,9386
13
- pulumi_cloudamqp/get_nodes.py,sha256=h4TtZPKS1D5CpC3K8h26IcQwSqD3rBo5yo2tDaRW41U,5764
13
+ pulumi_cloudamqp/get_nodes.py,sha256=qY6Tn1Mq0DRfebxJObuQaLVLYnkDHP9C2nBjMbPEI_Q,5474
14
14
  pulumi_cloudamqp/get_notification.py,sha256=SRnjv_M_vICk_o56tfe83vrPZGveyD84T_WHA0e1nEc,7007
15
15
  pulumi_cloudamqp/get_plugins.py,sha256=sFF0k2iJqevBmeJCgLH55zeq8U4reXiJSgrClLiMx5E,5488
16
16
  pulumi_cloudamqp/get_plugins_community.py,sha256=kp99ZUo1Jk_nvapK-Mkn2B1cmpTp6Tolz8e7Qrd0r84,5622
@@ -20,29 +20,29 @@ pulumi_cloudamqp/get_vpc_info.py,sha256=pBMRngdtxEjRLuXdC5UcWhNOeY-Nlk-D64fwUeL4
20
20
  pulumi_cloudamqp/instance.py,sha256=fZHei-d7Ad1CyQPISnGLA1G40K0sad7qzFpRCCXwJW0,58955
21
21
  pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=zgL7vIMKmid8cKIEZFMoiqU8KD_MGbfizf8VRHvpb_U,22283
22
22
  pulumi_cloudamqp/integration_log.py,sha256=eD0lv55r-C2oDRUWPDTQuo41T_RvFe0gKQfZrO9FEuo,67781
23
- pulumi_cloudamqp/integration_metric.py,sha256=yJ46F-c8yExjja6wf0fPRGbtqtd8odKYFXdPkRKhTNg,53975
24
- pulumi_cloudamqp/node_actions.py,sha256=SzBUX5OBBxEnl3a7_dRYPfuuNyHPtLtCpvirkl5UeMc,18141
25
- pulumi_cloudamqp/notification.py,sha256=SYB2xByOqncxz4tgkzP5QZ3NIcP4mTgia5EZF-bfke4,28282
26
- pulumi_cloudamqp/outputs.py,sha256=5OKhoZm9NSrbye_gVr7ILXU-9ca72BHcgEOJjHKiVFQ,17346
23
+ pulumi_cloudamqp/integration_metric.py,sha256=i16J30YrInbGyCBtnbc3KHKWbbhQFy8vgwEKtOQOhj0,54611
24
+ pulumi_cloudamqp/node_actions.py,sha256=QslIHCpclcuUPV7yvB7Cf9NX0P1T-43Q9kHQIuYOrXQ,18121
25
+ pulumi_cloudamqp/notification.py,sha256=2jfJZh0SReZcfqK3awzs7fA_ORw3eb5fBLa-F4GoO4g,27440
26
+ pulumi_cloudamqp/outputs.py,sha256=JhmAvoEeY_c_wF4mvz8nuyBwTeqIZUHSpKf3B3LfMjs,16822
27
27
  pulumi_cloudamqp/plugin.py,sha256=-FDLDuRtPB8cdE62Uk_3BYcR25ARyUXMCeZQ9bHGNS0,14901
28
28
  pulumi_cloudamqp/plugin_community.py,sha256=Qwu7EfyGQ9BMMdXvKLrXioiVauDMxPNdmMlGqxW4jw8,15127
29
- pulumi_cloudamqp/privatelink_aws.py,sha256=1MPpdXwgKy0ZNgfiXJuL2vf050KvWQ8nalVer-7w_AQ,27921
30
- pulumi_cloudamqp/privatelink_azure.py,sha256=8on6_5fVFPxJMJDrKEok1zNQxZcM0cO4y7tJOXu8taY,27177
29
+ pulumi_cloudamqp/privatelink_aws.py,sha256=UhMXhEP3PW1Lv32ogiIcwy-Z7G5ohobWMJuFKnc03kg,27917
30
+ pulumi_cloudamqp/privatelink_azure.py,sha256=5SYEW3e_5NVhe7dIpGi35_8FOHYIL71wjQPFIOwEgMs,27173
31
31
  pulumi_cloudamqp/provider.py,sha256=IwRPYsuoOzrUzVP2gmjIZ59mGte5_b0cd8_HYF0HhRc,6548
32
- pulumi_cloudamqp/pulumi-plugin.json,sha256=CiNCqZqQogf00IiSdpcYW1MEbney9lZXjxS1rb4LOBY,86
32
+ pulumi_cloudamqp/pulumi-plugin.json,sha256=wj-3TMpX6_RFc_rGXi9iBEBZQbdYVFrbizTpStLeHz8,86
33
33
  pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  pulumi_cloudamqp/rabbit_configuration.py,sha256=9qT6ABDHPcurBcmlckrHJ_tt-SV5vGARHpF9xXWa0Pc,32730
35
35
  pulumi_cloudamqp/security_firewall.py,sha256=5WgMYsKJp4SZRBm0PsJA2BDI0Rw9UyTdVHkFYhGv2e0,11654
36
36
  pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=NMBsLYzYfuizMpJH3TOR1Cb1SmZFoqgOMNFSZtJewqk,11121
37
37
  pulumi_cloudamqp/vpc.py,sha256=IpI_5Gqxjio5LO9AbVEDQQS43xxPDRY0RUZaJK80Odw,14630
38
- pulumi_cloudamqp/vpc_connect.py,sha256=XrZbW-o4664FsgrRs-aVP74iT_n2H0DxnamcOetogPk,44840
39
- pulumi_cloudamqp/vpc_gcp_peering.py,sha256=T1nSa6Ek8H6r4HGcAPoQb_kkF-WcqEAq08Bh-ehF7fw,35619
38
+ pulumi_cloudamqp/vpc_connect.py,sha256=CaZrJ3PpFnWiNA2Yn12srx6kYlHgd2TI1zszKQO6pg4,44836
39
+ pulumi_cloudamqp/vpc_gcp_peering.py,sha256=EIZbB5FxFXRNocp2WY08VMnp7X2cK_28Bg21pobnxHc,35611
40
40
  pulumi_cloudamqp/vpc_peering.py,sha256=1AsazWnJdpiKFKnLl7lHy6aJJrgFIG7FbHxJfN8hBzM,16351
41
41
  pulumi_cloudamqp/webhook.py,sha256=szPc8AXkT-5xk3JfGOBdBcPMnnkZr02fpD_beQ_uyzI,17327
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.1a1722508708.dist-info/METADATA,sha256=wkVN6LuMK-k26omjjxsChgXR1nRvHuu6CQ_pdywo7OY,2755
46
- pulumi_cloudamqp-3.18.1a1722508708.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
47
- pulumi_cloudamqp-3.18.1a1722508708.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
- pulumi_cloudamqp-3.18.1a1722508708.dist-info/RECORD,,
45
+ pulumi_cloudamqp-3.19.0a1718255852.dist-info/METADATA,sha256=GZNaCcwUDIWA3QIIzgtU7arMl5SwLcFoCzmN9oHWPQc,2755
46
+ pulumi_cloudamqp-3.19.0a1718255852.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
47
+ pulumi_cloudamqp-3.19.0a1718255852.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
+ pulumi_cloudamqp-3.19.0a1718255852.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5