pulumi-checkly 2.4.0a1757082790__py3-none-any.whl → 2.4.0a1757096682__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.
- pulumi_checkly/_inputs.py +654 -0
- pulumi_checkly/check.py +47 -0
- pulumi_checkly/heartbeat_check.py +47 -0
- pulumi_checkly/heartbeat_monitor.py +47 -0
- pulumi_checkly/outputs.py +492 -0
- pulumi_checkly/pulumi-plugin.json +1 -1
- pulumi_checkly/tcp_check.py +47 -0
- pulumi_checkly/tcp_monitor.py +47 -0
- pulumi_checkly/url_monitor.py +47 -0
- {pulumi_checkly-2.4.0a1757082790.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/METADATA +1 -1
- {pulumi_checkly-2.4.0a1757082790.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/RECORD +13 -13
- {pulumi_checkly-2.4.0a1757082790.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/WHEEL +0 -0
- {pulumi_checkly-2.4.0a1757082790.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/top_level.txt +0 -0
pulumi_checkly/tcp_check.py
CHANGED
@@ -40,6 +40,7 @@ class TcpCheckArgs:
|
|
40
40
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
41
41
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
42
42
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
43
|
+
trigger_incident: Optional[pulumi.Input['TcpCheckTriggerIncidentArgs']] = None,
|
43
44
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
|
44
45
|
"""
|
45
46
|
The set of arguments for constructing a TcpCheck resource.
|
@@ -61,6 +62,7 @@ class TcpCheckArgs:
|
|
61
62
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
62
63
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
63
64
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
65
|
+
:param pulumi.Input['TcpCheckTriggerIncidentArgs'] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
64
66
|
: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.
|
65
67
|
"""
|
66
68
|
pulumi.set(__self__, "activated", activated)
|
@@ -98,6 +100,8 @@ class TcpCheckArgs:
|
|
98
100
|
pulumi.set(__self__, "should_fail", should_fail)
|
99
101
|
if tags is not None:
|
100
102
|
pulumi.set(__self__, "tags", tags)
|
103
|
+
if trigger_incident is not None:
|
104
|
+
pulumi.set(__self__, "trigger_incident", trigger_incident)
|
101
105
|
if use_global_alert_settings is not None:
|
102
106
|
pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
|
103
107
|
|
@@ -326,6 +330,18 @@ class TcpCheckArgs:
|
|
326
330
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
327
331
|
pulumi.set(self, "tags", value)
|
328
332
|
|
333
|
+
@property
|
334
|
+
@pulumi.getter(name="triggerIncident")
|
335
|
+
def trigger_incident(self) -> Optional[pulumi.Input['TcpCheckTriggerIncidentArgs']]:
|
336
|
+
"""
|
337
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "trigger_incident")
|
340
|
+
|
341
|
+
@trigger_incident.setter
|
342
|
+
def trigger_incident(self, value: Optional[pulumi.Input['TcpCheckTriggerIncidentArgs']]):
|
343
|
+
pulumi.set(self, "trigger_incident", value)
|
344
|
+
|
329
345
|
@property
|
330
346
|
@pulumi.getter(name="useGlobalAlertSettings")
|
331
347
|
def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
|
@@ -361,6 +377,7 @@ class _TcpCheckState:
|
|
361
377
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
362
378
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
363
379
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
380
|
+
trigger_incident: Optional[pulumi.Input['TcpCheckTriggerIncidentArgs']] = None,
|
364
381
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
|
365
382
|
"""
|
366
383
|
Input properties used for looking up and filtering TcpCheck resources.
|
@@ -382,6 +399,7 @@ class _TcpCheckState:
|
|
382
399
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
383
400
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
384
401
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
402
|
+
:param pulumi.Input['TcpCheckTriggerIncidentArgs'] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
385
403
|
: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.
|
386
404
|
"""
|
387
405
|
if activated is not None:
|
@@ -422,6 +440,8 @@ class _TcpCheckState:
|
|
422
440
|
pulumi.set(__self__, "should_fail", should_fail)
|
423
441
|
if tags is not None:
|
424
442
|
pulumi.set(__self__, "tags", tags)
|
443
|
+
if trigger_incident is not None:
|
444
|
+
pulumi.set(__self__, "trigger_incident", trigger_incident)
|
425
445
|
if use_global_alert_settings is not None:
|
426
446
|
pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
|
427
447
|
|
@@ -650,6 +670,18 @@ class _TcpCheckState:
|
|
650
670
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
651
671
|
pulumi.set(self, "tags", value)
|
652
672
|
|
673
|
+
@property
|
674
|
+
@pulumi.getter(name="triggerIncident")
|
675
|
+
def trigger_incident(self) -> Optional[pulumi.Input['TcpCheckTriggerIncidentArgs']]:
|
676
|
+
"""
|
677
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
678
|
+
"""
|
679
|
+
return pulumi.get(self, "trigger_incident")
|
680
|
+
|
681
|
+
@trigger_incident.setter
|
682
|
+
def trigger_incident(self, value: Optional[pulumi.Input['TcpCheckTriggerIncidentArgs']]):
|
683
|
+
pulumi.set(self, "trigger_incident", value)
|
684
|
+
|
653
685
|
@property
|
654
686
|
@pulumi.getter(name="useGlobalAlertSettings")
|
655
687
|
def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
|
@@ -687,6 +719,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
687
719
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
688
720
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
689
721
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
722
|
+
trigger_incident: Optional[pulumi.Input[Union['TcpCheckTriggerIncidentArgs', 'TcpCheckTriggerIncidentArgsDict']]] = None,
|
690
723
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
|
691
724
|
__props__=None):
|
692
725
|
"""
|
@@ -778,6 +811,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
778
811
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
779
812
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
780
813
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
814
|
+
:param pulumi.Input[Union['TcpCheckTriggerIncidentArgs', 'TcpCheckTriggerIncidentArgsDict']] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
781
815
|
: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.
|
782
816
|
"""
|
783
817
|
...
|
@@ -889,6 +923,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
889
923
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
890
924
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
891
925
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
926
|
+
trigger_incident: Optional[pulumi.Input[Union['TcpCheckTriggerIncidentArgs', 'TcpCheckTriggerIncidentArgsDict']]] = None,
|
892
927
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
|
893
928
|
__props__=None):
|
894
929
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -924,6 +959,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
924
959
|
__props__.__dict__["runtime_id"] = runtime_id
|
925
960
|
__props__.__dict__["should_fail"] = should_fail
|
926
961
|
__props__.__dict__["tags"] = tags
|
962
|
+
__props__.__dict__["trigger_incident"] = trigger_incident
|
927
963
|
__props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
|
928
964
|
super(TcpCheck, __self__).__init__(
|
929
965
|
'checkly:index/tcpCheck:TcpCheck',
|
@@ -954,6 +990,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
954
990
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
955
991
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
956
992
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
993
|
+
trigger_incident: Optional[pulumi.Input[Union['TcpCheckTriggerIncidentArgs', 'TcpCheckTriggerIncidentArgsDict']]] = None,
|
957
994
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None) -> 'TcpCheck':
|
958
995
|
"""
|
959
996
|
Get an existing TcpCheck resource's state with the given name, id, and optional extra
|
@@ -980,6 +1017,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
980
1017
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
981
1018
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
982
1019
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
1020
|
+
:param pulumi.Input[Union['TcpCheckTriggerIncidentArgs', 'TcpCheckTriggerIncidentArgsDict']] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
983
1021
|
: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.
|
984
1022
|
"""
|
985
1023
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -1005,6 +1043,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
1005
1043
|
__props__.__dict__["runtime_id"] = runtime_id
|
1006
1044
|
__props__.__dict__["should_fail"] = should_fail
|
1007
1045
|
__props__.__dict__["tags"] = tags
|
1046
|
+
__props__.__dict__["trigger_incident"] = trigger_incident
|
1008
1047
|
__props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
|
1009
1048
|
return TcpCheck(resource_name, opts=opts, __props__=__props__)
|
1010
1049
|
|
@@ -1157,6 +1196,14 @@ class TcpCheck(pulumi.CustomResource):
|
|
1157
1196
|
"""
|
1158
1197
|
return pulumi.get(self, "tags")
|
1159
1198
|
|
1199
|
+
@property
|
1200
|
+
@pulumi.getter(name="triggerIncident")
|
1201
|
+
def trigger_incident(self) -> pulumi.Output[Optional['outputs.TcpCheckTriggerIncident']]:
|
1202
|
+
"""
|
1203
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
1204
|
+
"""
|
1205
|
+
return pulumi.get(self, "trigger_incident")
|
1206
|
+
|
1160
1207
|
@property
|
1161
1208
|
@pulumi.getter(name="useGlobalAlertSettings")
|
1162
1209
|
def use_global_alert_settings(self) -> pulumi.Output[Optional[bool]]:
|
pulumi_checkly/tcp_monitor.py
CHANGED
@@ -40,6 +40,7 @@ class TcpMonitorArgs:
|
|
40
40
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
41
41
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
42
42
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
43
|
+
trigger_incident: Optional[pulumi.Input['TcpMonitorTriggerIncidentArgs']] = None,
|
43
44
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
|
44
45
|
"""
|
45
46
|
The set of arguments for constructing a TcpMonitor resource.
|
@@ -61,6 +62,7 @@ class TcpMonitorArgs:
|
|
61
62
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
62
63
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
63
64
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
65
|
+
:param pulumi.Input['TcpMonitorTriggerIncidentArgs'] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
64
66
|
: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.
|
65
67
|
"""
|
66
68
|
pulumi.set(__self__, "activated", activated)
|
@@ -98,6 +100,8 @@ class TcpMonitorArgs:
|
|
98
100
|
pulumi.set(__self__, "should_fail", should_fail)
|
99
101
|
if tags is not None:
|
100
102
|
pulumi.set(__self__, "tags", tags)
|
103
|
+
if trigger_incident is not None:
|
104
|
+
pulumi.set(__self__, "trigger_incident", trigger_incident)
|
101
105
|
if use_global_alert_settings is not None:
|
102
106
|
pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
|
103
107
|
|
@@ -326,6 +330,18 @@ class TcpMonitorArgs:
|
|
326
330
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
327
331
|
pulumi.set(self, "tags", value)
|
328
332
|
|
333
|
+
@property
|
334
|
+
@pulumi.getter(name="triggerIncident")
|
335
|
+
def trigger_incident(self) -> Optional[pulumi.Input['TcpMonitorTriggerIncidentArgs']]:
|
336
|
+
"""
|
337
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "trigger_incident")
|
340
|
+
|
341
|
+
@trigger_incident.setter
|
342
|
+
def trigger_incident(self, value: Optional[pulumi.Input['TcpMonitorTriggerIncidentArgs']]):
|
343
|
+
pulumi.set(self, "trigger_incident", value)
|
344
|
+
|
329
345
|
@property
|
330
346
|
@pulumi.getter(name="useGlobalAlertSettings")
|
331
347
|
def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
|
@@ -361,6 +377,7 @@ class _TcpMonitorState:
|
|
361
377
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
362
378
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
363
379
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
380
|
+
trigger_incident: Optional[pulumi.Input['TcpMonitorTriggerIncidentArgs']] = None,
|
364
381
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
|
365
382
|
"""
|
366
383
|
Input properties used for looking up and filtering TcpMonitor resources.
|
@@ -382,6 +399,7 @@ class _TcpMonitorState:
|
|
382
399
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
383
400
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
384
401
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
402
|
+
:param pulumi.Input['TcpMonitorTriggerIncidentArgs'] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
385
403
|
: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.
|
386
404
|
"""
|
387
405
|
if activated is not None:
|
@@ -422,6 +440,8 @@ class _TcpMonitorState:
|
|
422
440
|
pulumi.set(__self__, "should_fail", should_fail)
|
423
441
|
if tags is not None:
|
424
442
|
pulumi.set(__self__, "tags", tags)
|
443
|
+
if trigger_incident is not None:
|
444
|
+
pulumi.set(__self__, "trigger_incident", trigger_incident)
|
425
445
|
if use_global_alert_settings is not None:
|
426
446
|
pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
|
427
447
|
|
@@ -650,6 +670,18 @@ class _TcpMonitorState:
|
|
650
670
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
651
671
|
pulumi.set(self, "tags", value)
|
652
672
|
|
673
|
+
@property
|
674
|
+
@pulumi.getter(name="triggerIncident")
|
675
|
+
def trigger_incident(self) -> Optional[pulumi.Input['TcpMonitorTriggerIncidentArgs']]:
|
676
|
+
"""
|
677
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
678
|
+
"""
|
679
|
+
return pulumi.get(self, "trigger_incident")
|
680
|
+
|
681
|
+
@trigger_incident.setter
|
682
|
+
def trigger_incident(self, value: Optional[pulumi.Input['TcpMonitorTriggerIncidentArgs']]):
|
683
|
+
pulumi.set(self, "trigger_incident", value)
|
684
|
+
|
653
685
|
@property
|
654
686
|
@pulumi.getter(name="useGlobalAlertSettings")
|
655
687
|
def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
|
@@ -687,6 +719,7 @@ class TcpMonitor(pulumi.CustomResource):
|
|
687
719
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
688
720
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
689
721
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
722
|
+
trigger_incident: Optional[pulumi.Input[Union['TcpMonitorTriggerIncidentArgs', 'TcpMonitorTriggerIncidentArgsDict']]] = None,
|
690
723
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
|
691
724
|
__props__=None):
|
692
725
|
"""
|
@@ -780,6 +813,7 @@ class TcpMonitor(pulumi.CustomResource):
|
|
780
813
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
781
814
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
782
815
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
816
|
+
:param pulumi.Input[Union['TcpMonitorTriggerIncidentArgs', 'TcpMonitorTriggerIncidentArgsDict']] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
783
817
|
: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.
|
784
818
|
"""
|
785
819
|
...
|
@@ -893,6 +927,7 @@ class TcpMonitor(pulumi.CustomResource):
|
|
893
927
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
894
928
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
895
929
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
930
|
+
trigger_incident: Optional[pulumi.Input[Union['TcpMonitorTriggerIncidentArgs', 'TcpMonitorTriggerIncidentArgsDict']]] = None,
|
896
931
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
|
897
932
|
__props__=None):
|
898
933
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -928,6 +963,7 @@ class TcpMonitor(pulumi.CustomResource):
|
|
928
963
|
__props__.__dict__["runtime_id"] = runtime_id
|
929
964
|
__props__.__dict__["should_fail"] = should_fail
|
930
965
|
__props__.__dict__["tags"] = tags
|
966
|
+
__props__.__dict__["trigger_incident"] = trigger_incident
|
931
967
|
__props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
|
932
968
|
super(TcpMonitor, __self__).__init__(
|
933
969
|
'checkly:index/tcpMonitor:TcpMonitor',
|
@@ -958,6 +994,7 @@ class TcpMonitor(pulumi.CustomResource):
|
|
958
994
|
runtime_id: Optional[pulumi.Input[str]] = None,
|
959
995
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
960
996
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
997
|
+
trigger_incident: Optional[pulumi.Input[Union['TcpMonitorTriggerIncidentArgs', 'TcpMonitorTriggerIncidentArgsDict']]] = None,
|
961
998
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None) -> 'TcpMonitor':
|
962
999
|
"""
|
963
1000
|
Get an existing TcpMonitor resource's state with the given name, id, and optional extra
|
@@ -984,6 +1021,7 @@ class TcpMonitor(pulumi.CustomResource):
|
|
984
1021
|
:param pulumi.Input[str] runtime_id: The ID of the runtime to use for this check.
|
985
1022
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when a check is considered to fail.
|
986
1023
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks.
|
1024
|
+
:param pulumi.Input[Union['TcpMonitorTriggerIncidentArgs', 'TcpMonitorTriggerIncidentArgsDict']] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
987
1025
|
: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.
|
988
1026
|
"""
|
989
1027
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -1009,6 +1047,7 @@ class TcpMonitor(pulumi.CustomResource):
|
|
1009
1047
|
__props__.__dict__["runtime_id"] = runtime_id
|
1010
1048
|
__props__.__dict__["should_fail"] = should_fail
|
1011
1049
|
__props__.__dict__["tags"] = tags
|
1050
|
+
__props__.__dict__["trigger_incident"] = trigger_incident
|
1012
1051
|
__props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
|
1013
1052
|
return TcpMonitor(resource_name, opts=opts, __props__=__props__)
|
1014
1053
|
|
@@ -1161,6 +1200,14 @@ class TcpMonitor(pulumi.CustomResource):
|
|
1161
1200
|
"""
|
1162
1201
|
return pulumi.get(self, "tags")
|
1163
1202
|
|
1203
|
+
@property
|
1204
|
+
@pulumi.getter(name="triggerIncident")
|
1205
|
+
def trigger_incident(self) -> pulumi.Output[Optional['outputs.TcpMonitorTriggerIncident']]:
|
1206
|
+
"""
|
1207
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
1208
|
+
"""
|
1209
|
+
return pulumi.get(self, "trigger_incident")
|
1210
|
+
|
1164
1211
|
@property
|
1165
1212
|
@pulumi.getter(name="useGlobalAlertSettings")
|
1166
1213
|
def use_global_alert_settings(self) -> pulumi.Output[Optional[bool]]:
|
pulumi_checkly/url_monitor.py
CHANGED
@@ -39,6 +39,7 @@ class UrlMonitorArgs:
|
|
39
39
|
run_parallel: Optional[pulumi.Input[bool]] = None,
|
40
40
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
41
41
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
42
|
+
trigger_incident: Optional[pulumi.Input['UrlMonitorTriggerIncidentArgs']] = None,
|
42
43
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
|
43
44
|
"""
|
44
45
|
The set of arguments for constructing a UrlMonitor resource.
|
@@ -60,6 +61,7 @@ class UrlMonitorArgs:
|
|
60
61
|
:param pulumi.Input[bool] run_parallel: Determines whether the monitor should run on all selected locations in parallel or round-robin. (Default `false`).
|
61
62
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when the monitor is considered to fail. (Default `false`).
|
62
63
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks and monitors.
|
64
|
+
:param pulumi.Input['UrlMonitorTriggerIncidentArgs'] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
63
65
|
: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 monitor. (Default `true`).
|
64
66
|
"""
|
65
67
|
pulumi.set(__self__, "activated", activated)
|
@@ -95,6 +97,8 @@ class UrlMonitorArgs:
|
|
95
97
|
pulumi.set(__self__, "should_fail", should_fail)
|
96
98
|
if tags is not None:
|
97
99
|
pulumi.set(__self__, "tags", tags)
|
100
|
+
if trigger_incident is not None:
|
101
|
+
pulumi.set(__self__, "trigger_incident", trigger_incident)
|
98
102
|
if use_global_alert_settings is not None:
|
99
103
|
pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
|
100
104
|
|
@@ -314,6 +318,18 @@ class UrlMonitorArgs:
|
|
314
318
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
315
319
|
pulumi.set(self, "tags", value)
|
316
320
|
|
321
|
+
@property
|
322
|
+
@pulumi.getter(name="triggerIncident")
|
323
|
+
def trigger_incident(self) -> Optional[pulumi.Input['UrlMonitorTriggerIncidentArgs']]:
|
324
|
+
"""
|
325
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "trigger_incident")
|
328
|
+
|
329
|
+
@trigger_incident.setter
|
330
|
+
def trigger_incident(self, value: Optional[pulumi.Input['UrlMonitorTriggerIncidentArgs']]):
|
331
|
+
pulumi.set(self, "trigger_incident", value)
|
332
|
+
|
317
333
|
@property
|
318
334
|
@pulumi.getter(name="useGlobalAlertSettings")
|
319
335
|
def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
|
@@ -348,6 +364,7 @@ class _UrlMonitorState:
|
|
348
364
|
run_parallel: Optional[pulumi.Input[bool]] = None,
|
349
365
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
350
366
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
367
|
+
trigger_incident: Optional[pulumi.Input['UrlMonitorTriggerIncidentArgs']] = None,
|
351
368
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None):
|
352
369
|
"""
|
353
370
|
Input properties used for looking up and filtering UrlMonitor resources.
|
@@ -369,6 +386,7 @@ class _UrlMonitorState:
|
|
369
386
|
:param pulumi.Input[bool] run_parallel: Determines whether the monitor should run on all selected locations in parallel or round-robin. (Default `false`).
|
370
387
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when the monitor is considered to fail. (Default `false`).
|
371
388
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks and monitors.
|
389
|
+
:param pulumi.Input['UrlMonitorTriggerIncidentArgs'] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
372
390
|
: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 monitor. (Default `true`).
|
373
391
|
"""
|
374
392
|
if activated is not None:
|
@@ -407,6 +425,8 @@ class _UrlMonitorState:
|
|
407
425
|
pulumi.set(__self__, "should_fail", should_fail)
|
408
426
|
if tags is not None:
|
409
427
|
pulumi.set(__self__, "tags", tags)
|
428
|
+
if trigger_incident is not None:
|
429
|
+
pulumi.set(__self__, "trigger_incident", trigger_incident)
|
410
430
|
if use_global_alert_settings is not None:
|
411
431
|
pulumi.set(__self__, "use_global_alert_settings", use_global_alert_settings)
|
412
432
|
|
@@ -626,6 +646,18 @@ class _UrlMonitorState:
|
|
626
646
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
627
647
|
pulumi.set(self, "tags", value)
|
628
648
|
|
649
|
+
@property
|
650
|
+
@pulumi.getter(name="triggerIncident")
|
651
|
+
def trigger_incident(self) -> Optional[pulumi.Input['UrlMonitorTriggerIncidentArgs']]:
|
652
|
+
"""
|
653
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
654
|
+
"""
|
655
|
+
return pulumi.get(self, "trigger_incident")
|
656
|
+
|
657
|
+
@trigger_incident.setter
|
658
|
+
def trigger_incident(self, value: Optional[pulumi.Input['UrlMonitorTriggerIncidentArgs']]):
|
659
|
+
pulumi.set(self, "trigger_incident", value)
|
660
|
+
|
629
661
|
@property
|
630
662
|
@pulumi.getter(name="useGlobalAlertSettings")
|
631
663
|
def use_global_alert_settings(self) -> Optional[pulumi.Input[bool]]:
|
@@ -662,6 +694,7 @@ class UrlMonitor(pulumi.CustomResource):
|
|
662
694
|
run_parallel: Optional[pulumi.Input[bool]] = None,
|
663
695
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
664
696
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
697
|
+
trigger_incident: Optional[pulumi.Input[Union['UrlMonitorTriggerIncidentArgs', 'UrlMonitorTriggerIncidentArgsDict']]] = None,
|
665
698
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
|
666
699
|
__props__=None):
|
667
700
|
"""
|
@@ -709,6 +742,7 @@ class UrlMonitor(pulumi.CustomResource):
|
|
709
742
|
:param pulumi.Input[bool] run_parallel: Determines whether the monitor should run on all selected locations in parallel or round-robin. (Default `false`).
|
710
743
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when the monitor is considered to fail. (Default `false`).
|
711
744
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks and monitors.
|
745
|
+
:param pulumi.Input[Union['UrlMonitorTriggerIncidentArgs', 'UrlMonitorTriggerIncidentArgsDict']] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
712
746
|
: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 monitor. (Default `true`).
|
713
747
|
"""
|
714
748
|
...
|
@@ -775,6 +809,7 @@ class UrlMonitor(pulumi.CustomResource):
|
|
775
809
|
run_parallel: Optional[pulumi.Input[bool]] = None,
|
776
810
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
777
811
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
812
|
+
trigger_incident: Optional[pulumi.Input[Union['UrlMonitorTriggerIncidentArgs', 'UrlMonitorTriggerIncidentArgsDict']]] = None,
|
778
813
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
|
779
814
|
__props__=None):
|
780
815
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -809,6 +844,7 @@ class UrlMonitor(pulumi.CustomResource):
|
|
809
844
|
__props__.__dict__["run_parallel"] = run_parallel
|
810
845
|
__props__.__dict__["should_fail"] = should_fail
|
811
846
|
__props__.__dict__["tags"] = tags
|
847
|
+
__props__.__dict__["trigger_incident"] = trigger_incident
|
812
848
|
__props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
|
813
849
|
super(UrlMonitor, __self__).__init__(
|
814
850
|
'checkly:index/urlMonitor:UrlMonitor',
|
@@ -838,6 +874,7 @@ class UrlMonitor(pulumi.CustomResource):
|
|
838
874
|
run_parallel: Optional[pulumi.Input[bool]] = None,
|
839
875
|
should_fail: Optional[pulumi.Input[bool]] = None,
|
840
876
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
877
|
+
trigger_incident: Optional[pulumi.Input[Union['UrlMonitorTriggerIncidentArgs', 'UrlMonitorTriggerIncidentArgsDict']]] = None,
|
841
878
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None) -> 'UrlMonitor':
|
842
879
|
"""
|
843
880
|
Get an existing UrlMonitor resource's state with the given name, id, and optional extra
|
@@ -864,6 +901,7 @@ class UrlMonitor(pulumi.CustomResource):
|
|
864
901
|
:param pulumi.Input[bool] run_parallel: Determines whether the monitor should run on all selected locations in parallel or round-robin. (Default `false`).
|
865
902
|
:param pulumi.Input[bool] should_fail: Allows to invert the behaviour of when the monitor is considered to fail. (Default `false`).
|
866
903
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tags for organizing and filtering checks and monitors.
|
904
|
+
:param pulumi.Input[Union['UrlMonitorTriggerIncidentArgs', 'UrlMonitorTriggerIncidentArgsDict']] trigger_incident: Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
867
905
|
: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 monitor. (Default `true`).
|
868
906
|
"""
|
869
907
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -888,6 +926,7 @@ class UrlMonitor(pulumi.CustomResource):
|
|
888
926
|
__props__.__dict__["run_parallel"] = run_parallel
|
889
927
|
__props__.__dict__["should_fail"] = should_fail
|
890
928
|
__props__.__dict__["tags"] = tags
|
929
|
+
__props__.__dict__["trigger_incident"] = trigger_incident
|
891
930
|
__props__.__dict__["use_global_alert_settings"] = use_global_alert_settings
|
892
931
|
return UrlMonitor(resource_name, opts=opts, __props__=__props__)
|
893
932
|
|
@@ -1035,6 +1074,14 @@ class UrlMonitor(pulumi.CustomResource):
|
|
1035
1074
|
"""
|
1036
1075
|
return pulumi.get(self, "tags")
|
1037
1076
|
|
1077
|
+
@property
|
1078
|
+
@pulumi.getter(name="triggerIncident")
|
1079
|
+
def trigger_incident(self) -> pulumi.Output[Optional['outputs.UrlMonitorTriggerIncident']]:
|
1080
|
+
"""
|
1081
|
+
Create and resolve an incident based on the alert configuration. Useful for status page automation.
|
1082
|
+
"""
|
1083
|
+
return pulumi.get(self, "trigger_incident")
|
1084
|
+
|
1038
1085
|
@property
|
1039
1086
|
@pulumi.getter(name="useGlobalAlertSettings")
|
1040
1087
|
def use_global_alert_settings(self) -> pulumi.Output[Optional[bool]]:
|
{pulumi_checkly-2.4.0a1757082790.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pulumi_checkly
|
3
|
-
Version: 2.4.
|
3
|
+
Version: 2.4.0a1757096682
|
4
4
|
Summary: A Pulumi package for creating and managing Checkly monitoring resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com/registry/packages/checkly
|
{pulumi_checkly-2.4.0a1757082790.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/RECORD
RENAMED
@@ -1,33 +1,33 @@
|
|
1
1
|
pulumi_checkly/__init__.py,sha256=0JyJREPjT2ftAoty9OrO2tMN_5SvPAzQ-HsF_U88oR4,4298
|
2
|
-
pulumi_checkly/_inputs.py,sha256=
|
2
|
+
pulumi_checkly/_inputs.py,sha256=mjDUHbdiHyDH8W2z9vDYTDWZVog-T59HtVT81QurlE0,229138
|
3
3
|
pulumi_checkly/_utilities.py,sha256=GxpBUMlXYTk7YrVGFAGjHfL-BVibLeIvwRfmSiVbIpY,10533
|
4
4
|
pulumi_checkly/alert_channel.py,sha256=3zoTr0x0k8RaVJ-bl0bi_rPwsTUTFNuYXpBrj80ESSo,29910
|
5
|
-
pulumi_checkly/check.py,sha256=
|
5
|
+
pulumi_checkly/check.py,sha256=p31TSBvQV39-QIqweah_AfTGgQjv1xj8XMAagAR6Uos,90707
|
6
6
|
pulumi_checkly/check_group.py,sha256=7t5xUdFXL1A4BVhYG_Q4TcnxL9gmt_5Ab-EerdUmvdE,59577
|
7
7
|
pulumi_checkly/client_certificate.py,sha256=bgdZTAo1ZYaeGQZ4d36W741Zi3qU13zS4HjFsvjq6w8,14986
|
8
8
|
pulumi_checkly/dashboard.py,sha256=lU3O82JRWYKU82pylCytKnzA5XQ6tCb0Gkbd4AzKVDk,55039
|
9
9
|
pulumi_checkly/environment_variable.py,sha256=bvFEMIHoNlAIN4fHLbOCoLtv_zId34VUgRO1bmo-mTU,9560
|
10
10
|
pulumi_checkly/get_static_ips.py,sha256=dyNQ2dCQaDClMJOIG_d-IMoj2_aPLx3-v4urKFVnbWo,5026
|
11
|
-
pulumi_checkly/heartbeat_check.py,sha256=
|
12
|
-
pulumi_checkly/heartbeat_monitor.py,sha256=
|
11
|
+
pulumi_checkly/heartbeat_check.py,sha256=Mz5k_lDM9M0Iw3UgatUu4FdDc6_lh7cbVMqtPev9EwY,24983
|
12
|
+
pulumi_checkly/heartbeat_monitor.py,sha256=6Cxvl0cwuKuUb9J191r_1P3XEbd6TiqQrWZ6iW8UDsg,25463
|
13
13
|
pulumi_checkly/maintenance_window.py,sha256=LWrPK7ZBtj8paG8K5aS7hZCxVUgZX9MOVOO29eFcz1A,19198
|
14
|
-
pulumi_checkly/outputs.py,sha256=
|
14
|
+
pulumi_checkly/outputs.py,sha256=wxLirPXg9cxcZzSkiLPsnqKPtgbkOQSa7RmzIossnSg,166502
|
15
15
|
pulumi_checkly/private_location.py,sha256=RqBW5lQbvmKlL3gQL0DqR_nYkhhZ9nE1ADf8q0dWQ6w,10528
|
16
16
|
pulumi_checkly/provider.py,sha256=t8RlYsceAV-_DMVTbtdyr6SQyQ462L_8ni1mNXhZvGw,5875
|
17
|
-
pulumi_checkly/pulumi-plugin.json,sha256=
|
17
|
+
pulumi_checkly/pulumi-plugin.json,sha256=uT2ROgUwcZHRtjNl5gRCaPvF2VL591zQTzaRSTy3T-k,130
|
18
18
|
pulumi_checkly/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
pulumi_checkly/snippet.py,sha256=xQCa0HQeoGljCRg2hs8yfuWI-TcDOE6cRv0_hszQVLw,8431
|
20
20
|
pulumi_checkly/status_page.py,sha256=GblU7bFpmtNugVsXO9CKHgZ_scONdaPTBk9mV3RxBw4,21703
|
21
21
|
pulumi_checkly/status_page_service.py,sha256=4BIyNtEmZmuSpKyo-NintxQkjdA67ibHzCMyVZEMYBI,6262
|
22
|
-
pulumi_checkly/tcp_check.py,sha256=
|
23
|
-
pulumi_checkly/tcp_monitor.py,sha256=
|
22
|
+
pulumi_checkly/tcp_check.py,sha256=Z_s8SQMMwcgmzDGNedWoEh-9Z9qdlB7YSLDeaolKfAo,60531
|
23
|
+
pulumi_checkly/tcp_monitor.py,sha256=SjMonmDwNlkvmyOpz5h4S3-CKjyBuiQ-sV7t5-tCx6E,60937
|
24
24
|
pulumi_checkly/trigger_check.py,sha256=cnozFnPJS30arFqCEmI4m6UeOy5bCW3QfLJFC8f3swg,9787
|
25
25
|
pulumi_checkly/trigger_check_group.py,sha256=wJkACfvIh-xzcPNekcil0WgQtA8DpQGyjevTOh7zPg0,9827
|
26
|
-
pulumi_checkly/url_monitor.py,sha256=
|
26
|
+
pulumi_checkly/url_monitor.py,sha256=2wyZ_O1BwWlUPitMwLpF0DK51KbvdgEsBVaPpRQae2I,57103
|
27
27
|
pulumi_checkly/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
28
28
|
pulumi_checkly/config/__init__.pyi,sha256=Fpk-O56lUiCTFequ30t3iJiEmChj_bG4iJMrQ-x0wp0,591
|
29
29
|
pulumi_checkly/config/vars.py,sha256=lv8NkDSQLIvNDzktM9EO-XFf39KPqFhim4nvCHQd8wE,907
|
30
|
-
pulumi_checkly-2.4.
|
31
|
-
pulumi_checkly-2.4.
|
32
|
-
pulumi_checkly-2.4.
|
33
|
-
pulumi_checkly-2.4.
|
30
|
+
pulumi_checkly-2.4.0a1757096682.dist-info/METADATA,sha256=z_clssON9cngfdqe5VNN-ghiZLqeyl9vWH_bvIj8qMs,2887
|
31
|
+
pulumi_checkly-2.4.0a1757096682.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
32
|
+
pulumi_checkly-2.4.0a1757096682.dist-info/top_level.txt,sha256=qWgkLdBIceubF5gJGeOwoEFK1XXVtmkd6AKHMl9Qnk4,15
|
33
|
+
pulumi_checkly-2.4.0a1757096682.dist-info/RECORD,,
|
{pulumi_checkly-2.4.0a1757082790.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|