pulumi-cloudamqp 3.17.0a1702588087__py3-none-any.whl → 3.17.1__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.

@@ -16,24 +16,29 @@ class VpcGcpPeeringArgs:
16
16
  def __init__(__self__, *,
17
17
  peer_network_uri: pulumi.Input[str],
18
18
  instance_id: Optional[pulumi.Input[int]] = None,
19
+ sleep: Optional[pulumi.Input[int]] = None,
20
+ timeout: Optional[pulumi.Input[int]] = None,
19
21
  vpc_id: Optional[pulumi.Input[str]] = None,
20
22
  wait_on_peering_status: Optional[pulumi.Input[bool]] = None):
21
23
  """
22
24
  The set of arguments for constructing a VpcGcpPeering resource.
23
25
  :param pulumi.Input[str] peer_network_uri: Network uri of the VPC network to which you will peer with.
24
- :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
25
-
26
- ***Depreacted: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
27
- :param pulumi.Input[str] vpc_id: The managed VPC identifier.
28
-
29
- ***Note: Added as optional in version v1.16.0, will be required in next major version (v2.0)***
26
+ :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier. *Deprecated from v1.16.0*
27
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries when requesting or reading
28
+ peering. Default set to 10 seconds. *Available from v1.29.0*
29
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) before retries times out. Default set
30
+ to 1800 seconds. *Available from v1.29.0*
31
+ :param pulumi.Input[str] vpc_id: The managed VPC identifier. *Available from v1.16.0*
30
32
  :param pulumi.Input[bool] wait_on_peering_status: Makes the resource wait until the peering is connected.
31
-
32
- ***Note: Added as optional in version v1.28.0. Default set to false and will not wait until the peering is done from both VPCs***
33
+ Default set to false. *Available from v1.28.0*
33
34
  """
34
35
  pulumi.set(__self__, "peer_network_uri", peer_network_uri)
35
36
  if instance_id is not None:
36
37
  pulumi.set(__self__, "instance_id", instance_id)
38
+ if sleep is not None:
39
+ pulumi.set(__self__, "sleep", sleep)
40
+ if timeout is not None:
41
+ pulumi.set(__self__, "timeout", timeout)
37
42
  if vpc_id is not None:
38
43
  pulumi.set(__self__, "vpc_id", vpc_id)
39
44
  if wait_on_peering_status is not None:
@@ -55,9 +60,7 @@ class VpcGcpPeeringArgs:
55
60
  @pulumi.getter(name="instanceId")
56
61
  def instance_id(self) -> Optional[pulumi.Input[int]]:
57
62
  """
58
- The CloudAMQP instance identifier.
59
-
60
- ***Depreacted: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
63
+ The CloudAMQP instance identifier. *Deprecated from v1.16.0*
61
64
  """
62
65
  return pulumi.get(self, "instance_id")
63
66
 
@@ -65,13 +68,37 @@ class VpcGcpPeeringArgs:
65
68
  def instance_id(self, value: Optional[pulumi.Input[int]]):
66
69
  pulumi.set(self, "instance_id", value)
67
70
 
71
+ @property
72
+ @pulumi.getter
73
+ def sleep(self) -> Optional[pulumi.Input[int]]:
74
+ """
75
+ Configurable sleep time (seconds) between retries when requesting or reading
76
+ peering. Default set to 10 seconds. *Available from v1.29.0*
77
+ """
78
+ return pulumi.get(self, "sleep")
79
+
80
+ @sleep.setter
81
+ def sleep(self, value: Optional[pulumi.Input[int]]):
82
+ pulumi.set(self, "sleep", value)
83
+
84
+ @property
85
+ @pulumi.getter
86
+ def timeout(self) -> Optional[pulumi.Input[int]]:
87
+ """
88
+ Configurable timeout time (seconds) before retries times out. Default set
89
+ to 1800 seconds. *Available from v1.29.0*
90
+ """
91
+ return pulumi.get(self, "timeout")
92
+
93
+ @timeout.setter
94
+ def timeout(self, value: Optional[pulumi.Input[int]]):
95
+ pulumi.set(self, "timeout", value)
96
+
68
97
  @property
69
98
  @pulumi.getter(name="vpcId")
