pulumi-cloudamqp 3.24.0a1753334979__py3-none-any.whl → 3.24.0a1753507699__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 -1
- pulumi_cloudamqp/_inputs.py +80 -81
- pulumi_cloudamqp/account_actions.py +35 -36
- pulumi_cloudamqp/alarm.py +188 -189
- pulumi_cloudamqp/config/__init__.py +1 -1
- pulumi_cloudamqp/config/__init__.pyi +1 -2
- pulumi_cloudamqp/config/vars.py +4 -5
- pulumi_cloudamqp/custom_domain.py +35 -36
- pulumi_cloudamqp/extra_disk_size.py +88 -89
- pulumi_cloudamqp/get_account.py +4 -5
- pulumi_cloudamqp/get_account_vpcs.py +4 -5
- pulumi_cloudamqp/get_alarm.py +43 -44
- pulumi_cloudamqp/get_alarms.py +16 -17
- pulumi_cloudamqp/get_credentials.py +13 -14
- pulumi_cloudamqp/get_instance.py +43 -44
- pulumi_cloudamqp/get_nodes.py +10 -11
- pulumi_cloudamqp/get_notification.py +31 -32
- pulumi_cloudamqp/get_notifications.py +10 -11
- pulumi_cloudamqp/get_plugins.py +22 -23
- pulumi_cloudamqp/get_plugins_community.py +22 -23
- pulumi_cloudamqp/get_upgradable_versions.py +13 -14
- pulumi_cloudamqp/get_vpc_gcp_info.py +33 -34
- pulumi_cloudamqp/get_vpc_info.py +23 -24
- pulumi_cloudamqp/instance.py +246 -247
- pulumi_cloudamqp/integration_aws_eventbridge.py +112 -113
- pulumi_cloudamqp/integration_log.py +443 -444
- pulumi_cloudamqp/integration_metric.py +358 -359
- pulumi_cloudamqp/maintenance_window.py +69 -70
- pulumi_cloudamqp/node_actions.py +61 -62
- pulumi_cloudamqp/notification.py +89 -90
- pulumi_cloudamqp/outputs.py +239 -240
- pulumi_cloudamqp/plugin.py +104 -105
- pulumi_cloudamqp/plugin_community.py +104 -105
- pulumi_cloudamqp/privatelink_aws.py +96 -97
- pulumi_cloudamqp/privatelink_azure.py +96 -97
- pulumi_cloudamqp/provider.py +28 -29
- pulumi_cloudamqp/pulumi-plugin.json +1 -1
- pulumi_cloudamqp/rabbit_configuration.py +205 -206
- pulumi_cloudamqp/security_firewall.py +55 -56
- pulumi_cloudamqp/upgrade_lavinmq.py +35 -36
- pulumi_cloudamqp/upgrade_rabbitmq.py +52 -53
- pulumi_cloudamqp/vpc.py +78 -79
- pulumi_cloudamqp/vpc_connect.py +147 -148
- pulumi_cloudamqp/vpc_gcp_peering.py +130 -131
- pulumi_cloudamqp/vpc_peering.py +95 -96
- pulumi_cloudamqp/webhook.py +120 -121
- {pulumi_cloudamqp-3.24.0a1753334979.dist-info → pulumi_cloudamqp-3.24.0a1753507699.dist-info}/METADATA +1 -1
- pulumi_cloudamqp-3.24.0a1753507699.dist-info/RECORD +52 -0
- pulumi_cloudamqp-3.24.0a1753334979.dist-info/RECORD +0 -52
- {pulumi_cloudamqp-3.24.0a1753334979.dist-info → pulumi_cloudamqp-3.24.0a1753507699.dist-info}/WHEEL +0 -0
- {pulumi_cloudamqp-3.24.0a1753334979.dist-info → pulumi_cloudamqp-3.24.0a1753507699.dist-info}/top_level.txt +0 -0
pulumi_cloudamqp/outputs.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -51,13 +50,13 @@ class ExtraDiskSizeNode(dict):
|
|
|
51
50
|
return super().get(key, default)
|
|
52
51
|
|
|
53
52
|
def __init__(__self__, *,
|
|
54
|
-
additional_disk_size: Optional[
|
|
55
|
-
disk_size: Optional[
|
|
56
|
-
name: Optional[
|
|
53
|
+
additional_disk_size: Optional[_builtins.int] = None,
|
|
54
|
+
disk_size: Optional[_builtins.int] = None,
|
|
55
|
+
name: Optional[_builtins.str] = None):
|
|
57
56
|
"""
|
|
58
|
-
:param
|
|
59
|
-
:param
|
|
60
|
-
:param
|
|
57
|
+
:param _builtins.int additional_disk_size: Additional added disk size
|
|
58
|
+
:param _builtins.int disk_size: Subscription plan disk size
|
|
59
|
+
:param _builtins.str name: Name of the node.
|
|
61
60
|
"""
|
|
62
61
|
if additional_disk_size is not None:
|
|
63
62
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
@@ -66,25 +65,25 @@ class ExtraDiskSizeNode(dict):
|
|
|
66
65
|
if name is not None:
|
|
67
66
|
pulumi.set(__self__, "name", name)
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter(name="additionalDiskSize")
|
|
71
|
-
def additional_disk_size(self) -> Optional[
|
|
70
|
+
def additional_disk_size(self) -> Optional[_builtins.int]:
|
|
72
71
|
"""
|
|
73
72
|
Additional added disk size
|
|
74
73
|
"""
|
|
75
74
|
return pulumi.get(self, "additional_disk_size")
|
|
76
75
|
|
|
77
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
78
77
|
@pulumi.getter(name="diskSize")
|
|
79
|
-
def disk_size(self) -> Optional[
|
|
78
|
+
def disk_size(self) -> Optional[_builtins.int]:
|
|
80
79
|
"""
|
|
81
80
|
Subscription plan disk size
|
|
82
81
|
"""
|
|
83
82
|
return pulumi.get(self, "disk_size")
|
|
84
83
|
|
|
85
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
86
85
|
@pulumi.getter
|
|
87
|
-
def name(self) -> Optional[
|
|
86
|
+
def name(self) -> Optional[_builtins.str]:
|
|
88
87
|
"""
|
|
89
88
|
Name of the node.
|
|
90
89
|
"""
|
|
@@ -111,22 +110,22 @@ class InstanceCopySetting(dict):
|
|
|
111
110
|
return super().get(key, default)
|
|
112
111
|
|
|
113
112
|
def __init__(__self__, *,
|
|
114
|
-
settings: Sequence[
|
|
115
|
-
subscription_id:
|
|
113
|
+
settings: Sequence[_builtins.str],
|
|
114
|
+
subscription_id: _builtins.str):
|
|
116
115
|
"""
|
|
117
|
-
:param Sequence[
|
|
116
|
+
:param Sequence[_builtins.str] settings: Array of one or more settings to be copied. Allowed values:
|
|
118
117
|
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
119
118
|
|
|
120
119
|
See more below, [copy settings].
|
|
121
|
-
:param
|
|
120
|
+
:param _builtins.str subscription_id: Instance identifier of the CloudAMQP instance to copy the settings
|
|
122
121
|
from.
|
|
123
122
|
"""
|
|
124
123
|
pulumi.set(__self__, "settings", settings)
|
|
125
124
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
126
125
|
|
|
127
|
-
@property
|
|
126
|
+
@_builtins.property
|
|
128
127
|
@pulumi.getter
|
|
129
|
-
def settings(self) -> Sequence[
|
|
128
|
+
def settings(self) -> Sequence[_builtins.str]:
|
|
130
129
|
"""
|
|
131
130
|
Array of one or more settings to be copied. Allowed values:
|
|
132
131
|
[alarms, config, definitions, firewall, logs, metrics, plugins]
|
|
@@ -135,9 +134,9 @@ class InstanceCopySetting(dict):
|
|
|
135
134
|
"""
|
|
136
135
|
return pulumi.get(self, "settings")
|
|
137
136
|
|
|
138
|
-
@property
|
|
137
|
+
@_builtins.property
|
|
139
138
|
@pulumi.getter(name="subscriptionId")
|
|
140
|
-
def subscription_id(self) ->
|
|
139
|
+
def subscription_id(self) -> _builtins.str:
|
|
141
140
|
"""
|
|
142
141
|
Instance identifier of the CloudAMQP instance to copy the settings
|
|
143
142
|
from.
|
|
@@ -148,15 +147,15 @@ class InstanceCopySetting(dict):
|
|
|
148
147
|
@pulumi.output_type
|
|
149
148
|
class NotificationResponder(dict):
|
|
150
149
|
def __init__(__self__, *,
|
|
151
|
-
type:
|
|
152
|
-
id: Optional[
|
|
153
|
-
name: Optional[
|
|
154
|
-
username: Optional[
|
|
155
|
-
"""
|
|
156
|
-
:param
|
|
157
|
-
:param
|
|
158
|
-
:param
|
|
159
|
-
:param
|
|
150
|
+
type: _builtins.str,
|
|
151
|
+
id: Optional[_builtins.str] = None,
|
|
152
|
+
name: Optional[_builtins.str] = None,
|
|
153
|
+
username: Optional[_builtins.str] = None):
|
|
154
|
+
"""
|
|
155
|
+
:param _builtins.str type: Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
156
|
+
:param _builtins.str id: Identifier in UUID format
|
|
157
|
+
:param _builtins.str name: Name of the responder
|
|
158
|
+
:param _builtins.str username: Username of the responder
|
|
160
159
|
|
|
161
160
|
Responders of type `team`, `escalation` and `schedule` can use either id or name.
|
|
162
161
|
While `user` can use either id or username.
|
|
@@ -169,33 +168,33 @@ class NotificationResponder(dict):
|
|
|
169
168
|
if username is not None:
|
|
170
169
|
pulumi.set(__self__, "username", username)
|
|
171
170
|
|
|
172
|
-
@property
|
|
171
|
+
@_builtins.property
|
|
173
172
|
@pulumi.getter
|
|
174
|
-
def type(self) ->
|
|
173
|
+
def type(self) -> _builtins.str:
|
|
175
174
|
"""
|
|
176
175
|
Type of responder. [`team`, `user`, `escalation`, `schedule`]
|
|
177
176
|
"""
|
|
178
177
|
return pulumi.get(self, "type")
|
|
179
178
|
|
|
180
|
-
@property
|
|
179
|
+
@_builtins.property
|
|
181
180
|
@pulumi.getter
|
|
182
|
-
def id(self) -> Optional[
|
|
181
|
+
def id(self) -> Optional[_builtins.str]:
|
|
183
182
|
"""
|
|
184
183
|
Identifier in UUID format
|
|
185
184
|
"""
|
|
186
185
|
return pulumi.get(self, "id")
|
|
187
186
|
|
|
188
|
-
@property
|
|
187
|
+
@_builtins.property
|
|
189
188
|
@pulumi.getter
|
|
190
|
-
def name(self) -> Optional[
|
|
189
|
+
def name(self) -> Optional[_builtins.str]:
|
|
191
190
|
"""
|
|
192
191
|
Name of the responder
|
|
193
192
|
"""
|
|
194
193
|
return pulumi.get(self, "name")
|
|
195
194
|
|
|
196
|
-
@property
|
|
195
|
+
@_builtins.property
|
|
197
196
|
@pulumi.getter
|
|
198
|
-
def username(self) -> Optional[
|
|
197
|
+
def username(self) -> Optional[_builtins.str]:
|
|
199
198
|
"""
|
|
200
199
|
Username of the responder
|
|
201
200
|
|
|
@@ -208,13 +207,13 @@ class NotificationResponder(dict):
|
|
|
208
207
|
@pulumi.output_type
|
|
209
208
|
class SecurityFirewallRule(dict):
|
|
210
209
|
def __init__(__self__, *,
|
|
211
|
-
ip:
|
|
212
|
-
description: Optional[
|
|
213
|
-
ports: Optional[Sequence[
|
|
214
|
-
services: Optional[Sequence[
|
|
210
|
+
ip: _builtins.str,
|
|
211
|
+
description: Optional[_builtins.str] = None,
|
|
212
|
+
ports: Optional[Sequence[_builtins.int]] = None,
|
|
213
|
+
services: Optional[Sequence[_builtins.str]] = None):
|
|
215
214
|
"""
|
|
216
|
-
:param
|
|
217
|
-
:param
|
|
215
|
+
:param _builtins.str ip: CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
216
|
+
:param _builtins.str description: Description name of the rule. e.g. Default.
|
|
218
217
|
|
|
219
218
|
Pre-defined services for RabbitMQ:
|
|
220
219
|
|
|
@@ -239,8 +238,8 @@ class SecurityFirewallRule(dict):
|
|
|
239
238
|
| HTTPS | 443 |
|
|
240
239
|
| MQTT | 1883 |
|
|
241
240
|
| MQTTS | 8883 |
|
|
242
|
-
:param Sequence[
|
|
243
|
-
:param Sequence[
|
|
241
|
+
:param Sequence[_builtins.int] ports: Custom ports to be opened
|
|
242
|
+
:param Sequence[_builtins.str] services: Pre-defined service ports, see table below
|
|
244
243
|
"""
|
|
245
244
|
pulumi.set(__self__, "ip", ip)
|
|
246
245
|
if description is not None:
|
|
@@ -250,17 +249,17 @@ class SecurityFirewallRule(dict):
|
|
|
250
249
|
if services is not None:
|
|
251
250
|
pulumi.set(__self__, "services", services)
|
|
252
251
|
|
|
253
|
-
@property
|
|
252
|
+
@_builtins.property
|
|
254
253
|
@pulumi.getter
|
|
255
|
-
def ip(self) ->
|
|
254
|
+
def ip(self) -> _builtins.str:
|
|
256
255
|
"""
|
|
257
256
|
CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
|
|
258
257
|
"""
|
|
259
258
|
return pulumi.get(self, "ip")
|
|
260
259
|
|
|
261
|
-
@property
|
|
260
|
+
@_builtins.property
|
|
262
261
|
@pulumi.getter
|
|
263
|
-
def description(self) -> Optional[
|
|
262
|
+
def description(self) -> Optional[_builtins.str]:
|
|
264
263
|
"""
|
|
265
264
|
Description name of the rule. e.g. Default.
|
|
266
265
|
|
|
@@ -290,17 +289,17 @@ class SecurityFirewallRule(dict):
|
|
|
290
289
|
"""
|
|
291
290
|
return pulumi.get(self, "description")
|
|
292
291
|
|
|
293
|
-
@property
|
|
292
|
+
@_builtins.property
|
|
294
293
|
@pulumi.getter
|
|
295
|
-
def ports(self) -> Optional[Sequence[
|
|
294
|
+
def ports(self) -> Optional[Sequence[_builtins.int]]:
|
|
296
295
|
"""
|
|
297
296
|
Custom ports to be opened
|
|
298
297
|
"""
|
|
299
298
|
return pulumi.get(self, "ports")
|
|
300
299
|
|
|
301
|
-
@property
|
|
300
|
+
@_builtins.property
|
|
302
301
|
@pulumi.getter
|
|
303
|
-
def services(self) -> Optional[Sequence[
|
|
302
|
+
def services(self) -> Optional[Sequence[_builtins.str]]:
|
|
304
303
|
"""
|
|
305
304
|
Pre-defined service ports, see table below
|
|
306
305
|
"""
|
|
@@ -310,17 +309,17 @@ class SecurityFirewallRule(dict):
|
|
|
310
309
|
@pulumi.output_type
|
|
311
310
|
class GetAccountInstanceResult(dict):
|
|
312
311
|
def __init__(__self__, *,
|
|
313
|
-
id:
|
|
314
|
-
name:
|
|
315
|
-
plan:
|
|
316
|
-
region:
|
|
317
|
-
tags: Optional[Sequence[
|
|
318
|
-
"""
|
|
319
|
-
:param
|
|
320
|
-
:param
|
|
321
|
-
:param
|
|
322
|
-
:param
|
|
323
|
-
:param Sequence[
|
|
312
|
+
id: _builtins.int,
|
|
313
|
+
name: _builtins.str,
|
|
314
|
+
plan: _builtins.str,
|
|
315
|
+
region: _builtins.str,
|
|
316
|
+
tags: Optional[Sequence[_builtins.str]] = None):
|
|
317
|
+
"""
|
|
318
|
+
:param _builtins.int id: The instance identifier.
|
|
319
|
+
:param _builtins.str name: The name of the instance.
|
|
320
|
+
:param _builtins.str plan: The subscription plan used for the instance.
|
|
321
|
+
:param _builtins.str region: The region were the instanece is located in.
|
|
322
|
+
:param Sequence[_builtins.str] tags: Optional tags set for the instance.
|
|
324
323
|
"""
|
|
325
324
|
pulumi.set(__self__, "id", id)
|
|
326
325
|
pulumi.set(__self__, "name", name)
|
|
@@ -329,41 +328,41 @@ class GetAccountInstanceResult(dict):
|
|
|
329
328
|
if tags is not None:
|
|
330
329
|
pulumi.set(__self__, "tags", tags)
|
|
331
330
|
|
|
332
|
-
@property
|
|
331
|
+
@_builtins.property
|
|
333
332
|
@pulumi.getter
|
|
334
|
-
def id(self) ->
|
|
333
|
+
def id(self) -> _builtins.int:
|
|
335
334
|
"""
|
|
336
335
|
The instance identifier.
|
|
337
336
|
"""
|
|
338
337
|
return pulumi.get(self, "id")
|
|
339
338
|
|
|
340
|
-
@property
|
|
339
|
+
@_builtins.property
|
|
341
340
|
@pulumi.getter
|
|
342
|
-
def name(self) ->
|
|
341
|
+
def name(self) -> _builtins.str:
|
|
343
342
|
"""
|
|
344
343
|
The name of the instance.
|
|
345
344
|
"""
|
|
346
345
|
return pulumi.get(self, "name")
|
|
347
346
|
|
|
348
|
-
@property
|
|
347
|
+
@_builtins.property
|
|
349
348
|
@pulumi.getter
|
|
350
|
-
def plan(self) ->
|
|
349
|
+
def plan(self) -> _builtins.str:
|
|
351
350
|
"""
|
|
352
351
|
The subscription plan used for the instance.
|
|
353
352
|
"""
|
|
354
353
|
return pulumi.get(self, "plan")
|
|
355
354
|
|
|
356
|
-
@property
|
|
355
|
+
@_builtins.property
|
|
357
356
|
@pulumi.getter
|
|
358
|
-
def region(self) ->
|
|
357
|
+
def region(self) -> _builtins.str:
|
|
359
358
|
"""
|
|
360
359
|
The region were the instanece is located in.
|
|
361
360
|
"""
|
|
362
361
|
return pulumi.get(self, "region")
|
|
363
362
|
|
|
364
|
-
@property
|
|
363
|
+
@_builtins.property
|
|
365
364
|
@pulumi.getter
|
|
366
|
-
def tags(self) -> Optional[Sequence[
|
|
365
|
+
def tags(self) -> Optional[Sequence[_builtins.str]]:
|
|
367
366
|
"""
|
|
368
367
|
Optional tags set for the instance.
|
|
369
368
|
"""
|
|
@@ -373,19 +372,19 @@ class GetAccountInstanceResult(dict):
|
|
|
373
372
|
@pulumi.output_type
|
|
374
373
|
class GetAccountVpcsVpcResult(dict):
|
|
375
374
|
def __init__(__self__, *,
|
|
376
|
-
id:
|
|
377
|
-
name:
|
|
378
|
-
region:
|
|
379
|
-
subnet:
|
|
380
|
-
vpc_name:
|
|
381
|
-
tags: Optional[Sequence[
|
|
382
|
-
"""
|
|
383
|
-
:param
|
|
384
|
-
:param
|
|
385
|
-
:param
|
|
386
|
-
:param
|
|
387
|
-
:param
|
|
388
|
-
:param Sequence[
|
|
375
|
+
id: _builtins.int,
|
|
376
|
+
name: _builtins.str,
|
|
377
|
+
region: _builtins.str,
|
|
378
|
+
subnet: _builtins.str,
|
|
379
|
+
vpc_name: _builtins.str,
|
|
380
|
+
tags: Optional[Sequence[_builtins.str]] = None):
|
|
381
|
+
"""
|
|
382
|
+
:param _builtins.int id: The VPC identifier.
|
|
383
|
+
:param _builtins.str name: The VPC instance name.
|
|
384
|
+
:param _builtins.str region: The region the VPC is hosted in.
|
|
385
|
+
:param _builtins.str subnet: The VPC subnet.
|
|
386
|
+
:param _builtins.str vpc_name: VPC name given when hosted at the cloud provider.
|
|
387
|
+
:param Sequence[_builtins.str] tags: Optional tags set for the VPC.
|
|
389
388
|
"""
|
|
390
389
|
pulumi.set(__self__, "id", id)
|
|
391
390
|
pulumi.set(__self__, "name", name)
|
|
@@ -395,49 +394,49 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
395
394
|
if tags is not None:
|
|
396
395
|
pulumi.set(__self__, "tags", tags)
|
|
397
396
|
|
|
398
|
-
@property
|
|
397
|
+
@_builtins.property
|
|
399
398
|
@pulumi.getter
|
|
400
|
-
def id(self) ->
|
|
399
|
+
def id(self) -> _builtins.int:
|
|
401
400
|
"""
|
|
402
401
|
The VPC identifier.
|
|
403
402
|
"""
|
|
404
403
|
return pulumi.get(self, "id")
|
|
405
404
|
|
|
406
|
-
@property
|
|
405
|
+
@_builtins.property
|
|
407
406
|
@pulumi.getter
|
|
408
|
-
def name(self) ->
|
|
407
|
+
def name(self) -> _builtins.str:
|
|
409
408
|
"""
|
|
410
409
|
The VPC instance name.
|
|
411
410
|
"""
|
|
412
411
|
return pulumi.get(self, "name")
|
|
413
412
|
|
|
414
|
-
@property
|
|
413
|
+
@_builtins.property
|
|
415
414
|
@pulumi.getter
|
|
416
|
-
def region(self) ->
|
|
415
|
+
def region(self) -> _builtins.str:
|
|
417
416
|
"""
|
|
418
417
|
The region the VPC is hosted in.
|
|
419
418
|
"""
|
|
420
419
|
return pulumi.get(self, "region")
|
|
421
420
|
|
|
422
|
-
@property
|
|
421
|
+
@_builtins.property
|
|
423
422
|
@pulumi.getter
|
|
424
|
-
def subnet(self) ->
|
|
423
|
+
def subnet(self) -> _builtins.str:
|
|
425
424
|
"""
|
|
426
425
|
The VPC subnet.
|
|
427
426
|
"""
|
|
428
427
|
return pulumi.get(self, "subnet")
|
|
429
428
|
|
|
430
|
-
@property
|
|
429
|
+
@_builtins.property
|
|
431
430
|
@pulumi.getter(name="vpcName")
|
|
432
|
-
def vpc_name(self) ->
|
|
431
|
+
def vpc_name(self) -> _builtins.str:
|
|
433
432
|
"""
|
|
434
433
|
VPC name given when hosted at the cloud provider.
|
|
435
434
|
"""
|
|
436
435
|
return pulumi.get(self, "vpc_name")
|
|
437
436
|
|
|
438
|
-
@property
|
|
437
|
+
@_builtins.property
|
|
439
438
|
@pulumi.getter
|
|
440
|
-
def tags(self) -> Optional[Sequence[
|
|
439
|
+
def tags(self) -> Optional[Sequence[_builtins.str]]:
|
|
441
440
|
"""
|
|
442
441
|
Optional tags set for the VPC.
|
|
443
442
|
"""
|
|
@@ -447,32 +446,32 @@ class GetAccountVpcsVpcResult(dict):
|
|
|
447
446
|
@pulumi.output_type
|
|
448
447
|
class GetAlarmsAlarmResult(dict):
|
|
449
448
|
def __init__(__self__, *,
|
|
450
|
-
enabled:
|
|
451
|
-
message_type:
|
|
452
|
-
queue_regex:
|
|
453
|
-
recipients: Sequence[
|
|
454
|
-
reminder_interval:
|
|
455
|
-
time_threshold:
|
|
456
|
-
value_threshold:
|
|
457
|
-
vhost_regex:
|
|
458
|
-
alarm_id: Optional[
|
|
459
|
-
type: Optional[
|
|
460
|
-
value_calculation: Optional[
|
|
461
|
-
"""
|
|
462
|
-
:param
|
|
463
|
-
:param
|
|
464
|
-
:param
|
|
465
|
-
:param Sequence[
|
|
466
|
-
:param
|
|
449
|
+
enabled: _builtins.bool,
|
|
450
|
+
message_type: _builtins.str,
|
|
451
|
+
queue_regex: _builtins.str,
|
|
452
|
+
recipients: Sequence[_builtins.int],
|
|
453
|
+
reminder_interval: _builtins.int,
|
|
454
|
+
time_threshold: _builtins.int,
|
|
455
|
+
value_threshold: _builtins.int,
|
|
456
|
+
vhost_regex: _builtins.str,
|
|
457
|
+
alarm_id: Optional[_builtins.int] = None,
|
|
458
|
+
type: Optional[_builtins.str] = None,
|
|
459
|
+
value_calculation: Optional[_builtins.str] = None):
|
|
460
|
+
"""
|
|
461
|
+
:param _builtins.bool enabled: Enable/disable status of the alarm.
|
|
462
|
+
:param _builtins.str message_type: Message type `(total, unacked, ready)` used by queue alarm type.
|
|
463
|
+
:param _builtins.str queue_regex: Regular expression for which queue to check.
|
|
464
|
+
:param Sequence[_builtins.int] recipients: Identifier for recipient to be notified.
|
|
465
|
+
:param _builtins.int reminder_interval: The reminder interval (in seconds) to resend the alarm if not resolved.
|
|
467
466
|
Set to 0 for no reminders.
|
|
468
|
-
:param
|
|
467
|
+
:param _builtins.int time_threshold: The time interval (in seconds) the `value_threshold` should be active
|
|
469
468
|
before trigger an alarm.
|
|
470
|
-
:param
|
|
471
|
-
:param
|
|
472
|
-
:param
|
|
473
|
-
:param
|
|
469
|
+
:param _builtins.int value_threshold: The value threshold that triggers the alarm.
|
|
470
|
+
:param _builtins.str vhost_regex: Regular expression for which vhost to check
|
|
471
|
+
:param _builtins.int alarm_id: The alarm identifier.
|
|
472
|
+
:param _builtins.str type: The alarm type to filter for. Supported
|
|
474
473
|
alarm types.
|
|
475
|
-
:param
|
|
474
|
+
:param _builtins.str value_calculation: Disk value threshold calculation, `(fixed, percentage)` of disk space
|
|
476
475
|
remaining.
|
|
477
476
|
"""
|
|
478
477
|
pulumi.set(__self__, "enabled", enabled)
|
|
@@ -490,92 +489,92 @@ class GetAlarmsAlarmResult(dict):
|
|
|
490
489
|
if value_calculation is not None:
|
|
491
490
|
pulumi.set(__self__, "value_calculation", value_calculation)
|
|
492
491
|
|
|
493
|
-
@property
|
|
492
|
+
@_builtins.property
|
|
494
493
|
@pulumi.getter
|
|
495
|
-
def enabled(self) ->
|
|
494
|
+
def enabled(self) -> _builtins.bool:
|
|
496
495
|
"""
|
|
497
496
|
Enable/disable status of the alarm.
|
|
498
497
|
"""
|
|
499
498
|
return pulumi.get(self, "enabled")
|
|
500
499
|
|
|
501
|
-
@property
|
|
500
|
+
@_builtins.property
|
|
502
501
|
@pulumi.getter(name="messageType")
|
|
503
|
-
def message_type(self) ->
|
|
502
|
+
def message_type(self) -> _builtins.str:
|
|
504
503
|
"""
|
|
505
504
|
Message type `(total, unacked, ready)` used by queue alarm type.
|
|
506
505
|
"""
|
|
507
506
|
return pulumi.get(self, "message_type")
|
|
508
507
|
|
|
509
|
-
@property
|
|
508
|
+
@_builtins.property
|
|
510
509
|
@pulumi.getter(name="queueRegex")
|
|
511
|
-
def queue_regex(self) ->
|
|
510
|
+
def queue_regex(self) -> _builtins.str:
|
|
512
511
|
"""
|
|
513
512
|
Regular expression for which queue to check.
|
|
514
513
|
"""
|
|
515
514
|
return pulumi.get(self, "queue_regex")
|
|
516
515
|
|
|
517
|
-
@property
|
|
516
|
+
@_builtins.property
|
|
518
517
|
@pulumi.getter
|
|
519
|
-
def recipients(self) -> Sequence[
|
|
518
|
+
def recipients(self) -> Sequence[_builtins.int]:
|
|
520
519
|
"""
|
|
521
520
|
Identifier for recipient to be notified.
|
|
522
521
|
"""
|
|
523
522
|
return pulumi.get(self, "recipients")
|
|
524
523
|
|
|
525
|
-
@property
|
|
524
|
+
@_builtins.property
|
|
526
525
|
@pulumi.getter(name="reminderInterval")
|
|
527
|
-
def reminder_interval(self) ->
|
|
526
|
+
def reminder_interval(self) -> _builtins.int:
|
|
528
527
|
"""
|
|
529
528
|
The reminder interval (in seconds) to resend the alarm if not resolved.
|
|
530
529
|
Set to 0 for no reminders.
|
|
531
530
|
"""
|
|
532
531
|
return pulumi.get(self, "reminder_interval")
|
|
533
532
|
|
|
534
|
-
@property
|
|
533
|
+
@_builtins.property
|
|
535
534
|
@pulumi.getter(name="timeThreshold")
|
|
536
|
-
def time_threshold(self) ->
|
|
535
|
+
def time_threshold(self) -> _builtins.int:
|
|
537
536
|
"""
|
|
538
537
|
The time interval (in seconds) the `value_threshold` should be active
|
|
539
538
|
before trigger an alarm.
|
|
540
539
|
"""
|
|
541
540
|
return pulumi.get(self, "time_threshold")
|
|
542
541
|
|
|
543
|
-
@property
|
|
542
|
+
@_builtins.property
|
|
544
543
|
@pulumi.getter(name="valueThreshold")
|
|
545
|
-
def value_threshold(self) ->
|
|
544
|
+
def value_threshold(self) -> _builtins.int:
|
|
546
545
|
"""
|
|
547
546
|
The value threshold that triggers the alarm.
|
|
548
547
|
"""
|
|
549
548
|
return pulumi.get(self, "value_threshold")
|
|
550
549
|
|
|
551
|
-
@property
|
|
550
|
+
@_builtins.property
|
|
552
551
|
@pulumi.getter(name="vhostRegex")
|
|
553
|
-
def vhost_regex(self) ->
|
|
552
|
+
def vhost_regex(self) -> _builtins.str:
|
|
554
553
|
"""
|
|
555
554
|
Regular expression for which vhost to check
|
|
556
555
|
"""
|
|
557
556
|
return pulumi.get(self, "vhost_regex")
|
|
558
557
|
|
|
559
|
-
@property
|
|
558
|
+
@_builtins.property
|
|
560
559
|
@pulumi.getter(name="alarmId")
|
|
561
|
-
def alarm_id(self) -> Optional[
|
|
560
|
+
def alarm_id(self) -> Optional[_builtins.int]:
|
|
562
561
|
"""
|
|
563
562
|
The alarm identifier.
|
|
564
563
|
"""
|
|
565
564
|
return pulumi.get(self, "alarm_id")
|
|
566
565
|
|
|
567
|
-
@property
|
|
566
|
+
@_builtins.property
|
|
568
567
|
@pulumi.getter
|
|
569
|
-
def type(self) -> Optional[
|
|
568
|
+
def type(self) -> Optional[_builtins.str]:
|
|
570
569
|
"""
|
|
571
570
|
The alarm type to filter for. Supported
|
|
572
571
|
alarm types.
|
|
573
572
|
"""
|
|
574
573
|
return pulumi.get(self, "type")
|
|
575
574
|
|
|
576
|
-
@property
|
|
575
|
+
@_builtins.property
|
|
577
576
|
@pulumi.getter(name="valueCalculation")
|
|
578
|
-
def value_calculation(self) -> Optional[
|
|
577
|
+
def value_calculation(self) -> Optional[_builtins.str]:
|
|
579
578
|
"""
|
|
580
579
|
Disk value threshold calculation, `(fixed, percentage)` of disk space
|
|
581
580
|
remaining.
|
|
@@ -586,29 +585,29 @@ class GetAlarmsAlarmResult(dict):
|
|
|
586
585
|
@pulumi.output_type
|
|
587
586
|
class GetNodesNodeResult(dict):
|
|
588
587
|
def __init__(__self__, *,
|
|
589
|
-
additional_disk_size:
|
|
590
|
-
availability_zone:
|
|
591
|
-
configured:
|
|
592
|
-
disk_size:
|
|
593
|
-
erlang_version:
|
|
594
|
-
hipe:
|
|
595
|
-
hostname:
|
|
596
|
-
hostname_internal:
|
|
597
|
-
name:
|
|
598
|
-
rabbitmq_version:
|
|
599
|
-
running:
|
|
600
|
-
"""
|
|
601
|
-
:param
|
|
602
|
-
:param
|
|
603
|
-
:param
|
|
604
|
-
:param
|
|
605
|
-
:param
|
|
606
|
-
:param
|
|
607
|
-
:param
|
|
608
|
-
:param
|
|
609
|
-
:param
|
|
610
|
-
:param
|
|
611
|
-
:param
|
|
588
|
+
additional_disk_size: _builtins.int,
|
|
589
|
+
availability_zone: _builtins.str,
|
|
590
|
+
configured: _builtins.bool,
|
|
591
|
+
disk_size: _builtins.int,
|
|
592
|
+
erlang_version: _builtins.str,
|
|
593
|
+
hipe: _builtins.bool,
|
|
594
|
+
hostname: _builtins.str,
|
|
595
|
+
hostname_internal: _builtins.str,
|
|
596
|
+
name: _builtins.str,
|
|
597
|
+
rabbitmq_version: _builtins.str,
|
|
598
|
+
running: _builtins.bool):
|
|
599
|
+
"""
|
|
600
|
+
:param _builtins.int additional_disk_size: Additional added disk size
|
|
601
|
+
:param _builtins.str availability_zone: Availability zone the node is hosted in.
|
|
602
|
+
:param _builtins.bool configured: Is the node configured?
|
|
603
|
+
:param _builtins.int disk_size: Subscription plan disk size
|
|
604
|
+
:param _builtins.str erlang_version: Currently used Erlang version on the node.
|
|
605
|
+
:param _builtins.bool hipe: Enable or disable High-performance Erlang.
|
|
606
|
+
:param _builtins.str hostname: External hostname assigned to the node.
|
|
607
|
+
:param _builtins.str hostname_internal: Internal hostname assigned to the node.
|
|
608
|
+
:param _builtins.str name: Name of the node.
|
|
609
|
+
:param _builtins.str rabbitmq_version: Currently configured Rabbit MQ version on the node.
|
|
610
|
+
:param _builtins.bool running: Is the node running?
|
|
612
611
|
"""
|
|
613
612
|
pulumi.set(__self__, "additional_disk_size", additional_disk_size)
|
|
614
613
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
@@ -622,89 +621,89 @@ class GetNodesNodeResult(dict):
|
|
|
622
621
|
pulumi.set(__self__, "rabbitmq_version", rabbitmq_version)
|
|
623
622
|
pulumi.set(__self__, "running", running)
|
|
624
623
|
|
|
625
|
-
@property
|
|
624
|
+
@_builtins.property
|
|
626
625
|
@pulumi.getter(name="additionalDiskSize")
|
|
627
|
-
def additional_disk_size(self) ->
|
|
626
|
+
def additional_disk_size(self) -> _builtins.int:
|
|
628
627
|
"""
|
|
629
628
|
Additional added disk size
|
|
630
629
|
"""
|
|
631
630
|
return pulumi.get(self, "additional_disk_size")
|
|
632
631
|
|
|
633
|
-
@property
|
|
632
|
+
@_builtins.property
|
|
634
633
|
@pulumi.getter(name="availabilityZone")
|
|
635
|
-
def availability_zone(self) ->
|
|
634
|
+
def availability_zone(self) -> _builtins.str:
|
|
636
635
|
"""
|
|
637
636
|
Availability zone the node is hosted in.
|
|
638
637
|
"""
|
|
639
638
|
return pulumi.get(self, "availability_zone")
|
|
640
639
|
|
|
641
|
-
@property
|
|
640
|
+
@_builtins.property
|
|
642
641
|
@pulumi.getter
|
|
643
|
-
def configured(self) ->
|
|
642
|
+
def configured(self) -> _builtins.bool:
|
|
644
643
|
"""
|
|
645
644
|
Is the node configured?
|
|
646
645
|
"""
|
|
647
646
|
return pulumi.get(self, "configured")
|
|
648
647
|
|
|
649
|
-
@property
|
|
648
|
+
@_builtins.property
|
|
650
649
|
@pulumi.getter(name="diskSize")
|
|
651
|
-
def disk_size(self) ->
|
|
650
|
+
def disk_size(self) -> _builtins.int:
|
|
652
651
|
"""
|
|
653
652
|
Subscription plan disk size
|
|
654
653
|
"""
|
|
655
654
|
return pulumi.get(self, "disk_size")
|
|
656
655
|
|
|
657
|
-
@property
|
|
656
|
+
@_builtins.property
|
|
658
657
|
@pulumi.getter(name="erlangVersion")
|
|
659
|
-
def erlang_version(self) ->
|
|
658
|
+
def erlang_version(self) -> _builtins.str:
|
|
660
659
|
"""
|
|
661
660
|
Currently used Erlang version on the node.
|
|
662
661
|
"""
|
|
663
662
|
return pulumi.get(self, "erlang_version")
|
|
664
663
|
|
|
665
|
-
@property
|
|
664
|
+
@_builtins.property
|
|
666
665
|
@pulumi.getter
|
|
667
|
-
def hipe(self) ->
|
|
666
|
+
def hipe(self) -> _builtins.bool:
|
|
668
667
|
"""
|
|
669
668
|
Enable or disable High-performance Erlang.
|
|
670
669
|
"""
|
|
671
670
|
return pulumi.get(self, "hipe")
|
|
672
671
|
|
|
673
|
-
@property
|
|
672
|
+
@_builtins.property
|
|
674
673
|
@pulumi.getter
|
|
675
|
-
def hostname(self) ->
|
|
674
|
+
def hostname(self) -> _builtins.str:
|
|
676
675
|
"""
|
|
677
676
|
External hostname assigned to the node.
|
|
678
677
|
"""
|
|
679
678
|
return pulumi.get(self, "hostname")
|
|
680
679
|
|
|
681
|
-
@property
|
|
680
|
+
@_builtins.property
|
|
682
681
|
@pulumi.getter(name="hostnameInternal")
|
|
683
|
-
def hostname_internal(self) ->
|
|
682
|
+
def hostname_internal(self) -> _builtins.str:
|
|
684
683
|
"""
|
|
685
684
|
Internal hostname assigned to the node.
|
|
686
685
|
"""
|
|
687
686
|
return pulumi.get(self, "hostname_internal")
|
|
688
687
|
|
|
689
|
-
@property
|
|
688
|
+
@_builtins.property
|
|
690
689
|
@pulumi.getter
|
|
691
|
-
def name(self) ->
|
|
690
|
+
def name(self) -> _builtins.str:
|
|
692
691
|
"""
|
|
693
692
|
Name of the node.
|
|
694
693
|
"""
|
|
695
694
|
return pulumi.get(self, "name")
|
|
696
695
|
|
|
697
|
-
@property
|
|
696
|
+
@_builtins.property
|
|
698
697
|
@pulumi.getter(name="rabbitmqVersion")
|
|
699
|
-
def rabbitmq_version(self) ->
|
|
698
|
+
def rabbitmq_version(self) -> _builtins.str:
|
|
700
699
|
"""
|
|
701
700
|
Currently configured Rabbit MQ version on the node.
|
|
702
701
|
"""
|
|
703
702
|
return pulumi.get(self, "rabbitmq_version")
|
|
704
703
|
|
|
705
|
-
@property
|
|
704
|
+
@_builtins.property
|
|
706
705
|
@pulumi.getter
|
|
707
|
-
def running(self) ->
|
|
706
|
+
def running(self) -> _builtins.bool:
|
|
708
707
|
"""
|
|
709
708
|
Is the node running?
|
|
710
709
|
"""
|
|
@@ -714,17 +713,17 @@ class GetNodesNodeResult(dict):
|
|
|
714
713
|
@pulumi.output_type
|
|
715
714
|
class GetNotificationsRecipientResult(dict):
|
|
716
715
|
def __init__(__self__, *,
|
|
717
|
-
name:
|
|
718
|
-
options: Mapping[str,
|
|
719
|
-
recipient_id:
|
|
720
|
-
type:
|
|
721
|
-
value:
|
|
722
|
-
"""
|
|
723
|
-
:param
|
|
724
|
-
:param Mapping[str,
|
|
725
|
-
:param
|
|
726
|
-
:param
|
|
727
|
-
:param
|
|
716
|
+
name: _builtins.str,
|
|
717
|
+
options: Mapping[str, _builtins.str],
|
|
718
|
+
recipient_id: _builtins.int,
|
|
719
|
+
type: _builtins.str,
|
|
720
|
+
value: _builtins.str):
|
|
721
|
+
"""
|
|
722
|
+
:param _builtins.str name: The name of the recipient.
|
|
723
|
+
:param Mapping[str, _builtins.str] options: Options argument (e.g. `rk` used for VictorOps routing key).
|
|
724
|
+
:param _builtins.int recipient_id: The identifier for the recipient.
|
|
725
|
+
:param _builtins.str type: The type of the recipient.
|
|
726
|
+
:param _builtins.str value: The notification endpoint, where to send the notification.
|
|
728
727
|
"""
|
|
729
728
|
pulumi.set(__self__, "name", name)
|
|
730
729
|
pulumi.set(__self__, "options", options)
|
|
@@ -732,41 +731,41 @@ class GetNotificationsRecipientResult(dict):
|
|
|
732
731
|
pulumi.set(__self__, "type", type)
|
|
733
732
|
pulumi.set(__self__, "value", value)
|
|
734
733
|
|
|
735
|
-
@property
|
|
734
|
+
@_builtins.property
|
|
736
735
|
@pulumi.getter
|
|
737
|
-
def name(self) ->
|
|
736
|
+
def name(self) -> _builtins.str:
|
|
738
737
|
"""
|
|
739
738
|
The name of the recipient.
|
|
740
739
|
"""
|
|
741
740
|
return pulumi.get(self, "name")
|
|
742
741
|
|
|
743
|
-
@property
|
|
742
|
+
@_builtins.property
|
|
744
743
|
@pulumi.getter
|
|
745
|
-
def options(self) -> Mapping[str,
|
|
744
|
+
def options(self) -> Mapping[str, _builtins.str]:
|
|
746
745
|
"""
|
|
747
746
|
Options argument (e.g. `rk` used for VictorOps routing key).
|
|
748
747
|
"""
|
|
749
748
|
return pulumi.get(self, "options")
|
|
750
749
|
|
|
751
|
-
@property
|
|
750
|
+
@_builtins.property
|
|
752
751
|
@pulumi.getter(name="recipientId")
|
|
753
|
-
def recipient_id(self) ->
|
|
752
|
+
def recipient_id(self) -> _builtins.int:
|
|
754
753
|
"""
|
|
755
754
|
The identifier for the recipient.
|
|
756
755
|
"""
|
|
757
756
|
return pulumi.get(self, "recipient_id")
|
|
758
757
|
|
|
759
|
-
@property
|
|
758
|
+
@_builtins.property
|
|
760
759
|
@pulumi.getter
|
|
761
|
-
def type(self) ->
|
|
760
|
+
def type(self) -> _builtins.str:
|
|
762
761
|
"""
|
|
763
762
|
The type of the recipient.
|
|
764
763
|
"""
|
|
765
764
|
return pulumi.get(self, "type")
|
|
766
765
|
|
|
767
|
-
@property
|
|
766
|
+
@_builtins.property
|
|
768
767
|
@pulumi.getter
|
|
769
|
-
def value(self) ->
|
|
768
|
+
def value(self) -> _builtins.str:
|
|
770
769
|
"""
|
|
771
770
|
The notification endpoint, where to send the notification.
|
|
772
771
|
"""
|
|
@@ -776,37 +775,37 @@ class GetNotificationsRecipientResult(dict):
|
|
|
776
775
|
@pulumi.output_type
|
|
777
776
|
class GetPluginsCommunityPluginResult(dict):
|
|
778
777
|
def __init__(__self__, *,
|
|
779
|
-
description:
|
|
780
|
-
name:
|
|
781
|
-
require:
|
|
778
|
+
description: _builtins.str,
|
|
779
|
+
name: _builtins.str,
|
|
780
|
+
require: _builtins.str):
|
|
782
781
|
"""
|
|
783
|
-
:param
|
|
784
|
-
:param
|
|
785
|
-
:param
|
|
782
|
+
:param _builtins.str description: Description of what the plugin does.
|
|
783
|
+
:param _builtins.str name: The type of the recipient.
|
|
784
|
+
:param _builtins.str require: Min. required Rabbit MQ version to be used.
|
|
786
785
|
"""
|
|
787
786
|
pulumi.set(__self__, "description", description)
|
|
788
787
|
pulumi.set(__self__, "name", name)
|
|
789
788
|
pulumi.set(__self__, "require", require)
|
|
790
789
|
|
|
791
|
-
@property
|
|
790
|
+
@_builtins.property
|
|
792
791
|
@pulumi.getter
|
|
793
|
-
def description(self) ->
|
|
792
|
+
def description(self) -> _builtins.str:
|
|
794
793
|
"""
|
|
795
794
|
Description of what the plugin does.
|
|
796
795
|
"""
|
|
797
796
|
return pulumi.get(self, "description")
|
|
798
797
|
|
|
799
|
-
@property
|
|
798
|
+
@_builtins.property
|
|
800
799
|
@pulumi.getter
|
|
801
|
-
def name(self) ->
|
|
800
|
+
def name(self) -> _builtins.str:
|
|
802
801
|
"""
|
|
803
802
|
The type of the recipient.
|
|
804
803
|
"""
|
|
805
804
|
return pulumi.get(self, "name")
|
|
806
805
|
|
|
807
|
-
@property
|
|
806
|
+
@_builtins.property
|
|
808
807
|
@pulumi.getter
|
|
809
|
-
def require(self) ->
|
|
808
|
+
def require(self) -> _builtins.str:
|
|
810
809
|
"""
|
|
811
810
|
Min. required Rabbit MQ version to be used.
|
|
812
811
|
"""
|
|
@@ -816,48 +815,48 @@ class GetPluginsCommunityPluginResult(dict):
|
|
|
816
815
|
@pulumi.output_type
|
|
817
816
|
class GetPluginsPluginResult(dict):
|
|
818
817
|
def __init__(__self__, *,
|
|
819
|
-
description:
|
|
820
|
-
enabled:
|
|
821
|
-
name:
|
|
822
|
-
version:
|
|
818
|
+
description: _builtins.str,
|
|
819
|
+
enabled: _builtins.bool,
|
|
820
|
+
name: _builtins.str,
|
|
821
|
+
version: _builtins.str):
|
|
823
822
|
"""
|
|
824
|
-
:param
|
|
825
|
-
:param
|
|
826
|
-
:param
|
|
827
|
-
:param
|
|
823
|
+
:param _builtins.str description: Description of what the plugin does.
|
|
824
|
+
:param _builtins.bool enabled: Enable or disable information for the plugin.
|
|
825
|
+
:param _builtins.str name: The type of the recipient.
|
|
826
|
+
:param _builtins.str version: Rabbit MQ version that the plugins are shipped with.
|
|
828
827
|
"""
|
|
829
828
|
pulumi.set(__self__, "description", description)
|
|
830
829
|
pulumi.set(__self__, "enabled", enabled)
|
|
831
830
|
pulumi.set(__self__, "name", name)
|
|
832
831
|
pulumi.set(__self__, "version", version)
|
|
833
832
|
|
|
834
|
-
@property
|
|
833
|
+
@_builtins.property
|
|
835
834
|
@pulumi.getter
|
|
836
|
-
def description(self) ->
|
|
835
|
+
def description(self) -> _builtins.str:
|
|
837
836
|
"""
|
|
838
837
|
Description of what the plugin does.
|
|
839
838
|
"""
|
|
840
839
|
return pulumi.get(self, "description")
|
|
841
840
|
|
|
842
|
-
@property
|
|
841
|
+
@_builtins.property
|
|
843
842
|
@pulumi.getter
|
|
844
|
-
def enabled(self) ->
|
|
843
|
+
def enabled(self) -> _builtins.bool:
|
|
845
844
|
"""
|
|
846
845
|
Enable or disable information for the plugin.
|
|
847
846
|
"""
|
|
848
847
|
return pulumi.get(self, "enabled")
|
|
849
848
|
|
|
850
|
-
@property
|
|
849
|
+
@_builtins.property
|
|
851
850
|
@pulumi.getter
|
|
852
|
-
def name(self) ->
|
|
851
|
+
def name(self) -> _builtins.str:
|
|
853
852
|
"""
|
|
854
853
|
The type of the recipient.
|
|
855
854
|
"""
|
|
856
855
|
return pulumi.get(self, "name")
|
|
857
856
|
|
|
858
|
-
@property
|
|
857
|
+
@_builtins.property
|
|
859
858
|
@pulumi.getter
|
|
860
|
-
def version(self) ->
|
|
859
|
+
def version(self) -> _builtins.str:
|
|
861
860
|
"""
|
|
862
861
|
Rabbit MQ version that the plugins are shipped with.
|
|
863
862
|
"""
|