pulumi-cloudamqp 3.21.0a1744082841__py3-none-any.whl → 3.22.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 +3 -0
- pulumi_cloudamqp/_inputs.py +67 -66
- pulumi_cloudamqp/account_action.py +32 -28
- pulumi_cloudamqp/alarm.py +158 -154
- pulumi_cloudamqp/config/__init__.py +1 -0
- pulumi_cloudamqp/config/__init__.pyi +1 -0
- pulumi_cloudamqp/config/vars.py +1 -0
- pulumi_cloudamqp/custom_domain.py +32 -28
- pulumi_cloudamqp/extra_disk_size.py +74 -70
- pulumi_cloudamqp/get_account.py +2 -1
- pulumi_cloudamqp/get_account_vpcs.py +2 -1
- pulumi_cloudamqp/get_alarm.py +30 -29
- pulumi_cloudamqp/get_alarms.py +165 -0
- pulumi_cloudamqp/get_credentials.py +9 -8
- pulumi_cloudamqp/get_instance.py +24 -23
- pulumi_cloudamqp/get_nodes.py +7 -6
- pulumi_cloudamqp/get_notification.py +24 -23
- pulumi_cloudamqp/get_notifications.py +135 -0
- pulumi_cloudamqp/get_plugins.py +17 -16
- pulumi_cloudamqp/get_plugins_community.py +17 -16
- pulumi_cloudamqp/get_upgradable_versions.py +9 -8
- pulumi_cloudamqp/get_vpc_gcp_info.py +25 -24
- pulumi_cloudamqp/get_vpc_info.py +16 -15
- pulumi_cloudamqp/instance.py +200 -196
- pulumi_cloudamqp/integration_aws_eventbridge.py +95 -91
- pulumi_cloudamqp/integration_log.py +368 -364
- pulumi_cloudamqp/integration_metric.py +298 -294
- pulumi_cloudamqp/maintenance_window.py +60 -56
- pulumi_cloudamqp/node_actions.py +53 -49
- pulumi_cloudamqp/notification.py +74 -70
- pulumi_cloudamqp/outputs.py +334 -130
- pulumi_cloudamqp/plugin.py +88 -84
- pulumi_cloudamqp/plugin_community.py +88 -84
- pulumi_cloudamqp/privatelink_aws.py +81 -77
- pulumi_cloudamqp/privatelink_azure.py +81 -77
- pulumi_cloudamqp/provider.py +25 -21
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +172 -168
- pulumi_cloudamqp/security_firewall.py +46 -42
- pulumi_cloudamqp/upgrade_lavinmq.py +32 -28
- pulumi_cloudamqp/upgrade_rabbitmq.py +46 -42
- pulumi_cloudamqp/vpc.py +67 -63
- pulumi_cloudamqp/vpc_connect.py +123 -119
- pulumi_cloudamqp/vpc_gcp_peering.py +109 -105
- pulumi_cloudamqp/vpc_peering.py +81 -77
- pulumi_cloudamqp/webhook.py +102 -98
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/METADATA +1 -1
- pulumi_cloudamqp-3.22.0.dist-info/RECORD +52 -0
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/WHEEL +1 -1
- pulumi_cloudamqp-3.21.0a1744082841.dist-info/RECORD +0 -50
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/top_level.txt +0 -0
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -51,7 +52,7 @@ class GetNotificationResult:
|
|
|
51
52
|
|
|
52
53
|
@property
|
|
53
54
|
@pulumi.getter
|
|
54
|
-
def id(self) -> str:
|
|
55
|
+
def id(self) -> builtins.str:
|
|
55
56
|
"""
|
|
56
57
|
The provider-assigned unique ID for this managed resource.
|
|
57
58
|
"""
|
|
@@ -59,17 +60,17 @@ class GetNotificationResult:
|
|
|
59
60
|
|
|
60
61
|
@property
|
|
61
62
|
@pulumi.getter(name="instanceId")
|
|
62
|
-
def instance_id(self) -> int:
|
|
63
|
+
def instance_id(self) -> builtins.int:
|
|
63
64
|
return pulumi.get(self, "instance_id")
|
|
64
65
|
|
|
65
66
|
@property
|
|
66
67
|
@pulumi.getter
|
|
67
|
-
def name(self) -> Optional[str]:
|
|
68
|
+
def name(self) -> Optional[builtins.str]:
|
|
68
69
|
return pulumi.get(self, "name")
|
|
69
70
|
|
|
70
71
|
@property
|
|
71
72
|
@pulumi.getter
|
|
72
|
-
def options(self) -> Optional[Mapping[str, str]]:
|
|
73
|
+
def options(self) -> Optional[Mapping[str, builtins.str]]:
|
|
73
74
|
"""
|
|
74
75
|
Options argument (e.g. `rk` used for VictorOps routing key).
|
|
75
76
|
"""
|
|
@@ -77,12 +78,12 @@ class GetNotificationResult:
|
|
|
77
78
|
|
|
78
79
|
@property
|
|
79
80
|
@pulumi.getter(name="recipientId")
|
|
80
|
-
def recipient_id(self) -> Optional[int]:
|
|
81
|
+
def recipient_id(self) -> Optional[builtins.int]:
|
|
81
82
|
return pulumi.get(self, "recipient_id")
|
|
82
83
|
|
|
83
84
|
@property
|
|
84
85
|
@pulumi.getter
|
|
85
|
-
def type(self) -> str:
|
|
86
|
+
def type(self) -> builtins.str:
|
|
86
87
|
"""
|
|
87
88
|
The type of the recipient.
|
|
88
89
|
"""
|
|
@@ -90,7 +91,7 @@ class GetNotificationResult:
|
|
|
90
91
|
|
|
91
92
|
@property
|
|
92
93
|
@pulumi.getter
|
|
93
|
-
def value(self) -> str:
|
|
94
|
+
def value(self) -> builtins.str:
|
|
94
95
|
"""
|
|
95
96
|
The notification endpoint, where to send the notification.
|
|
96
97
|
"""
|
|
@@ -112,10 +113,10 @@ class AwaitableGetNotificationResult(GetNotificationResult):
|
|
|
112
113
|
value=self.value)
|
|
113
114
|
|
|
114
115
|
|
|
115
|
-
def get_notification(instance_id: Optional[int] = None,
|
|
116
|
-
name: Optional[str] = None,
|
|
117
|
-
options: Optional[Mapping[str, str]] = None,
|
|
118
|
-
recipient_id: Optional[int] = None,
|
|
116
|
+
def get_notification(instance_id: Optional[builtins.int] = None,
|
|
117
|
+
name: Optional[builtins.str] = None,
|
|
118
|
+
options: Optional[Mapping[str, builtins.str]] = None,
|
|
119
|
+
recipient_id: Optional[builtins.int] = None,
|
|
119
120
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNotificationResult:
|
|
120
121
|
"""
|
|
121
122
|
Use this data source to retrieve information about default or created recipients. The recipient will
|
|
@@ -137,10 +138,10 @@ def get_notification(instance_id: Optional[int] = None,
|
|
|
137
138
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
138
139
|
|
|
139
140
|
|
|
140
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
141
|
-
:param str name: The name set for the recipient.
|
|
142
|
-
:param Mapping[str, str] options: Options argument (e.g. `rk` used for VictorOps routing key).
|
|
143
|
-
:param int recipient_id: The recipient identifier.
|
|
141
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
142
|
+
:param builtins.str name: The name set for the recipient.
|
|
143
|
+
:param Mapping[str, builtins.str] options: Options argument (e.g. `rk` used for VictorOps routing key).
|
|
144
|
+
:param builtins.int recipient_id: The recipient identifier.
|
|
144
145
|
"""
|
|
145
146
|
__args__ = dict()
|
|
146
147
|
__args__['instanceId'] = instance_id
|
|
@@ -158,10 +159,10 @@ def get_notification(instance_id: Optional[int] = None,
|
|
|
158
159
|
recipient_id=pulumi.get(__ret__, 'recipient_id'),
|
|
159
160
|
type=pulumi.get(__ret__, 'type'),
|
|
160
161
|
value=pulumi.get(__ret__, 'value'))
|
|
161
|
-
def get_notification_output(instance_id: Optional[pulumi.Input[int]] = None,
|
|
162
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
163
|
-
options: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
164
|
-
recipient_id: Optional[pulumi.Input[Optional[int]]] = None,
|
|
162
|
+
def get_notification_output(instance_id: Optional[pulumi.Input[builtins.int]] = None,
|
|
163
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
|
164
|
+
options: Optional[pulumi.Input[Optional[Mapping[str, builtins.str]]]] = None,
|
|
165
|
+
recipient_id: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
165
166
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNotificationResult]:
|
|
166
167
|
"""
|
|
167
168
|
Use this data source to retrieve information about default or created recipients. The recipient will
|
|
@@ -183,10 +184,10 @@ def get_notification_output(instance_id: Optional[pulumi.Input[int]] = None,
|
|
|
183
184
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
184
185
|
|
|
185
186
|
|
|
186
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
187
|
-
:param str name: The name set for the recipient.
|
|
188
|
-
:param Mapping[str, str] options: Options argument (e.g. `rk` used for VictorOps routing key).
|
|
189
|
-
:param int recipient_id: The recipient identifier.
|
|
187
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
188
|
+
:param builtins.str name: The name set for the recipient.
|
|
189
|
+
:param Mapping[str, builtins.str] options: Options argument (e.g. `rk` used for VictorOps routing key).
|
|
190
|
+
:param builtins.int recipient_id: The recipient identifier.
|
|
190
191
|
"""
|
|
191
192
|
__args__ = dict()
|
|
192
193
|
__args__['instanceId'] = instance_id
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins
|
|
6
|
+
import copy
|
|
7
|
+
import warnings
|
|
8
|
+
import sys
|
|
9
|
+
import pulumi
|
|
10
|
+
import pulumi.runtime
|
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
12
|
+
if sys.version_info >= (3, 11):
|
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
14
|
+
else:
|
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
16
|
+
from . import _utilities
|
|
17
|
+
from . import outputs
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'GetNotificationsResult',
|
|
21
|
+
'AwaitableGetNotificationsResult',
|
|
22
|
+
'get_notifications',
|
|
23
|
+
'get_notifications_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetNotificationsResult:
|
|
28
|
+
"""
|
|
29
|
+
A collection of values returned by getNotifications.
|
|
30
|
+
"""
|
|
31
|
+
def __init__(__self__, id=None, instance_id=None, recipients=None):
|
|
32
|
+
if id and not isinstance(id, str):
|
|
33
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "id", id)
|
|
35
|
+
if instance_id and not isinstance(instance_id, int):
|
|
36
|
+
raise TypeError("Expected argument 'instance_id' to be a int")
|
|
37
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
|
38
|
+
if recipients and not isinstance(recipients, list):
|
|
39
|
+
raise TypeError("Expected argument 'recipients' to be a list")
|
|
40
|
+
pulumi.set(__self__, "recipients", recipients)
|
|
41
|
+
|
|
42
|
+
@property
|
|
43
|
+
@pulumi.getter
|
|
44
|
+
def id(self) -> builtins.str:
|
|
45
|
+
"""
|
|
46
|
+
The provider-assigned unique ID for this managed resource.
|
|
47
|
+
"""
|
|
48
|
+
return pulumi.get(self, "id")
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
@pulumi.getter(name="instanceId")
|
|
52
|
+
def instance_id(self) -> builtins.int:
|
|
53
|
+
return pulumi.get(self, "instance_id")
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter
|
|
57
|
+
def recipients(self) -> Sequence['outputs.GetNotificationsRecipientResult']:
|
|
58
|
+
"""
|
|
59
|
+
List of alarms (see below for nested schema)
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "recipients")
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
class AwaitableGetNotificationsResult(GetNotificationsResult):
|
|
65
|
+
# pylint: disable=using-constant-test
|
|
66
|
+
def __await__(self):
|
|
67
|
+
if False:
|
|
68
|
+
yield self
|
|
69
|
+
return GetNotificationsResult(
|
|
70
|
+
id=self.id,
|
|
71
|
+
instance_id=self.instance_id,
|
|
72
|
+
recipients=self.recipients)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
def get_notifications(instance_id: Optional[builtins.int] = None,
|
|
76
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNotificationsResult:
|
|
77
|
+
"""
|
|
78
|
+
Use this data source to retrieve information about all notification recipients. Each recipient will
|
|
79
|
+
receive notifications assigned to an alarm that has triggered.
|
|
80
|
+
|
|
81
|
+
## Example Usage
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
import pulumi
|
|
85
|
+
import pulumi_cloudamqp as cloudamqp
|
|
86
|
+
|
|
87
|
+
default_recipient = cloudamqp.get_notifications(instance_id=instance["id"])
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Dependency
|
|
91
|
+
|
|
92
|
+
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
96
|
+
"""
|
|
97
|
+
__args__ = dict()
|
|
98
|
+
__args__['instanceId'] = instance_id
|
|
99
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
100
|
+
__ret__ = pulumi.runtime.invoke('cloudamqp:index/getNotifications:getNotifications', __args__, opts=opts, typ=GetNotificationsResult).value
|
|
101
|
+
|
|
102
|
+
return AwaitableGetNotificationsResult(
|
|
103
|
+
id=pulumi.get(__ret__, 'id'),
|
|
104
|
+
instance_id=pulumi.get(__ret__, 'instance_id'),
|
|
105
|
+
recipients=pulumi.get(__ret__, 'recipients'))
|
|
106
|
+
def get_notifications_output(instance_id: Optional[pulumi.Input[builtins.int]] = None,
|
|
107
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNotificationsResult]:
|
|
108
|
+
"""
|
|
109
|
+
Use this data source to retrieve information about all notification recipients. Each recipient will
|
|
110
|
+
receive notifications assigned to an alarm that has triggered.
|
|
111
|
+
|
|
112
|
+
## Example Usage
|
|
113
|
+
|
|
114
|
+
```python
|
|
115
|
+
import pulumi
|
|
116
|
+
import pulumi_cloudamqp as cloudamqp
|
|
117
|
+
|
|
118
|
+
default_recipient = cloudamqp.get_notifications(instance_id=instance["id"])
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## Dependency
|
|
122
|
+
|
|
123
|
+
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
127
|
+
"""
|
|
128
|
+
__args__ = dict()
|
|
129
|
+
__args__['instanceId'] = instance_id
|
|
130
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
131
|
+
__ret__ = pulumi.runtime.invoke_output('cloudamqp:index/getNotifications:getNotifications', __args__, opts=opts, typ=GetNotificationsResult)
|
|
132
|
+
return __ret__.apply(lambda __response__: GetNotificationsResult(
|
|
133
|
+
id=pulumi.get(__response__, 'id'),
|
|
134
|
+
instance_id=pulumi.get(__response__, 'instance_id'),
|
|
135
|
+
recipients=pulumi.get(__response__, 'recipients')))
|
pulumi_cloudamqp/get_plugins.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -46,7 +47,7 @@ class GetPluginsResult:
|
|
|
46
47
|
|
|
47
48
|
@property
|
|
48
49
|
@pulumi.getter
|
|
49
|
-
def id(self) -> str:
|
|
50
|
+
def id(self) -> builtins.str:
|
|
50
51
|
"""
|
|
51
52
|
The provider-assigned unique ID for this managed resource.
|
|
52
53
|
"""
|
|
@@ -54,7 +55,7 @@ class GetPluginsResult:
|
|
|
54
55
|
|
|
55
56
|
@property
|
|
56
57
|
@pulumi.getter(name="instanceId")
|
|
57
|
-
def instance_id(self) -> int:
|
|
58
|
+
def instance_id(self) -> builtins.int:
|
|
58
59
|
return pulumi.get(self, "instance_id")
|
|
59
60
|
|
|
60
61
|
@property
|
|
@@ -67,12 +68,12 @@ class GetPluginsResult:
|
|
|
67
68
|
|
|
68
69
|
@property
|
|
69
70
|
@pulumi.getter
|
|
70
|
-
def sleep(self) -> Optional[int]:
|
|
71
|
+
def sleep(self) -> Optional[builtins.int]:
|
|
71
72
|
return pulumi.get(self, "sleep")
|
|
72
73
|
|
|
73
74
|
@property
|
|
74
75
|
@pulumi.getter
|
|
75
|
-
def timeout(self) -> Optional[int]:
|
|
76
|
+
def timeout(self) -> Optional[builtins.int]:
|
|
76
77
|
return pulumi.get(self, "timeout")
|
|
77
78
|
|
|
78
79
|
|
|
@@ -89,9 +90,9 @@ class AwaitableGetPluginsResult(GetPluginsResult):
|
|
|
89
90
|
timeout=self.timeout)
|
|
90
91
|
|
|
91
92
|
|
|
92
|
-
def get_plugins(instance_id: Optional[int] = None,
|
|
93
|
-
sleep: Optional[int] = None,
|
|
94
|
-
timeout: Optional[int] = None,
|
|
93
|
+
def get_plugins(instance_id: Optional[builtins.int] = None,
|
|
94
|
+
sleep: Optional[builtins.int] = None,
|
|
95
|
+
timeout: Optional[builtins.int] = None,
|
|
95
96
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPluginsResult:
|
|
96
97
|
"""
|
|
97
98
|
Use this data source to retrieve information about installed and available plugins for the CloudAMQP
|
|
@@ -111,10 +112,10 @@ def get_plugins(instance_id: Optional[int] = None,
|
|
|
111
112
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
112
113
|
|
|
113
114
|
|
|
114
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
115
|
-
:param int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
115
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
116
|
+
:param builtins.int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
116
117
|
information about plugins. Default set to 10 seconds.
|
|
117
|
-
:param int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
118
|
+
:param builtins.int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
118
119
|
information about plugins. Default set to 1800 seconds.
|
|
119
120
|
"""
|
|
120
121
|
__args__ = dict()
|
|
@@ -130,9 +131,9 @@ def get_plugins(instance_id: Optional[int] = None,
|
|
|
130
131
|
plugins=pulumi.get(__ret__, 'plugins'),
|
|
131
132
|
sleep=pulumi.get(__ret__, 'sleep'),
|
|
132
133
|
timeout=pulumi.get(__ret__, 'timeout'))
|
|
133
|
-
def get_plugins_output(instance_id: Optional[pulumi.Input[int]] = None,
|
|
134
|
-
sleep: Optional[pulumi.Input[Optional[int]]] = None,
|
|
135
|
-
timeout: Optional[pulumi.Input[Optional[int]]] = None,
|
|
134
|
+
def get_plugins_output(instance_id: Optional[pulumi.Input[builtins.int]] = None,
|
|
135
|
+
sleep: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
136
|
+
timeout: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
136
137
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPluginsResult]:
|
|
137
138
|
"""
|
|
138
139
|
Use this data source to retrieve information about installed and available plugins for the CloudAMQP
|
|
@@ -152,10 +153,10 @@ def get_plugins_output(instance_id: Optional[pulumi.Input[int]] = None,
|
|
|
152
153
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
153
154
|
|
|
154
155
|
|
|
155
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
156
|
-
:param int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
156
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
157
|
+
:param builtins.int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
157
158
|
information about plugins. Default set to 10 seconds.
|
|
158
|
-
:param int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
159
|
+
:param builtins.int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
159
160
|
information about plugins. Default set to 1800 seconds.
|
|
160
161
|
"""
|
|
161
162
|
__args__ = dict()
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -46,7 +47,7 @@ class GetPluginsCommunityResult:
|
|
|
46
47
|
|
|
47
48
|
@property
|
|
48
49
|
@pulumi.getter
|
|
49
|
-
def id(self) -> str:
|
|
50
|
+
def id(self) -> builtins.str:
|
|
50
51
|
"""
|
|
51
52
|
The provider-assigned unique ID for this managed resource.
|
|
52
53
|
"""
|
|
@@ -54,7 +55,7 @@ class GetPluginsCommunityResult:
|
|
|
54
55
|
|
|
55
56
|
@property
|
|
56
57
|
@pulumi.getter(name="instanceId")
|
|
57
|
-
def instance_id(self) -> int:
|
|
58
|
+
def instance_id(self) -> builtins.int:
|
|
58
59
|
return pulumi.get(self, "instance_id")
|
|
59
60
|
|
|
60
61
|
@property
|
|
@@ -68,12 +69,12 @@ class GetPluginsCommunityResult:
|
|
|
68
69
|
|
|
69
70
|
@property
|
|
70
71
|
@pulumi.getter
|
|
71
|
-
def sleep(self) -> Optional[int]:
|
|
72
|
+
def sleep(self) -> Optional[builtins.int]:
|
|
72
73
|
return pulumi.get(self, "sleep")
|
|
73
74
|
|
|
74
75
|
@property
|
|
75
76
|
@pulumi.getter
|
|
76
|
-
def timeout(self) -> Optional[int]:
|
|
77
|
+
def timeout(self) -> Optional[builtins.int]:
|
|
77
78
|
return pulumi.get(self, "timeout")
|
|
78
79
|
|
|
79
80
|
|
|
@@ -90,9 +91,9 @@ class AwaitableGetPluginsCommunityResult(GetPluginsCommunityResult):
|
|
|
90
91
|
timeout=self.timeout)
|
|
91
92
|
|
|
92
93
|
|
|
93
|
-
def get_plugins_community(instance_id: Optional[int] = None,
|
|
94
|
-
sleep: Optional[int] = None,
|
|
95
|
-
timeout: Optional[int] = None,
|
|
94
|
+
def get_plugins_community(instance_id: Optional[builtins.int] = None,
|
|
95
|
+
sleep: Optional[builtins.int] = None,
|
|
96
|
+
timeout: Optional[builtins.int] = None,
|
|
96
97
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPluginsCommunityResult:
|
|
97
98
|
"""
|
|
98
99
|
Use this data source to retrieve information about available community plugins for the CloudAMQP
|
|
@@ -112,10 +113,10 @@ def get_plugins_community(instance_id: Optional[int] = None,
|
|
|
112
113
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
113
114
|
|
|
114
115
|
|
|
115
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
116
|
-
:param int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
116
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
117
|
+
:param builtins.int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
117
118
|
information about community plugins. Default set to 10 seconds.
|
|
118
|
-
:param int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
119
|
+
:param builtins.int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
119
120
|
information about community plugins. Default set to 1800 seconds.
|
|
120
121
|
"""
|
|
121
122
|
__args__ = dict()
|
|
@@ -131,9 +132,9 @@ def get_plugins_community(instance_id: Optional[int] = None,
|
|
|
131
132
|
plugins=pulumi.get(__ret__, 'plugins'),
|
|
132
133
|
sleep=pulumi.get(__ret__, 'sleep'),
|
|
133
134
|
timeout=pulumi.get(__ret__, 'timeout'))
|
|
134
|
-
def get_plugins_community_output(instance_id: Optional[pulumi.Input[int]] = None,
|
|
135
|
-
sleep: Optional[pulumi.Input[Optional[int]]] = None,
|
|
136
|
-
timeout: Optional[pulumi.Input[Optional[int]]] = None,
|
|
135
|
+
def get_plugins_community_output(instance_id: Optional[pulumi.Input[builtins.int]] = None,
|
|
136
|
+
sleep: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
137
|
+
timeout: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
137
138
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPluginsCommunityResult]:
|
|
138
139
|
"""
|
|
139
140
|
Use this data source to retrieve information about available community plugins for the CloudAMQP
|
|
@@ -153,10 +154,10 @@ def get_plugins_community_output(instance_id: Optional[pulumi.Input[int]] = None
|
|
|
153
154
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
154
155
|
|
|
155
156
|
|
|
156
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
157
|
-
:param int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
157
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
158
|
+
:param builtins.int sleep: Configurable sleep time (seconds) for retries when requesting
|
|
158
159
|
information about community plugins. Default set to 10 seconds.
|
|
159
|
-
:param int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
160
|
+
:param builtins.int timeout: Configurable timeout time (seconds) for retries when requesting
|
|
160
161
|
information about community plugins. Default set to 1800 seconds.
|
|
161
162
|
"""
|
|
162
163
|
__args__ = dict()
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -42,7 +43,7 @@ class GetUpgradableVersionsResult:
|
|
|
42
43
|
|
|
43
44
|
@property
|
|
44
45
|
@pulumi.getter
|
|
45
|
-
def id(self) -> str:
|
|
46
|
+
def id(self) -> builtins.str:
|
|
46
47
|
"""
|
|
47
48
|
The provider-assigned unique ID for this managed resource.
|
|
48
49
|
"""
|
|
@@ -50,12 +51,12 @@ class GetUpgradableVersionsResult:
|
|
|
50
51
|
|
|
51
52
|
@property
|
|
52
53
|
@pulumi.getter(name="instanceId")
|
|
53
|
-
def instance_id(self) -> int:
|
|
54
|
+
def instance_id(self) -> builtins.int:
|
|
54
55
|
return pulumi.get(self, "instance_id")
|
|
55
56
|
|
|
56
57
|
@property
|
|
57
58
|
@pulumi.getter(name="newErlangVersion")
|
|
58
|
-
def new_erlang_version(self) -> str:
|
|
59
|
+
def new_erlang_version(self) -> builtins.str:
|
|
59
60
|
"""
|
|
60
61
|
Possible upgradable version for Erlang.
|
|
61
62
|
"""
|
|
@@ -63,7 +64,7 @@ class GetUpgradableVersionsResult:
|
|
|
63
64
|
|
|
64
65
|
@property
|
|
65
66
|
@pulumi.getter(name="newRabbitmqVersion")
|
|
66
|
-
def new_rabbitmq_version(self) -> str:
|
|
67
|
+
def new_rabbitmq_version(self) -> builtins.str:
|
|
67
68
|
"""
|
|
68
69
|
Possible upgradable version for RabbitMQ.
|
|
69
70
|
"""
|
|
@@ -82,7 +83,7 @@ class AwaitableGetUpgradableVersionsResult(GetUpgradableVersionsResult):
|
|
|
82
83
|
new_rabbitmq_version=self.new_rabbitmq_version)
|
|
83
84
|
|
|
84
85
|
|
|
85
|
-
def get_upgradable_versions(instance_id: Optional[int] = None,
|
|
86
|
+
def get_upgradable_versions(instance_id: Optional[builtins.int] = None,
|
|
86
87
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUpgradableVersionsResult:
|
|
87
88
|
"""
|
|
88
89
|
Use this data source to retrieve information about possible upgradable versions for RabbitMQ and
|
|
@@ -102,7 +103,7 @@ def get_upgradable_versions(instance_id: Optional[int] = None,
|
|
|
102
103
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
103
104
|
|
|
104
105
|
|
|
105
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
106
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
106
107
|
"""
|
|
107
108
|
__args__ = dict()
|
|
108
109
|
__args__['instanceId'] = instance_id
|
|
@@ -114,7 +115,7 @@ def get_upgradable_versions(instance_id: Optional[int] = None,
|
|
|
114
115
|
instance_id=pulumi.get(__ret__, 'instance_id'),
|
|
115
116
|
new_erlang_version=pulumi.get(__ret__, 'new_erlang_version'),
|
|
116
117
|
new_rabbitmq_version=pulumi.get(__ret__, 'new_rabbitmq_version'))
|
|
117
|
-
def get_upgradable_versions_output(instance_id: Optional[pulumi.Input[int]] = None,
|
|
118
|
+
def get_upgradable_versions_output(instance_id: Optional[pulumi.Input[builtins.int]] = None,
|
|
118
119
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUpgradableVersionsResult]:
|
|
119
120
|
"""
|
|
120
121
|
Use this data source to retrieve information about possible upgradable versions for RabbitMQ and
|
|
@@ -134,7 +135,7 @@ def get_upgradable_versions_output(instance_id: Optional[pulumi.Input[int]] = No
|
|
|
134
135
|
This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
135
136
|
|
|
136
137
|
|
|
137
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
138
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
138
139
|
"""
|
|
139
140
|
__args__ = dict()
|
|
140
141
|
__args__['instanceId'] = instance_id
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -54,7 +55,7 @@ class GetVpcGcpInfoResult:
|
|
|
54
55
|
|
|
55
56
|
@property
|
|
56
57
|
@pulumi.getter
|
|
57
|
-
def id(self) -> str:
|
|
58
|
+
def id(self) -> builtins.str:
|
|
58
59
|
"""
|
|
59
60
|
The provider-assigned unique ID for this managed resource.
|
|
60
61
|
"""
|
|
@@ -62,12 +63,12 @@ class GetVpcGcpInfoResult:
|
|
|
62
63
|
|
|
63
64
|
@property
|
|
64
65
|
@pulumi.getter(name="instanceId")
|
|
65
|
-
def instance_id(self) -> Optional[int]:
|
|
66
|
+
def instance_id(self) -> Optional[builtins.int]:
|
|
66
67
|
return pulumi.get(self, "instance_id")
|
|
67
68
|
|
|
68
69
|
@property
|
|
69
70
|
@pulumi.getter
|
|
70
|
-
def name(self) -> str:
|
|
71
|
+
def name(self) -> builtins.str:
|
|
71
72
|
"""
|
|
72
73
|
The name of the VPC.
|
|
73
74
|
"""
|
|
@@ -75,7 +76,7 @@ class GetVpcGcpInfoResult:
|
|
|
75
76
|
|
|
76
77
|
@property
|
|
77
78
|
@pulumi.getter
|
|
78
|
-
def network(self) -> str:
|
|
79
|
+
def network(self) -> builtins.str:
|
|
79
80
|
"""
|
|
80
81
|
VPC network uri.
|
|
81
82
|
"""
|
|
@@ -83,22 +84,22 @@ class GetVpcGcpInfoResult:
|
|
|
83
84
|
|
|
84
85
|
@property
|
|
85
86
|
@pulumi.getter
|
|
86
|
-
def sleep(self) -> Optional[int]:
|
|
87
|
+
def sleep(self) -> Optional[builtins.int]:
|
|
87
88
|
return pulumi.get(self, "sleep")
|
|
88
89
|
|
|
89
90
|
@property
|
|
90
91
|
@pulumi.getter
|
|
91
|
-
def timeout(self) -> Optional[int]:
|
|
92
|
+
def timeout(self) -> Optional[builtins.int]:
|
|
92
93
|
return pulumi.get(self, "timeout")
|
|
93
94
|
|
|
94
95
|
@property
|
|
95
96
|
@pulumi.getter(name="vpcId")
|
|
96
|
-
def vpc_id(self) -> Optional[str]:
|
|
97
|
+
def vpc_id(self) -> Optional[builtins.str]:
|
|
97
98
|
return pulumi.get(self, "vpc_id")
|
|
98
99
|
|
|
99
100
|
@property
|
|
100
101
|
@pulumi.getter(name="vpcSubnet")
|
|
101
|
-
def vpc_subnet(self) -> str:
|
|
102
|
+
def vpc_subnet(self) -> builtins.str:
|
|
102
103
|
"""
|
|
103
104
|
Dedicated VPC subnet.
|
|
104
105
|
"""
|
|
@@ -121,22 +122,22 @@ class AwaitableGetVpcGcpInfoResult(GetVpcGcpInfoResult):
|
|
|
121
122
|
vpc_subnet=self.vpc_subnet)
|
|
122
123
|
|
|
123
124
|
|
|
124
|
-
def get_vpc_gcp_info(instance_id: Optional[int] = None,
|
|
125
|
-
sleep: Optional[int] = None,
|
|
126
|
-
timeout: Optional[int] = None,
|
|
127
|
-
vpc_id: Optional[str] = None,
|
|
125
|
+
def get_vpc_gcp_info(instance_id: Optional[builtins.int] = None,
|
|
126
|
+
sleep: Optional[builtins.int] = None,
|
|
127
|
+
timeout: Optional[builtins.int] = None,
|
|
128
|
+
vpc_id: Optional[builtins.str] = None,
|
|
128
129
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcGcpInfoResult:
|
|
129
130
|
"""
|
|
130
131
|
Use this data source to access information about an existing resource.
|
|
131
132
|
|
|
132
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
133
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
133
134
|
|
|
134
135
|
***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
|
|
135
|
-
:param int sleep: Configurable sleep time (seconds) between retries when reading peering.
|
|
136
|
+
:param builtins.int sleep: Configurable sleep time (seconds) between retries when reading peering.
|
|
136
137
|
Default set to 10 seconds.
|
|
137
|
-
:param int timeout: Configurable timeout time (seconds) before retries times out. Default
|
|
138
|
+
:param builtins.int timeout: Configurable timeout time (seconds) before retries times out. Default
|
|
138
139
|
set to 1800 seconds.
|
|
139
|
-
:param str vpc_id: The managed VPC identifier.
|
|
140
|
+
:param builtins.str vpc_id: The managed VPC identifier.
|
|
140
141
|
|
|
141
142
|
***Note:*** Available from [v1.16.0], will be removed in next major version (v2.0)
|
|
142
143
|
"""
|
|
@@ -157,22 +158,22 @@ def get_vpc_gcp_info(instance_id: Optional[int] = None,
|
|
|
157
158
|
timeout=pulumi.get(__ret__, 'timeout'),
|
|
158
159
|
vpc_id=pulumi.get(__ret__, 'vpc_id'),
|
|
159
160
|
vpc_subnet=pulumi.get(__ret__, 'vpc_subnet'))
|
|
160
|
-
def get_vpc_gcp_info_output(instance_id: Optional[pulumi.Input[Optional[int]]] = None,
|
|
161
|
-
sleep: Optional[pulumi.Input[Optional[int]]] = None,
|
|
162
|
-
timeout: Optional[pulumi.Input[Optional[int]]] = None,
|
|
163
|
-
vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
161
|
+
def get_vpc_gcp_info_output(instance_id: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
162
|
+
sleep: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
163
|
+
timeout: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
|
164
|
+
vpc_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
|
164
165
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcGcpInfoResult]:
|
|
165
166
|
"""
|
|
166
167
|
Use this data source to access information about an existing resource.
|
|
167
168
|
|
|
168
|
-
:param int instance_id: The CloudAMQP instance identifier.
|
|
169
|
+
:param builtins.int instance_id: The CloudAMQP instance identifier.
|
|
169
170
|
|
|
170
171
|
***Deprecated:*** from [v1.16.0], will be removed in next major version (v2.0)
|
|
171
|
-
:param int sleep: Configurable sleep time (seconds) between retries when reading peering.
|
|
172
|
+
:param builtins.int sleep: Configurable sleep time (seconds) between retries when reading peering.
|
|
172
173
|
Default set to 10 seconds.
|
|
173
|
-
:param int timeout: Configurable timeout time (seconds) before retries times out. Default
|
|
174
|
+
:param builtins.int timeout: Configurable timeout time (seconds) before retries times out. Default
|
|
174
175
|
set to 1800 seconds.
|
|
175
|
-
:param str vpc_id: The managed VPC identifier.
|
|
176
|
+
:param builtins.str vpc_id: The managed VPC identifier.
|
|
176
177
|
|
|
177
178
|
***Note:*** Available from [v1.16.0], will be removed in next major version (v2.0)
|
|
178
179
|
"""
|