70
99
  def vpc_id(self) -> Optional[pulumi.Input[str]]:
71
100
  """
72
- The managed VPC identifier.
73
-
74
- ***Note: Added as optional in version v1.16.0, will be required in next major version (v2.0)***
101
+ The managed VPC identifier. *Available from v1.16.0*
75
102
  """
76
103
  return pulumi.get(self, "vpc_id")
77
104
 
@@ -84,8 +111,7 @@ class VpcGcpPeeringArgs:
84
111
  def wait_on_peering_status(self) -> Optional[pulumi.Input[bool]]:
85
112
  """
86
113
  Makes the resource wait until the peering is connected.
87
-
88
- ***Note: Added as optional in version v1.28.0. Default set to false and will not wait until the peering is done from both VPCs***
114
+ Default set to false. *Available from v1.28.0*
89
115
  """
90
116
  return pulumi.get(self, "wait_on_peering_status")
91
117
 
@@ -100,25 +126,26 @@ class _VpcGcpPeeringState:
100
126
  auto_create_routes: Optional[pulumi.Input[bool]] = None,
101
127
  instance_id: Optional[pulumi.Input[int]] = None,
102
128
  peer_network_uri: Optional[pulumi.Input[str]] = None,
129
+ sleep: Optional[pulumi.Input[int]] = None,
103
130
  state: Optional[pulumi.Input[str]] = None,
104
131
  state_details: Optional[pulumi.Input[str]] = None,
132
+ timeout: Optional[pulumi.Input[int]] = None,
105
133
  vpc_id: Optional[pulumi.Input[str]] = None,
106
134
  wait_on_peering_status: Optional[pulumi.Input[bool]] = None):
107
135
  """
108
136
  Input properties used for looking up and filtering VpcGcpPeering resources.
109
137
  :param pulumi.Input[bool] auto_create_routes: VPC peering auto created routes
110
- :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
111
-
112
- ***Depreacted: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
138
+ :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier. *Deprecated from v1.16.0*
113
139
  :param pulumi.Input[str] peer_network_uri: Network uri of the VPC network to which you will peer with.
140
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries when requesting or reading
141
+ peering. Default set to 10 seconds. *Available from v1.29.0*
114
142
  :param pulumi.Input[str] state: VPC peering state
115
143
  :param pulumi.Input[str] state_details: VPC peering state details
116
- :param pulumi.Input[str] vpc_id: The managed VPC identifier.
117
-
118
- ***Note: Added as optional in version v1.16.0, will be required in next major version (v2.0)***
144
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) before retries times out. Default set
145
+ to 1800 seconds. *Available from v1.29.0*
146
+ :param pulumi.Input[str] vpc_id: The managed VPC identifier. *Available from v1.16.0*
119
147
  :param pulumi.Input[bool] wait_on_peering_status: Makes the resource wait until the peering is connected.
120
-
121
- ***Note: Added as optional in version v1.28.0. Default set to false and will not wait until the peering is done from both VPCs***
148
+ Default set to false. *Available from v1.28.0*
122
149
  """
123
150
  if auto_create_routes is not None:
124
151
  pulumi.set(__self__, "auto_create_routes", auto_create_routes)
@@ -126,10 +153,14 @@ class _VpcGcpPeeringState:
126
153
  pulumi.set(__self__, "instance_id", instance_id)
127
154
  if peer_network_uri is not None:
128
155
  pulumi.set(__self__, "peer_network_uri", peer_network_uri)
156
+ if sleep is not None:
157
+ pulumi.set(__self__, "sleep", sleep)
129
158
  if state is not None:
130
159
  pulumi.set(__self__, "state", state)
131
160
  if state_details is not None:
132
161
  pulumi.set(__self__, "state_details", state_details)
162
+ if timeout is not None:
163
+ pulumi.set(__self__, "timeout", timeout)
133
164
  if vpc_id is not None:
134
165
  pulumi.set(__self__, "vpc_id", vpc_id)
135
166
  if wait_on_peering_status is not None:
@@ -151,9 +182,7 @@ class _VpcGcpPeeringState:
151
182
  @pulumi.getter(name="instanceId")
152
183
  def instance_id(self) -> Optional[pulumi.Input[int]]:
