pulumi-cloudamqp 3.22.0a1746163592__py3-none-any.whl → 3.23.0__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.
- pulumi_cloudamqp/__init__.py +6 -4
- pulumi_cloudamqp/_inputs.py +1 -1
- pulumi_cloudamqp/_utilities.py +1 -1
- pulumi_cloudamqp/{account_action.py → account_actions.py} +34 -49
- pulumi_cloudamqp/alarm.py +2 -4
- pulumi_cloudamqp/config/__init__.py +1 -1
- pulumi_cloudamqp/config/__init__.pyi +1 -1
- pulumi_cloudamqp/config/vars.py +1 -1
- pulumi_cloudamqp/custom_domain.py +2 -4
- pulumi_cloudamqp/extra_disk_size.py +2 -4
- pulumi_cloudamqp/get_account.py +1 -1
- pulumi_cloudamqp/get_account_vpcs.py +1 -1
- pulumi_cloudamqp/get_alarm.py +1 -1
- pulumi_cloudamqp/get_alarms.py +165 -0
- pulumi_cloudamqp/get_credentials.py +1 -1
- pulumi_cloudamqp/get_instance.py +1 -1
- pulumi_cloudamqp/get_nodes.py +1 -1
- pulumi_cloudamqp/get_notification.py +1 -1
- pulumi_cloudamqp/get_notifications.py +135 -0
- pulumi_cloudamqp/get_plugins.py +1 -1
- pulumi_cloudamqp/get_plugins_community.py +1 -1
- pulumi_cloudamqp/get_upgradable_versions.py +1 -1
- pulumi_cloudamqp/get_vpc_gcp_info.py +1 -1
- pulumi_cloudamqp/get_vpc_info.py +1 -1
- pulumi_cloudamqp/instance.py +2 -4
- pulumi_cloudamqp/integration_aws_eventbridge.py +2 -4
- pulumi_cloudamqp/integration_log.py +2 -4
- pulumi_cloudamqp/integration_metric.py +2 -4
- pulumi_cloudamqp/maintenance_window.py +2 -4
- pulumi_cloudamqp/node_actions.py +2 -4
- pulumi_cloudamqp/notification.py +2 -4
- pulumi_cloudamqp/outputs.py +204 -1
- pulumi_cloudamqp/plugin.py +2 -4
- pulumi_cloudamqp/plugin_community.py +2 -4
- pulumi_cloudamqp/privatelink_aws.py +2 -4
- pulumi_cloudamqp/privatelink_azure.py +2 -4
- pulumi_cloudamqp/provider.py +29 -12
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +4 -20
- pulumi_cloudamqp/security_firewall.py +2 -4
- pulumi_cloudamqp/upgrade_lavinmq.py +2 -4
- pulumi_cloudamqp/upgrade_rabbitmq.py +2 -4
- pulumi_cloudamqp/vpc.py +2 -4
- pulumi_cloudamqp/vpc_connect.py +2 -4
- pulumi_cloudamqp/vpc_gcp_peering.py +2 -4
- pulumi_cloudamqp/vpc_peering.py +2 -4
- pulumi_cloudamqp/webhook.py +2 -4
- {pulumi_cloudamqp-3.22.0a1746163592.dist-info → pulumi_cloudamqp-3.23.0.dist-info}/METADATA +3 -3
- pulumi_cloudamqp-3.23.0.dist-info/RECORD +52 -0
- {pulumi_cloudamqp-3.22.0a1746163592.dist-info → pulumi_cloudamqp-3.23.0.dist-info}/WHEEL +1 -1
- pulumi_cloudamqp-3.22.0a1746163592.dist-info/RECORD +0 -50
- {pulumi_cloudamqp-3.22.0a1746163592.dist-info → pulumi_cloudamqp-3.23.0.dist-info}/top_level.txt +0 -0
pulumi_cloudamqp/provider.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -20,7 +20,7 @@ __all__ = ['ProviderArgs', 'Provider']
|
|
|
20
20
|
@pulumi.input_type
|
|
21
21
|
class ProviderArgs:
|
|
22
22
|
def __init__(__self__, *,
|
|
23
|
-
apikey: pulumi.Input[builtins.str],
|
|
23
|
+
apikey: Optional[pulumi.Input[builtins.str]] = None,
|
|
24
24
|
baseurl: Optional[pulumi.Input[builtins.str]] = None,
|
|
25
25
|
enable_faster_instance_destroy: Optional[pulumi.Input[builtins.bool]] = None):
|
|
26
26
|
"""
|
|
@@ -28,7 +28,8 @@ class ProviderArgs:
|
|
|
28
28
|
:param pulumi.Input[builtins.str] apikey: Key used to authentication to the CloudAMQP Customer API
|
|
29
29
|
:param pulumi.Input[builtins.str] baseurl: Base URL to CloudAMQP Customer website
|
|
30
30
|
"""
|
|
31
|
-
|
|
31
|
+
if apikey is not None:
|
|
32
|
+
pulumi.set(__self__, "apikey", apikey)
|
|
32
33
|
if baseurl is not None:
|
|
33
34
|
pulumi.set(__self__, "baseurl", baseurl)
|
|
34
35
|
if enable_faster_instance_destroy is not None:
|
|
@@ -36,14 +37,14 @@ class ProviderArgs:
|
|
|
36
37
|
|
|
37
38
|
@property
|
|
38
39
|
@pulumi.getter
|
|
39
|
-
def apikey(self) -> pulumi.Input[builtins.str]:
|
|
40
|
+
def apikey(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
40
41
|
"""
|
|
41
42
|
Key used to authentication to the CloudAMQP Customer API
|
|
42
43
|
"""
|
|
43
44
|
return pulumi.get(self, "apikey")
|
|
44
45
|
|
|
45
46
|
@apikey.setter
|
|
46
|
-
def apikey(self, value: pulumi.Input[builtins.str]):
|
|
47
|
+
def apikey(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
47
48
|
pulumi.set(self, "apikey", value)
|
|
48
49
|
|
|
49
50
|
@property
|
|
@@ -68,10 +69,8 @@ class ProviderArgs:
|
|
|
68
69
|
pulumi.set(self, "enable_faster_instance_destroy", value)
|
|
69
70
|
|
|
70
71
|
|
|
72
|
+
@pulumi.type_token("pulumi:providers:cloudamqp")
|
|
71
73
|
class Provider(pulumi.ProviderResource):
|
|
72
|
-
|
|
73
|
-
pulumi_type = "pulumi:providers:cloudamqp"
|
|
74
|
-
|
|
75
74
|
@overload
|
|
76
75
|
def __init__(__self__,
|
|
77
76
|
resource_name: str,
|
|
@@ -95,7 +94,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
95
94
|
@overload
|
|
96
95
|
def __init__(__self__,
|
|
97
96
|
resource_name: str,
|
|
98
|
-
args: ProviderArgs,
|
|
97
|
+
args: Optional[ProviderArgs] = None,
|
|
99
98
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
100
99
|
"""
|
|
101
100
|
The provider type for the cloudamqp package. By default, resources use package-wide configuration
|
|
@@ -130,8 +129,6 @@ class Provider(pulumi.ProviderResource):
|
|
|
130
129
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
131
130
|
__props__ = ProviderArgs.__new__(ProviderArgs)
|
|
132
131
|
|
|
133
|
-
if apikey is None and not opts.urn:
|
|
134
|
-
raise TypeError("Missing required property 'apikey'")
|
|
135
132
|
__props__.__dict__["apikey"] = apikey
|
|
136
133
|
__props__.__dict__["baseurl"] = baseurl
|
|
137
134
|
__props__.__dict__["enable_faster_instance_destroy"] = pulumi.Output.from_input(enable_faster_instance_destroy).apply(pulumi.runtime.to_json) if enable_faster_instance_destroy is not None else None
|
|
@@ -143,7 +140,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
143
140
|
|
|
144
141
|
@property
|
|
145
142
|
@pulumi.getter
|
|
146
|
-
def apikey(self) -> pulumi.Output[builtins.str]:
|
|
143
|
+
def apikey(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
147
144
|
"""
|
|
148
145
|
Key used to authentication to the CloudAMQP Customer API
|
|
149
146
|
"""
|
|
@@ -157,3 +154,23 @@ class Provider(pulumi.ProviderResource):
|
|
|
157
154
|
"""
|
|
158
155
|
return pulumi.get(self, "baseurl")
|
|
159
156
|
|
|
157
|
+
@pulumi.output_type
|
|
158
|
+
class TerraformConfigResult:
|
|
159
|
+
def __init__(__self__, result=None):
|
|
160
|
+
if result and not isinstance(result, dict):
|
|
161
|
+
raise TypeError("Expected argument 'result' to be a dict")
|
|
162
|
+
pulumi.set(__self__, "result", result)
|
|
163
|
+
|
|
164
|
+
@property
|
|
165
|
+
@pulumi.getter
|
|
166
|
+
def result(self) -> Mapping[str, Any]:
|
|
167
|
+
return pulumi.get(self, "result")
|
|
168
|
+
|
|
169
|
+
def terraform_config(__self__) -> pulumi.Output['Provider.TerraformConfigResult']:
|
|
170
|
+
"""
|
|
171
|
+
This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider.
|
|
172
|
+
"""
|
|
173
|
+
__args__ = dict()
|
|
174
|
+
__args__['__self__'] = __self__
|
|
175
|
+
return pulumi.runtime.call('pulumi:providers:cloudamqp/terraformConfig', __args__, res=__self__, typ=Provider.TerraformConfigResult)
|
|
176
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -48,8 +48,6 @@ class RabbitConfigurationArgs:
|
|
|
48
48
|
in seconds.
|
|
49
49
|
:param pulumi.Input[builtins.str] log_exchange_level: Log level for the logger used for log
|
|
50
50
|
integrations and the CloudAMQP Console log view.
|
|
51
|
-
|
|
52
|
-
***Note:*** Requires a restart of RabbitMQ to be applied.
|
|
53
51
|
:param pulumi.Input[builtins.int] max_message_size: The largest allowed message payload size in
|
|
54
52
|
bytes.
|
|
55
53
|
:param pulumi.Input[builtins.int] queue_index_embed_msgs_below: Size in bytes below which to embed messages
|
|
@@ -170,8 +168,6 @@ class RabbitConfigurationArgs:
|
|
|
170
168
|
"""
|
|
171
169
|
Log level for the logger used for log
|
|
172
170
|
integrations and the CloudAMQP Console log view.
|
|
173
|
-
|
|
174
|
-
***Note:*** Requires a restart of RabbitMQ to be applied.
|
|
175
171
|
"""
|
|
176
172
|
return pulumi.get(self, "log_exchange_level")
|
|
177
173
|
|
|
@@ -277,8 +273,6 @@ class _RabbitConfigurationState:
|
|
|
277
273
|
:param pulumi.Input[builtins.int] instance_id: The CloudAMQP instance ID.
|
|
278
274
|
:param pulumi.Input[builtins.str] log_exchange_level: Log level for the logger used for log
|
|
279
275
|
integrations and the CloudAMQP Console log view.
|
|
280
|
-
|
|
281
|
-
***Note:*** Requires a restart of RabbitMQ to be applied.
|
|
282
276
|
:param pulumi.Input[builtins.int] max_message_size: The largest allowed message payload size in
|
|
283
277
|
bytes.
|
|
284
278
|
:param pulumi.Input[builtins.int] queue_index_embed_msgs_below: Size in bytes below which to embed messages
|
|
@@ -400,8 +394,6 @@ class _RabbitConfigurationState:
|
|
|
400
394
|
"""
|
|
401
395
|
Log level for the logger used for log
|
|
402
396
|
integrations and the CloudAMQP Console log view.
|
|
403
|
-
|
|
404
|
-
***Note:*** Requires a restart of RabbitMQ to be applied.
|
|
405
397
|
"""
|
|
406
398
|
return pulumi.get(self, "log_exchange_level")
|
|
407
399
|
|
|
@@ -476,10 +468,8 @@ class _RabbitConfigurationState:
|
|
|
476
468
|
pulumi.set(self, "vm_memory_high_watermark", value)
|
|
477
469
|
|
|
478
470
|
|
|
471
|
+
@pulumi.type_token("cloudamqp:index/rabbitConfiguration:RabbitConfiguration")
|
|
479
472
|
class RabbitConfiguration(pulumi.CustomResource):
|
|
480
|
-
|
|
481
|
-
pulumi_type = "cloudamqp:index/rabbitConfiguration:RabbitConfiguration"
|
|
482
|
-
|
|
483
473
|
@overload
|
|
484
474
|
def __init__(__self__,
|
|
485
475
|
resource_name: str,
|
|
@@ -538,8 +528,6 @@ class RabbitConfiguration(pulumi.CustomResource):
|
|
|
538
528
|
:param pulumi.Input[builtins.int] instance_id: The CloudAMQP instance ID.
|
|
539
529
|
:param pulumi.Input[builtins.str] log_exchange_level: Log level for the logger used for log
|
|
540
530
|
integrations and the CloudAMQP Console log view.
|
|
541
|
-
|
|
542
|
-
***Note:*** Requires a restart of RabbitMQ to be applied.
|
|
543
531
|
:param pulumi.Input[builtins.int] max_message_size: The largest allowed message payload size in
|
|
544
532
|
bytes.
|
|
545
533
|
:param pulumi.Input[builtins.int] queue_index_embed_msgs_below: Size in bytes below which to embed messages
|
|
@@ -676,8 +664,6 @@ class RabbitConfiguration(pulumi.CustomResource):
|
|
|
676
664
|
:param pulumi.Input[builtins.int] instance_id: The CloudAMQP instance ID.
|
|
677
665
|
:param pulumi.Input[builtins.str] log_exchange_level: Log level for the logger used for log
|
|
678
666
|
integrations and the CloudAMQP Console log view.
|
|
679
|
-
|
|
680
|
-
***Note:*** Requires a restart of RabbitMQ to be applied.
|
|
681
667
|
:param pulumi.Input[builtins.int] max_message_size: The largest allowed message payload size in
|
|
682
668
|
bytes.
|
|
683
669
|
:param pulumi.Input[builtins.int] queue_index_embed_msgs_below: Size in bytes below which to embed messages
|
|
@@ -768,8 +754,6 @@ class RabbitConfiguration(pulumi.CustomResource):
|
|
|
768
754
|
"""
|
|
769
755
|
Log level for the logger used for log
|
|
770
756
|
integrations and the CloudAMQP Console log view.
|
|
771
|
-
|
|
772
|
-
***Note:*** Requires a restart of RabbitMQ to be applied.
|
|
773
757
|
"""
|
|
774
758
|
return pulumi.get(self, "log_exchange_level")
|
|
775
759
|
|
|
@@ -794,7 +778,7 @@ class RabbitConfiguration(pulumi.CustomResource):
|
|
|
794
778
|
|
|
795
779
|
@property
|
|
796
780
|
@pulumi.getter
|
|
797
|
-
def sleep(self) -> pulumi.Output[
|
|
781
|
+
def sleep(self) -> pulumi.Output[builtins.int]:
|
|
798
782
|
"""
|
|
799
783
|
Configurable sleep time in seconds between retries
|
|
800
784
|
for RabbitMQ configuration. Default set to 60 seconds.
|
|
@@ -803,7 +787,7 @@ class RabbitConfiguration(pulumi.CustomResource):
|
|
|
803
787
|
|
|
804
788
|
@property
|
|
805
789
|
@pulumi.getter
|
|
806
|
-
def timeout(self) -> pulumi.Output[
|
|
790
|
+
def timeout(self) -> pulumi.Output[builtins.int]:
|
|
807
791
|
"""
|
|
808
792
|
Configurable timeout time in seconds for RabbitMQ
|
|
809
793
|
configuration. Default set to 3600 seconds.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -189,10 +189,8 @@ class _SecurityFirewallState:
|
|
|
189
189
|
pulumi.set(self, "timeout", value)
|
|
190
190
|
|
|
191
191
|
|
|
192
|
+
@pulumi.type_token("cloudamqp:index/securityFirewall:SecurityFirewall")
|
|
192
193
|
class SecurityFirewall(pulumi.CustomResource):
|
|
193
|
-
|
|
194
|
-
pulumi_type = "cloudamqp:index/securityFirewall:SecurityFirewall"
|
|
195
|
-
|
|
196
194
|
@overload
|
|
197
195
|
def __init__(__self__,
|
|
198
196
|
resource_name: str,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -96,10 +96,8 @@ class _UpgradeLavinmqState:
|
|
|
96
96
|
pulumi.set(self, "new_version", value)
|
|
97
97
|
|
|
98
98
|
|
|
99
|
+
@pulumi.type_token("cloudamqp:index/upgradeLavinmq:UpgradeLavinmq")
|
|
99
100
|
class UpgradeLavinmq(pulumi.CustomResource):
|
|
100
|
-
|
|
101
|
-
pulumi_type = "cloudamqp:index/upgradeLavinmq:UpgradeLavinmq"
|
|
102
|
-
|
|
103
101
|
@overload
|
|
104
102
|
def __init__(__self__,
|
|
105
103
|
resource_name: str,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -132,10 +132,8 @@ class _UpgradeRabbitmqState:
|
|
|
132
132
|
pulumi.set(self, "new_version", value)
|
|
133
133
|
|
|
134
134
|
|
|
135
|
+
@pulumi.type_token("cloudamqp:index/upgradeRabbitmq:UpgradeRabbitmq")
|
|
135
136
|
class UpgradeRabbitmq(pulumi.CustomResource):
|
|
136
|
-
|
|
137
|
-
pulumi_type = "cloudamqp:index/upgradeRabbitmq:UpgradeRabbitmq"
|
|
138
|
-
|
|
139
137
|
@overload
|
|
140
138
|
def __init__(__self__,
|
|
141
139
|
resource_name: str,
|
pulumi_cloudamqp/vpc.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -175,10 +175,8 @@ class _VpcState:
|
|
|
175
175
|
pulumi.set(self, "vpc_name", value)
|
|
176
176
|
|
|
177
177
|
|
|
178
|
+
@pulumi.type_token("cloudamqp:index/vpc:Vpc")
|
|
178
179
|
class Vpc(pulumi.CustomResource):
|
|
179
|
-
|
|
180
|
-
pulumi_type = "cloudamqp:index/vpc:Vpc"
|
|
181
|
-
|
|
182
180
|
@overload
|
|
183
181
|
def __init__(__self__,
|
|
184
182
|
resource_name: str,
|
pulumi_cloudamqp/vpc_connect.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -359,10 +359,8 @@ class _VpcConnectState:
|
|
|
359
359
|
pulumi.set(self, "timeout", value)
|
|
360
360
|
|
|
361
361
|
|
|
362
|
+
@pulumi.type_token("cloudamqp:index/vpcConnect:VpcConnect")
|
|
362
363
|
class VpcConnect(pulumi.CustomResource):
|
|
363
|
-
|
|
364
|
-
pulumi_type = "cloudamqp:index/vpcConnect:VpcConnect"
|
|
365
|
-
|
|
366
364
|
@overload
|
|
367
365
|
def __init__(__self__,
|
|
368
366
|
resource_name: str,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -328,10 +328,8 @@ class _VpcGcpPeeringState:
|
|
|
328
328
|
pulumi.set(self, "wait_on_peering_status", value)
|
|
329
329
|
|
|
330
330
|
|
|
331
|
+
@pulumi.type_token("cloudamqp:index/vpcGcpPeering:VpcGcpPeering")
|
|
331
332
|
class VpcGcpPeering(pulumi.CustomResource):
|
|
332
|
-
|
|
333
|
-
pulumi_type = "cloudamqp:index/vpcGcpPeering:VpcGcpPeering"
|
|
334
|
-
|
|
335
333
|
@overload
|
|
336
334
|
def __init__(__self__,
|
|
337
335
|
resource_name: str,
|
pulumi_cloudamqp/vpc_peering.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -232,10 +232,8 @@ class _VpcPeeringState:
|
|
|
232
232
|
pulumi.set(self, "vpc_id", value)
|
|
233
233
|
|
|
234
234
|
|
|
235
|
+
@pulumi.type_token("cloudamqp:index/vpcPeering:VpcPeering")
|
|
235
236
|
class VpcPeering(pulumi.CustomResource):
|
|
236
|
-
|
|
237
|
-
pulumi_type = "cloudamqp:index/vpcPeering:VpcPeering"
|
|
238
|
-
|
|
239
237
|
@overload
|
|
240
238
|
def __init__(__self__,
|
|
241
239
|
resource_name: str,
|
pulumi_cloudamqp/webhook.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
import builtins
|
|
@@ -256,10 +256,8 @@ class _WebhookState:
|
|
|
256
256
|
pulumi.set(self, "webhook_uri", value)
|
|
257
257
|
|
|
258
258
|
|
|
259
|
+
@pulumi.type_token("cloudamqp:index/webhook:Webhook")
|
|
259
260
|
class Webhook(pulumi.CustomResource):
|
|
260
|
-
|
|
261
|
-
pulumi_type = "cloudamqp:index/webhook:Webhook"
|
|
262
|
-
|
|
263
261
|
@overload
|
|
264
262
|
def __init__(__self__,
|
|
265
263
|
resource_name: str,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_cloudamqp
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.23.0
|
|
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,9 +9,9 @@ Keywords: pulumi,cloudamqp
|
|
|
9
9
|
Requires-Python: >=3.9
|
|
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.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-cloudamqp/actions)
|
|
17
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
pulumi_cloudamqp/__init__.py,sha256=t4lo1881yVZUWuYCaldK_FTczOPbX0IbxH9DbhXZ_jM,6049
|
|
2
|
+
pulumi_cloudamqp/_inputs.py,sha256=ruV1E7Dk3b5dDGeGx2Mpx76wxVoGOKeKzJDfm7oNhJw,14448
|
|
3
|
+
pulumi_cloudamqp/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
|
+
pulumi_cloudamqp/account_actions.py,sha256=4IFzSNve2C3ITW75-huHArREWBDc3eohx4JA7OmB0iI,7889
|
|
5
|
+
pulumi_cloudamqp/alarm.py,sha256=48LZLqv3F6XV125WhGIYuni9PVUJkT3-AHnc1MHNXjg,31125
|
|
6
|
+
pulumi_cloudamqp/custom_domain.py,sha256=LtPJ9Tl8zfeUtuYj-7a844B6b3CoKEiF2bzn_0NbyU8,11257
|
|
7
|
+
pulumi_cloudamqp/extra_disk_size.py,sha256=ERzREMoPIpKtCsSkewycjzHT1cwpXBZcrVn179mtwe8,28798
|
|
8
|
+
pulumi_cloudamqp/get_account.py,sha256=ePHT8Joc_cYka4ib0eEH2dqDNteiphLD0CErpjq2VrA,3307
|
|
9
|
+
pulumi_cloudamqp/get_account_vpcs.py,sha256=NJ2QG9CEP4w-lSjyylVaVPSSUN4aPrjqRtNIi19-k8I,4588
|
|
10
|
+
pulumi_cloudamqp/get_alarm.py,sha256=ZifI7ReoorX2oagvYKPHqlbfaQdeOVjv2CFz2Yn2InM,12438
|
|
11
|
+
pulumi_cloudamqp/get_alarms.py,sha256=oQ29Cd3mz6l8C7RgUogaBQ_D86x_QzCu_KlxZL8rYDc,5524
|
|
12
|
+
pulumi_cloudamqp/get_credentials.py,sha256=5YPI47rdqXmRT1anvnrHgUGnMTfejFobJ6Od2AnJ8pk,5258
|
|
13
|
+
pulumi_cloudamqp/get_instance.py,sha256=_X0yTKtwKHzRJoyrVjMW5gToi00uHDjGphrZH58MKQM,12511
|
|
14
|
+
pulumi_cloudamqp/get_nodes.py,sha256=__D-WLmmpkW7SRyCL5liZU8OQF7iVHD0jOK96Z8X2KU,4442
|
|
15
|
+
pulumi_cloudamqp/get_notification.py,sha256=C1oTRSSQ-Dh-IPDkyHSkmie6HMqfkDj_tuXku9Gh-mM,8015
|
|
16
|
+
pulumi_cloudamqp/get_notifications.py,sha256=-_2aTXiai8cs6214azM1_w27XVK62HSLyPtJr-ovCiY,4850
|
|
17
|
+
pulumi_cloudamqp/get_plugins.py,sha256=0hojRFVn-9-67SY50oNqy3yRRUQA7bF0d_n3Tkz8TRk,6485
|
|
18
|
+
pulumi_cloudamqp/get_plugins_community.py,sha256=YY0vwjHxwVuDku2kEOopJ7ZY3EBlC7EmSbczkGpVKkA,6835
|
|
19
|
+
pulumi_cloudamqp/get_upgradable_versions.py,sha256=KlU2Q17KryCJX6sT8ZVo2tIW41oQSQeLgXfdpV1MSbY,5639
|
|
20
|
+
pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=snPmWAX6Y0IAmcJAQekOuFJAAvUs_xCmLhEARXdEuO0,7930
|
|
21
|
+
pulumi_cloudamqp/get_vpc_info.py,sha256=F3Bhaf800Q_LljlJ3PDtGe52svpes5So-tHGv44T8UU,6714
|
|
22
|
+
pulumi_cloudamqp/instance.py,sha256=B17NByBuRmFaESdR39FfLkTTg2AQceMS_n-_ZLmMiS8,63851
|
|
23
|
+
pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=lpEKrrJvMua53B0HSE9K6eheOn4klB51Y2wk6jvqq4c,24414
|
|
24
|
+
pulumi_cloudamqp/integration_log.py,sha256=qGXcwhk8xTDXEUa_vVAIJiRw0R5I-j89HcI_K1khVP0,72679
|
|
25
|
+
pulumi_cloudamqp/integration_metric.py,sha256=D0hWHNBDHc45g5RSXMORpW_Cpcklr_Q-TpehCDEjpl0,60454
|
|
26
|
+
pulumi_cloudamqp/maintenance_window.py,sha256=_H9wGfElA2JWrLoPlA53qiLiwNVDWxNnXRr-xdxq4Vk,19237
|
|
27
|
+
pulumi_cloudamqp/node_actions.py,sha256=3spRKaMI_E4tWaY7khvcLisTZKbyCRrTqBQiqc8Uk_4,19672
|
|
28
|
+
pulumi_cloudamqp/notification.py,sha256=uBUZUTBvsNjs21ErA_ZQeoaMkOUYmCYe0RaNJp6MkxI,31583
|
|
29
|
+
pulumi_cloudamqp/outputs.py,sha256=3uFE2bzZAfNmDbfz4tgMQiJCmn8jLHfItd0lLseG36I,28215
|
|
30
|
+
pulumi_cloudamqp/plugin.py,sha256=nlPe9Ad1-SJz1Gwo24aLdVUHxggF94pDs7gVV56_tic,18565
|
|
31
|
+
pulumi_cloudamqp/plugin_community.py,sha256=2qQqXztbbXDAOMqesoMo3S_stlg8CCczCTdfq_X3Ryc,19269
|
|
32
|
+
pulumi_cloudamqp/privatelink_aws.py,sha256=x5UjLjrf0pcWz_Yel7NC4cVJt3e-JLet5yC5PzgUQxg,20630
|
|
33
|
+
pulumi_cloudamqp/privatelink_azure.py,sha256=VXQkPjLipIUulov_tK6bhIKeKUiVZxPolVRHwNI7ewM,20200
|
|
34
|
+
pulumi_cloudamqp/provider.py,sha256=3cS8YO_Gv0D13CPLw_-vhRtip9g6dcMpHLAtUMaZHDk,7811
|
|
35
|
+
pulumi_cloudamqp/pulumi-plugin.json,sha256=LhXzf1-lEYXaERepNoLo0Wo-kyWP16fw-wdMNWcz-x4,69
|
|
36
|
+
pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
pulumi_cloudamqp/rabbit_configuration.py,sha256=VqFr9KpuEagzFkq2xs3KLim8tgexBq7kJSVPdL9RsYs,35709
|
|
38
|
+
pulumi_cloudamqp/security_firewall.py,sha256=eL538zCtMEqNZoY6ve6KgISla1XRFawAVeCXHHIDZLI,15586
|
|
39
|
+
pulumi_cloudamqp/upgrade_lavinmq.py,sha256=8f0dB4_hAzESZe0IAogt_Oc9Nttrflv6Ms938Fi9wVw,8089
|
|
40
|
+
pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=a3Iigq-0lV-PC6-XpJaNrql9Og6jSPfmombUi4_ZvZo,10614
|
|
41
|
+
pulumi_cloudamqp/vpc.py,sha256=-2_RoC6wyrljNRnEV2JV1a8gP86ji-rSlKlV50ft1bw,15687
|
|
42
|
+
pulumi_cloudamqp/vpc_connect.py,sha256=Nd0NgBTUGz2esaS-nVE9-y89PAsM-o3gWr05YLWnJ2s,30154
|
|
43
|
+
pulumi_cloudamqp/vpc_gcp_peering.py,sha256=ipheXx8y8Rqw51hG9Wbl3MypzXzEV5WtYzVvLQJ1iMU,24596
|
|
44
|
+
pulumi_cloudamqp/vpc_peering.py,sha256=p8vqKcN26XDPvn5YUru75CL4IcTBAYpb6D8rF5A3sgk,17571
|
|
45
|
+
pulumi_cloudamqp/webhook.py,sha256=eXbzIlnebZRCLbLSQbvsWzaxJNXUHNe4JHSiehwK7xs,19155
|
|
46
|
+
pulumi_cloudamqp/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
47
|
+
pulumi_cloudamqp/config/__init__.pyi,sha256=KRXnMKDskmD25sSWMxFzODPWMWrKBkUI4nMD551X9Io,721
|
|
48
|
+
pulumi_cloudamqp/config/vars.py,sha256=1_jx5d2OF-ohSxoIlrHgovVLriCdxgjWHTgGS5j_GJ4,1111
|
|
49
|
+
pulumi_cloudamqp-3.23.0.dist-info/METADATA,sha256=ptpEAn8aBtmFasi433hNVOALkcCn4dFLq2j_BHPmpbg,2810
|
|
50
|
+
pulumi_cloudamqp-3.23.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
51
|
+
pulumi_cloudamqp-3.23.0.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
|
|
52
|
+
pulumi_cloudamqp-3.23.0.dist-info/RECORD,,
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
pulumi_cloudamqp/__init__.py,sha256=sRg8KN9a5r1RtUJDSRdCOo3F3SFF9McKK9dsi7EBtw0,6003
|
|
2
|
-
pulumi_cloudamqp/_inputs.py,sha256=78nWru4B0Jl7yP3_Lufoxm-mATsdwz022sshxwgosW4,14466
|
|
3
|
-
pulumi_cloudamqp/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
4
|
-
pulumi_cloudamqp/account_action.py,sha256=-RLOVt9UHi3ihcshQtoMeodyXPQDgQQ21U2I4zS4vjk,8280
|
|
5
|
-
pulumi_cloudamqp/alarm.py,sha256=eyaAdK-CWhCl7Ujf3_IUXVarf47tJvaE1PHY6qR9yRk,31143
|
|
6
|
-
pulumi_cloudamqp/custom_domain.py,sha256=oExq7N8YxEYUW55xA1Defn1mxGVGRxZq2K380pI74X4,11275
|
|
7
|
-
pulumi_cloudamqp/extra_disk_size.py,sha256=-8tGW5mb9zdQIyH10vgoQPgk0qLP5bw63sFoXA174KY,28816
|
|
8
|
-
pulumi_cloudamqp/get_account.py,sha256=z1fn8Kh5u19wSRwCMS1O9R8OELiBNoxszqgDIKVADD4,3325
|
|
9
|
-
pulumi_cloudamqp/get_account_vpcs.py,sha256=aODaMHxxObLV6ifvTg70V151WgAQJIjjLk3oVfaHZ1k,4606
|
|
10
|
-
pulumi_cloudamqp/get_alarm.py,sha256=EuMR9FyPCGBy6tVe_GbKh5cGNv6Mp4baj7YBX_NCs9w,12456
|
|
11
|
-
pulumi_cloudamqp/get_credentials.py,sha256=B4Q-ugz9-vUMSFBfM2ojjRiU7WQ8HGnYlI1wIwLXcVM,5276
|
|
12
|
-
pulumi_cloudamqp/get_instance.py,sha256=0PE_ReGeDUh-NqID_3pRXncIgpJ-vV0TbaP0dzVqWFg,12529
|
|
13
|
-
pulumi_cloudamqp/get_nodes.py,sha256=XviTdkyrRIPRVD90OgCVIl1EznMexOoYu0aO_wNiOl0,4460
|
|
14
|
-
pulumi_cloudamqp/get_notification.py,sha256=ZUlV54OzmQt0bv0OFBPpQFdWLplvyHgEe7FjHRTeLYE,8033
|
|
15
|
-
pulumi_cloudamqp/get_plugins.py,sha256=ZTq1qdjxd7I1drfwTYNhjd8_jLC0NWL6ycQjvnhgVlQ,6503
|
|
16
|
-
pulumi_cloudamqp/get_plugins_community.py,sha256=HPHX6lM_baDzwtEtC7b0xcJ4iEuOO35U6Otv_INz1tw,6853
|
|
17
|
-
pulumi_cloudamqp/get_upgradable_versions.py,sha256=KU_1fpILeg-efSgs_8G0QeXjx3Bw6DL_duPXCTt0ldY,5657
|
|
18
|
-
pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=-_iyZhzFO0yPGu-Rrm1rusQHUP2BvyD3lkYSa3vYEuU,7948
|
|
19
|
-
pulumi_cloudamqp/get_vpc_info.py,sha256=5F1U56JN5yyPNJ-oDp6tRyPj0o-U0ubMwz1faKxSPxc,6732
|
|
20
|
-
pulumi_cloudamqp/instance.py,sha256=bOPjah8HvgBi4obbHxBzE2BpsQUJZxtk6_u-yQYhjC8,63869
|
|
21
|
-
pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=_c6adYTTj_0NdIzJ7q1zv3XzWF29n0mofOyLE9YQSk8,24432
|
|
22
|
-
pulumi_cloudamqp/integration_log.py,sha256=leh9UK9fltWccORf4h48rVwn-SCzQ597IBn_OHXwOuk,72697
|
|
23
|
-
pulumi_cloudamqp/integration_metric.py,sha256=bW1H341sbDka8EL_8kXn4zK2NQbWkhqD5OljIJ3TZmE,60472
|
|
24
|
-
pulumi_cloudamqp/maintenance_window.py,sha256=EF-T404jndWAnTKVxzeWGbKpXr96jBJoigofGeIhPHM,19255
|
|
25
|
-
pulumi_cloudamqp/node_actions.py,sha256=lxnQPf6sjGs5GMUW292bWIMlecC0HiR-zHp31D9q02E,19690
|
|
26
|
-
pulumi_cloudamqp/notification.py,sha256=8xuKaNqAfqsiNp_F_59Z-uVmXPr5dk0N5amdgC-VDjc,31601
|
|
27
|
-
pulumi_cloudamqp/outputs.py,sha256=cKjQxDItNgcRwvVJ9z8sTGvkM0Ske8IJQ6okUIW5wrM,21052
|
|
28
|
-
pulumi_cloudamqp/plugin.py,sha256=3YJACgpZD_5sbjV7je2LO0zqIZEuRTsMXb6e-ZEStv0,18583
|
|
29
|
-
pulumi_cloudamqp/plugin_community.py,sha256=f2ooM8MsARQ1Pa6UQgjVaQZodbXo8xcc4LKEGwsJNgI,19287
|
|
30
|
-
pulumi_cloudamqp/privatelink_aws.py,sha256=NfmDHxGP5BZ4SkwLp57pU2SOxAqYAX4WkhDHxZUIHfA,20648
|
|
31
|
-
pulumi_cloudamqp/privatelink_azure.py,sha256=regT2e2xkptWGY7N3uk-ICbW3RAIVT-QntvscgyfcdQ,20218
|
|
32
|
-
pulumi_cloudamqp/provider.py,sha256=IT8BwtN1e0EB1CchBJgeNqRuAeafym_9-qEyTRJr2E8,6976
|
|
33
|
-
pulumi_cloudamqp/pulumi-plugin.json,sha256=Vj0LjQP9GXJCOo3PTFt64_1fY6wkD24ZbSggi3ym120,86
|
|
34
|
-
pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
pulumi_cloudamqp/rabbit_configuration.py,sha256=xGXntCXS8LT9LELALdQEqffZ8i08yR5gpbTZy_nxpcg,36304
|
|
36
|
-
pulumi_cloudamqp/security_firewall.py,sha256=NF-qrwKSFe1YHAsLjSv1NoyQwP4doru9311m2Am4axU,15604
|
|
37
|
-
pulumi_cloudamqp/upgrade_lavinmq.py,sha256=DHDUIyQJjNDNG1TtVdcCWdZVu9PQTqxO8x-EAnK5VT0,8107
|
|
38
|
-
pulumi_cloudamqp/upgrade_rabbitmq.py,sha256=BUPU8cjpOjeB8WV_HK0eqHth7c-Fsi_iNH20rtqXDBk,10632
|
|
39
|
-
pulumi_cloudamqp/vpc.py,sha256=ORm13mUUqnwLJt0xfkjNSMiUZn9U1ZKhF3lIjmByLAw,15705
|
|
40
|
-
pulumi_cloudamqp/vpc_connect.py,sha256=Tf5mhUtv51P43KmP7yOsQ4-HYojUXy8K5po2QrarL8M,30172
|
|
41
|
-
pulumi_cloudamqp/vpc_gcp_peering.py,sha256=EFT5eJ8K_2uxXwaR8oTY8Vv1e3BD0gvPmSWDWOpHWEU,24614
|
|
42
|
-
pulumi_cloudamqp/vpc_peering.py,sha256=XXu-O6qp9hhgVBQJcs_zoZ3TXcqSjsmmAtKuZVve01M,17589
|
|
43
|
-
pulumi_cloudamqp/webhook.py,sha256=2GqyoqJqILGrIlMDJ-m7XFkRAwARuMSH40mcRgb4ZXE,19173
|
|
44
|
-
pulumi_cloudamqp/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
45
|
-
pulumi_cloudamqp/config/__init__.pyi,sha256=p7qWknIEOgVSX4PHZXWVUwd_5j6kL7_x882oKLZ2CmM,739
|
|
46
|
-
pulumi_cloudamqp/config/vars.py,sha256=vB-XeOlRCqbHRcn8fiZYSxslXofD8Zl3jhF27u3ybQg,1129
|
|
47
|
-
pulumi_cloudamqp-3.22.0a1746163592.dist-info/METADATA,sha256=j4OqrFqnM698azayN9KXNb79lb9KB0_hqinJXnCcAv4,2818
|
|
48
|
-
pulumi_cloudamqp-3.22.0a1746163592.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
49
|
-
pulumi_cloudamqp-3.22.0a1746163592.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
|
|
50
|
-
pulumi_cloudamqp-3.22.0a1746163592.dist-info/RECORD,,
|
{pulumi_cloudamqp-3.22.0a1746163592.dist-info → pulumi_cloudamqp-3.23.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|