pulumi-cloudamqp 3.20.0a1725549739__py3-none-any.whl → 3.20.2__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.
- pulumi_cloudamqp/_inputs.py +157 -6
- pulumi_cloudamqp/_utilities.py +1 -1
- pulumi_cloudamqp/account_action.py +5 -0
- pulumi_cloudamqp/alarm.py +5 -0
- pulumi_cloudamqp/config/__init__.pyi +5 -0
- pulumi_cloudamqp/config/vars.py +5 -0
- pulumi_cloudamqp/custom_domain.py +5 -0
- pulumi_cloudamqp/extra_disk_size.py +5 -0
- pulumi_cloudamqp/get_account.py +11 -4
- pulumi_cloudamqp/get_account_vpcs.py +11 -4
- pulumi_cloudamqp/get_alarm.py +26 -4
- pulumi_cloudamqp/get_credentials.py +14 -4
- pulumi_cloudamqp/get_instance.py +29 -4
- pulumi_cloudamqp/get_nodes.py +13 -4
- pulumi_cloudamqp/get_notification.py +20 -4
- pulumi_cloudamqp/get_plugins.py +46 -7
- pulumi_cloudamqp/get_plugins_community.py +46 -7
- pulumi_cloudamqp/get_upgradable_versions.py +14 -4
- pulumi_cloudamqp/get_vpc_gcp_info.py +21 -4
- pulumi_cloudamqp/get_vpc_info.py +18 -4
- pulumi_cloudamqp/instance.py +5 -0
- pulumi_cloudamqp/integration_aws_eventbridge.py +5 -0
- pulumi_cloudamqp/integration_log.py +5 -0
- pulumi_cloudamqp/integration_metric.py +5 -0
- pulumi_cloudamqp/node_actions.py +5 -0
- pulumi_cloudamqp/notification.py +5 -0
- pulumi_cloudamqp/outputs.py +57 -60
- pulumi_cloudamqp/plugin.py +54 -35
- pulumi_cloudamqp/plugin_community.py +54 -35
- pulumi_cloudamqp/privatelink_aws.py +5 -0
- pulumi_cloudamqp/privatelink_azure.py +5 -0
- pulumi_cloudamqp/provider.py +5 -0
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +5 -0
- pulumi_cloudamqp/security_firewall.py +67 -21
- pulumi_cloudamqp/upgrade_lavinmq.py +5 -0
- pulumi_cloudamqp/upgrade_rabbitmq.py +5 -0
- pulumi_cloudamqp/vpc.py +5 -0
- pulumi_cloudamqp/vpc_connect.py +5 -0
- pulumi_cloudamqp/vpc_gcp_peering.py +5 -0
- pulumi_cloudamqp/vpc_peering.py +5 -0
- pulumi_cloudamqp/webhook.py +5 -0
- {pulumi_cloudamqp-3.20.0a1725549739.dist-info → pulumi_cloudamqp-3.20.2.dist-info}/METADATA +3 -2
- pulumi_cloudamqp-3.20.2.dist-info/RECORD +49 -0
- {pulumi_cloudamqp-3.20.0a1725549739.dist-info → pulumi_cloudamqp-3.20.2.dist-info}/WHEEL +1 -1
- pulumi_cloudamqp-3.20.0a1725549739.dist-info/RECORD +0 -49
- {pulumi_cloudamqp-3.20.0a1725549739.dist-info → pulumi_cloudamqp-3.20.2.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -22,9 +27,14 @@ class SecurityFirewallArgs:
|
|
|
22
27
|
timeout: Optional[pulumi.Input[int]] = None):
|
|
23
28
|
"""
|
|
24
29
|
The set of arguments for constructing a SecurityFirewall resource.
|
|
25
|
-
:param pulumi.Input[int] instance_id:
|
|
26
|
-
:param pulumi.Input[
|
|
27
|
-
:param pulumi.Input[int]
|
|
30
|
+
:param pulumi.Input[int] instance_id: The CloudAMQP instance ID.
|
|
31
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityFirewallRuleArgs']]] rules: An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
32
|
+
:param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for firewall configuration. Default set to 30 seconds.
|
|
33
|
+
:param pulumi.Input[int] timeout: Configurable timeout time in seconds for firewall configuration. Default set to 1800 seconds.
|
|
34
|
+
|
|
35
|
+
___
|
|
36
|
+
|
|
37
|
+
The `rules` block consists of:
|
|
28
38
|
"""
|
|
29
39
|
pulumi.set(__self__, "instance_id", instance_id)
|
|
30
40
|
pulumi.set(__self__, "rules", rules)
|
|
@@ -37,7 +47,7 @@ class SecurityFirewallArgs:
|
|
|
37
47
|
@pulumi.getter(name="instanceId")
|
|
38
48
|
def instance_id(self) -> pulumi.Input[int]:
|
|
39
49
|
"""
|
|
40
|
-
|
|
50
|
+
The CloudAMQP instance ID.
|
|
41
51
|
"""
|
|
42
52
|
return pulumi.get(self, "instance_id")
|
|
43
53
|
|
|
@@ -48,6 +58,9 @@ class SecurityFirewallArgs:
|
|
|
48
58
|
@property
|
|
49
59
|
@pulumi.getter
|
|
50
60
|
def rules(self) -> pulumi.Input[Sequence[pulumi.Input['SecurityFirewallRuleArgs']]]:
|
|
61
|
+
"""
|
|
62
|
+
An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
63
|
+
"""
|
|
51
64
|
return pulumi.get(self, "rules")
|
|
52
65
|
|
|
53
66
|
@rules.setter
|
|
@@ -58,7 +71,7 @@ class SecurityFirewallArgs:
|
|
|
58
71
|
@pulumi.getter
|
|
59
72
|
def sleep(self) -> Optional[pulumi.Input[int]]:
|
|
60
73
|
"""
|
|
61
|
-
Configurable sleep time in seconds between retries for firewall configuration
|
|
74
|
+
Configurable sleep time in seconds between retries for firewall configuration. Default set to 30 seconds.
|
|
62
75
|
"""
|
|
63
76
|
return pulumi.get(self, "sleep")
|
|
64
77
|
|
|
@@ -70,7 +83,11 @@ class SecurityFirewallArgs:
|
|
|
70
83
|
@pulumi.getter
|
|
71
84
|
def timeout(self) -> Optional[pulumi.Input[int]]:
|
|
72
85
|
"""
|
|
73
|
-
Configurable timeout time in seconds for firewall configuration
|
|
86
|
+
Configurable timeout time in seconds for firewall configuration. Default set to 1800 seconds.
|
|
87
|
+
|
|
88
|
+
___
|
|
89
|
+
|
|
90
|
+
The `rules` block consists of:
|
|
74
91
|
"""
|
|
75
92
|
return pulumi.get(self, "timeout")
|
|
76
93
|
|
|
@@ -88,9 +105,14 @@ class _SecurityFirewallState:
|
|
|
88
105
|
timeout: Optional[pulumi.Input[int]] = None):
|
|
89
106
|
"""
|
|
90
107
|
Input properties used for looking up and filtering SecurityFirewall resources.
|
|
91
|
-
:param pulumi.Input[int] instance_id:
|
|
92
|
-
:param pulumi.Input[
|
|
93
|
-
:param pulumi.Input[int]
|
|
108
|
+
:param pulumi.Input[int] instance_id: The CloudAMQP instance ID.
|
|
109
|
+
:param pulumi.Input[Sequence[pulumi.Input['SecurityFirewallRuleArgs']]] rules: An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
110
|
+
:param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for firewall configuration. Default set to 30 seconds.
|
|
111
|
+
:param pulumi.Input[int] timeout: Configurable timeout time in seconds for firewall configuration. Default set to 1800 seconds.
|
|
112
|
+
|
|
113
|
+
___
|
|
114
|
+
|
|
115
|
+
The `rules` block consists of:
|
|
94
116
|
"""
|
|
95
117
|
if instance_id is not None:
|
|
96
118
|
pulumi.set(__self__, "instance_id", instance_id)
|
|
@@ -105,7 +127,7 @@ class _SecurityFirewallState:
|
|
|
105
127
|
@pulumi.getter(name="instanceId")
|
|
106
128
|
def instance_id(self) -> Optional[pulumi.Input[int]]:
|
|
107
129
|
"""
|
|
108
|
-
|
|
130
|
+
The CloudAMQP instance ID.
|
|
109
131
|
"""
|
|
110
132
|
return pulumi.get(self, "instance_id")
|
|
111
133
|
|
|
@@ -116,6 +138,9 @@ class _SecurityFirewallState:
|
|
|
116
138
|
@property
|
|
117
139
|
@pulumi.getter
|
|
118
140
|
def rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityFirewallRuleArgs']]]]:
|
|
141
|
+
"""
|
|
142
|
+
An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
143
|
+
"""
|
|
119
144
|
return pulumi.get(self, "rules")
|
|
120
145
|
|
|
121
146
|
@rules.setter
|
|
@@ -126,7 +151,7 @@ class _SecurityFirewallState:
|
|
|
126
151
|
@pulumi.getter
|
|
127
152
|
def sleep(self) -> Optional[pulumi.Input[int]]:
|
|
128
153
|
"""
|
|
129
|
-
Configurable sleep time in seconds between retries for firewall configuration
|
|
154
|
+
Configurable sleep time in seconds between retries for firewall configuration. Default set to 30 seconds.
|
|
130
155
|
"""
|
|
131
156
|
return pulumi.get(self, "sleep")
|
|
132
157
|
|
|
@@ -138,7 +163,11 @@ class _SecurityFirewallState:
|
|
|
138
163
|
@pulumi.getter
|
|
139
164
|
def timeout(self) -> Optional[pulumi.Input[int]]:
|
|
140
165
|
"""
|
|
141
|
-
Configurable timeout time in seconds for firewall configuration
|
|
166
|
+
Configurable timeout time in seconds for firewall configuration. Default set to 1800 seconds.
|
|
167
|
+
|
|
168
|
+
___
|
|
169
|
+
|
|
170
|
+
The `rules` block consists of:
|
|
142
171
|
"""
|
|
143
172
|
return pulumi.get(self, "timeout")
|
|
144
173
|
|
|
@@ -168,9 +197,14 @@ class SecurityFirewall(pulumi.CustomResource):
|
|
|
168
197
|
|
|
169
198
|
:param str resource_name: The name of the resource.
|
|
170
199
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
171
|
-
:param pulumi.Input[int] instance_id:
|
|
172
|
-
:param pulumi.Input[
|
|
173
|
-
:param pulumi.Input[int]
|
|
200
|
+
:param pulumi.Input[int] instance_id: The CloudAMQP instance ID.
|
|
201
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SecurityFirewallRuleArgs', 'SecurityFirewallRuleArgsDict']]]] rules: An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
202
|
+
:param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for firewall configuration. Default set to 30 seconds.
|
|
203
|
+
:param pulumi.Input[int] timeout: Configurable timeout time in seconds for firewall configuration. Default set to 1800 seconds.
|
|
204
|
+
|
|
205
|
+
___
|
|
206
|
+
|
|
207
|
+
The `rules` block consists of:
|
|
174
208
|
"""
|
|
175
209
|
...
|
|
176
210
|
@overload
|
|
@@ -244,9 +278,14 @@ class SecurityFirewall(pulumi.CustomResource):
|
|
|
244
278
|
:param str resource_name: The unique name of the resulting resource.
|
|
245
279
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
246
280
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
247
|
-
:param pulumi.Input[int] instance_id:
|
|
248
|
-
:param pulumi.Input[
|
|
249
|
-
:param pulumi.Input[int]
|
|
281
|
+
:param pulumi.Input[int] instance_id: The CloudAMQP instance ID.
|
|
282
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SecurityFirewallRuleArgs', 'SecurityFirewallRuleArgsDict']]]] rules: An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
283
|
+
:param pulumi.Input[int] sleep: Configurable sleep time in seconds between retries for firewall configuration. Default set to 30 seconds.
|
|
284
|
+
:param pulumi.Input[int] timeout: Configurable timeout time in seconds for firewall configuration. Default set to 1800 seconds.
|
|
285
|
+
|
|
286
|
+
___
|
|
287
|
+
|
|
288
|
+
The `rules` block consists of:
|
|
250
289
|
"""
|
|
251
290
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
252
291
|
|
|
@@ -262,20 +301,23 @@ class SecurityFirewall(pulumi.CustomResource):
|
|
|
262
301
|
@pulumi.getter(name="instanceId")
|
|
263
302
|
def instance_id(self) -> pulumi.Output[int]:
|
|
264
303
|
"""
|
|
265
|
-
|
|
304
|
+
The CloudAMQP instance ID.
|
|
266
305
|
"""
|
|
267
306
|
return pulumi.get(self, "instance_id")
|
|
268
307
|
|
|
269
308
|
@property
|
|
270
309
|
@pulumi.getter
|
|
271
310
|
def rules(self) -> pulumi.Output[Sequence['outputs.SecurityFirewallRule']]:
|
|
311
|
+
"""
|
|
312
|
+
An array of rules, minimum of 1 needs to be configured. Each `rules` block consists of the field documented below.
|
|
313
|
+
"""
|
|
272
314
|
return pulumi.get(self, "rules")
|
|
273
315
|
|
|
274
316
|
@property
|
|
275
317
|
@pulumi.getter
|
|
276
318
|
def sleep(self) -> pulumi.Output[Optional[int]]:
|
|
277
319
|
"""
|
|
278
|
-
Configurable sleep time in seconds between retries for firewall configuration
|
|
320
|
+
Configurable sleep time in seconds between retries for firewall configuration. Default set to 30 seconds.
|
|
279
321
|
"""
|
|
280
322
|
return pulumi.get(self, "sleep")
|
|
281
323
|
|
|
@@ -283,7 +325,11 @@ class SecurityFirewall(pulumi.CustomResource):
|
|
|
283
325
|
@pulumi.getter
|
|
284
326
|
def timeout(self) -> pulumi.Output[Optional[int]]:
|
|
285
327
|
"""
|
|
286
|
-
Configurable timeout time in seconds for firewall configuration
|
|
328
|
+
Configurable timeout time in seconds for firewall configuration. Default set to 1800 seconds.
|
|
329
|
+
|
|
330
|
+
___
|
|
331
|
+
|
|
332
|
+
The `rules` block consists of:
|
|
287
333
|
"""
|
|
288
334
|
return pulumi.get(self, "timeout")
|
|
289
335
|
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['UpgradeLavinmqArgs', 'UpgradeLavinmq']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['UpgradeRabbitmqArgs', 'UpgradeRabbitmq']
|
pulumi_cloudamqp/vpc.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['VpcArgs', 'Vpc']
|
pulumi_cloudamqp/vpc_connect.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['VpcConnectArgs', 'VpcConnect']
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['VpcGcpPeeringArgs', 'VpcGcpPeering']
|
pulumi_cloudamqp/vpc_peering.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['VpcPeeringArgs', 'VpcPeering']
|
pulumi_cloudamqp/webhook.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['WebhookArgs', 'Webhook']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_cloudamqp
|
|
3
|
-
Version: 3.20.
|
|
3
|
+
Version: 3.20.2
|
|
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
|
|
@@ -9,8 +9,9 @@ Keywords: pulumi,cloudamqp
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.136.0
|
|
13
13
|
Requires-Dist: semver >=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
[](https://github.com/pulumi/pulumi-cloudamqp/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
pulumi_cloudamqp/__init__.py,sha256=bT-kE4oeSjvg0GGN_7rnfIasA01nGKIk0MKXAMG0VEo,5762
|
|
2
|
+
pulumi_cloudamqp/_inputs.py,sha256=dRt4old8_KXd1ZpW2tO2yat1JFOnGCY9Ypuu-DSHqeY,13425
|
|
3
|
+
pulumi_cloudamqp/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
|
+
pulumi_cloudamqp/account_action.py,sha256=Gg38aF7VXXAX_76oVNm96WZTfNKYCRTKw6BVtm_IL6c,7862
|
|
5
|
+
pulumi_cloudamqp/alarm.py,sha256=oE6D5-NG3BsczJlkIiF7GknsrCskCakolw8VF_f4-MU,28911
|
|
6
|
+
pulumi_cloudamqp/custom_domain.py,sha256=MQJj8OxYbOn6j_8muF2SLJd9AvlgcVN5dmjrqb4Me7k,10169
|
|
7
|
+
pulumi_cloudamqp/extra_disk_size.py,sha256=BFoAykaRDsSjzhXAoh9OkJSrhLBjCkXq5COCZNiGI_k,27934
|
|
8
|
+
pulumi_cloudamqp/get_account.py,sha256=laVU73blEFaDhDsEJ5BSe71KrP0ItmrZVEk03r56ZuI,3124
|
|
9
|
+
pulumi_cloudamqp/get_account_vpcs.py,sha256=_tuVYJvpIqEpS8R0OYq0woCaxcGbTO1VVlwWEM7yXmc,5647
|
|
10
|
+
pulumi_cloudamqp/get_alarm.py,sha256=RADBSee9G6hD_wkyWiRN3FDUULBso5r69pd9wStHIzQ,12947
|
|
11
|
+
pulumi_cloudamqp/get_credentials.py,sha256=Z_hTXN9m7fFt2uQC2zRJJV3aNwctt7umXvUKHzrlWnY,5543
|
|
12
|
+
pulumi_cloudamqp/get_instance.py,sha256=75V86nMi2Cn4gOfANDQyApYkZ3F_gAsacRZ5OtcPkN4,10854
|
|
13
|
+
pulumi_cloudamqp/get_nodes.py,sha256=Q7ofWbiZ3UYH5Mw4jRLznXouYeWmeOAk9i8SCChWUhQ,6371
|
|
14
|
+
pulumi_cloudamqp/get_notification.py,sha256=0FxYV2vif36U4YMsTujZA3Klv7kWagiq4yvYo6qKBsY,7950
|
|
15
|
+
pulumi_cloudamqp/get_plugins.py,sha256=qxG8yPBWfp48_xe2gT0M60xm058LYSFj-sJgppuQmxo,7329
|
|
16
|
+
pulumi_cloudamqp/get_plugins_community.py,sha256=BIJ1aAN89N934PX6fQzr9mdlw84Ldt5MMBYohclcTWY,7529
|
|
17
|
+
pulumi_cloudamqp/get_upgradable_versions.py,sha256=Wl0LKLAsGy202nqpQ_rVQw1MHXfihsi_DFyhAvvwhMg,5812
|
|
18
|
+
pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=HSDnkz3U3bLOStI_xwnnm3GI-sYVFf8kzQOqYgmPxPk,9983
|
|
19
|
+
pulumi_cloudamqp/get_vpc_info.py,sha256=rE3rnkkSleuykZwabGsUNhbnUTMol7Yl2CnH5u0p1fA,9043
|
|
20
|
+
pulumi_cloudamqp/instance.py,sha256=kqK8xBBGYd8R10m7p05oftwieX-2BnxEE8YDYI400r8,59175
|
|
21
|
+
pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=IvqwG8SwNqSAaDN9JtCoA36gBkoFpFFiwy2IRgL7WT8,22457
|
|
22
|
+
pulumi_cloudamqp/integration_log.py,sha256=CIcU5_TMIWeGGnShvXmaBc6amK6I_EDNXWiu4SDVn5k,67955
|
|
23
|
+
pulumi_cloudamqp/integration_metric.py,sha256=A2_lNVlHlX7Jx7ZyXKFPscan95Mo6B7DTcjvpJuRLFI,54149
|
|
24
|
+
pulumi_cloudamqp/node_actions.py,sha256=lzOBM5UFDfz4SBcOs9jT5QnJI-7oHVMqJXukV4pwmYA,18315
|
|
25
|
+
pulumi_cloudamqp/notification.py,sha256=mDdUCirSx_pKh5-AgclGRNR9ILCSb_3Dtiry7sRsncM,28450
|
|
26
|
+
pulumi_cloudamqp/outputs.py,sha256=jTOyqw5MAyXBYUIL1Ob7maMLJBvcqmIi9pWQgK8mMJM,17118
|
|
27
|
+
pulumi_cloudamqp/plugin.py,sha256=-ntjQEgqztWqVO1Vc3uf6sMp4hXtfBltwAF-T91UgmQ,16629
|
|
28
|
+
pulumi_cloudamqp/plugin_community.py,sha256=hIEB_d86kxemjJvGrxJkUl_Q3pNrpRCS1YPFa2StLJk,17065
|
|
29
|
+
pulumi_cloudamqp/privatelink_aws.py,sha256=xWifEEsK9dIGNNaVBzwIDRB4Ka2TIqGyEdUPhVU4KJY,28007
|
|
30
|
+
pulumi_cloudamqp/privatelink_azure.py,sha256=HqfcVHBorM9-BEQZGvQzlVRGA0_qwIqNkbJ_tI2iMMU,27263
|
|
31
|
+
pulumi_cloudamqp/provider.py,sha256=ZsS3-l32jj2k9OK4bNg4MCgazokJJzV6IZwhfg2jxl4,6722
|
|
32
|
+
pulumi_cloudamqp/pulumi-plugin.json,sha256=JAlxHoHNxWwl1Mad6AvP21JEIcxkZfcm3RAjIlAfbJk,69
|
|
33
|
+
pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
pulumi_cloudamqp/rabbit_configuration.py,sha256=ZJxTD6BbI1RQxvzBDhWvr9ZuG5DexjfPJYnzE8z5WG4,32904
|
|
35
|
+
pulumi_cloudamqp/security_firewall.py,sha256=RLEXyTVlUuKLv6FWMbRIIy-o57BwNOSpFCcdWb-cZy0,14220
|
|
36
|
+
pulumi_cloudamqp/upgrade_lavinmq.py,sha256=SWZ8AVQiiX4qHxo3xbSwN6lmnPpQU0PuYqv14KZRHic,10187
|
|
37
|
+
pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=d2agnQlxeX1VrfbDv71fmHGXV9GA3fMyNSh27-3N96A,21486
|
|
38
|
+
pulumi_cloudamqp/vpc.py,sha256=Jl43qkKCpU5G0EvPFxk_cmJ5fHHOm8p6rqesOslN7vY,14804
|
|
39
|
+
pulumi_cloudamqp/vpc_connect.py,sha256=FhjwUXWhtwxFs8QdfTmY-7CgGJA5vqFUa64JEnBfU54,44926
|
|
40
|
+
pulumi_cloudamqp/vpc_gcp_peering.py,sha256=AEopFI0xgSCa4VXHumJhu86bAa8zVSFGVdyCfAGwpE0,35611
|
|
41
|
+
pulumi_cloudamqp/vpc_peering.py,sha256=XWnpBOzgACT91Qvhs_YTOZdNzUPk37dOIkJ7co4UgYk,16525
|
|
42
|
+
pulumi_cloudamqp/webhook.py,sha256=WvJR3xfmIY9s8MrSaoD3wVuMwjlr8CbWLhB59PZFRFA,17501
|
|
43
|
+
pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
44
|
+
pulumi_cloudamqp/config/__init__.pyi,sha256=yRca3CWiHsleY1obkjqWJfprOQN8wfAyE-mfc0MtmJ4,723
|
|
45
|
+
pulumi_cloudamqp/config/vars.py,sha256=mXJq-A9lp-pr14Qy0DIYCzi3lavA-QL1eDCUw0lFoX0,1113
|
|
46
|
+
pulumi_cloudamqp-3.20.2.dist-info/METADATA,sha256=PgqLYMTxGWf_dBp0OY-pDoxjmuUOWaHuL9ciKiv7lGg,2812
|
|
47
|
+
pulumi_cloudamqp-3.20.2.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
48
|
+
pulumi_cloudamqp-3.20.2.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
|
|
49
|
+
pulumi_cloudamqp-3.20.2.dist-info/RECORD,,
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
pulumi_cloudamqp/__init__.py,sha256=bT-kE4oeSjvg0GGN_7rnfIasA01nGKIk0MKXAMG0VEo,5762
|
|
2
|
-
pulumi_cloudamqp/_inputs.py,sha256=oKjcIeymBER8EgwRCQVWe2s7w2oVPdgRZJiltk3XvqQ,8830
|
|
3
|
-
pulumi_cloudamqp/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
4
|
-
pulumi_cloudamqp/account_action.py,sha256=s-hJMsKAoKNPDUW3sNI-I8jtoLEy6g57e5gQ3nXzk6U,7688
|
|
5
|
-
pulumi_cloudamqp/alarm.py,sha256=TyaVOiWMPIunhmYMd9Lrr5W9Lzh22-hVe4KkbDsAr7o,28737
|
|
6
|
-
pulumi_cloudamqp/custom_domain.py,sha256=m98sZJNbs4bINPxhIfsG37Xyr3u-0Sc6tKURZS-8R0Y,9995
|
|
7
|
-
pulumi_cloudamqp/extra_disk_size.py,sha256=JJRLMMl90TQqmsAzskJKrs8-LRv6k3s0__K8q10kPgg,27760
|
|
8
|
-
pulumi_cloudamqp/get_account.py,sha256=rUzBSpqRfOxo0uCCSIKaEDXvR76lXYK3ysx94AooVTA,2605
|
|
9
|
-
pulumi_cloudamqp/get_account_vpcs.py,sha256=Pej4T-YmSd4x0ZeHJa_R7C4WFPNcqywPoder4SXvCDY,5127
|
|
10
|
-
pulumi_cloudamqp/get_alarm.py,sha256=d2s6GrR0hjtq2MXxPl6u-VfMf9XzrbFmsgwh1Lwy4SQ,11592
|
|
11
|
-
pulumi_cloudamqp/get_credentials.py,sha256=gqQDhS8SZO06Y2SXLL1KPI9JXn_wKRvAc5V5TQ9NMpA,4857
|
|
12
|
-
pulumi_cloudamqp/get_instance.py,sha256=aerhBMj1d-x6EMdiR1PnBzE1KW6gr0miXWml_lYW14A,9386
|
|
13
|
-
pulumi_cloudamqp/get_nodes.py,sha256=h4TtZPKS1D5CpC3K8h26IcQwSqD3rBo5yo2tDaRW41U,5764
|
|
14
|
-
pulumi_cloudamqp/get_notification.py,sha256=SRnjv_M_vICk_o56tfe83vrPZGveyD84T_WHA0e1nEc,7007
|
|
15
|
-
pulumi_cloudamqp/get_plugins.py,sha256=sFF0k2iJqevBmeJCgLH55zeq8U4reXiJSgrClLiMx5E,5488
|
|
16
|
-
pulumi_cloudamqp/get_plugins_community.py,sha256=kp99ZUo1Jk_nvapK-Mkn2B1cmpTp6Tolz8e7Qrd0r84,5622
|
|
17
|
-
pulumi_cloudamqp/get_upgradable_versions.py,sha256=CjPl8qk7tHpDGeuipnh65TgthV_WW1rvsprmofAgOXY,5062
|
|
18
|
-
pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=9KAik-_oEzLOAYu0SNGHJ4DPwVQiRtkRox4tjMWewvI,9005
|
|
19
|
-
pulumi_cloudamqp/get_vpc_info.py,sha256=pBMRngdtxEjRLuXdC5UcWhNOeY-Nlk-D64fwUeL4YpI,8164
|
|
20
|
-
pulumi_cloudamqp/instance.py,sha256=fngTEsmAkXcIvOLnw7BtASPR1u-9jUjP2R9YFFDw5Bw,59001
|
|
21
|
-
pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=zgL7vIMKmid8cKIEZFMoiqU8KD_MGbfizf8VRHvpb_U,22283
|
|
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=Y3aqx219cQbYD-ZYfGjE8vsw-4lKd-EN1z3oYHAsqR8,28276
|
|
26
|
-
pulumi_cloudamqp/outputs.py,sha256=5OKhoZm9NSrbye_gVr7ILXU-9ca72BHcgEOJjHKiVFQ,17346
|
|
27
|
-
pulumi_cloudamqp/plugin.py,sha256=-FDLDuRtPB8cdE62Uk_3BYcR25ARyUXMCeZQ9bHGNS0,14901
|
|
28
|
-
pulumi_cloudamqp/plugin_community.py,sha256=Qwu7EfyGQ9BMMdXvKLrXioiVauDMxPNdmMlGqxW4jw8,15127
|
|
29
|
-
pulumi_cloudamqp/privatelink_aws.py,sha256=kEaLaTYaIYzHHqeX4SDMRHQr9vC7tIQ_fnguXQvwcVo,27833
|
|
30
|
-
pulumi_cloudamqp/privatelink_azure.py,sha256=5-4XIXFf8WBdtSma_zv2vE55acOB2b9AMLwsMIIRklQ,27089
|
|
31
|
-
pulumi_cloudamqp/provider.py,sha256=IwRPYsuoOzrUzVP2gmjIZ59mGte5_b0cd8_HYF0HhRc,6548
|
|
32
|
-
pulumi_cloudamqp/pulumi-plugin.json,sha256=lzd3jofXjI2yZ-cyzH965M3qfL176ytnevh8XVnyhkw,86
|
|
33
|
-
pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
pulumi_cloudamqp/rabbit_configuration.py,sha256=9qT6ABDHPcurBcmlckrHJ_tt-SV5vGARHpF9xXWa0Pc,32730
|
|
35
|
-
pulumi_cloudamqp/security_firewall.py,sha256=CVvmLhcosWi6qbqUhRWONE-Gf0OzgIsJc-iLhlDJNu4,11717
|
|
36
|
-
pulumi_cloudamqp/upgrade_lavinmq.py,sha256=2fOWVCh8ba7t5C3odQkD2_ceLMSLIztcXYQMr6gNpFY,10013
|
|
37
|
-
pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=EaE-5_C02HEbyhQVwAtZjfAcZyplePG-gRsdsKnLEWo,21312
|
|
38
|
-
pulumi_cloudamqp/vpc.py,sha256=IpI_5Gqxjio5LO9AbVEDQQS43xxPDRY0RUZaJK80Odw,14630
|
|
39
|
-
pulumi_cloudamqp/vpc_connect.py,sha256=9znqhMo8y8U0YMeOw06zFTy0lSNfQT7xQX_aXgjCNws,44752
|
|
40
|
-
pulumi_cloudamqp/vpc_gcp_peering.py,sha256=gkhCSI7y5fRiFVmqIXRbur4R26a98bTFvUeVtc4knQg,35437
|
|
41
|
-
pulumi_cloudamqp/vpc_peering.py,sha256=1AsazWnJdpiKFKnLl7lHy6aJJrgFIG7FbHxJfN8hBzM,16351
|
|
42
|
-
pulumi_cloudamqp/webhook.py,sha256=szPc8AXkT-5xk3JfGOBdBcPMnnkZr02fpD_beQ_uyzI,17327
|
|
43
|
-
pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
44
|
-
pulumi_cloudamqp/config/__init__.pyi,sha256=UHTIxCey3Zv15sJPQ4FzkPz4--aJNEcw9OwBw7Q2kzc,549
|
|
45
|
-
pulumi_cloudamqp/config/vars.py,sha256=oFfIlqwVoffHyMowmkb9op1W1MBcSamLeviHi6IZino,939
|
|
46
|
-
pulumi_cloudamqp-3.20.0a1725549739.dist-info/METADATA,sha256=B3-DWnK9BJa2dk9ZNkXxVlNIfg8Ibn9yf271Dxnl9gQ,2755
|
|
47
|
-
pulumi_cloudamqp-3.20.0a1725549739.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
48
|
-
pulumi_cloudamqp-3.20.0a1725549739.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
|
|
49
|
-
pulumi_cloudamqp-3.20.0a1725549739.dist-info/RECORD,,
|
{pulumi_cloudamqp-3.20.0a1725549739.dist-info → pulumi_cloudamqp-3.20.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|