153
184
  """
154
- The CloudAMQP instance identifier.
155
-
156
- ***Depreacted: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
185
+ The CloudAMQP instance identifier. *Deprecated from v1.16.0*
157
186
  """
158
187
  return pulumi.get(self, "instance_id")
159
188
 
@@ -173,6 +202,19 @@ class _VpcGcpPeeringState:
173
202
  def peer_network_uri(self, value: Optional[pulumi.Input[str]]):
174
203
  pulumi.set(self, "peer_network_uri", value)
175
204
 
205
+ @property
206
+ @pulumi.getter
207
+ def sleep(self) -> Optional[pulumi.Input[int]]:
208
+ """
209
+ Configurable sleep time (seconds) between retries when requesting or reading
210
+ peering. Default set to 10 seconds. *Available from v1.29.0*
211
+ """
212
+ return pulumi.get(self, "sleep")
213
+
214
+ @sleep.setter
215
+ def sleep(self, value: Optional[pulumi.Input[int]]):
216
+ pulumi.set(self, "sleep", value)
217
+
176
218
  @property
177
219
  @pulumi.getter
178
220
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -197,13 +239,24 @@ class _VpcGcpPeeringState:
197
239
  def state_details(self, value: Optional[pulumi.Input[str]]):
198
240
  pulumi.set(self, "state_details", value)
199
241
 
242
+ @property
243
+ @pulumi.getter
244
+ def timeout(self) -> Optional[pulumi.Input[int]]:
245
+ """
246
+ Configurable timeout time (seconds) before retries times out. Default set
247
+ to 1800 seconds. *Available from v1.29.0*
248
+ """
249
+ return pulumi.get(self, "timeout")
250
+
251
+ @timeout.setter
252
+ def timeout(self, value: Optional[pulumi.Input[int]]):
253
+ pulumi.set(self, "timeout", value)
254
+
200
255
  @property
201
256
  @pulumi.getter(name="vpcId")
202
257
  def vpc_id(self) -> Optional[pulumi.Input[str]]:
203
258
  """
204
- The managed VPC identifier.
205
-
206
- ***Note: Added as optional in version v1.16.0, will be required in next major version (v2.0)***
259
+ The managed VPC identifier. *Available from v1.16.0*
207
260
  """
208
261
  return pulumi.get(self, "vpc_id")
209
262
 
@@ -216,8 +269,7 @@ class _VpcGcpPeeringState:
216
269
  def wait_on_peering_status(self) -> Optional[pulumi.Input[bool]]:
217
270
  """
218
271
  Makes the resource wait until the peering is connected.
219
-
220
- ***Note: Added as optional in version v1.28.0. Default set to false and will not wait until the peering is done from both VPCs***
272
+ Default set to false. *Available from v1.28.0*
221
273
  """
222
274
  return pulumi.get(self, "wait_on_peering_status")
223
275
 
@@ -233,6 +285,8 @@ class VpcGcpPeering(pulumi.CustomResource):
233
285
  opts: Optional[pulumi.ResourceOptions] = None,
234
286
  instance_id: Optional[pulumi.Input[int]] = None,
235
287
  peer_network_uri: Optional[pulumi.Input[str]] = None,
288
+ sleep: Optional[pulumi.Input[int]] = None,
289
+ timeout: Optional[pulumi.Input[int]] = None,
236
290
  vpc_id: Optional[pulumi.Input[str]] = None,
237
291
  wait_on_peering_status: Optional[pulumi.Input[bool]] = None,
238
292
  __props__=None):
