pulumi-cloudamqp 3.21.0a1740806688__py3-none-any.whl → 3.21.0a1741098583__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.

@@ -118,7 +118,9 @@ def get_vpc_gcp_info(instance_id: Optional[int] = None,
118
118
  vpc_id: Optional[str] = None,
119
119
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcGcpInfoResult:
120
120
  """
121
- Use this data source to retrieve information about VPC for a CloudAMQP instance hosted in GCP.
121
+ Use this data source to retrieve information about VPC for a CloudAMQP instance.
122
+
123
+ > **Note:** Only available for CloudAMQP instances/VPCs hosted in Google Cloud Platform (GCP).
122
124
 
123
125
  ## Example Usage
124
126
 
@@ -204,7 +206,9 @@ def get_vpc_gcp_info_output(instance_id: Optional[pulumi.Input[Optional[int]]] =
204
206
  vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
205
207
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcGcpInfoResult]:
206
208
  """
207
- Use this data source to retrieve information about VPC for a CloudAMQP instance hosted in GCP.
209
+ Use this data source to retrieve information about VPC for a CloudAMQP instance.
210
+
211
+ > **Note:** Only available for CloudAMQP instances/VPCs hosted in Google Cloud Platform (GCP).
208
212
 
209
213
  ## Example Usage
210
214
 
@@ -109,7 +109,7 @@ def get_vpc_info(instance_id: Optional[int] = None,
109
109
  """
110
110
  Use this data source to retrieve information about VPC for a CloudAMQP instance.
111
111
 
112
- Only available for CloudAMQP instances hosted in AWS.
112
+ > **Note:** Only available for CloudAMQP instances/VPCs hosted in AWS.
113
113
 
114
114
  ## Example Usage
115
115
 
@@ -189,7 +189,7 @@ def get_vpc_info_output(instance_id: Optional[pulumi.Input[Optional[int]]] = Non
189
189
  """
190
190
  Use this data source to retrieve information about VPC for a CloudAMQP instance.
191
191
 
192
- Only available for CloudAMQP instances hosted in AWS.
192
+ > **Note:** Only available for CloudAMQP instances/VPCs hosted in AWS.
193
193
 
194
194
  ## Example Usage
195
195
 
@@ -27,6 +27,7 @@ class IntegrationMetricArgs:
27
27
  email: Optional[pulumi.Input[str]] = None,
28
28
  iam_external_id: Optional[pulumi.Input[str]] = None,
29
29
  iam_role: Optional[pulumi.Input[str]] = None,
30
+ include_ad_queues: Optional[pulumi.Input[bool]] = None,
30
31
  license_key: Optional[pulumi.Input[str]] = None,
31
32
  name: Optional[pulumi.Input[str]] = None,
32
33
  private_key: Optional[pulumi.Input[str]] = None,
@@ -49,6 +50,7 @@ class IntegrationMetricArgs:
49
50
  :param pulumi.Input[str] email: The email address registred for the integration service. (Librato)
50
51
  :param pulumi.Input[str] iam_external_id: External identifier that match the role you created. (Cloudwatch)
51
52
  :param pulumi.Input[str] iam_role: The ARN of the role to be assumed when publishing metrics. (Cloudwatch)
53
+ :param pulumi.Input[bool] include_ad_queues: (optional) Include Auto-Delete queues
52
54
  :param pulumi.Input[str] license_key: The license key registred for the integration service. (New Relic)
53
55
  :param pulumi.Input[str] name: The name of metrics integration
54
56
  :param pulumi.Input[str] private_key: The private key. (Stackdriver)
@@ -77,6 +79,8 @@ class IntegrationMetricArgs:
77
79
  pulumi.set(__self__, "iam_external_id", iam_external_id)
78
80
  if iam_role is not None:
79
81
  pulumi.set(__self__, "iam_role", iam_role)
82
+ if include_ad_queues is not None:
83
+ pulumi.set(__self__, "include_ad_queues", include_ad_queues)
80
84
  if license_key is not None:
81
85
  pulumi.set(__self__, "license_key", license_key)
82
86
  if name is not None:
@@ -204,6 +208,18 @@ class IntegrationMetricArgs:
204
208
  def iam_role(self, value: Optional[pulumi.Input[str]]):
205
209
  pulumi.set(self, "iam_role", value)
206
210
 
211
+ @property
212
+ @pulumi.getter(name="includeAdQueues")
213
+ def include_ad_queues(self) -> Optional[pulumi.Input[bool]]:
214
+ """
215
+ (optional) Include Auto-Delete queues
216
+ """
217
+ return pulumi.get(self, "include_ad_queues")
218
+
219
+ @include_ad_queues.setter
220
+ def include_ad_queues(self, value: Optional[pulumi.Input[bool]]):
221
+ pulumi.set(self, "include_ad_queues", value)
222
+
207
223
  @property
208
224
  @pulumi.getter(name="licenseKey")
209
225
  def license_key(self) -> Optional[pulumi.Input[str]]:
@@ -361,6 +377,7 @@ class _IntegrationMetricState:
361
377
  email: Optional[pulumi.Input[str]] = None,
362
378
  iam_external_id: Optional[pulumi.Input[str]] = None,
363
379
  iam_role: Optional[pulumi.Input[str]] = None,
380
+ include_ad_queues: Optional[pulumi.Input[bool]] = None,
364
381
  instance_id: Optional[pulumi.Input[int]] = None,
365
382
  license_key: Optional[pulumi.Input[str]] = None,
366
383
  name: Optional[pulumi.Input[str]] = None,
@@ -383,6 +400,7 @@ class _IntegrationMetricState:
383
400
  :param pulumi.Input[str] email: The email address registred for the integration service. (Librato)
384
401
  :param pulumi.Input[str] iam_external_id: External identifier that match the role you created. (Cloudwatch)
385
402
  :param pulumi.Input[str] iam_role: The ARN of the role to be assumed when publishing metrics. (Cloudwatch)
403
+ :param pulumi.Input[bool] include_ad_queues: (optional) Include Auto-Delete queues
386
404
  :param pulumi.Input[int] instance_id: Instance identifier
387
405
  :param pulumi.Input[str] license_key: The license key registred for the integration service. (New Relic)
388
406
  :param pulumi.Input[str] name: The name of metrics integration
@@ -411,6 +429,8 @@ class _IntegrationMetricState:
411
429
  pulumi.set(__self__, "iam_external_id", iam_external_id)
412
430
  if iam_role is not None:
413
431
  pulumi.set(__self__, "iam_role", iam_role)
432
+ if include_ad_queues is not None:
433
+ pulumi.set(__self__, "include_ad_queues", include_ad_queues)
414
434
  if instance_id is not None:
415
435
  pulumi.set(__self__, "instance_id", instance_id)
416
436
  if license_key is not None:
@@ -528,6 +548,18 @@ class _IntegrationMetricState:
528
548
  def iam_role(self, value: Optional[pulumi.Input[str]]):
529
549
  pulumi.set(self, "iam_role", value)
530
550
 
551
+ @property
552
+ @pulumi.getter(name="includeAdQueues")
553
+ def include_ad_queues(self) -> Optional[pulumi.Input[bool]]:
554
+ """
555
+ (optional) Include Auto-Delete queues
556
+ """
557
+ return pulumi.get(self, "include_ad_queues")
558
+
559
+ @include_ad_queues.setter
560
+ def include_ad_queues(self, value: Optional[pulumi.Input[bool]]):
561
+ pulumi.set(self, "include_ad_queues", value)
562
+
531
563
  @property
532
564
  @pulumi.getter(name="instanceId")
533
565
  def instance_id(self) -> Optional[pulumi.Input[int]]:
@@ -699,6 +731,7 @@ class IntegrationMetric(pulumi.CustomResource):
699
731
  email: Optional[pulumi.Input[str]] = None,
700
732
  iam_external_id: Optional[pulumi.Input[str]] = None,
701
733
  iam_role: Optional[pulumi.Input[str]] = None,
734
+ include_ad_queues: Optional[pulumi.Input[bool]] = None,
702
735
  instance_id: Optional[pulumi.Input[int]] = None,
703
736
  license_key: Optional[pulumi.Input[str]] = None,
704
737
  name: Optional[pulumi.Input[str]] = None,
@@ -714,7 +747,9 @@ class IntegrationMetric(pulumi.CustomResource):
714
747
  vhost_whitelist: Optional[pulumi.Input[str]] = None,
715
748
  __props__=None):
716
749
  """
717
- This resource allows you to create and manage, forwarding metrics to third party integrations for a CloudAMQP instance. Once configured, the metrics produced will be forward to corresponding integration.
750
+ This resource allows you to create and manage, forwarding metrics to third party integrations for a
751
+ CloudAMQP instance. Once configured, the metrics produced will be forward to corresponding
752
+ integration.
718
753
 
719
754
  Only available for dedicated subscription plans.
720
755
 
@@ -864,7 +899,9 @@ class IntegrationMetric(pulumi.CustomResource):
864
899
 
865
900
  ## Import
866
901
 
867
- `cloudamqp_integration_metric`can be imported using the resource identifier together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
902
+ `cloudamqp_integration_metric`can be imported using the resource identifier together with CloudAMQP
903
+
904
+ instance identifier. The name and identifier are CSV separated, see example below.
868
905
 
869
906
  ```sh
870
907
  $ pulumi import cloudamqp:index/integrationMetric:IntegrationMetric <resource_name> <resource_id>,<instance_id>`
@@ -879,6 +916,7 @@ class IntegrationMetric(pulumi.CustomResource):
879
916
  :param pulumi.Input[str] email: The email address registred for the integration service. (Librato)
880
917
  :param pulumi.Input[str] iam_external_id: External identifier that match the role you created. (Cloudwatch)
881
918
  :param pulumi.Input[str] iam_role: The ARN of the role to be assumed when publishing metrics. (Cloudwatch)
919
+ :param pulumi.Input[bool] include_ad_queues: (optional) Include Auto-Delete queues
882
920
  :param pulumi.Input[int] instance_id: Instance identifier
883
921
  :param pulumi.Input[str] license_key: The license key registred for the integration service. (New Relic)
884
922
  :param pulumi.Input[str] name: The name of metrics integration
@@ -900,7 +938,9 @@ class IntegrationMetric(pulumi.CustomResource):
900
938
  args: IntegrationMetricArgs,
901
939
  opts: Optional[pulumi.ResourceOptions] = None):
902
940
  """
903
- This resource allows you to create and manage, forwarding metrics to third party integrations for a CloudAMQP instance. Once configured, the metrics produced will be forward to corresponding integration.
941
+ This resource allows you to create and manage, forwarding metrics to third party integrations for a
942
+ CloudAMQP instance. Once configured, the metrics produced will be forward to corresponding
943
+ integration.
904
944
 
905
945
  Only available for dedicated subscription plans.
906
946
 
@@ -1050,7 +1090,9 @@ class IntegrationMetric(pulumi.CustomResource):
1050
1090
 
1051
1091
  ## Import
1052
1092
 
1053
- `cloudamqp_integration_metric`can be imported using the resource identifier together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
1093
+ `cloudamqp_integration_metric`can be imported using the resource identifier together with CloudAMQP
1094
+
1095
+ instance identifier. The name and identifier are CSV separated, see example below.
1054
1096
 
1055
1097
  ```sh
1056
1098
  $ pulumi import cloudamqp:index/integrationMetric:IntegrationMetric <resource_name> <resource_id>,<instance_id>`
@@ -1078,6 +1120,7 @@ class IntegrationMetric(pulumi.CustomResource):
1078
1120
  email: Optional[pulumi.Input[str]] = None,
1079
1121
  iam_external_id: Optional[pulumi.Input[str]] = None,
1080
1122
  iam_role: Optional[pulumi.Input[str]] = None,
1123
+ include_ad_queues: Optional[pulumi.Input[bool]] = None,
1081
1124
  instance_id: Optional[pulumi.Input[int]] = None,
1082
1125
  license_key: Optional[pulumi.Input[str]] = None,
1083
1126
  name: Optional[pulumi.Input[str]] = None,
@@ -1107,6 +1150,7 @@ class IntegrationMetric(pulumi.CustomResource):
1107
1150
  __props__.__dict__["email"] = email
1108
1151
  __props__.__dict__["iam_external_id"] = iam_external_id
1109
1152
  __props__.__dict__["iam_role"] = iam_role
1153
+ __props__.__dict__["include_ad_queues"] = include_ad_queues
1110
1154
  if instance_id is None and not opts.urn:
1111
1155
  raise TypeError("Missing required property 'instance_id'")
1112
1156
  __props__.__dict__["instance_id"] = instance_id
@@ -1141,6 +1185,7 @@ class IntegrationMetric(pulumi.CustomResource):
1141
1185
  email: Optional[pulumi.Input[str]] = None,
1142
1186
  iam_external_id: Optional[pulumi.Input[str]] = None,
1143
1187
  iam_role: Optional[pulumi.Input[str]] = None,
1188
+ include_ad_queues: Optional[pulumi.Input[bool]] = None,
1144
1189
  instance_id: Optional[pulumi.Input[int]] = None,
1145
1190
  license_key: Optional[pulumi.Input[str]] = None,
1146
1191
  name: Optional[pulumi.Input[str]] = None,
@@ -1168,6 +1213,7 @@ class IntegrationMetric(pulumi.CustomResource):
1168
1213
  :param pulumi.Input[str] email: The email address registred for the integration service. (Librato)
1169
1214
  :param pulumi.Input[str] iam_external_id: External identifier that match the role you created. (Cloudwatch)
1170
1215
  :param pulumi.Input[str] iam_role: The ARN of the role to be assumed when publishing metrics. (Cloudwatch)
1216
+ :param pulumi.Input[bool] include_ad_queues: (optional) Include Auto-Delete queues
1171
1217
  :param pulumi.Input[int] instance_id: Instance identifier
1172
1218
  :param pulumi.Input[str] license_key: The license key registred for the integration service. (New Relic)
1173
1219
  :param pulumi.Input[str] name: The name of metrics integration
@@ -1193,6 +1239,7 @@ class IntegrationMetric(pulumi.CustomResource):
1193
1239
  __props__.__dict__["email"] = email
1194
1240
  __props__.__dict__["iam_external_id"] = iam_external_id
1195
1241
  __props__.__dict__["iam_role"] = iam_role
1242
+ __props__.__dict__["include_ad_queues"] = include_ad_queues
1196
1243
  __props__.__dict__["instance_id"] = instance_id
1197
1244
  __props__.__dict__["license_key"] = license_key
1198
1245
  __props__.__dict__["name"] = name
@@ -1264,6 +1311,14 @@ class IntegrationMetric(pulumi.CustomResource):
1264
1311
  """
1265
1312
  return pulumi.get(self, "iam_role")
1266
1313
 
1314
+ @property
1315
+ @pulumi.getter(name="includeAdQueues")
1316
+ def include_ad_queues(self) -> pulumi.Output[Optional[bool]]:
1317
+ """
1318
+ (optional) Include Auto-Delete queues
1319
+ """
1320
+ return pulumi.get(self, "include_ad_queues")
1321
+
1267
1322
  @property
1268
1323
  @pulumi.getter(name="instanceId")
1269
1324
  def instance_id(self) -> pulumi.Output[int]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "cloudamqp",
4
- "version": "3.21.0-alpha.1740806688"
4
+ "version": "3.21.0-alpha.1741098583"
5
5
  }
@@ -183,7 +183,7 @@ class _VpcConnectState:
183
183
  :param pulumi.Input[Sequence[pulumi.Input[str]]] approved_subscriptions: List of approved subscriptions used by Azure, see below table.
184
184
  :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
185
185
  :param pulumi.Input[str] region: The region where the CloudAMQP instance is hosted.
186
- :param pulumi.Input[str] service_name: Service name (alias for Azure) of the PrivateLink.
186
+ :param pulumi.Input[str] service_name: Service name (alias for Azure, see example above) of the PrivateLink.
187
187
  :param pulumi.Input[int] sleep: Configurable sleep time (seconds) when enable Private Service Connect.
188
188
  Default set to 10 seconds.
189
189
  :param pulumi.Input[str] status: Private Service Connect status [enable, pending, disable]
@@ -299,7 +299,7 @@ class _VpcConnectState:
299
299
  @pulumi.getter(name="serviceName")
300
300
  def service_name(self) -> Optional[pulumi.Input[str]]:
301
301
  """
302
- Service name (alias for Azure) of the PrivateLink.
302
+ Service name (alias for Azure, see example above) of the PrivateLink.
303
303
  """
304
304
  return pulumi.get(self, "service_name")
305
305
 
@@ -451,6 +451,31 @@ class VpcConnect(pulumi.CustomResource):
451
451
  approved_subscriptions=["XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"])
452
452
  ```
453
453
 
454
+ The attribute `service_name` found in resource `VpcConnect` corresponds to the alias in
455
+ the resource `azurerm_private_endpoint` of the Azure provider. This can be used when creating the
456
+ private endpoint.
457
+
458
+ ```python
459
+ import pulumi
460
+ import pulumi_azurerm as azurerm
461
+
462
+ example = azurerm.index.PrivateEndpoint("example",
463
+ name=example-endpoint,
464
+ location=example_azurerm_resource_group.location,
465
+ resource_group_name=example_azurerm_resource_group.name,
466
+ subnet_id=subnet.id,
467
+ private_service_connection=[{
468
+ name: example-privateserviceconnection,
469
+ privateConnectionResourceAlias: vpc_connect.service_name,
470
+ isManualConnection: True,
471
+ requestMessage: PL,
472
+ }])
473
+ ```
474
+
475
+ More information about the resource and argument can be found here:
476
+ private_connection_resource_alias. Or check their example "Using a Private Link
477
+ Service Alias with existing resources:".
478
+
454
479
  </details>
455
480
 
456
481
  <details>
@@ -675,6 +700,31 @@ class VpcConnect(pulumi.CustomResource):
675
700
  approved_subscriptions=["XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"])
676
701
  ```
677
702
 
703
+ The attribute `service_name` found in resource `VpcConnect` corresponds to the alias in
704
+ the resource `azurerm_private_endpoint` of the Azure provider. This can be used when creating the
705
+ private endpoint.
706
+
707
+ ```python
708
+ import pulumi
709
+ import pulumi_azurerm as azurerm
710
+
711
+ example = azurerm.index.PrivateEndpoint("example",
712
+ name=example-endpoint,
713
+ location=example_azurerm_resource_group.location,
714
+ resource_group_name=example_azurerm_resource_group.name,
715
+ subnet_id=subnet.id,
716
+ private_service_connection=[{
717
+ name: example-privateserviceconnection,
718
+ privateConnectionResourceAlias: vpc_connect.service_name,
719
+ isManualConnection: True,
720
+ requestMessage: PL,
721
+ }])
722
+ ```
723
+
724
+ More information about the resource and argument can be found here:
725
+ private_connection_resource_alias. Or check their example "Using a Private Link
726
+ Service Alias with existing resources:".
727
+
678
728
  </details>
679
729
 
680
730
  <details>
@@ -867,7 +917,7 @@ class VpcConnect(pulumi.CustomResource):
867
917
  :param pulumi.Input[Sequence[pulumi.Input[str]]] approved_subscriptions: List of approved subscriptions used by Azure, see below table.
868
918
  :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
869
919
  :param pulumi.Input[str] region: The region where the CloudAMQP instance is hosted.
870
- :param pulumi.Input[str] service_name: Service name (alias for Azure) of the PrivateLink.
920
+ :param pulumi.Input[str] service_name: Service name (alias for Azure, see example above) of the PrivateLink.
871
921
  :param pulumi.Input[int] sleep: Configurable sleep time (seconds) when enable Private Service Connect.
872
922
  Default set to 10 seconds.
873
923
  :param pulumi.Input[str] status: Private Service Connect status [enable, pending, disable]
@@ -954,7 +1004,7 @@ class VpcConnect(pulumi.CustomResource):
954
1004
  @pulumi.getter(name="serviceName")
955
1005
  def service_name(self) -> pulumi.Output[str]:
956
1006
  """
957
- Service name (alias for Azure) of the PrivateLink.
1007
+ Service name (alias for Azure, see example above) of the PrivateLink.
958
1008
  """
959
1009
  return pulumi.get(self, "service_name")
960
1010
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_cloudamqp
3
- Version: 3.21.0a1740806688
3
+ Version: 3.21.0a1741098583
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
@@ -15,12 +15,12 @@ pulumi_cloudamqp/get_notification.py,sha256=-182DPh2cu-gcCO-Ujs5jSNbSFpKi1X3hGcZ
15
15
  pulumi_cloudamqp/get_plugins.py,sha256=2xMXWxb32ENv-gRCT06JzAPX3tDP7tpMBLixSOPHeXk,7370
16
16
  pulumi_cloudamqp/get_plugins_community.py,sha256=UKNJC0WVdNPkDwAWVXtl-h9Av1j6eVLnG7BZ-81GzWk,7570
17
17
  pulumi_cloudamqp/get_upgradable_versions.py,sha256=TywYSlmQdIdjmJD96R7UdLiutUlRil3iDORm6xh77SE,5853
18
- pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=OAG2kgfHnLwRNOSZBWUSY9uLvAJel78tNYaGz6cwtW8,10024
19
- pulumi_cloudamqp/get_vpc_info.py,sha256=HUwtEDQqQl4CA-HK40a4NziwaDRVrAq6U8MGWUWomCM,9084
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
20
  pulumi_cloudamqp/instance.py,sha256=kqK8xBBGYd8R10m7p05oftwieX-2BnxEE8YDYI400r8,59175
21
21
  pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=IvqwG8SwNqSAaDN9JtCoA36gBkoFpFFiwy2IRgL7WT8,22457
22
22
  pulumi_cloudamqp/integration_log.py,sha256=CIcU5_TMIWeGGnShvXmaBc6amK6I_EDNXWiu4SDVn5k,67955
23
- pulumi_cloudamqp/integration_metric.py,sha256=A2_lNVlHlX7Jx7ZyXKFPscan95Mo6B7DTcjvpJuRLFI,54149
23
+ pulumi_cloudamqp/integration_metric.py,sha256=ClsGq5j2yRmrIqA-4PIjOZdVZkhGg9-MEl0AGZcLzPI,56340
24
24
  pulumi_cloudamqp/node_actions.py,sha256=lzOBM5UFDfz4SBcOs9jT5QnJI-7oHVMqJXukV4pwmYA,18315
25
25
  pulumi_cloudamqp/notification.py,sha256=mDdUCirSx_pKh5-AgclGRNR9ILCSb_3Dtiry7sRsncM,28450
26
26
  pulumi_cloudamqp/outputs.py,sha256=jTOyqw5MAyXBYUIL1Ob7maMLJBvcqmIi9pWQgK8mMJM,17118
@@ -29,21 +29,21 @@ pulumi_cloudamqp/plugin_community.py,sha256=hIEB_d86kxemjJvGrxJkUl_Q3pNrpRCS1YPF
29
29
  pulumi_cloudamqp/privatelink_aws.py,sha256=xWifEEsK9dIGNNaVBzwIDRB4Ka2TIqGyEdUPhVU4KJY,28007
30
30
  pulumi_cloudamqp/privatelink_azure.py,sha256=HqfcVHBorM9-BEQZGvQzlVRGA0_qwIqNkbJ_tI2iMMU,27263
31
31
  pulumi_cloudamqp/provider.py,sha256=ZsS3-l32jj2k9OK4bNg4MCgazokJJzV6IZwhfg2jxl4,6722
32
- pulumi_cloudamqp/pulumi-plugin.json,sha256=0997p6XJ-Qm2SZuRlSzX_RUP9x8-3by2rwPuIdwyVjU,86
32
+ pulumi_cloudamqp/pulumi-plugin.json,sha256=xTxh5A8a9M4mWs1wNSW_HsZchDyf9bUhWeewcdHxmyY,86
33
33
  pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  pulumi_cloudamqp/rabbit_configuration.py,sha256=ZJxTD6BbI1RQxvzBDhWvr9ZuG5DexjfPJYnzE8z5WG4,32904
35
35
  pulumi_cloudamqp/security_firewall.py,sha256=RLEXyTVlUuKLv6FWMbRIIy-o57BwNOSpFCcdWb-cZy0,14220
36
36
  pulumi_cloudamqp/upgrade_lavinmq.py,sha256=SWZ8AVQiiX4qHxo3xbSwN6lmnPpQU0PuYqv14KZRHic,10187
37
37
  pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=d2agnQlxeX1VrfbDv71fmHGXV9GA3fMyNSh27-3N96A,21486
38
38
  pulumi_cloudamqp/vpc.py,sha256=Jl43qkKCpU5G0EvPFxk_cmJ5fHHOm8p6rqesOslN7vY,14804
39
- pulumi_cloudamqp/vpc_connect.py,sha256=FhjwUXWhtwxFs8QdfTmY-7CgGJA5vqFUa64JEnBfU54,44926
39
+ pulumi_cloudamqp/vpc_connect.py,sha256=2JCXbyEcOxMxh7_Oyz5_DZk86Os73Efeg5IzpC1e8OM,47126
40
40
  pulumi_cloudamqp/vpc_gcp_peering.py,sha256=FFxp4A-DvyGwB1K_fv8CTgTp_2vh_ugaggiEKaZUte0,36918
41
41
  pulumi_cloudamqp/vpc_peering.py,sha256=FAqyZ_4wUqBGs9XqsOlnOldeBy9EXDOpQ13lIoLfmWQ,16973
42
42
  pulumi_cloudamqp/webhook.py,sha256=WvJR3xfmIY9s8MrSaoD3wVuMwjlr8CbWLhB59PZFRFA,17501
43
43
  pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
44
44
  pulumi_cloudamqp/config/__init__.pyi,sha256=yRca3CWiHsleY1obkjqWJfprOQN8wfAyE-mfc0MtmJ4,723
45
45
  pulumi_cloudamqp/config/vars.py,sha256=mXJq-A9lp-pr14Qy0DIYCzi3lavA-QL1eDCUw0lFoX0,1113
46
- pulumi_cloudamqp-3.21.0a1740806688.dist-info/METADATA,sha256=YgD8XS1mBrBgortCXOLdwPEUCRfVpO6mnFWsFtKaBmw,2818
47
- pulumi_cloudamqp-3.21.0a1740806688.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
48
- pulumi_cloudamqp-3.21.0a1740806688.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
49
- pulumi_cloudamqp-3.21.0a1740806688.dist-info/RECORD,,
46
+ pulumi_cloudamqp-3.21.0a1741098583.dist-info/METADATA,sha256=saVdHg6Uc37F0zrk24rTd-jj1bC2KDd5R8CP1jEOTTg,2818
47
+ pulumi_cloudamqp-3.21.0a1741098583.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
48
+ pulumi_cloudamqp-3.21.0a1741098583.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
49
+ pulumi_cloudamqp-3.21.0a1741098583.dist-info/RECORD,,