pulumi-cloudamqp 3.22.0a1746163592__py3-none-any.whl → 3.23.0a1746422737__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.

@@ -13,10 +13,12 @@ from .extra_disk_size import *
13
13
  from .get_account import *
14
14
  from .get_account_vpcs import *
15
15
  from .get_alarm import *
16
+ from .get_alarms import *
16
17
  from .get_credentials import *
17
18
  from .get_instance import *
18
19
  from .get_nodes import *
19
20
  from .get_notification import *
21
+ from .get_notifications import *
20
22
  from .get_plugins import *
21
23
  from .get_plugins_community import *
22
24
  from .get_upgradable_versions import *
@@ -0,0 +1,165 @@
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
+ 'GetAlarmsResult',
21
+ 'AwaitableGetAlarmsResult',
22
+ 'get_alarms',
23
+ 'get_alarms_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetAlarmsResult:
28
+ """
29
+ A collection of values returned by getAlarms.
30
+ """
31
+ def __init__(__self__, alarms=None, id=None, instance_id=None, type=None):
32
+ if alarms and not isinstance(alarms, list):
33
+ raise TypeError("Expected argument 'alarms' to be a list")
34
+ pulumi.set(__self__, "alarms", alarms)
35
+ if id and not isinstance(id, str):
36
+ raise TypeError("Expected argument 'id' to be a str")
37
+ pulumi.set(__self__, "id", id)
38
+ if instance_id and not isinstance(instance_id, int):
39
+ raise TypeError("Expected argument 'instance_id' to be a int")
40
+ pulumi.set(__self__, "instance_id", instance_id)
41
+ if type and not isinstance(type, str):
42
+ raise TypeError("Expected argument 'type' to be a str")
43
+ pulumi.set(__self__, "type", type)
44
+
45
+ @property
46
+ @pulumi.getter
47
+ def alarms(self) -> Sequence['outputs.GetAlarmsAlarmResult']:
48
+ """
49
+ List of alarms (see below for nested schema)
50
+ """
51
+ return pulumi.get(self, "alarms")
52
+
53
+ @property
54
+ @pulumi.getter
55
+ def id(self) -> builtins.str:
56
+ """
57
+ The provider-assigned unique ID for this managed resource.
58
+ """
59
+ return pulumi.get(self, "id")
60
+
61
+ @property
62
+ @pulumi.getter(name="instanceId")
63
+ def instance_id(self) -> builtins.int:
64
+ return pulumi.get(self, "instance_id")
65
+
66
+ @property
67
+ @pulumi.getter
68
+ def type(self) -> Optional[builtins.str]:
69
+ """
70
+ The type of the alarm.
71
+ """
72
+ return pulumi.get(self, "type")
73
+
74
+
75
+ class AwaitableGetAlarmsResult(GetAlarmsResult):
76
+ # pylint: disable=using-constant-test
77
+ def __await__(self):
78
+ if False:
79
+ yield self
80
+ return GetAlarmsResult(
81
+ alarms=self.alarms,
82
+ id=self.id,
83
+ instance_id=self.instance_id,
84
+ type=self.type)
85
+
86
+
87
+ def get_alarms(instance_id: Optional[builtins.int] = None,
88
+ type: Optional[builtins.str] = None,
89
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAlarmsResult:
90
+ """
91
+ Use this data source to retrieve a list of default or created alarms.
92
+
93
+ ## Example Usage
94
+
95
+ ```python
96
+ import pulumi
97
+ import pulumi_cloudamqp as cloudamqp
98
+
99
+ queue_alarms = cloudamqp.get_alarms(instance_id=instance["id"],
100
+ type="queue")
101
+ ```
102
+
103
+ ## Dependency
104
+
105
+ This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
106
+
107
+ ## Alarm Types
108
+
109
+ `cpu, memory, disk, queue, connection, flow, consumer, netsplit, server_unreachable, notice`
110
+
111
+
112
+ :param builtins.int instance_id: The CloudAMQP instance identifier.
113
+ :param builtins.str type: The alarm type to filter for. Supported
114
+ alarm types.
115
+ """
116
+ __args__ = dict()
117
+ __args__['instanceId'] = instance_id
118
+ __args__['type'] = type
119
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
120
+ __ret__ = pulumi.runtime.invoke('cloudamqp:index/getAlarms:getAlarms', __args__, opts=opts, typ=GetAlarmsResult).value
121
+
122
+ return AwaitableGetAlarmsResult(
123
+ alarms=pulumi.get(__ret__, 'alarms'),
124
+ id=pulumi.get(__ret__, 'id'),
125
+ instance_id=pulumi.get(__ret__, 'instance_id'),
126
+ type=pulumi.get(__ret__, 'type'))
127
+ def get_alarms_output(instance_id: Optional[pulumi.Input[builtins.int]] = None,
128
+ type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
129
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlarmsResult]:
130
+ """
131
+ Use this data source to retrieve a list of default or created alarms.
132
+
133
+ ## Example Usage
134
+
135
+ ```python
136
+ import pulumi
137
+ import pulumi_cloudamqp as cloudamqp
138
+
139
+ queue_alarms = cloudamqp.get_alarms(instance_id=instance["id"],
140
+ type="queue")
141
+ ```
142
+
143
+ ## Dependency
144
+
145
+ This data source depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
146
+
147
+ ## Alarm Types
148
+
149
+ `cpu, memory, disk, queue, connection, flow, consumer, netsplit, server_unreachable, notice`
150
+
151
+
152
+ :param builtins.int instance_id: The CloudAMQP instance identifier.
153
+ :param builtins.str type: The alarm type to filter for. Supported
154
+ alarm types.
155
+ """
156
+ __args__ = dict()
157
+ __args__['instanceId'] = instance_id
158
+ __args__['type'] = type
159
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
160
+ __ret__ = pulumi.runtime.invoke_output('cloudamqp:index/getAlarms:getAlarms', __args__, opts=opts, typ=GetAlarmsResult)
161
+ return __ret__.apply(lambda __response__: GetAlarmsResult(
162
+ alarms=pulumi.get(__response__, 'alarms'),
163
+ id=pulumi.get(__response__, 'id'),
164
+ instance_id=pulumi.get(__response__, 'instance_id'),
165
+ type=pulumi.get(__response__, 'type')))
@@ -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')))
@@ -22,7 +22,9 @@ __all__ = [
22
22
  'SecurityFirewallRule',
23
23
  'GetAccountInstanceResult',
24
24
  'GetAccountVpcsVpcResult',
25
+ 'GetAlarmsAlarmResult',
25
26
  'GetNodesNodeResult',
27
+ 'GetNotificationsRecipientResult',
26
28
  'GetPluginsCommunityPluginResult',
27
29
  'GetPluginsPluginResult',
28
30
  ]
@@ -442,6 +444,145 @@ class GetAccountVpcsVpcResult(dict):
442
444
  return pulumi.get(self, "tags")
443
445
 
444
446
 
447
+ @pulumi.output_type
448
+ class GetAlarmsAlarmResult(dict):
449
+ def __init__(__self__, *,
450
+ enabled: builtins.bool,
451
+ message_type: builtins.str,
452
+ queue_regex: builtins.str,
453
+ recipients: Sequence[builtins.int],
454
+ reminder_interval: builtins.int,
455
+ time_threshold: builtins.int,
456
+ value_threshold: builtins.int,
457
+ vhost_regex: builtins.str,
458
+ alarm_id: Optional[builtins.int] = None,
459
+ type: Optional[builtins.str] = None,
460
+ value_calculation: Optional[builtins.str] = None):
461
+ """
462
+ :param builtins.bool enabled: Enable/disable status of the alarm.
463
+ :param builtins.str message_type: Message type `(total, unacked, ready)` used by queue alarm type.
464
+ :param builtins.str queue_regex: Regular expression for which queue to check.
465
+ :param Sequence[builtins.int] recipients: Identifier for recipient to be notified.
466
+ :param builtins.int reminder_interval: The reminder interval (in seconds) to resend the alarm if not resolved.
467
+ Set to 0 for no reminders.
468
+ :param builtins.int time_threshold: The time interval (in seconds) the `value_threshold` should be active
469
+ before trigger an alarm.
470
+ :param builtins.int value_threshold: The value threshold that triggers the alarm.
471
+ :param builtins.str vhost_regex: Regular expression for which vhost to check
472
+ :param builtins.int alarm_id: The alarm identifier.
473
+ :param builtins.str type: The alarm type to filter for. Supported
474
+ alarm types.
475
+ :param builtins.str value_calculation: Disk value threshold calculation, `(fixed, percentage)` of disk space
476
+ remaining.
477
+ """
478
+ pulumi.set(__self__, "enabled", enabled)
479
+ pulumi.set(__self__, "message_type", message_type)
480
+ pulumi.set(__self__, "queue_regex", queue_regex)
481
+ pulumi.set(__self__, "recipients", recipients)
482
+ pulumi.set(__self__, "reminder_interval", reminder_interval)
483
+ pulumi.set(__self__, "time_threshold", time_threshold)
484
+ pulumi.set(__self__, "value_threshold", value_threshold)
485
+ pulumi.set(__self__, "vhost_regex", vhost_regex)
486
+ if alarm_id is not None:
487
+ pulumi.set(__self__, "alarm_id", alarm_id)
488
+ if type is not None:
489
+ pulumi.set(__self__, "type", type)
490
+ if value_calculation is not None:
491
+ pulumi.set(__self__, "value_calculation", value_calculation)
492
+
493
+ @property
494
+ @pulumi.getter
495
+ def enabled(self) -> builtins.bool:
496
+ """
497
+ Enable/disable status of the alarm.
498
+ """
499
+ return pulumi.get(self, "enabled")
500
+
501
+ @property
502
+ @pulumi.getter(name="messageType")
503
+ def message_type(self) -> builtins.str:
504
+ """
505
+ Message type `(total, unacked, ready)` used by queue alarm type.
506
+ """
507
+ return pulumi.get(self, "message_type")
508
+
509
+ @property
510
+ @pulumi.getter(name="queueRegex")
511
+ def queue_regex(self) -> builtins.str:
512
+ """
513
+ Regular expression for which queue to check.
514
+ """
515
+ return pulumi.get(self, "queue_regex")
516
+
517
+ @property
518
+ @pulumi.getter
519
+ def recipients(self) -> Sequence[builtins.int]:
520
+ """
521
+ Identifier for recipient to be notified.
522
+ """
523
+ return pulumi.get(self, "recipients")
524
+
525
+ @property
526
+ @pulumi.getter(name="reminderInterval")
527
+ def reminder_interval(self) -> builtins.int:
528
+ """
529
+ The reminder interval (in seconds) to resend the alarm if not resolved.
530
+ Set to 0 for no reminders.
531
+ """
532
+ return pulumi.get(self, "reminder_interval")
533
+
534
+ @property
535
+ @pulumi.getter(name="timeThreshold")
536
+ def time_threshold(self) -> builtins.int:
537
+ """
538
+ The time interval (in seconds) the `value_threshold` should be active
539
+ before trigger an alarm.
540
+ """
541
+ return pulumi.get(self, "time_threshold")
542
+
543
+ @property
544
+ @pulumi.getter(name="valueThreshold")
545
+ def value_threshold(self) -> builtins.int:
546
+ """
547
+ The value threshold that triggers the alarm.
548
+ """
549
+ return pulumi.get(self, "value_threshold")
550
+
551
+ @property
552
+ @pulumi.getter(name="vhostRegex")
553
+ def vhost_regex(self) -> builtins.str:
554
+ """
555
+ Regular expression for which vhost to check
556
+ """
557
+ return pulumi.get(self, "vhost_regex")
558
+
559
+ @property
560
+ @pulumi.getter(name="alarmId")
561
+ def alarm_id(self) -> Optional[builtins.int]:
562
+ """
563
+ The alarm identifier.
564
+ """
565
+ return pulumi.get(self, "alarm_id")
566
+
567
+ @property
568
+ @pulumi.getter
569
+ def type(self) -> Optional[builtins.str]:
570
+ """
571
+ The alarm type to filter for. Supported
572
+ alarm types.
573
+ """
574
+ return pulumi.get(self, "type")
575
+
576
+ @property
577
+ @pulumi.getter(name="valueCalculation")
578
+ def value_calculation(self) -> Optional[builtins.str]:
579
+ """
580
+ Disk value threshold calculation, `(fixed, percentage)` of disk space
581
+ remaining.
582
+ """
583
+ return pulumi.get(self, "value_calculation")
584
+
585
+
445
586
  @pulumi.output_type
446
587
  class GetNodesNodeResult(dict):
447
588
  def __init__(__self__, *,
@@ -570,6 +711,68 @@ class GetNodesNodeResult(dict):
570
711
  return pulumi.get(self, "running")
571
712
 
572
713
 
714
+ @pulumi.output_type
715
+ class GetNotificationsRecipientResult(dict):
716
+ def __init__(__self__, *,
717
+ name: builtins.str,
718
+ options: Mapping[str, builtins.str],
719
+ recipient_id: builtins.int,
720
+ type: builtins.str,
721
+ value: builtins.str):
722
+ """
723
+ :param builtins.str name: The name of the recipient.
724
+ :param Mapping[str, builtins.str] options: Options argument (e.g. `rk` used for VictorOps routing key).
725
+ :param builtins.int recipient_id: The identifier for the recipient.
726
+ :param builtins.str type: The type of the recipient.
727
+ :param builtins.str value: The notification endpoint, where to send the notification.
728
+ """
729
+ pulumi.set(__self__, "name", name)
730
+ pulumi.set(__self__, "options", options)
731
+ pulumi.set(__self__, "recipient_id", recipient_id)
732
+ pulumi.set(__self__, "type", type)
733
+ pulumi.set(__self__, "value", value)
734
+
735
+ @property
736
+ @pulumi.getter
737
+ def name(self) -> builtins.str:
738
+ """
739
+ The name of the recipient.
740
+ """
741
+ return pulumi.get(self, "name")
742
+
743
+ @property
744
+ @pulumi.getter
745
+ def options(self) -> Mapping[str, builtins.str]:
746
+ """
747
+ Options argument (e.g. `rk` used for VictorOps routing key).
748
+ """
749
+ return pulumi.get(self, "options")
750
+
751
+ @property
752
+ @pulumi.getter(name="recipientId")
753
+ def recipient_id(self) -> builtins.int:
754
+ """
755
+ The identifier for the recipient.
756
+ """
757
+ return pulumi.get(self, "recipient_id")
758
+
759
+ @property
760
+ @pulumi.getter
761
+ def type(self) -> builtins.str:
762
+ """
763
+ The type of the recipient.
764
+ """
765
+ return pulumi.get(self, "type")
766
+
767
+ @property
768
+ @pulumi.getter
769
+ def value(self) -> builtins.str:
770
+ """
771
+ The notification endpoint, where to send the notification.
772
+ """
773
+ return pulumi.get(self, "value")
774
+
775
+
573
776
  @pulumi.output_type
574
777
  class GetPluginsCommunityPluginResult(dict):
575
778
  def __init__(__self__, *,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "cloudamqp",
4
- "version": "3.22.0-alpha.1746163592"
4
+ "version": "3.23.0-alpha.1746422737"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_cloudamqp
3
- Version: 3.22.0a1746163592
3
+ Version: 3.23.0a1746422737
4
4
  Summary: A Pulumi package for creating and managing CloudAMQP resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,4 +1,4 @@
1
- pulumi_cloudamqp/__init__.py,sha256=sRg8KN9a5r1RtUJDSRdCOo3F3SFF9McKK9dsi7EBtw0,6003
1
+ pulumi_cloudamqp/__init__.py,sha256=dPO1G-D7XD0IuT0JZ1ZjR80ThpDD8uRX1ofFGzMGbds,6062
2
2
  pulumi_cloudamqp/_inputs.py,sha256=78nWru4B0Jl7yP3_Lufoxm-mATsdwz022sshxwgosW4,14466
3
3
  pulumi_cloudamqp/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
4
  pulumi_cloudamqp/account_action.py,sha256=-RLOVt9UHi3ihcshQtoMeodyXPQDgQQ21U2I4zS4vjk,8280
@@ -8,10 +8,12 @@ pulumi_cloudamqp/extra_disk_size.py,sha256=-8tGW5mb9zdQIyH10vgoQPgk0qLP5bw63sFoX
8
8
  pulumi_cloudamqp/get_account.py,sha256=z1fn8Kh5u19wSRwCMS1O9R8OELiBNoxszqgDIKVADD4,3325
9
9
  pulumi_cloudamqp/get_account_vpcs.py,sha256=aODaMHxxObLV6ifvTg70V151WgAQJIjjLk3oVfaHZ1k,4606
10
10
  pulumi_cloudamqp/get_alarm.py,sha256=EuMR9FyPCGBy6tVe_GbKh5cGNv6Mp4baj7YBX_NCs9w,12456
11
+ pulumi_cloudamqp/get_alarms.py,sha256=iXJ-LeILvip7S80nxPAaey3o7uLeJtPdq2WGrxflYCY,5542
11
12
  pulumi_cloudamqp/get_credentials.py,sha256=B4Q-ugz9-vUMSFBfM2ojjRiU7WQ8HGnYlI1wIwLXcVM,5276
12
13
  pulumi_cloudamqp/get_instance.py,sha256=0PE_ReGeDUh-NqID_3pRXncIgpJ-vV0TbaP0dzVqWFg,12529
13
14
  pulumi_cloudamqp/get_nodes.py,sha256=XviTdkyrRIPRVD90OgCVIl1EznMexOoYu0aO_wNiOl0,4460
14
15
  pulumi_cloudamqp/get_notification.py,sha256=ZUlV54OzmQt0bv0OFBPpQFdWLplvyHgEe7FjHRTeLYE,8033
16
+ pulumi_cloudamqp/get_notifications.py,sha256=FDrnEOWoN0-tLssKqE2hBaxA584Ei_OXXzoP7TZnVLw,4868
15
17
  pulumi_cloudamqp/get_plugins.py,sha256=ZTq1qdjxd7I1drfwTYNhjd8_jLC0NWL6ycQjvnhgVlQ,6503
16
18
  pulumi_cloudamqp/get_plugins_community.py,sha256=HPHX6lM_baDzwtEtC7b0xcJ4iEuOO35U6Otv_INz1tw,6853
17
19
  pulumi_cloudamqp/get_upgradable_versions.py,sha256=KU_1fpILeg-efSgs_8G0QeXjx3Bw6DL_duPXCTt0ldY,5657
@@ -24,13 +26,13 @@ pulumi_cloudamqp/integration_metric.py,sha256=bW1H341sbDka8EL_8kXn4zK2NQbWkhqD5O
24
26
  pulumi_cloudamqp/maintenance_window.py,sha256=EF-T404jndWAnTKVxzeWGbKpXr96jBJoigofGeIhPHM,19255
25
27
  pulumi_cloudamqp/node_actions.py,sha256=lxnQPf6sjGs5GMUW292bWIMlecC0HiR-zHp31D9q02E,19690
26
28
  pulumi_cloudamqp/notification.py,sha256=8xuKaNqAfqsiNp_F_59Z-uVmXPr5dk0N5amdgC-VDjc,31601
27
- pulumi_cloudamqp/outputs.py,sha256=cKjQxDItNgcRwvVJ9z8sTGvkM0Ske8IJQ6okUIW5wrM,21052
29
+ pulumi_cloudamqp/outputs.py,sha256=w354Ol3_ach9FBSQD2kdaK-c6Hz0d2Ma3W_J34IxmtE,28233
28
30
  pulumi_cloudamqp/plugin.py,sha256=3YJACgpZD_5sbjV7je2LO0zqIZEuRTsMXb6e-ZEStv0,18583
29
31
  pulumi_cloudamqp/plugin_community.py,sha256=f2ooM8MsARQ1Pa6UQgjVaQZodbXo8xcc4LKEGwsJNgI,19287
30
32
  pulumi_cloudamqp/privatelink_aws.py,sha256=NfmDHxGP5BZ4SkwLp57pU2SOxAqYAX4WkhDHxZUIHfA,20648
31
33
  pulumi_cloudamqp/privatelink_azure.py,sha256=regT2e2xkptWGY7N3uk-ICbW3RAIVT-QntvscgyfcdQ,20218
32
34
  pulumi_cloudamqp/provider.py,sha256=IT8BwtN1e0EB1CchBJgeNqRuAeafym_9-qEyTRJr2E8,6976
33
- pulumi_cloudamqp/pulumi-plugin.json,sha256=Vj0LjQP9GXJCOo3PTFt64_1fY6wkD24ZbSggi3ym120,86
35
+ pulumi_cloudamqp/pulumi-plugin.json,sha256=iKVh_ZY79UD43GXkSoKgTENjBlmzb5F3F0J3AYmMzKk,86
34
36
  pulumi_cloudamqp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
37
  pulumi_cloudamqp/rabbit_configuration.py,sha256=xGXntCXS8LT9LELALdQEqffZ8i08yR5gpbTZy_nxpcg,36304
36
38
  pulumi_cloudamqp/security_firewall.py,sha256=NF-qrwKSFe1YHAsLjSv1NoyQwP4doru9311m2Am4axU,15604
@@ -44,7 +46,7 @@ pulumi_cloudamqp/webhook.py,sha256=2GqyoqJqILGrIlMDJ-m7XFkRAwARuMSH40mcRgb4ZXE,1
44
46
  pulumi_cloudamqp/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
45
47
  pulumi_cloudamqp/config/__init__.pyi,sha256=p7qWknIEOgVSX4PHZXWVUwd_5j6kL7_x882oKLZ2CmM,739
46
48
  pulumi_cloudamqp/config/vars.py,sha256=vB-XeOlRCqbHRcn8fiZYSxslXofD8Zl3jhF27u3ybQg,1129
47
- pulumi_cloudamqp-3.22.0a1746163592.dist-info/METADATA,sha256=j4OqrFqnM698azayN9KXNb79lb9KB0_hqinJXnCcAv4,2818
48
- pulumi_cloudamqp-3.22.0a1746163592.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
49
- pulumi_cloudamqp-3.22.0a1746163592.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
50
- pulumi_cloudamqp-3.22.0a1746163592.dist-info/RECORD,,
49
+ pulumi_cloudamqp-3.23.0a1746422737.dist-info/METADATA,sha256=lt7pOamE7vJBF-f2uUzZc_doTjimLQPIlqYMAtbglMI,2818
50
+ pulumi_cloudamqp-3.23.0a1746422737.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
51
+ pulumi_cloudamqp-3.23.0a1746422737.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
52
+ pulumi_cloudamqp-3.23.0a1746422737.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.1.0)
2
+ Generator: setuptools (80.3.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5