@@ -240,13 +294,16 @@ class VpcGcpPeering(pulumi.CustomResource):
240
294
  This resouce creates a VPC peering configuration for the CloudAMQP instance. The configuration will connect to another VPC network hosted on Google Cloud Platform (GCP). See the [GCP documentation](https://cloud.google.com/vpc/docs/using-vpc-peering) for more information on how to create the VPC peering configuration.
241
295
 
242
296
  > **Note:** Creating a VPC peering will automatically add firewall rules for the peered subnet.
297
+
243
298
  <details>
244
299
  <summary>
245
300
  <i>Default VPC peering firewall rule</i>
246
301
  </summary>
302
+
247
303
  ```python
248
304
  import pulumi
249
305
  ```
306
+
250
307
  </details>
251
308
 
252
309
  Pricing is available at [cloudamqp.com](https://www.cloudamqp.com/plans.html).
@@ -301,6 +358,7 @@ class VpcGcpPeering(pulumi.CustomResource):
301
358
  ],
302
359
  opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
303
360
  ```
361
+
304
362
  </details>
305
363
 
306
364
  <details>
@@ -342,6 +400,7 @@ class VpcGcpPeering(pulumi.CustomResource):
342
400
  ],
343
401
  opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
344
402
  ```
403
+
345
404
  </details>
346
405
  ## Depedency
347
406
 
@@ -366,16 +425,15 @@ class VpcGcpPeering(pulumi.CustomResource):
366
425
 
367
426
  :param str resource_name: The name of the resource.
368
427
  :param pulumi.ResourceOptions opts: Options for the resource.
369
- :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
370
-
371
- ***Depreacted: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
428
+ :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier. *Deprecated from v1.16.0*
372
429
  :param pulumi.Input[str] peer_network_uri: Network uri of the VPC network to which you will peer with.
373
- :param pulumi.Input[str] vpc_id: The managed VPC identifier.
374
-
375
- ***Note: Added as optional in version v1.16.0, will be required in next major version (v2.0)***
430
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries when requesting or reading
431
+ peering. Default set to 10 seconds. *Available from v1.29.0*
432
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) before retries times out. Default set
433
+ to 1800 seconds. *Available from v1.29.0*
434
+ :param pulumi.Input[str] vpc_id: The managed VPC identifier. *Available from v1.16.0*
376
435
  :param pulumi.Input[bool] wait_on_peering_status: Makes the resource wait until the peering is connected.
377
-
378
- ***Note: Added as optional in version v1.28.0. Default set to false and will not wait until the peering is done from both VPCs***
436
+ Default set to false. *Available from v1.28.0*
379
437
  """
380
438
  ...
381
439
  @overload
@@ -387,13 +445,16 @@ class VpcGcpPeering(pulumi.CustomResource):
387
445
  This resouce creates a VPC peering configuration for the CloudAMQP instance. The configuration will connect to another VPC network hosted on Google Cloud Platform (GCP). See the [GCP documentation](https://cloud.google.com/vpc/docs/using-vpc-peering) for more information on how to create the VPC peering configuration.
388
446
 
389
447
  > **Note:** Creating a VPC peering will automatically add firewall rules for the peered subnet.
448
+
390
449
  <details>
391
450
  <summary>
392
451
  <i>Default VPC peering firewall rule</i>
393
452
  </summary>
453
+
394
454
  ```python
395
455
  import pulumi
396
456
  ```
457
+
397
458
  </details>
398
459
 
399
460
  Pricing is available at [cloudamqp.com](https://www.cloudamqp.com/plans.html).
@@ -448,6 +509,7 @@ class VpcGcpPeering(pulumi.CustomResource):
448
509
  ],
449
510
  opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
450
511
  ```
512
+
451
513
  </details>
452
514
 
453
515
  <details>
@@ -489,6 +551,7 @@ class VpcGcpPeering(pulumi.CustomResource):
489
551
  ],
490
552
  opts=pulumi.ResourceOptions(depends_on=[vpc_peering_request]))
491
553
  ```
554
+
492
555
  </details>
493
556
  ## Depedency
494
557
 
@@ -528,6 +591,8 @@ class VpcGcpPeering(pulumi.CustomResource):
528
591
  opts: Optional[pulumi.ResourceOptions] = None,
529
592
  instance_id: Optional[pulumi.Input[int]] = None,
530
593
  peer_network_uri: Optional[pulumi.Input[str]] = None,
594
+ sleep: Optional[pulumi.Input[int]] = None,
595
+ timeout: Optional[pulumi.Input[int]] = None,
531
596
  vpc_id: Optional[pulumi.Input[str]] = None,
532
597
  wait_on_peering_status: Optional[pulumi.Input[bool]] = None,
533
598
  __props__=None):
@@ -543,6 +608,8 @@ class VpcGcpPeering(pulumi.CustomResource):
543
608
  if peer_network_uri is None and not opts.urn:
544
609
  raise TypeError("Missing required property 'peer_network_uri'")
545
610
  __props__.__dict__["peer_network_uri"] = peer_network_uri
611
+ __props__.__dict__["sleep"] = sleep
612
+ __props__.__dict__["timeout"] = timeout
546
613
  __props__.__dict__["vpc_id"] = vpc_id
547
614
  __props__.__dict__["wait_on_peering_status"] = wait_on_peering_status
548
615
  __props__.__dict__["auto_create_routes"] = None
@@ -561,8 +628,10 @@ class VpcGcpPeering(pulumi.CustomResource):
561
628
  auto_create_routes: Optional[pulumi.Input[bool]] = None,
562
629
  instance_id: Optional[pulumi.Input[int]] = None,
563
630
  peer_network_uri: Optional[pulumi.Input[str]] = None,
631
+ sleep: Optional[pulumi.Input[int]] = None,
564
632
  state: Optional[pulumi.Input[str]] = None,
565
633
  state_details: Optional[pulumi.Input[str]] = None,
634
+ timeout: Optional[pulumi.Input[int]] = None,
566
635
  vpc_id: Optional[pulumi.Input[str]] = None,
567
636
  wait_on_peering_status: Optional[pulumi.Input[bool]] = None) -> 'VpcGcpPeering':
568
637
  """
