pulumi-cloudamqp 3.21.0a1744082841__py3-none-any.whl → 3.22.0a1744182778__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 +1 -0
- pulumi_cloudamqp/_inputs.py +67 -66
- pulumi_cloudamqp/account_action.py +29 -28
- pulumi_cloudamqp/alarm.py +155 -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 +29 -28
- pulumi_cloudamqp/extra_disk_size.py +71 -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_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_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 +197 -196
- pulumi_cloudamqp/integration_aws_eventbridge.py +92 -91
- pulumi_cloudamqp/integration_log.py +365 -364
- pulumi_cloudamqp/integration_metric.py +295 -294
- pulumi_cloudamqp/maintenance_window.py +57 -56
- pulumi_cloudamqp/node_actions.py +50 -49
- pulumi_cloudamqp/notification.py +71 -70
- pulumi_cloudamqp/outputs.py +131 -130
- pulumi_cloudamqp/plugin.py +85 -84
- pulumi_cloudamqp/plugin_community.py +85 -84
- pulumi_cloudamqp/privatelink_aws.py +78 -77
- pulumi_cloudamqp/privatelink_azure.py +78 -77
- pulumi_cloudamqp/provider.py +22 -21
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +169 -168
- pulumi_cloudamqp/security_firewall.py +43 -42
- pulumi_cloudamqp/upgrade_lavinmq.py +29 -28
- pulumi_cloudamqp/upgrade_rabbitmq.py +43 -42
- pulumi_cloudamqp/vpc.py +64 -63
- pulumi_cloudamqp/vpc_connect.py +120 -119
- pulumi_cloudamqp/vpc_gcp_peering.py +106 -105
- pulumi_cloudamqp/vpc_peering.py +78 -77
- pulumi_cloudamqp/webhook.py +99 -98
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0a1744182778.dist-info}/METADATA +1 -1
- pulumi_cloudamqp-3.22.0a1744182778.dist-info/RECORD +50 -0
- pulumi_cloudamqp-3.21.0a1744082841.dist-info/RECORD +0 -50
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0a1744182778.dist-info}/WHEEL +0 -0
- {pulumi_cloudamqp-3.21.0a1744082841.dist-info → pulumi_cloudamqp-3.22.0a1744182778.dist-info}/top_level.txt +0 -0
pulumi_cloudamqp/outputs.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
|
|
@@ -48,13 +49,13 @@ class ExtraDiskSizeNode(dict):
|
|
|
48
49
|
return super().get(key, default)
|
|
49
50
|
|
|
50
51
|
def __init__(__self__, *,
|
|
51
|
-
additional_disk_size: Optional[int] = None,
|
|
52
|
-
disk_size: Optional[int] = None,
|
|
53
|
-
name: Optional[str] = None):
|
|
52
|
+
additional_disk_size: Optional[builtins.int] = None,
|
|
53
|
+
disk_size: Optional[builtins.int] = None,
|
|
54
|
+
name: Optional[builtins.str] = None):
|
|
54
55
|
"""
|
|
55
|
-
:param int additional_disk_size: Additional added disk size
|
|
56
|
-
:param int disk_size: Subscription plan disk size
|
|
57
|
-
:param str name: Name of the node.
|
|
56
|
+
:param builtins.int additional_disk_size: Additional added disk size
|
|
57
|
+
:param builtins.int disk_size: Subscription plan disk size
|
|
58
|
+
:param builtins.str name: Name of the node.
|
|
58
59
|
"""
|
|
59
60
|
if additional_disk_size is not None:
|
|
60
61
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
@@ -65,7 +66,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
65
66
|
|
|
66
67
|
@property
|
|
67
68
|
@pulumi.getter(name="additionalDiskSize")
|
|
68
|
-
def additional_disk_size(self) -> Optional[int]:
|
|
69
|
+
def additional_disk_size(self) -> Optional[builtins.int]:
|
|
69
70
|
"""
|
|
70
71
|
Additional added disk size
|
|
71
72
|
"""
|
|
@@ -73,7 +74,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
73
74
|
|
|
74
75
|
@property
|
|
75
76
|
@pulumi.getter(name="diskSize")
|
|
76
|
-
def disk_size(self) -> Optional[int]:
|
|
77
|
+
def disk_size(self) -> Optional[builtins.int]:
|
|
77
78
|
"""
|
|
78
79
|
Subscription plan disk size
|
|
79
80
|
"""
|
|
@@ -81,7 +82,7 @@ class ExtraDiskSizeNode(dict):
|
|
|
81
82
|
|
|
82
83
|
@property
|
|
83
84
|
@pulumi.getter
|
|
84
|
-
def name(self) -> Optional[str]:
|
|
85
|
+
def name(self) -> Optional[builtins.str]:
|
|
85
86
|
"""
|
|
86
87
|
Name of the node.
|
|
87
88
|
"""
|
|
@@ -108,14 +109,14 @@ class InstanceCopySetting(dict):
|
|
|
108
109
|
return super().get(key, default)
|
|
109
110
|
|
|
110
111
|
def __init__(__self__, *,
|
|
111
|
-
settings: Sequence[str],
|
|
112
|
-
subscription_id: str):
|
|
112
|
+
settings: Sequence[builtins.str],
|
|
113
|
+
subscription_id: builtins.str):
|
|
113
114
|
"""
|
|
114
|
-
:param Sequence[str] settings: Array of one or more settings to be copied. Allowed values:
|
|
115
|
+
:param Sequence[builtins.str] settings: Array of one or more settings to be copied. Allowed values:
|
|
115
116
|
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
116
117
|
|
|
117
118
|
See more below, [copy settings].
|
|
118
|
-
:param str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
119
|
+
:param builtins.str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
119
120
|
from.
|
|
120
121
|
"""
|
|
121
122
|
pulumi.set(__self__, "settings", settings)
|
|
@@ -123,7 +124,7 @@ class InstanceCopySetting(dict):
|
|
|
123
124
|
|
|
124
125
|
@property
|
|
125
126
|
@pulumi.getter
|
|
126
|
-
def settings(self) -> Sequence[str]:
|
|
127
|
+
def settings(self) -> Sequence[builtins.str]:
|
|
127
128
|
"""
|
|
128
129
|
Array of one or more settings to be copied. Allowed values:
|
|
129
130
|
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
@@ -134,7 +135,7 @@ class InstanceCopySetting(dict):
|
|
|
134
135
|
|
|
135
136
|
@property
|
|
136
137
|
@pulumi.getter(name="subscriptionId")
|
|
137
|
-
def subscription_id(self) -> str:
|
|
138
|
+
def subscription_id(self) -> builtins.str:
|
|
138
139
|
"""
|
|
139
140
|
Instance identifier of the CloudAMQP instance to copy the settings
|
|
140
141
|
from.
|
|
@@ -145,15 +146,15 @@ class InstanceCopySetting(dict):
|
|
|
145
146
|
@pulumi.output_type
|
|
146
147
|
class NotificationResponder(dict):
|
|
147
148
|
def __init__(__self__, *,
|
|
148
|
-
type: str,
|
|
149
|
-
id: Optional[str] = None,
|
|
150
|
-
name: Optional[str] = None,
|
|
151
|
-
username: Optional[str] = None):
|
|
152
|
-
"""
|
|
153
|
-
:param str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
154
|
-
:param str id: Identifier in UUID format
|
|
155
|
-
:param str name: Name of the responder
|
|
156
|
-
:param str username: Username of the responder
|
|
149
|
+
type: builtins.str,
|
|
150
|
+
id: Optional[builtins.str] = None,
|
|
151
|
+
name: Optional[builtins.str] = None,
|
|
152
|
+
username: Optional[builtins.str] = None):
|
|
153
|
+
"""
|
|
154
|
+
:param builtins.str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
155
|
+
:param builtins.str id: Identifier in UUID format
|
|
156
|
+
:param builtins.str name: Name of the responder
|
|
157
|
+
:param builtins.str username: Username of the responder
|
|
157
158
|
|
|
158
159
|
Responders of type `team`, `escalation` and `schedule` can use either id or name.
|
|
159
160
|
While `user` can use either id or username.
|
|
@@ -168,7 +169,7 @@ class NotificationResponder(dict):
|
|
|
168
169
|
|
|
169
170
|
@property
|
|
170
171
|
@pulumi.getter
|
|
171
|
-
def type(self) -> str:
|
|
172
|
+
def type(self) -> builtins.str:
|
|
172
173
|
"""
|
|
173
174
|
Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
174
175
|
"""
|
|
@@ -176,7 +177,7 @@ class NotificationResponder(dict):
|
|
|
176
177
|
|
|
177
178
|
@property
|
|
178
179
|
@pulumi.getter
|
|
179
|
-
def id(self) -> Optional[str]:
|
|
180
|
+
def id(self) -> Optional[builtins.str]:
|
|
180
181
|
"""
|
|
181
182
|
Identifier in UUID format
|
|
182
183
|
"""
|
|
@@ -184,7 +185,7 @@ class NotificationResponder(dict):
|
|
|
184
185
|
|
|
185
186
|
@property
|
|
186
187
|
@pulumi.getter
|
|
187
|
-
def name(self) -> Optional[str]:
|
|
188
|
+
def name(self) -> Optional[builtins.str]:
|
|
188
189
|
"""
|
|
189
190
|
Name of the responder
|
|
190
191
|
"""
|
|
@@ -192,7 +193,7 @@ class NotificationResponder(dict):
|
|
|
192
193
|
|
|
193
194
|
@property
|
|
194
195
|
@pulumi.getter
|
|
195
|
-
def username(self) -> Optional[str]:
|
|
196
|
+
def username(self) -> Optional[builtins.str]:
|
|
196
197
|
"""
|
|
197
198
|
Username of the responder
|
|
198
199
|
|
|
@@ -205,13 +206,13 @@ class NotificationResponder(dict):
|
|
|
205
206
|
@pulumi.output_type
|
|
206
207
|
class SecurityFirewallRule(dict):
|
|
207
208
|
def __init__(__self__, *,
|
|
208
|
-
ip: str,
|
|
209
|
-
description: Optional[str] = None,
|
|
210
|
-
ports: Optional[Sequence[int]] = None,
|
|
211
|
-
services: Optional[Sequence[str]] = None):
|
|
209
|
+
ip: builtins.str,
|
|
210
|
+
description: Optional[builtins.str] = None,
|
|
211
|
+
ports: Optional[Sequence[builtins.int]] = None,
|
|
212
|
+
services: Optional[Sequence[builtins.str]] = None):
|
|
212
213
|
"""
|
|
213
|
-
:param str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
214
|
-
:param str description: Description name of the rule. e.g. Default.
|
|
214
|
+
:param builtins.str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
215
|
+
:param builtins.str description: Description name of the rule. e.g. Default.
|
|
215
216
|
|
|
216
217
|
Pre-defined services for RabbitMQ:
|
|
217
218
|
|
|
@@ -236,8 +237,8 @@ class SecurityFirewallRule(dict):
|
|
|
236
237
|
| HTTPS | 443 |
|
|
237
238
|
| MQTT | 1883 |
|
|
238
239
|
| MQTTS | 8883 |
|
|
239
|
-
:param Sequence[int] ports: Custom ports to be opened
|
|
240
|
-
:param Sequence[str] services: Pre-defined service ports, see table below
|
|
240
|
+
:param Sequence[builtins.int] ports: Custom ports to be opened
|
|
241
|
+
:param Sequence[builtins.str] services: Pre-defined service ports, see table below
|
|
241
242
|
"""
|
|
242
243
|
pulumi.set(__self__, "ip", ip)
|
|
243
244
|
if description is not None:
|
|
@@ -249,7 +250,7 @@ class SecurityFirewallRule(dict):
|
|
|
249
250
|
|
|
250
251
|
@property
|
|
251
252
|
@pulumi.getter
|
|
252
|
-
def ip(self) -> str:
|
|
253
|
+
def ip(self) -> builtins.str:
|
|
253
254
|
"""
|
|
254
255
|
CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
255
256
|
"""
|
|
@@ -257,7 +258,7 @@ class SecurityFirewallRule(dict):
|
|
|
257
258
|
|
|
258
259
|
@property
|
|
259
260
|
@pulumi.getter
|
|
260
|
-
def description(self) -> Optional[str]:
|
|
261
|
+
def description(self) -> Optional[builtins.str]:
|
|
261
262
|
"""
|
|
262
263
|
Description name of the rule. e.g. Default.
|
|
263
264
|
|
|
@@ -289,7 +290,7 @@ class SecurityFirewallRule(dict):
|
|
|
289
290
|
|
|
290
291
|
@property
|
|
291
292
|
@pulumi.getter
|
|
292
|
-
def ports(self) -> Optional[Sequence[int]]:
|
|
293
|
+
def ports(self) -> Optional[Sequence[builtins.int]]:
|
|
293
294
|
"""
|
|
294
295
|
Custom ports to be opened
|
|
295
296
|
"""
|
|
@@ -297,7 +298,7 @@ class SecurityFirewallRule(dict):
|
|
|
297
298
|
|
|
298
299
|
@property
|
|
299
300
|
@pulumi.getter
|
|
300
|
-
def services(self) -> Optional[Sequence[str]]:
|
|
301
|
+
def services(self) -> Optional[Sequence[builtins.str]]:
|
|
301
302
|
"""
|
|
302
303
|
Pre-defined service ports, see table below
|
|
303
304
|
"""
|
|
@@ -307,17 +308,17 @@ class SecurityFirewallRule(dict):
|
|
|
307
308
|
@pulumi.output_type
|
|
308
309
|
class GetAccountInstanceResult(dict):
|
|
309
310
|
def __init__(__self__, *,
|
|
310
|
-
id: int,
|
|
311
|
-
name: str,
|
|
312
|
-
plan: str,
|
|
313
|
-
region: str,
|
|
314
|
-
tags: Optional[Sequence[str]] = None):
|
|
315
|
-
"""
|
|
316
|
-
:param int id: The instance identifier.
|
|
317
|
-
:param str name: The name of the instance.
|
|
318
|
-
:param str plan: The subscription plan used for the instance.
|
|
319
|
-
:param str region: The region were the instanece is located in.
|
|
320
|
-
:param Sequence[str] tags: Optional tags set for the instance.
|
|
311
|
+
id: builtins.int,
|
|
312
|
+
name: builtins.str,
|
|
313
|
+
plan: builtins.str,
|
|
314
|
+
region: builtins.str,
|
|
315
|
+
tags: Optional[Sequence[builtins.str]] = None):
|
|
316
|
+
"""
|
|
317
|
+
:param builtins.int id: The instance identifier.
|
|
318
|
+
:param builtins.str name: The name of the instance.
|
|
319
|
+
:param builtins.str plan: The subscription plan used for the instance.
|
|
320
|
+
:param builtins.str region: The region were the instanece is located in.
|
|
321
|
+
:param Sequence[builtins.str] tags: Optional tags set for the instance.
|
|
321
322
|
"""
|
|
322
323
|
pulumi.set(__self__, "id", id)
|
|
323
324
|
pulumi.set(__self__, "name", name)
|
|
@@ -328,7 +329,7 @@ class GetAccountInstanceResult(dict):
|
|
|
328
329
|
|
|
329
330
|
@property
|
|
330
331
|
@pulumi.getter
|
|
331
|
-
def id(self) -> int:
|
|
332
|
+
def id(self) -> builtins.int:
|
|
332
333
|
"""
|
|
333
334
|
The instance identifier.
|
|
334
335
|
"""
|
|
@@ -336,7 +337,7 @@ class GetAccountInstanceResult(dict):
|
|
|
336
337
|
|
|
337
338
|
@property
|
|
338
339
|
@pulumi.getter
|
|
339
|
-
def name(self) -> str:
|
|
340
|
+
def name(self) -> builtins.str:
|
|
340
341
|
"""
|
|
341
342
|
The name of the instance.
|
|
342
343
|
"""
|
|
@@ -344,7 +345,7 @@ class GetAccountInstanceResult(dict):
|
|
|
344
345
|
|
|
345
346
|
@property
|
|
346
347
|
@pulumi.getter
|
|
347
|
-
def plan(self) -> str:
|
|
348
|
+
def plan(self) -> builtins.str:
|
|
348
349
|
"""
|
|
349
350
|
The subscription plan used for the instance.
|
|
350
351
|
"""
|
|
@@ -352,7 +353,7 @@ class GetAccountInstanceResult(dict):
|
|
|
352
353
|
|
|
353
354
|
@property
|
|
354
355
|
@pulumi.getter
|
|
355
|
-
def region(self) -> str:
|
|
356
|
+
def region(self) -> builtins.str:
|
|
356
357
|
"""
|
|
357
358
|
The region were the instanece is located in.
|
|
358
359
|
"""
|
|
@@ -360,7 +361,7 @@ class GetAccountInstanceResult(dict):
|
|
|
360
361
|
|
|
361
362
|
@property
|
|
362
363
|
@pulumi.getter
|
|
363
|
-
def tags(self) -> Optional[Sequence[str]]:
|
|
364
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
|
364
365
|
"""
|
|
365
366
|
Optional tags set for the instance.
|
|
366
367
|
"""
|
|
@@ -370,19 +371,19 @@ class GetAccountInstanceResult(dict):
|
|
|
370
371
|
@pulumi.output_type
|
|
371
372
|
class GetAccountVpcsVpcResult(dict):
|
|
372
373
|
def __init__(__self__, *,
|
|
373
|
-
id: int,
|
|
374
|
-
name: str,
|
|
375
|
-
region: str,
|
|
376
|
-
subnet: str,
|
|
377
|
-
vpc_name: str,
|
|
378
|
-
tags: Optional[Sequence[str]] = None):
|
|
379
|
-
"""
|
|
380
|
-
:param int id: The VPC identifier.
|
|
381
|
-
:param str name: The VPC instance name.
|
|
382
|
-
:param str region: The region the VPC is hosted in.
|
|
383
|
-
:param str subnet: The VPC subnet.
|
|
384
|
-
:param str vpc_name: VPC name given when hosted at the cloud provider.
|
|
385
|
-
:param Sequence[str] tags: Optional tags set for the VPC.
|
|
374
|
+
id: builtins.int,
|
|
375
|
+
name: builtins.str,
|
|
376
|
+
region: builtins.str,
|
|
377
|
+
subnet: builtins.str,
|
|
378
|
+
vpc_name: builtins.str,
|
|
379
|
+
tags: Optional[Sequence[builtins.str]] = None):
|
|
380
|
+
"""
|
|
381
|
+
:param builtins.int id: The VPC identifier.
|
|
382
|
+
:param builtins.str name: The VPC instance name.
|
|
383
|
+
:param builtins.str region: The region the VPC is hosted in.
|
|
384
|
+
:param builtins.str subnet: The VPC subnet.
|
|
385
|
+
:param builtins.str vpc_name: VPC name given when hosted at the cloud provider.
|
|
386
|
+
:param Sequence[builtins.str] tags: Optional tags set for the VPC.
|
|
386
387
|
"""
|
|
387
388
|
pulumi.set(__self__, "id", id)
|
|
388
389
|
pulumi.set(__self__, "name", name)
|
|
@@ -394,7 +395,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
394
395
|
|
|
395
396
|
@property
|
|
396
397
|
@pulumi.getter
|
|
397
|
-
def id(self) -> int:
|
|
398
|
+
def id(self) -> builtins.int:
|
|
398
399
|
"""
|
|
399
400
|
The VPC identifier.
|
|
400
401
|
"""
|
|
@@ -402,7 +403,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
402
403
|
|
|
403
404
|
@property
|
|
404
405
|
@pulumi.getter
|
|
405
|
-
def name(self) -> str:
|
|
406
|
+
def name(self) -> builtins.str:
|
|
406
407
|
"""
|
|
407
408
|
The VPC instance name.
|
|
408
409
|
"""
|
|
@@ -410,7 +411,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
410
411
|
|
|
411
412
|
@property
|
|
412
413
|
@pulumi.getter
|
|
413
|
-
def region(self) -> str:
|
|
414
|
+
def region(self) -> builtins.str:
|
|
414
415
|
"""
|
|
415
416
|
The region the VPC is hosted in.
|
|
416
417
|
"""
|
|
@@ -418,7 +419,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
418
419
|
|
|
419
420
|
@property
|
|
420
421
|
@pulumi.getter
|
|
421
|
-
def subnet(self) -> str:
|
|
422
|
+
def subnet(self) -> builtins.str:
|
|
422
423
|
"""
|
|
423
424
|
The VPC subnet.
|
|
424
425
|
"""
|
|
@@ -426,7 +427,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
426
427
|
|
|
427
428
|
@property
|
|
428
429
|
@pulumi.getter(name="vpcName")
|
|
429
|
-
def vpc_name(self) -> str:
|
|
430
|
+
def vpc_name(self) -> builtins.str:
|
|
430
431
|
"""
|
|
431
432
|
VPC name given when hosted at the cloud provider.
|
|
432
433
|
"""
|
|
@@ -434,7 +435,7 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
434
435
|
|
|
435
436
|
@property
|
|
436
437
|
@pulumi.getter
|
|
437
|
-
def tags(self) -> Optional[Sequence[str]]:
|
|
438
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
|
438
439
|
"""
|
|
439
440
|
Optional tags set for the VPC.
|
|
440
441
|
"""
|
|
@@ -444,29 +445,29 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
444
445
|
@pulumi.output_type
|
|
445
446
|
class GetNodesNodeResult(dict):
|
|
446
447
|
def __init__(__self__, *,
|
|
447
|
-
additional_disk_size: int,
|
|
448
|
-
availability_zone: str,
|
|
449
|
-
configured: bool,
|
|
450
|
-
disk_size: int,
|
|
451
|
-
erlang_version: str,
|
|
452
|
-
hipe: bool,
|
|
453
|
-
hostname: str,
|
|
454
|
-
hostname_internal: str,
|
|
455
|
-
name: str,
|
|
456
|
-
rabbitmq_version: str,
|
|
457
|
-
running: bool):
|
|
458
|
-
"""
|
|
459
|
-
:param int additional_disk_size: Additional added disk size
|
|
460
|
-
:param str availability_zone: Availability zone the node is hosted in.
|
|
461
|
-
:param bool configured: Is the node configured?
|
|
462
|
-
:param int disk_size: Subscription plan disk size
|
|
463
|
-
:param str erlang_version: Currently used Erlang version on the node.
|
|
464
|
-
:param bool hipe: Enable or disable High-performance Erlang.
|
|
465
|
-
:param str hostname: External hostname assigned to the node.
|
|
466
|
-
:param str hostname_internal: Internal hostname assigned to the node.
|
|
467
|
-
:param str name: Name of the node.
|
|
468
|
-
:param str rabbitmq_version: Currently configured Rabbit MQ version on the node.
|
|
469
|
-
:param bool running: Is the node running?
|
|
448
|
+
additional_disk_size: builtins.int,
|
|
449
|
+
availability_zone: builtins.str,
|
|
450
|
+
configured: builtins.bool,
|
|
451
|
+
disk_size: builtins.int,
|
|
452
|
+
erlang_version: builtins.str,
|
|
453
|
+
hipe: builtins.bool,
|
|
454
|
+
hostname: builtins.str,
|
|
455
|
+
hostname_internal: builtins.str,
|
|
456
|
+
name: builtins.str,
|
|
457
|
+
rabbitmq_version: builtins.str,
|
|
458
|
+
running: builtins.bool):
|
|
459
|
+
"""
|
|
460
|
+
:param builtins.int additional_disk_size: Additional added disk size
|
|
461
|
+
:param builtins.str availability_zone: Availability zone the node is hosted in.
|
|
462
|
+
:param builtins.bool configured: Is the node configured?
|
|
463
|
+
:param builtins.int disk_size: Subscription plan disk size
|
|
464
|
+
:param builtins.str erlang_version: Currently used Erlang version on the node.
|
|
465
|
+
:param builtins.bool hipe: Enable or disable High-performance Erlang.
|
|
466
|
+
:param builtins.str hostname: External hostname assigned to the node.
|
|
467
|
+
:param builtins.str hostname_internal: Internal hostname assigned to the node.
|
|
468
|
+
:param builtins.str name: Name of the node.
|
|
469
|
+
:param builtins.str rabbitmq_version: Currently configured Rabbit MQ version on the node.
|
|
470
|
+
:param builtins.bool running: Is the node running?
|
|
470
471
|
"""
|
|
471
472
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
472
473
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
@@ -482,7 +483,7 @@ class GetNodesNodeResult(dict):
|
|
|
482
483
|
|
|
483
484
|
@property
|
|
484
485
|
@pulumi.getter(name="additionalDiskSize")
|
|
485
|
-
def additional_disk_size(self) -> int:
|
|
486
|
+
def additional_disk_size(self) -> builtins.int:
|
|
486
487
|
"""
|
|
487
488
|
Additional added disk size
|
|
488
489
|
"""
|
|
@@ -490,7 +491,7 @@ class GetNodesNodeResult(dict):
|
|
|
490
491
|
|
|
491
492
|
@property
|
|
492
493
|
@pulumi.getter(name="availabilityZone")
|
|
493
|
-
def availability_zone(self) -> str:
|
|
494
|
+
def availability_zone(self) -> builtins.str:
|
|
494
495
|
"""
|
|
495
496
|
Availability zone the node is hosted in.
|
|
496
497
|
"""
|
|
@@ -498,7 +499,7 @@ class GetNodesNodeResult(dict):
|
|
|
498
499
|
|
|
499
500
|
@property
|
|
500
501
|
@pulumi.getter
|
|
501
|
-
def configured(self) -> bool:
|
|
502
|
+
def configured(self) -> builtins.bool:
|
|
502
503
|
"""
|
|
503
504
|
Is the node configured?
|
|
504
505
|
"""
|
|
@@ -506,7 +507,7 @@ class GetNodesNodeResult(dict):
|
|
|
506
507
|
|
|
507
508
|
@property
|
|
508
509
|
@pulumi.getter(name="diskSize")
|
|
509
|
-
def disk_size(self) -> int:
|
|
510
|
+
def disk_size(self) -> builtins.int:
|
|
510
511
|
"""
|
|
511
512
|
Subscription plan disk size
|
|
512
513
|
"""
|
|
@@ -514,7 +515,7 @@ class GetNodesNodeResult(dict):
|
|
|
514
515
|
|
|
515
516
|
@property
|
|
516
517
|
@pulumi.getter(name="erlangVersion")
|
|
517
|
-
def erlang_version(self) -> str:
|
|
518
|
+
def erlang_version(self) -> builtins.str:
|
|
518
519
|
"""
|
|
519
520
|
Currently used Erlang version on the node.
|
|
520
521
|
"""
|
|
@@ -522,7 +523,7 @@ class GetNodesNodeResult(dict):
|
|
|
522
523
|
|
|
523
524
|
@property
|
|
524
525
|
@pulumi.getter
|
|
525
|
-
def hipe(self) -> bool:
|
|
526
|
+
def hipe(self) -> builtins.bool:
|
|
526
527
|
"""
|
|
527
528
|
Enable or disable High-performance Erlang.
|
|
528
529
|
"""
|
|
@@ -530,7 +531,7 @@ class GetNodesNodeResult(dict):
|
|
|
530
531
|
|
|
531
532
|
@property
|
|
532
533
|
@pulumi.getter
|
|
533
|
-
def hostname(self) -> str:
|
|
534
|
+
def hostname(self) -> builtins.str:
|
|
534
535
|
"""
|
|
535
536
|
External hostname assigned to the node.
|
|
536
537
|
"""
|
|
@@ -538,7 +539,7 @@ class GetNodesNodeResult(dict):
|
|
|
538
539
|
|
|
539
540
|
@property
|
|
540
541
|
@pulumi.getter(name="hostnameInternal")
|
|
541
|
-
def hostname_internal(self) -> str:
|
|
542
|
+
def hostname_internal(self) -> builtins.str:
|
|
542
543
|
"""
|
|
543
544
|
Internal hostname assigned to the node.
|
|
544
545
|
"""
|
|
@@ -546,7 +547,7 @@ class GetNodesNodeResult(dict):
|
|
|
546
547
|
|
|
547
548
|
@property
|
|
548
549
|
@pulumi.getter
|
|
549
|
-
def name(self) -> str:
|
|
550
|
+
def name(self) -> builtins.str:
|
|
550
551
|
"""
|
|
551
552
|
Name of the node.
|
|
552
553
|
"""
|
|
@@ -554,7 +555,7 @@ class GetNodesNodeResult(dict):
|
|
|
554
555
|
|
|
555
556
|
@property
|
|
556
557
|
@pulumi.getter(name="rabbitmqVersion")
|
|
557
|
-
def rabbitmq_version(self) -> str:
|
|
558
|
+
def rabbitmq_version(self) -> builtins.str:
|
|
558
559
|
"""
|
|
559
560
|
Currently configured Rabbit MQ version on the node.
|
|
560
561
|
"""
|
|
@@ -562,7 +563,7 @@ class GetNodesNodeResult(dict):
|
|
|
562
563
|
|
|
563
564
|
@property
|
|
564
565
|
@pulumi.getter
|
|
565
|
-
def running(self) -> bool:
|
|
566
|
+
def running(self) -> builtins.bool:
|
|
566
567
|
"""
|
|
567
568
|
Is the node running?
|
|
568
569
|
"""
|
|
@@ -572,13 +573,13 @@ class GetNodesNodeResult(dict):
|
|
|
572
573
|
@pulumi.output_type
|
|
573
574
|
class GetPluginsCommunityPluginResult(dict):
|
|
574
575
|
def __init__(__self__, *,
|
|
575
|
-
description: str,
|
|
576
|
-
name: str,
|
|
577
|
-
require: str):
|
|
576
|
+
description: builtins.str,
|
|
577
|
+
name: builtins.str,
|
|
578
|
+
require: builtins.str):
|
|
578
579
|
"""
|
|
579
|
-
:param str description: Description of what the plugin does.
|
|
580
|
-
:param str name: The type of the recipient.
|
|
581
|
-
:param str require: Min. required Rabbit MQ version to be used.
|
|
580
|
+
:param builtins.str description: Description of what the plugin does.
|
|
581
|
+
:param builtins.str name: The type of the recipient.
|
|
582
|
+
:param builtins.str require: Min. required Rabbit MQ version to be used.
|
|
582
583
|
"""
|
|
583
584
|
pulumi.set(__self__, "description", description)
|
|
584
585
|
pulumi.set(__self__, "name", name)
|
|
@@ -586,7 +587,7 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
586
587
|
|
|
587
588
|
@property
|
|
588
589
|
@pulumi.getter
|
|
589
|
-
def description(self) -> str:
|
|
590
|
+
def description(self) -> builtins.str:
|
|
590
591
|
"""
|
|
591
592
|
Description of what the plugin does.
|
|
592
593
|
"""
|
|
@@ -594,7 +595,7 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
594
595
|
|
|
595
596
|
@property
|
|
596
597
|
@pulumi.getter
|
|
597
|
-
def name(self) -> str:
|
|
598
|
+
def name(self) -> builtins.str:
|
|
598
599
|
"""
|
|
599
600
|
The type of the recipient.
|
|
600
601
|
"""
|
|
@@ -602,7 +603,7 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
602
603
|
|
|
603
604
|
@property
|
|
604
605
|
@pulumi.getter
|
|
605
|
-
def require(self) -> str:
|
|
606
|
+
def require(self) -> builtins.str:
|
|
606
607
|
"""
|
|
607
608
|
Min. required Rabbit MQ version to be used.
|
|
608
609
|
"""
|
|
@@ -612,15 +613,15 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
612
613
|
@pulumi.output_type
|
|
613
614
|
class GetPluginsPluginResult(dict):
|
|
614
615
|
def __init__(__self__, *,
|
|
615
|
-
description: str,
|
|
616
|
-
enabled: bool,
|
|
617
|
-
name: str,
|
|
618
|
-
version: str):
|
|
616
|
+
description: builtins.str,
|
|
617
|
+
enabled: builtins.bool,
|
|
618
|
+
name: builtins.str,
|
|
619
|
+
version: builtins.str):
|
|
619
620
|
"""
|
|
620
|
-
:param str description: Description of what the plugin does.
|
|
621
|
-
:param bool enabled: Enable or disable information for the plugin.
|
|
622
|
-
:param str name: The type of the recipient.
|
|
623
|
-
:param str version: Rabbit MQ version that the plugins are shipped with.
|
|
621
|
+
:param builtins.str description: Description of what the plugin does.
|
|
622
|
+
:param builtins.bool enabled: Enable or disable information for the plugin.
|
|
623
|
+
:param builtins.str name: The type of the recipient.
|
|
624
|
+
:param builtins.str version: Rabbit MQ version that the plugins are shipped with.
|
|
624
625
|
"""
|
|
625
626
|
pulumi.set(__self__, "description", description)
|
|
626
627
|
pulumi.set(__self__, "enabled", enabled)
|
|
@@ -629,7 +630,7 @@ class GetPluginsPluginResult(dict):
|
|
|
629
630
|
|
|
630
631
|
@property
|
|
631
632
|
@pulumi.getter
|
|
632
|
-
def description(self) -> str:
|
|
633
|
+
def description(self) -> builtins.str:
|
|
633
634
|
"""
|
|
634
635
|
Description of what the plugin does.
|
|
635
636
|
"""
|
|
@@ -637,7 +638,7 @@ class GetPluginsPluginResult(dict):
|
|
|
637
638
|
|
|
638
639
|
@property
|
|
639
640
|
@pulumi.getter
|
|
640
|
-
def enabled(self) -> bool:
|
|
641
|
+
def enabled(self) -> builtins.bool:
|
|
641
642
|
"""
|
|
642
643
|
Enable or disable information for the plugin.
|
|
643
644
|
"""
|
|
@@ -645,7 +646,7 @@ class GetPluginsPluginResult(dict):
|
|
|
645
646
|
|
|
646
647
|
@property
|
|
647
648
|
@pulumi.getter
|
|
648
|
-
def name(self) -> str:
|
|
649
|
+
def name(self) -> builtins.str:
|
|
649
650
|
"""
|
|
650
651
|
The type of the recipient.
|
|
651
652
|
"""
|
|
@@ -653,7 +654,7 @@ class GetPluginsPluginResult(dict):
|
|
|
653
654
|
|
|
654
655
|
@property
|
|
655
656
|
@pulumi.getter
|
|
656
|
-
def version(self) -> str:
|
|
657
|
+
def version(self) -> builtins.str:
|
|
657
658
|
"""
|
|
658
659
|
Rabbit MQ version that the plugins are shipped with.
|
|
659
660
|
"""
|