pulumi-checkly 2.3.0a1750944663__py3-none-any.whl → 2.4.0a1754310884__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.
@@ -279,8 +279,6 @@ class HeartbeatCheck(pulumi.CustomResource):
279
279
  use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
280
280
  __props__=None):
281
281
  """
282
- Heartbeats allows you to monitor your cron jobs and set up alerting, so you get a notification when things break or slow down.
283
-
284
282
  ## Example Usage
285
283
 
286
284
  ```python
@@ -314,8 +312,6 @@ class HeartbeatCheck(pulumi.CustomResource):
314
312
  args: HeartbeatCheckArgs,
315
313
  opts: Optional[pulumi.ResourceOptions] = None):
316
314
  """
317
- Heartbeats allows you to monitor your cron jobs and set up alerting, so you get a notification when things break or slow down.
318
-
319
315
  ## Example Usage
320
316
 
321
317
  ```python
@@ -0,0 +1,480 @@
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 copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['HeartbeatMonitorArgs', 'HeartbeatMonitor']
20
+
21
+ @pulumi.input_type
22
+ class HeartbeatMonitorArgs:
23
+ def __init__(__self__, *,
24
+ activated: pulumi.Input[bool],
25
+ heartbeat: pulumi.Input['HeartbeatMonitorHeartbeatArgs'],
26
+ alert_channel_subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input['HeartbeatMonitorAlertChannelSubscriptionArgs']]]] = None,
27
+ alert_settings: Optional[pulumi.Input['HeartbeatMonitorAlertSettingsArgs']] = None,
28
+ muted: Optional[pulumi.Input[bool]] = None,
29
+ name: Optional[pulumi.Input[str]] = None,
30
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
+ use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
32
+ """
33
+ The set of arguments for constructing a HeartbeatMonitor resource.
34
+ :param pulumi.Input[bool] activated: Determines if the check is running or not. Possible values `true`, and `false`.
35
+ :param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
36
+ :param pulumi.Input[str] name: The name of the check.
37
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
38
+ :param pulumi.Input[bool] use_global_alert_settings: When true, the account level alert settings will be used, not the alert setting defined on this check.
39
+ """
40
+ pulumi.set(__self__, "activated", activated)
41
+ pulumi.set(__self__, "heartbeat", heartbeat)
42
+ if alert_channel_subscriptions is not None:
43
+ pulumi.set(__self__, "alert_channel_subscriptions", alert_channel_subscriptions)
44
+ if alert_settings is not None:
45
+ pulumi.set(__self__, "alert_settings", alert_settings)
46
+ if muted is not None:
47
+ pulumi.set(__self__, "muted", muted)
48
+ if name is not None:
49
+ pulumi.set(__self__, "name", name)
50
+ if tags is not None:
51
+ pulumi.set(__self__, "tags", tags)
52
+ if use_global_alert_settings is not None:
53
+ pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
54
+
55
+ @property
56
+ @pulumi.getter
57
+ def activated(self) -> pulumi.Input[bool]:
58
+ """
59
+ Determines if the check is running or not. Possible values `true`, and `false`.
60
+ """
61
+ return pulumi.get(self, "activated")
62
+
63
+ @activated.setter
64
+ def activated(self, value: pulumi.Input[bool]):
65
+ pulumi.set(self, "activated", value)
66
+
67
+ @property
68
+ @pulumi.getter
69
+ def heartbeat(self) -> pulumi.Input['HeartbeatMonitorHeartbeatArgs']:
70
+ return pulumi.get(self, "heartbeat")
71
+
72
+ @heartbeat.setter
73
+ def heartbeat(self, value: pulumi.Input['HeartbeatMonitorHeartbeatArgs']):
74
+ pulumi.set(self, "heartbeat", value)
75
+
76
+ @property
77
+ @pulumi.getter(name="alertChannelSubscriptions")
78
+ def alert_channel_subscriptions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['HeartbeatMonitorAlertChannelSubscriptionArgs']]]]:
79
+ return pulumi.get(self, "alert_channel_subscriptions")
80
+
81
+ @alert_channel_subscriptions.setter
82
+ def alert_channel_subscriptions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['HeartbeatMonitorAlertChannelSubscriptionArgs']]]]):
83
+ pulumi.set(self, "alert_channel_subscriptions", value)
84
+
85
+ @property
86
+ @pulumi.getter(name="alertSettings")
87
+ def alert_settings(self) -> Optional[pulumi.Input['HeartbeatMonitorAlertSettingsArgs']]:
88
+ return pulumi.get(self, "alert_settings")
89
+
90
+ @alert_settings.setter
91
+ def alert_settings(self, value: Optional[pulumi.Input['HeartbeatMonitorAlertSettingsArgs']]):
92
+ pulumi.set(self, "alert_settings", value)
93
+
94
+ @property
95
+ @pulumi.getter
96
+ def muted(self) -> Optional[pulumi.Input[bool]]:
97
+ """
98
+ Determines if any notifications will be sent out when a check fails/degrades/recovers.
99
+ """
100
+ return pulumi.get(self, "muted")
101
+
102
+ @muted.setter
103
+ def muted(self, value: Optional[pulumi.Input[bool]]):
104
+ pulumi.set(self, "muted", value)
105
+
106
+ @property
107
+ @pulumi.getter
108
+ def name(self) -> Optional[pulumi.Input[str]]:
109
+ """
110
+ The name of the check.
111
+ """
112
+ return pulumi.get(self, "name")
113
+
114
+ @name.setter
115
+ def name(self, value: Optional[pulumi.Input[str]]):
116
+ pulumi.set(self, "name", value)
117
+
118
+ @property
119
+ @pulumi.getter
120
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
121
+ """
122
+ A list of tags for organizing and filtering checks.
123
+ """
124
+ return pulumi.get(self, "tags")
125
+
126
+ @tags.setter
127
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
128
+ pulumi.set(self, "tags", value)
129
+
130
+ @property
131
+ @pulumi.getter(name="useGlobalAlertSettings")
132
+ def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
133
+ """
134
+ When true, the account level alert settings will be used, not the alert setting defined on this check.
135
+ """
136
+ return pulumi.get(self, "use_global_alert_settings")
137
+
138
+ @use_global_alert_settings.setter
139
+ def use_global_alert_settings(self, value: Optional[pulumi.Input[bool]]):
140
+ pulumi.set(self, "use_global_alert_settings", value)
141
+
142
+
143
+ @pulumi.input_type
144
+ class _HeartbeatMonitorState:
145
+ def __init__(__self__, *,
146
+ activated: Optional[pulumi.Input[bool]] = None,
147
+ alert_channel_subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input['HeartbeatMonitorAlertChannelSubscriptionArgs']]]] = None,
148
+ alert_settings: Optional[pulumi.Input['HeartbeatMonitorAlertSettingsArgs']] = None,
149
+ heartbeat: Optional[pulumi.Input['HeartbeatMonitorHeartbeatArgs']] = None,
150
+ muted: Optional[pulumi.Input[bool]] = None,
151
+ name: Optional[pulumi.Input[str]] = None,
152
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
153
+ use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
154
+ """
155
+ Input properties used for looking up and filtering HeartbeatMonitor resources.
156
+ :param pulumi.Input[bool] activated: Determines if the check is running or not. Possible values `true`, and `false`.
157
+ :param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
158
+ :param pulumi.Input[str] name: The name of the check.
159
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
160
+ :param pulumi.Input[bool] use_global_alert_settings: When true, the account level alert settings will be used, not the alert setting defined on this check.
161
+ """
162
+ if activated is not None:
163
+ pulumi.set(__self__, "activated", activated)
164
+ if alert_channel_subscriptions is not None:
165
+ pulumi.set(__self__, "alert_channel_subscriptions", alert_channel_subscriptions)
166
+ if alert_settings is not None:
167
+ pulumi.set(__self__, "alert_settings", alert_settings)
168
+ if heartbeat is not None:
169
+ pulumi.set(__self__, "heartbeat", heartbeat)
170
+ if muted is not None:
171
+ pulumi.set(__self__, "muted", muted)
172
+ if name is not None:
173
+ pulumi.set(__self__, "name", name)
174
+ if tags is not None:
175
+ pulumi.set(__self__, "tags", tags)
176
+ if use_global_alert_settings is not None:
177
+ pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
178
+
179
+ @property
180
+ @pulumi.getter
181
+ def activated(self) -> Optional[pulumi.Input[bool]]:
182
+ """
183
+ Determines if the check is running or not. Possible values `true`, and `false`.
184
+ """
185
+ return pulumi.get(self, "activated")
186
+
187
+ @activated.setter
188
+ def activated(self, value: Optional[pulumi.Input[bool]]):
189
+ pulumi.set(self, "activated", value)
190
+
191
+ @property
192
+ @pulumi.getter(name="alertChannelSubscriptions")
193
+ def alert_channel_subscriptions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['HeartbeatMonitorAlertChannelSubscriptionArgs']]]]:
194
+ return pulumi.get(self, "alert_channel_subscriptions")
195
+
196
+ @alert_channel_subscriptions.setter
197
+ def alert_channel_subscriptions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['HeartbeatMonitorAlertChannelSubscriptionArgs']]]]):
198
+ pulumi.set(self, "alert_channel_subscriptions", value)
199
+
200
+ @property
201
+ @pulumi.getter(name="alertSettings")
202
+ def alert_settings(self) -> Optional[pulumi.Input['HeartbeatMonitorAlertSettingsArgs']]:
203
+ return pulumi.get(self, "alert_settings")
204
+
205
+ @alert_settings.setter
206
+ def alert_settings(self, value: Optional[pulumi.Input['HeartbeatMonitorAlertSettingsArgs']]):
207
+ pulumi.set(self, "alert_settings", value)
208
+
209
+ @property
210
+ @pulumi.getter
211
+ def heartbeat(self) -> Optional[pulumi.Input['HeartbeatMonitorHeartbeatArgs']]:
212
+ return pulumi.get(self, "heartbeat")
213
+
214
+ @heartbeat.setter
215
+ def heartbeat(self, value: Optional[pulumi.Input['HeartbeatMonitorHeartbeatArgs']]):
216
+ pulumi.set(self, "heartbeat", value)
217
+
218
+ @property
219
+ @pulumi.getter
220
+ def muted(self) -> Optional[pulumi.Input[bool]]:
221
+ """
222
+ Determines if any notifications will be sent out when a check fails/degrades/recovers.
223
+ """
224
+ return pulumi.get(self, "muted")
225
+
226
+ @muted.setter
227
+ def muted(self, value: Optional[pulumi.Input[bool]]):
228
+ pulumi.set(self, "muted", value)
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def name(self) -> Optional[pulumi.Input[str]]:
233
+ """
234
+ The name of the check.
235
+ """
236
+ return pulumi.get(self, "name")
237
+
238
+ @name.setter
239
+ def name(self, value: Optional[pulumi.Input[str]]):
240
+ pulumi.set(self, "name", value)
241
+
242
+ @property
243
+ @pulumi.getter
244
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
245
+ """
246
+ A list of tags for organizing and filtering checks.
247
+ """
248
+ return pulumi.get(self, "tags")
249
+
250
+ @tags.setter
251
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
252
+ pulumi.set(self, "tags", value)
253
+
254
+ @property
255
+ @pulumi.getter(name="useGlobalAlertSettings")
256
+ def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
257
+ """
258
+ When true, the account level alert settings will be used, not the alert setting defined on this check.
259
+ """
260
+ return pulumi.get(self, "use_global_alert_settings")
261
+
262
+ @use_global_alert_settings.setter
263
+ def use_global_alert_settings(self, value: Optional[pulumi.Input[bool]]):
264
+ pulumi.set(self, "use_global_alert_settings", value)
265
+
266
+
267
+ class HeartbeatMonitor(pulumi.CustomResource):
268
+ @overload
269
+ def __init__(__self__,
270
+ resource_name: str,
271
+ opts: Optional[pulumi.ResourceOptions] = None,
272
+ activated: Optional[pulumi.Input[bool]] = None,
273
+ alert_channel_subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['HeartbeatMonitorAlertChannelSubscriptionArgs', 'HeartbeatMonitorAlertChannelSubscriptionArgsDict']]]]] = None,
274
+ alert_settings: Optional[pulumi.Input[Union['HeartbeatMonitorAlertSettingsArgs', 'HeartbeatMonitorAlertSettingsArgsDict']]] = None,
275
+ heartbeat: Optional[pulumi.Input[Union['HeartbeatMonitorHeartbeatArgs', 'HeartbeatMonitorHeartbeatArgsDict']]] = None,
276
+ muted: Optional[pulumi.Input[bool]] = None,
277
+ name: Optional[pulumi.Input[str]] = None,
278
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
279
+ use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
280
+ __props__=None):
281
+ """
282
+ Heartbeats allows you to monitor your cron jobs and set up alerting, so you get a notification when things break or slow down.
283
+
284
+ ## Example Usage
285
+
286
+ ```python
287
+ import pulumi
288
+ import pulumi_checkly as checkly
289
+
290
+ example_heartbeat_monitor = checkly.HeartbeatMonitor("example-heartbeat-monitor",
291
+ name="Example heartbeat monitor",
292
+ activated=True,
293
+ heartbeat={
294
+ "period": 7,
295
+ "period_unit": "days",
296
+ "grace": 1,
297
+ "grace_unit": "days",
298
+ },
299
+ use_global_alert_settings=True)
300
+ ```
301
+
302
+ :param str resource_name: The name of the resource.
303
+ :param pulumi.ResourceOptions opts: Options for the resource.
304
+ :param pulumi.Input[bool] activated: Determines if the check is running or not. Possible values `true`, and `false`.
305
+ :param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
306
+ :param pulumi.Input[str] name: The name of the check.
307
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
308
+ :param pulumi.Input[bool] use_global_alert_settings: When true, the account level alert settings will be used, not the alert setting defined on this check.
309
+ """
310
+ ...
311
+ @overload
312
+ def __init__(__self__,
313
+ resource_name: str,
314
+ args: HeartbeatMonitorArgs,
315
+ opts: Optional[pulumi.ResourceOptions] = None):
316
+ """
317
+ Heartbeats allows you to monitor your cron jobs and set up alerting, so you get a notification when things break or slow down.
318
+
319
+ ## Example Usage
320
+
321
+ ```python
322
+ import pulumi
323
+ import pulumi_checkly as checkly
324
+
325
+ example_heartbeat_monitor = checkly.HeartbeatMonitor("example-heartbeat-monitor",
326
+ name="Example heartbeat monitor",
327
+ activated=True,
328
+ heartbeat={
329
+ "period": 7,
330
+ "period_unit": "days",
331
+ "grace": 1,
332
+ "grace_unit": "days",
333
+ },
334
+ use_global_alert_settings=True)
335
+ ```
336
+
337
+ :param str resource_name: The name of the resource.
338
+ :param HeartbeatMonitorArgs args: The arguments to use to populate this resource's properties.
339
+ :param pulumi.ResourceOptions opts: Options for the resource.
340
+ """
341
+ ...
342
+ def __init__(__self__, resource_name: str, *args, **kwargs):
343
+ resource_args, opts = _utilities.get_resource_args_opts(HeartbeatMonitorArgs, pulumi.ResourceOptions, *args, **kwargs)
344
+ if resource_args is not None:
345
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
346
+ else:
347
+ __self__._internal_init(resource_name, *args, **kwargs)
348
+
349
+ def _internal_init(__self__,
350
+ resource_name: str,
351
+ opts: Optional[pulumi.ResourceOptions] = None,
352
+ activated: Optional[pulumi.Input[bool]] = None,
353
+ alert_channel_subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['HeartbeatMonitorAlertChannelSubscriptionArgs', 'HeartbeatMonitorAlertChannelSubscriptionArgsDict']]]]] = None,
354
+ alert_settings: Optional[pulumi.Input[Union['HeartbeatMonitorAlertSettingsArgs', 'HeartbeatMonitorAlertSettingsArgsDict']]] = None,
355
+ heartbeat: Optional[pulumi.Input[Union['HeartbeatMonitorHeartbeatArgs', 'HeartbeatMonitorHeartbeatArgsDict']]] = None,
356
+ muted: Optional[pulumi.Input[bool]] = None,
357
+ name: Optional[pulumi.Input[str]] = None,
358
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
359
+ use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
360
+ __props__=None):
361
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
362
+ if not isinstance(opts, pulumi.ResourceOptions):
363
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
364
+ if opts.id is None:
365
+ if __props__ is not None:
366
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
367
+ __props__ = HeartbeatMonitorArgs.__new__(HeartbeatMonitorArgs)
368
+
369
+ if activated is None and not opts.urn:
370
+ raise TypeError("Missing required property 'activated'")
371
+ __props__.__dict__["activated"] = activated
372
+ __props__.__dict__["alert_channel_subscriptions"] = alert_channel_subscriptions
373
+ __props__.__dict__["alert_settings"] = alert_settings
374
+ if heartbeat is None and not opts.urn:
375
+ raise TypeError("Missing required property 'heartbeat'")
376
+ __props__.__dict__["heartbeat"] = heartbeat
377
+ __props__.__dict__["muted"] = muted
378
+ __props__.__dict__["name"] = name
379
+ __props__.__dict__["tags"] = tags
380
+ __props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
381
+ super(HeartbeatMonitor, __self__).__init__(
382
+ 'checkly:index/heartbeatMonitor:HeartbeatMonitor',
383
+ resource_name,
384
+ __props__,
385
+ opts)
386
+
387
+ @staticmethod
388
+ def get(resource_name: str,
389
+ id: pulumi.Input[str],
390
+ opts: Optional[pulumi.ResourceOptions] = None,
391
+ activated: Optional[pulumi.Input[bool]] = None,
392
+ alert_channel_subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['HeartbeatMonitorAlertChannelSubscriptionArgs', 'HeartbeatMonitorAlertChannelSubscriptionArgsDict']]]]] = None,
393
+ alert_settings: Optional[pulumi.Input[Union['HeartbeatMonitorAlertSettingsArgs', 'HeartbeatMonitorAlertSettingsArgsDict']]] = None,
394
+ heartbeat: Optional[pulumi.Input[Union['HeartbeatMonitorHeartbeatArgs', 'HeartbeatMonitorHeartbeatArgsDict']]] = None,
395
+ muted: Optional[pulumi.Input[bool]] = None,
396
+ name: Optional[pulumi.Input[str]] = None,
397
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
398
+ use_global_alert_settings: Optional[pulumi.Input[bool]] = None) -> 'HeartbeatMonitor':
399
+ """
400
+ Get an existing HeartbeatMonitor resource's state with the given name, id, and optional extra
401
+ properties used to qualify the lookup.
402
+
403
+ :param str resource_name: The unique name of the resulting resource.
404
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
405
+ :param pulumi.ResourceOptions opts: Options for the resource.
406
+ :param pulumi.Input[bool] activated: Determines if the check is running or not. Possible values `true`, and `false`.
407
+ :param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
408
+ :param pulumi.Input[str] name: The name of the check.
409
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
410
+ :param pulumi.Input[bool] use_global_alert_settings: When true, the account level alert settings will be used, not the alert setting defined on this check.
411
+ """
412
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
413
+
414
+ __props__ = _HeartbeatMonitorState.__new__(_HeartbeatMonitorState)
415
+
416
+ __props__.__dict__["activated"] = activated
417
+ __props__.__dict__["alert_channel_subscriptions"] = alert_channel_subscriptions
418
+ __props__.__dict__["alert_settings"] = alert_settings
419
+ __props__.__dict__["heartbeat"] = heartbeat
420
+ __props__.__dict__["muted"] = muted
421
+ __props__.__dict__["name"] = name
422
+ __props__.__dict__["tags"] = tags
423
+ __props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
424
+ return HeartbeatMonitor(resource_name, opts=opts, __props__=__props__)
425
+
426
+ @property
427
+ @pulumi.getter
428
+ def activated(self) -> pulumi.Output[bool]:
429
+ """
430
+ Determines if the check is running or not. Possible values `true`, and `false`.
431
+ """
432
+ return pulumi.get(self, "activated")
433
+
434
+ @property
435
+ @pulumi.getter(name="alertChannelSubscriptions")
436
+ def alert_channel_subscriptions(self) -> pulumi.Output[Optional[Sequence['outputs.HeartbeatMonitorAlertChannelSubscription']]]:
437
+ return pulumi.get(self, "alert_channel_subscriptions")
438
+
439
+ @property
440
+ @pulumi.getter(name="alertSettings")
441
+ def alert_settings(self) -> pulumi.Output['outputs.HeartbeatMonitorAlertSettings']:
442
+ return pulumi.get(self, "alert_settings")
443
+
444
+ @property
445
+ @pulumi.getter
446
+ def heartbeat(self) -> pulumi.Output['outputs.HeartbeatMonitorHeartbeat']:
447
+ return pulumi.get(self, "heartbeat")
448
+
449
+ @property
450
+ @pulumi.getter
451
+ def muted(self) -> pulumi.Output[Optional[bool]]:
452
+ """
453
+ Determines if any notifications will be sent out when a check fails/degrades/recovers.
454
+ """
455
+ return pulumi.get(self, "muted")
456
+
457
+ @property
458
+ @pulumi.getter
459
+ def name(self) -> pulumi.Output[str]:
460
+ """
461
+ The name of the check.
462
+ """
463
+ return pulumi.get(self, "name")
464
+
465
+ @property
466
+ @pulumi.getter
467
+ def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
468
+ """
469
+ A list of tags for organizing and filtering checks.
470
+ """
471
+ return pulumi.get(self, "tags")
472
+
473
+ @property
474
+ @pulumi.getter(name="useGlobalAlertSettings")
475
+ def use_global_alert_settings(self) -> pulumi.Output[Optional[bool]]:
476
+ """
477
+ When true, the account level alert settings will be used, not the alert setting defined on this check.
478
+ """
479
+ return pulumi.get(self, "use_global_alert_settings")
480
+