@@ -573,18 +642,17 @@ class VpcGcpPeering(pulumi.CustomResource):
573
642
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
574
643
  :param pulumi.ResourceOptions opts: Options for the resource.
575
644
  :param pulumi.Input[bool] auto_create_routes: VPC peering auto created routes
576
- :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier.
577
-
578
- ***Depreacted: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
645
+ :param pulumi.Input[int] instance_id: The CloudAMQP instance identifier. *Deprecated from v1.16.0*
579
646
  :param pulumi.Input[str] peer_network_uri: Network uri of the VPC network to which you will peer with.
647
+ :param pulumi.Input[int] sleep: Configurable sleep time (seconds) between retries when requesting or reading
648
+ peering. Default set to 10 seconds. *Available from v1.29.0*
580
649
  :param pulumi.Input[str] state: VPC peering state
581
650
  :param pulumi.Input[str] state_details: VPC peering state details
582
- :param pulumi.Input[str] vpc_id: The managed VPC identifier.
583
-
584
- ***Note: Added as optional in version v1.16.0, will be required in next major version (v2.0)***
651
+ :param pulumi.Input[int] timeout: Configurable timeout time (seconds) before retries times out. Default set
652
+ to 1800 seconds. *Available from v1.29.0*
653
+ :param pulumi.Input[str] vpc_id: The managed VPC identifier. *Available from v1.16.0*
585
654
  :param pulumi.Input[bool] wait_on_peering_status: Makes the resource wait until the peering is connected.
586
-
587
- ***Note: Added as optional in version v1.28.0. Default set to false and will not wait until the peering is done from both VPCs***
655
+ Default set to false. *Available from v1.28.0*
588
656
  """
589
657
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
590
658
 
@@ -593,8 +661,10 @@ class VpcGcpPeering(pulumi.CustomResource):
593
661
  __props__.__dict__["auto_create_routes"] = auto_create_routes
594
662
  __props__.__dict__["instance_id"] = instance_id
595
663
  __props__.__dict__["peer_network_uri"] = peer_network_uri
664
+ __props__.__dict__["sleep"] = sleep
596
665
  __props__.__dict__["state"] = state
597
666
  __props__.__dict__["state_details"] = state_details
667
+ __props__.__dict__["timeout"] = timeout
598
668
  __props__.__dict__["vpc_id"] = vpc_id
599
669
  __props__.__dict__["wait_on_peering_status"] = wait_on_peering_status
600
670
  return VpcGcpPeering(resource_name, opts=opts, __props__=__props__)
@@ -611,9 +681,7 @@ class VpcGcpPeering(pulumi.CustomResource):
611
681
  @pulumi.getter(name="instanceId")
612
682
  def instance_id(self) -> pulumi.Output[Optional[int]]:
613
683
  """
