pulumi-cloudamqp 3.21.0a1743571485__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.

Files changed (51) hide show
  1. pulumi_cloudamqp/__init__.py +12 -0
  2. pulumi_cloudamqp/_inputs.py +92 -72
  3. pulumi_cloudamqp/account_action.py +42 -31
  4. pulumi_cloudamqp/alarm.py +232 -168
  5. pulumi_cloudamqp/config/__init__.py +1 -0
  6. pulumi_cloudamqp/config/__init__.pyi +1 -0
  7. pulumi_cloudamqp/config/vars.py +1 -0
  8. pulumi_cloudamqp/custom_domain.py +84 -38
  9. pulumi_cloudamqp/extra_disk_size.py +175 -155
  10. pulumi_cloudamqp/get_account.py +10 -3
  11. pulumi_cloudamqp/get_account_vpcs.py +15 -41
  12. pulumi_cloudamqp/get_alarm.py +74 -67
  13. pulumi_cloudamqp/get_alarms.py +165 -0
  14. pulumi_cloudamqp/get_credentials.py +19 -26
  15. pulumi_cloudamqp/get_instance.py +75 -25
  16. pulumi_cloudamqp/get_nodes.py +10 -56
  17. pulumi_cloudamqp/get_notification.py +39 -41
  18. pulumi_cloudamqp/get_notifications.py +135 -0
  19. pulumi_cloudamqp/get_plugins.py +28 -54
  20. pulumi_cloudamqp/get_plugins_community.py +29 -52
  21. pulumi_cloudamqp/get_upgradable_versions.py +19 -24
  22. pulumi_cloudamqp/get_vpc_gcp_info.py +44 -138
  23. pulumi_cloudamqp/get_vpc_info.py +34 -127
  24. pulumi_cloudamqp/instance.py +560 -333
  25. pulumi_cloudamqp/integration_aws_eventbridge.py +185 -117
  26. pulumi_cloudamqp/integration_log.py +491 -402
  27. pulumi_cloudamqp/integration_metric.py +348 -296
  28. pulumi_cloudamqp/maintenance_window.py +519 -0
  29. pulumi_cloudamqp/node_actions.py +85 -59
  30. pulumi_cloudamqp/notification.py +177 -92
  31. pulumi_cloudamqp/outputs.py +419 -125
  32. pulumi_cloudamqp/plugin.py +173 -105
  33. pulumi_cloudamqp/plugin_community.py +171 -107
  34. pulumi_cloudamqp/privatelink_aws.py +143 -347
  35. pulumi_cloudamqp/privatelink_azure.py +145 -345
  36. pulumi_cloudamqp/provider.py +25 -21
  37. pulumi_cloudamqp/pulumi-plugin.json +1 -1
  38. pulumi_cloudamqp/rabbit_configuration.py +337 -210
  39. pulumi_cloudamqp/security_firewall.py +114 -57
  40. pulumi_cloudamqp/upgrade_lavinmq.py +32 -102
  41. pulumi_cloudamqp/upgrade_rabbitmq.py +56 -299
  42. pulumi_cloudamqp/vpc.py +115 -79
  43. pulumi_cloudamqp/vpc_connect.py +222 -606
  44. pulumi_cloudamqp/vpc_gcp_peering.py +230 -591
  45. pulumi_cloudamqp/vpc_peering.py +123 -105
  46. pulumi_cloudamqp/webhook.py +146 -103
  47. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/METADATA +1 -1
  48. pulumi_cloudamqp-3.22.0.dist-info/RECORD +52 -0
  49. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/WHEEL +1 -1
  50. pulumi_cloudamqp-3.21.0a1743571485.dist-info/RECORD +0 -49
  51. {pulumi_cloudamqp-3.21.0a1743571485.dist-info → pulumi_cloudamqp-3.22.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,519 @@
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
+
18
+ __all__ = ['MaintenanceWindowArgs', 'MaintenanceWindow']
19
+
20
+ @pulumi.input_type
21
+ class MaintenanceWindowArgs:
22
+ def __init__(__self__, *,
23
+ instance_id: pulumi.Input[builtins.int],
24
+ automatic_updates: Optional[pulumi.Input[builtins.str]] = None,
25
+ preferred_day: Optional[pulumi.Input[builtins.str]] = None,
26
+ preferred_time: Optional[pulumi.Input[builtins.str]] = None):
27
+ """
28
+ The set of arguments for constructing a MaintenanceWindow resource.
29
+ :param pulumi.Input[builtins.int] instance_id: The CloudAMQP instance ID.
30
+ :param pulumi.Input[builtins.str] automatic_updates: Allow scheduling of a maintenance for version update
31
+ once a new LavinMQ version been released.
32
+ :param pulumi.Input[builtins.str] preferred_day: Preferred day of the week when to schedule maintenance.
33
+ :param pulumi.Input[builtins.str] preferred_time: Preferred time (UTC) of the day when to schedule maintenance.
34
+ """
35
+ pulumi.set(__self__, "instance_id", instance_id)
36
+ if automatic_updates is not None:
37
+ pulumi.set(__self__, "automatic_updates", automatic_updates)
38
+ if preferred_day is not None:
39
+ pulumi.set(__self__, "preferred_day", preferred_day)
40
+ if preferred_time is not None:
41
+ pulumi.set(__self__, "preferred_time", preferred_time)
42
+
43
+ @property
44
+ @pulumi.getter(name="instanceId")
45
+ def instance_id(self) -> pulumi.Input[builtins.int]:
46
+ """
47
+ The CloudAMQP instance ID.
48
+ """
49
+ return pulumi.get(self, "instance_id")
50
+
51
+ @instance_id.setter
52
+ def instance_id(self, value: pulumi.Input[builtins.int]):
53
+ pulumi.set(self, "instance_id", value)
54
+
55
+ @property
56
+ @pulumi.getter(name="automaticUpdates")
57
+ def automatic_updates(self) -> Optional[pulumi.Input[builtins.str]]:
58
+ """
59
+ Allow scheduling of a maintenance for version update
60
+ once a new LavinMQ version been released.
61
+ """
62
+ return pulumi.get(self, "automatic_updates")
63
+
64
+ @automatic_updates.setter
65
+ def automatic_updates(self, value: Optional[pulumi.Input[builtins.str]]):
66
+ pulumi.set(self, "automatic_updates", value)
67
+
68
+ @property
69
+ @pulumi.getter(name="preferredDay")
70
+ def preferred_day(self) -> Optional[pulumi.Input[builtins.str]]:
71
+ """
72
+ Preferred day of the week when to schedule maintenance.
73
+ """
74
+ return pulumi.get(self, "preferred_day")
75
+
76
+ @preferred_day.setter
77
+ def preferred_day(self, value: Optional[pulumi.Input[builtins.str]]):
78
+ pulumi.set(self, "preferred_day", value)
79
+
80
+ @property
81
+ @pulumi.getter(name="preferredTime")
82
+ def preferred_time(self) -> Optional[pulumi.Input[builtins.str]]:
83
+ """
84
+ Preferred time (UTC) of the day when to schedule maintenance.
85
+ """
86
+ return pulumi.get(self, "preferred_time")
87
+
88
+ @preferred_time.setter
89
+ def preferred_time(self, value: Optional[pulumi.Input[builtins.str]]):
90
+ pulumi.set(self, "preferred_time", value)
91
+
92
+
93
+ @pulumi.input_type
94
+ class _MaintenanceWindowState:
95
+ def __init__(__self__, *,
96
+ automatic_updates: Optional[pulumi.Input[builtins.str]] = None,
97
+ instance_id: Optional[pulumi.Input[builtins.int]] = None,
98
+ preferred_day: Optional[pulumi.Input[builtins.str]] = None,
99
+ preferred_time: Optional[pulumi.Input[builtins.str]] = None):
100
+ """
101
+ Input properties used for looking up and filtering MaintenanceWindow resources.
102
+ :param pulumi.Input[builtins.str] automatic_updates: Allow scheduling of a maintenance for version update
103
+ once a new LavinMQ version been released.
104
+ :param pulumi.Input[builtins.int] instance_id: The CloudAMQP instance ID.
105
+ :param pulumi.Input[builtins.str] preferred_day: Preferred day of the week when to schedule maintenance.
106
+ :param pulumi.Input[builtins.str] preferred_time: Preferred time (UTC) of the day when to schedule maintenance.
107
+ """
108
+ if automatic_updates is not None:
109
+ pulumi.set(__self__, "automatic_updates", automatic_updates)
110
+ if instance_id is not None:
111
+ pulumi.set(__self__, "instance_id", instance_id)
112
+ if preferred_day is not None:
113
+ pulumi.set(__self__, "preferred_day", preferred_day)
114
+ if preferred_time is not None:
115
+ pulumi.set(__self__, "preferred_time", preferred_time)
116
+
117
+ @property
118
+ @pulumi.getter(name="automaticUpdates")
119
+ def automatic_updates(self) -> Optional[pulumi.Input[builtins.str]]:
120
+ """
121
+ Allow scheduling of a maintenance for version update
122
+ once a new LavinMQ version been released.
123
+ """
124
+ return pulumi.get(self, "automatic_updates")
125
+
126
+ @automatic_updates.setter
127
+ def automatic_updates(self, value: Optional[pulumi.Input[builtins.str]]):
128
+ pulumi.set(self, "automatic_updates", value)
129
+
130
+ @property
131
+ @pulumi.getter(name="instanceId")
132
+ def instance_id(self) -> Optional[pulumi.Input[builtins.int]]:
133
+ """
134
+ The CloudAMQP instance ID.
135
+ """
136
+ return pulumi.get(self, "instance_id")
137
+
138
+ @instance_id.setter
139
+ def instance_id(self, value: Optional[pulumi.Input[builtins.int]]):
140
+ pulumi.set(self, "instance_id", value)
141
+
142
+ @property
143
+ @pulumi.getter(name="preferredDay")
144
+ def preferred_day(self) -> Optional[pulumi.Input[builtins.str]]:
145
+ """
146
+ Preferred day of the week when to schedule maintenance.
147
+ """
148
+ return pulumi.get(self, "preferred_day")
149
+
150
+ @preferred_day.setter
151
+ def preferred_day(self, value: Optional[pulumi.Input[builtins.str]]):
152
+ pulumi.set(self, "preferred_day", value)
153
+
154
+ @property
155
+ @pulumi.getter(name="preferredTime")
156
+ def preferred_time(self) -> Optional[pulumi.Input[builtins.str]]:
157
+ """
158
+ Preferred time (UTC) of the day when to schedule maintenance.
159
+ """
160
+ return pulumi.get(self, "preferred_time")
161
+
162
+ @preferred_time.setter
163
+ def preferred_time(self, value: Optional[pulumi.Input[builtins.str]]):
164
+ pulumi.set(self, "preferred_time", value)
165
+
166
+
167
+ class MaintenanceWindow(pulumi.CustomResource):
168
+
169
+ pulumi_type = "cloudamqp:index/maintenanceWindow:MaintenanceWindow"
170
+
171
+ @overload
172
+ def __init__(__self__,
173
+ resource_name: str,
174
+ opts: Optional[pulumi.ResourceOptions] = None,
175
+ automatic_updates: Optional[pulumi.Input[builtins.str]] = None,
176
+ instance_id: Optional[pulumi.Input[builtins.int]] = None,
177
+ preferred_day: Optional[pulumi.Input[builtins.str]] = None,
178
+ preferred_time: Optional[pulumi.Input[builtins.str]] = None,
179
+ __props__=None):
180
+ """
181
+ This resource allows you to set the preferred start of new scheduled maintenances. The maintenance
182
+ windows are 3 hours long and CloudAMQP attempts to begin the maintenance as close as possible to the
183
+ preferred start. A maintenance will never start before the window.
184
+
185
+ Available for dedicated subscription plans.
186
+
187
+ ## Example Usage
188
+
189
+ <details>
190
+ <summary>
191
+ <b>Set the preferred maintenance start</b>
192
+ </summary>
193
+
194
+ ```python
195
+ import pulumi
196
+ import pulumi_cloudamqp as cloudamqp
197
+
198
+ this = cloudamqp.MaintenanceWindow("this",
199
+ instance_id=instance["id"],
200
+ preferred_day="Monday",
201
+ preferred_time="23:00")
202
+ ```
203
+
204
+ </details>
205
+
206
+ <details>
207
+ <summary>
208
+ <b>Set the preferred maintenance start with automatic updates</b>
209
+ </summary>
210
+
211
+ When setting the automatic updates to "on", a maintenance for version update will be scheduled once
212
+ a new LavinMQ version been released.
213
+
214
+ ```python
215
+ import pulumi
216
+ import pulumi_cloudamqp as cloudamqp
217
+
218
+ this = cloudamqp.MaintenanceWindow("this",
219
+ instance_id=instance["id"],
220
+ preferred_day="Monday",
221
+ preferred_time="23:00",
222
+ automatic_updates="on")
223
+ ```
224
+
225
+ </details>
226
+
227
+ <details>
228
+ <summary>
229
+ <b>Only set preferred time of day</b>
230
+ </summary>
231
+
232
+ ```python
233
+ import pulumi
234
+ import pulumi_cloudamqp as cloudamqp
235
+
236
+ this = cloudamqp.MaintenanceWindow("this",
237
+ instance_id=instance["id"],
238
+ preferred_time="23:00")
239
+ ```
240
+
241
+ </details>
242
+
243
+ <details>
244
+ <summary>
245
+ <b>Only set preferred day of week</b>
246
+ </summary>
247
+
248
+ ```python
249
+ import pulumi
250
+ import pulumi_cloudamqp as cloudamqp
251
+
252
+ this = cloudamqp.MaintenanceWindow("this",
253
+ instance_id=instance["id"],
254
+ preferred_day="Monday")
255
+ ```
256
+
257
+ </details>
258
+
259
+ ## Dependency
260
+
261
+ This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
262
+
263
+ ## Import
264
+
265
+ `cloudamqp_maintenance_window` can be imported using CloudAMQP instance identifier. To retrieve the
266
+
267
+ identifier of an instance, use [CloudAMQP API list instances].
268
+
269
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
270
+
271
+ hcl
272
+
273
+ import {
274
+
275
+ to = cloudamqp_maintenance_window.this
276
+
277
+ id = cloudamqp_instance.instance.id
278
+
279
+ }
280
+
281
+ Or with Terraform CLI:
282
+
283
+ ```sh
284
+ $ pulumi import cloudamqp:index/maintenanceWindow:MaintenanceWindow this <id>`
285
+ ```
286
+
287
+ [CloudAMQP API list instances]: https://docs.cloudamqp.com/#list-instances
288
+
289
+ [format]: https://developer.hashicorp.com/terraform/language/functions/formatdate#specification-syntax
290
+
291
+ :param str resource_name: The name of the resource.
292
+ :param pulumi.ResourceOptions opts: Options for the resource.
293
+ :param pulumi.Input[builtins.str] automatic_updates: Allow scheduling of a maintenance for version update
294
+ once a new LavinMQ version been released.
295
+ :param pulumi.Input[builtins.int] instance_id: The CloudAMQP instance ID.
296
+ :param pulumi.Input[builtins.str] preferred_day: Preferred day of the week when to schedule maintenance.
297
+ :param pulumi.Input[builtins.str] preferred_time: Preferred time (UTC) of the day when to schedule maintenance.
298
+ """
299
+ ...
300
+ @overload
301
+ def __init__(__self__,
302
+ resource_name: str,
303
+ args: MaintenanceWindowArgs,
304
+ opts: Optional[pulumi.ResourceOptions] = None):
305
+ """
306
+ This resource allows you to set the preferred start of new scheduled maintenances. The maintenance
307
+ windows are 3 hours long and CloudAMQP attempts to begin the maintenance as close as possible to the
308
+ preferred start. A maintenance will never start before the window.
309
+
310
+ Available for dedicated subscription plans.
311
+
312
+ ## Example Usage
313
+
314
+ <details>
315
+ <summary>
316
+ <b>Set the preferred maintenance start</b>
317
+ </summary>
318
+
319
+ ```python
320
+ import pulumi
321
+ import pulumi_cloudamqp as cloudamqp
322
+
323
+ this = cloudamqp.MaintenanceWindow("this",
324
+ instance_id=instance["id"],
325
+ preferred_day="Monday",
326
+ preferred_time="23:00")
327
+ ```
328
+
329
+ </details>
330
+
331
+ <details>
332
+ <summary>
333
+ <b>Set the preferred maintenance start with automatic updates</b>
334
+ </summary>
335
+
336
+ When setting the automatic updates to "on", a maintenance for version update will be scheduled once
337
+ a new LavinMQ version been released.
338
+
339
+ ```python
340
+ import pulumi
341
+ import pulumi_cloudamqp as cloudamqp
342
+
343
+ this = cloudamqp.MaintenanceWindow("this",
344
+ instance_id=instance["id"],
345
+ preferred_day="Monday",
346
+ preferred_time="23:00",
347
+ automatic_updates="on")
348
+ ```
349
+
350
+ </details>
351
+
352
+ <details>
353
+ <summary>
354
+ <b>Only set preferred time of day</b>
355
+ </summary>
356
+
357
+ ```python
358
+ import pulumi
359
+ import pulumi_cloudamqp as cloudamqp
360
+
361
+ this = cloudamqp.MaintenanceWindow("this",
362
+ instance_id=instance["id"],
363
+ preferred_time="23:00")
364
+ ```
365
+
366
+ </details>
367
+
368
+ <details>
369
+ <summary>
370
+ <b>Only set preferred day of week</b>
371
+ </summary>
372
+
373
+ ```python
374
+ import pulumi
375
+ import pulumi_cloudamqp as cloudamqp
376
+
377
+ this = cloudamqp.MaintenanceWindow("this",
378
+ instance_id=instance["id"],
379
+ preferred_day="Monday")
380
+ ```
381
+
382
+ </details>
383
+
384
+ ## Dependency
385
+
386
+ This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
387
+
388
+ ## Import
389
+
390
+ `cloudamqp_maintenance_window` can be imported using CloudAMQP instance identifier. To retrieve the
391
+
392
+ identifier of an instance, use [CloudAMQP API list instances].
393
+
394
+ From Terraform v1.5.0, the `import` block can be used to import this resource:
395
+
396
+ hcl
397
+
398
+ import {
399
+
400
+ to = cloudamqp_maintenance_window.this
401
+
402
+ id = cloudamqp_instance.instance.id
403
+
404
+ }
405
+
406
+ Or with Terraform CLI:
407
+
408
+ ```sh
409
+ $ pulumi import cloudamqp:index/maintenanceWindow:MaintenanceWindow this <id>`
410
+ ```
411
+
412
+ [CloudAMQP API list instances]: https://docs.cloudamqp.com/#list-instances
413
+
414
+ [format]: https://developer.hashicorp.com/terraform/language/functions/formatdate#specification-syntax
415
+
416
+ :param str resource_name: The name of the resource.
417
+ :param MaintenanceWindowArgs args: The arguments to use to populate this resource's properties.
418
+ :param pulumi.ResourceOptions opts: Options for the resource.
419
+ """
420
+ ...
421
+ def __init__(__self__, resource_name: str, *args, **kwargs):
422
+ resource_args, opts = _utilities.get_resource_args_opts(MaintenanceWindowArgs, pulumi.ResourceOptions, *args, **kwargs)
423
+ if resource_args is not None:
424
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
425
+ else:
426
+ __self__._internal_init(resource_name, *args, **kwargs)
427
+
428
+ def _internal_init(__self__,
429
+ resource_name: str,
430
+ opts: Optional[pulumi.ResourceOptions] = None,
431
+ automatic_updates: Optional[pulumi.Input[builtins.str]] = None,
432
+ instance_id: Optional[pulumi.Input[builtins.int]] = None,
433
+ preferred_day: Optional[pulumi.Input[builtins.str]] = None,
434
+ preferred_time: Optional[pulumi.Input[builtins.str]] = None,
435
+ __props__=None):
436
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
437
+ if not isinstance(opts, pulumi.ResourceOptions):
438
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
439
+ if opts.id is None:
440
+ if __props__ is not None:
441
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
442
+ __props__ = MaintenanceWindowArgs.__new__(MaintenanceWindowArgs)
443
+
444
+ __props__.__dict__["automatic_updates"] = automatic_updates
445
+ if instance_id is None and not opts.urn:
446
+ raise TypeError("Missing required property 'instance_id'")
447
+ __props__.__dict__["instance_id"] = instance_id
448
+ __props__.__dict__["preferred_day"] = preferred_day
449
+ __props__.__dict__["preferred_time"] = preferred_time
450
+ super(MaintenanceWindow, __self__).__init__(
451
+ 'cloudamqp:index/maintenanceWindow:MaintenanceWindow',
452
+ resource_name,
453
+ __props__,
454
+ opts)
455
+
456
+ @staticmethod
457
+ def get(resource_name: str,
458
+ id: pulumi.Input[str],
459
+ opts: Optional[pulumi.ResourceOptions] = None,
460
+ automatic_updates: Optional[pulumi.Input[builtins.str]] = None,
461
+ instance_id: Optional[pulumi.Input[builtins.int]] = None,
462
+ preferred_day: Optional[pulumi.Input[builtins.str]] = None,
463
+ preferred_time: Optional[pulumi.Input[builtins.str]] = None) -> 'MaintenanceWindow':
464
+ """
465
+ Get an existing MaintenanceWindow resource's state with the given name, id, and optional extra
466
+ properties used to qualify the lookup.
467
+
468
+ :param str resource_name: The unique name of the resulting resource.
469
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
470
+ :param pulumi.ResourceOptions opts: Options for the resource.
471
+ :param pulumi.Input[builtins.str] automatic_updates: Allow scheduling of a maintenance for version update
472
+ once a new LavinMQ version been released.
473
+ :param pulumi.Input[builtins.int] instance_id: The CloudAMQP instance ID.
474
+ :param pulumi.Input[builtins.str] preferred_day: Preferred day of the week when to schedule maintenance.
475
+ :param pulumi.Input[builtins.str] preferred_time: Preferred time (UTC) of the day when to schedule maintenance.
476
+ """
477
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
478
+
479
+ __props__ = _MaintenanceWindowState.__new__(_MaintenanceWindowState)
480
+
481
+ __props__.__dict__["automatic_updates"] = automatic_updates
482
+ __props__.__dict__["instance_id"] = instance_id
483
+ __props__.__dict__["preferred_day"] = preferred_day
484
+ __props__.__dict__["preferred_time"] = preferred_time
485
+ return MaintenanceWindow(resource_name, opts=opts, __props__=__props__)
486
+
487
+ @property
488
+ @pulumi.getter(name="automaticUpdates")
489
+ def automatic_updates(self) -> pulumi.Output[builtins.str]:
490
+ """
491
+ Allow scheduling of a maintenance for version update
492
+ once a new LavinMQ version been released.
493
+ """
494
+ return pulumi.get(self, "automatic_updates")
495
+
496
+ @property
497
+ @pulumi.getter(name="instanceId")
498
+ def instance_id(self) -> pulumi.Output[builtins.int]:
499
+ """
500
+ The CloudAMQP instance ID.
501
+ """
502
+ return pulumi.get(self, "instance_id")
503
+
504
+ @property
505
+ @pulumi.getter(name="preferredDay")
506
+ def preferred_day(self) -> pulumi.Output[Optional[builtins.str]]:
507
+ """
508
+ Preferred day of the week when to schedule maintenance.
509
+ """
510
+ return pulumi.get(self, "preferred_day")
511
+
512
+ @property
513
+ @pulumi.getter(name="preferredTime")
514
+ def preferred_time(self) -> pulumi.Output[Optional[builtins.str]]:
515
+ """
516
+ Preferred time (UTC) of the day when to schedule maintenance.
517
+ """
518
+ return pulumi.get(self, "preferred_time")
519
+