614
- The CloudAMQP instance identifier.
615
-
616
- ***Depreacted: Changed from required to optional in v1.16.0, will be removed in next major version (v2.0)***
684
+ The CloudAMQP instance identifier. *Deprecated from v1.16.0*
617
685
  """
618
686
  return pulumi.get(self, "instance_id")
619
687
 
@@ -625,6 +693,15 @@ class VpcGcpPeering(pulumi.CustomResource):
625
693
  """
626
694
  return pulumi.get(self, "peer_network_uri")
627
695
 
696
+ @property
697
+ @pulumi.getter
698
+ def sleep(self) -> pulumi.Output[Optional[int]]:
699
+ """
700
+ Configurable sleep time (seconds) between retries when requesting or reading
701
+ peering. Default set to 10 seconds. *Available from v1.29.0*
702
+ """
703
+ return pulumi.get(self, "sleep")
704
+
628
705
  @property
629
706
  @pulumi.getter
630
707
  def state(self) -> pulumi.Output[str]:
@@ -641,13 +718,20 @@ class VpcGcpPeering(pulumi.CustomResource):
641
718
  """
642
719
  return pulumi.get(self, "state_details")
643
720
 
721
+ @property
722
+ @pulumi.getter
723
+ def timeout(self) -> pulumi.Output[Optional[int]]:
724
+ """
725
+ Configurable timeout time (seconds) before retries times out. Default set
726
+ to 1800 seconds. *Available from v1.29.0*
727
+ """
728
+ return pulumi.get(self, "timeout")
729
+
644
730
  @property
645
731
  @pulumi.getter(name="vpcId")
646
732
  def vpc_id(self) -> pulumi.Output[Optional[str]]:
647
733
  """
648
- The managed VPC identifier.
649
-
650
- ***Note: Added as optional in version v1.16.0, will be required in next major version (v2.0)***
734
+ The managed VPC identifier. *Available from v1.16.0*
651
735
  """
652
736
  return pulumi.get(self, "vpc_id")
653
737
 
@@ -656,8 +740,7 @@ class VpcGcpPeering(pulumi.CustomResource):
656
740
  def wait_on_peering_status(self) -> pulumi.Output[Optional[bool]]:
657
741
  """
658
742
  Makes the resource wait until the peering is connected.
659
-
660
- ***Note: Added as optional in version v1.28.0. Default set to false and will not wait until the peering is done from both VPCs***
743
+ Default set to false. *Available from v1.28.0*
661
744
  """
662
745
  return pulumi.get(self, "wait_on_peering_status")
663
746
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi-cloudamqp
3
- Version: 3.17.0a1702588087
3
+ Version: 3.17.1
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,7 @@
1
- pulumi_cloudamqp/__init__.py,sha256=hC9uVvlVQSDa-lHt0K5k6VLiv7Fp0K9_VDLx2Pjik6M,5157
1
+ pulumi_cloudamqp/__init__.py,sha256=ewe1_AokqUeqzc8ZVq3PWAYhkNk4xBk4V3VNEWhk3uE,5552
2
2
  pulumi_cloudamqp/_inputs.py,sha256=LZNTNwPTQyOMrljA_-LjgQOkQ66I2lQ0wgxJuuYsyzg,7380
3
3
  pulumi_cloudamqp/_utilities.py,sha256=nNKRJyG0bkCleVzIGnszB5TSQOVUqAHks2baneWhujg,9249
4
+ pulumi_cloudamqp/account_action.py,sha256=s-hJMsKAoKNPDUW3sNI-I8jtoLEy6g57e5gQ3nXzk6U,7688
4
5
  pulumi_cloudamqp/alarm.py,sha256=yB29EM-V6HKNTUtmcpbRLLmCKii0T8_qD503uhhSFnc,35197
5
6
  pulumi_cloudamqp/custom_domain.py,sha256=3yAs2IeSXSBliNTIBiKZCuuV8-V9IEbPdxZGNiR5Ly8,10037
6
7
  pulumi_cloudamqp/extra_disk_size.py,sha256=hnw362SF0W4NfK4aU2fKycllPkhp95yt6snwXq490Ek,26432
@@ -11,22 +12,22 @@ pulumi_cloudamqp/get_credentials.py,sha256=y67FIj-54Z1EnQD_amE6Ie5s44mXPckkj_6IS
11
12
  pulumi_cloudamqp/get_instance.py,sha256=TjJSyQyVZU0j3DCwal8Wpat4bvp0bf9scHGEo0bx77U,12122
12
13
  pulumi_cloudamqp/get_nodes.py,sha256=MhxoFwqZ3Mgn2VnjGSzt7tB4WULfMOFJqXStgQL384M,5516
13
14
  pulumi_cloudamqp/get_notification.py,sha256=ZH2xLbuXgHCSlCCULqzJzIrhb_M2x5BBXb66ZH3petc,7049
14
- pulumi_cloudamqp/get_plugins.py,sha256=R3xiX4OGRGeUPp2Y4yw0s-QZ-lWtVwvL3akvnr-7V0E,4586
15
- pulumi_cloudamqp/get_plugins_community.py,sha256=0flZX9IHPRgCXG3o9bt7PKgP6bjsPBQDHJQmGwzi-z0,4688
15
+ pulumi_cloudamqp/get_plugins.py,sha256=xFGdbcE6n-pLkPgCwl5tG7GqBNfVkTcRXt-kbBMCU5o,5530
16
+ pulumi_cloudamqp/get_plugins_community.py,sha256=6IH-7LGwxha4M-cpTEJa0vhsjNRyRNIxjyLbYW-u8t0,5664
16
17
  pulumi_cloudamqp/get_upgradable_versions.py,sha256=9Hy4W4hT8G8pOgBMUoVowZCDvvmK9F31s87AnXrD5XE,5104
17
- pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=JbQmvDPGR9n4eeZLYwGJbnFWPup_vXr7MuRTqdXVAJM,7527
18
+ pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=nLozPcHsK7uR-x1AfSCIbc01JqJETEPxdIIluSkjRCc,9081
18
19
  pulumi_cloudamqp/get_vpc_info.py,sha256=Z9F1cNJE4A7t7y7zuKTg8zGjVAse5aunfvjzvfi30po,8240
19
- pulumi_cloudamqp/instance.py,sha256=Iw1ZFRj2FTeu-mwDCy70BKQKUdxAJVSx5aJIMt-UoH8,60457
20
+ pulumi_cloudamqp/instance.py,sha256=RyOdw265YAjEc7EuSGUZzEVGVIFl_3LLgUHWGDWjEbo,60467
20
21
  pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=G0vW89_SICyQb_oRYeGSM0fq1Qy7YsA3s1-k5K5xckw,22213
21
22
  pulumi_cloudamqp/integration_log.py,sha256=e5GReameDkibHiC0kOGJCzNjtrN6sZ1KMWe9HT0wP00,42621
22
23
  pulumi_cloudamqp/integration_metric.py,sha256=Fx0mo6dmztZiGek3WIJ0cTVcVLyzcJSkFNHU2Pztabo,45257
23
24
  pulumi_cloudamqp/node_actions.py,sha256=gGaKlB6oM78zEmBEOs3ZrFtlj7j9HAU0XwtT2COi_cs,18537
24
25
  pulumi_cloudamqp/notification.py,sha256=e5MmTON4tQXZ6HduWDp4UFkuFQtsUmWMTFQ4SrDjRds,20672
25
- pulumi_cloudamqp/outputs.py,sha256=C_5_U0zB59fgoDGHNaJBM9K4s1eU-JMSTIHcayEvBxU,12902
26
- pulumi_cloudamqp/plugin.py,sha256=Z4KuvkGaNODkJOvUz6AoJRko0pOR11j73j5vdbUVJuw,11391
27
- pulumi_cloudamqp/plugin_community.py,sha256=LnP8_eXsEBwwDXWUKyETnIwN3puLRUXSWUgKV51YoFI,11669
28
- pulumi_cloudamqp/privatelink_aws.py,sha256=TnStbugYYAyIT62LcDTCNQ6fJ_HShjirGZj1Eb2WGRM,27193
29
- pulumi_cloudamqp/privatelink_azure.py,sha256=XAotiK9WU6N6EWVQa5LbzHAKi-9is96Mx1Cgf1X7XyY,26320
26
+ pulumi_cloudamqp/outputs.py,sha256=VHRmCXFQ2bcvjriiuwtmhtGGcIhlrEHP7F2ESaNa0Co,13878
27
+ pulumi_cloudamqp/plugin.py,sha256=TTAp3H0JIlgu83X7Lq4ZNVfQlHxMeCiSftL5TmAcwjs,16457
28
+ pulumi_cloudamqp/plugin_community.py,sha256=e4mKGleCLjA71muXWL4zXuGcjekcVtBVdYfR80zIFrs,16875
29
+ pulumi_cloudamqp/privatelink_aws.py,sha256=VsjMlrLlSm_nZmg_7_UFGJSr8qNGltxIVCZ1ZckJhdk,28695
30
+ pulumi_cloudamqp/privatelink_azure.py,sha256=6ASHDCxu6v85TFJ3NNw-K6g-rYBJ_7XVtlDhIPeMLE0,27955
30
31
  pulumi_cloudamqp/provider.py,sha256=-1Yblud0x-19h9xdoBUvgYRToei3kqo4YVchG-i-XOo,6886
31
32
  pulumi_cloudamqp/pulumi-plugin.json,sha256=So-I3JjRewZ_dOFdPPHpKB-8K3zcppOkGrDnWy-1N5s,46
32
33
  pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -34,13 +35,14 @@ pulumi_cloudamqp/rabbit_configuration.py,sha256=WUsIkaHflmXALm2ljKQUWj44o4FZjCiu
34
35
  pulumi_cloudamqp/security_firewall.py,sha256=bfr9qQKVQu-7thRxWEkypKfGkndDwKSjuOZgykGRlBs,13943
35
36
  pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=BYU-8NifTykI2W--UaQrUm6vzEeG26EM1VSsnYn3fD0,10867
36
37
  pulumi_cloudamqp/vpc.py,sha256=KEwIYDhvefVsxtYomCNAaqkZ2fIMJhjx-K6vtO3EN2g,14414
37
- pulumi_cloudamqp/vpc_gcp_peering.py,sha256=2ylohrc0vInITG8I4Z5VdDeynsuPXDs-KkYwRJk_beM,27163
38
+ pulumi_cloudamqp/vpc_connect.py,sha256=owRkgySDwpclvgDEZW5fTYc4DcPPtbwkr_YS703sD24,45028
39
+ pulumi_cloudamqp/vpc_gcp_peering.py,sha256=3tpq3WLWUdc6gSfeWfrK05Yr9H3lzBKUZFd9qW0cIOc,29987
38
40
  pulumi_cloudamqp/vpc_peering.py,sha256=1AsazWnJdpiKFKnLl7lHy6aJJrgFIG7FbHxJfN8hBzM,16351
39
41
  pulumi_cloudamqp/webhook.py,sha256=1lwTnaixOjy5K0ODjRM30Jn2GEzWAV9Z7E2CiZm_Lqc,17261
40
42
  pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
41
43
  pulumi_cloudamqp/config/__init__.pyi,sha256=iAe4czNsV1QWTP_5dpfwWJUZykmDcnTZMI9M3sJrj_g,615
42
44
  pulumi_cloudamqp/config/vars.py,sha256=5mP52CHvnTtGeEXq5P4rNTKeN6BeekCf_wZbwfMdmzE,1029
43
- pulumi_cloudamqp-3.17.0a1702588087.dist-info/METADATA,sha256=dlXnVPOPpoZPwo1vO3W2-whwQrO_PoKyGcQyARKtrzU,2755
44
- pulumi_cloudamqp-3.17.0a1702588087.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
45
- pulumi_cloudamqp-3.17.0a1702588087.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
46
- pulumi_cloudamqp-3.17.0a1702588087.dist-info/RECORD,,
45
+ pulumi_cloudamqp-3.17.1.dist-info/METADATA,sha256=FvUuKOrY3RQGYF_vbgTFD-3e1Q_O8_TQnn41UPVqjD0,2744
46
+ pulumi_cloudamqp-3.17.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
47
+ pulumi_cloudamqp-3.17.1.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
+ pulumi_cloudamqp-3.17.1.dist-info/RECORD,,