pulumi-checkly 2.4.0a1757083696__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.0a1757083696.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/METADATA +1 -1
- {pulumi_checkly-2.4.0a1757083696.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/RECORD +13 -13
- {pulumi_checkly-2.4.0a1757083696.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/WHEEL +0 -0
- {pulumi_checkly-2.4.0a1757083696.dist-info → pulumi_checkly-2.4.0a1757096682.dist-info}/top_level.txt +0 -0
pulumi_checkly/outputs.py
CHANGED
@@ -47,6 +47,7 @@ __all__ = [
|
|
47
47
|
'CheckRequestAssertion',
|
48
48
|
'CheckRequestBasicAuth',
|
49
49
|
'CheckRetryStrategy',
|
50
|
+
'CheckTriggerIncident',
|
50
51
|
'HeartbeatCheckAlertChannelSubscription',
|
51
52
|
'HeartbeatCheckAlertSettings',
|
52
53
|
'HeartbeatCheckAlertSettingsParallelRunFailureThreshold',
|
@@ -55,6 +56,7 @@ __all__ = [
|
|
55
56
|
'HeartbeatCheckAlertSettingsSslCertificate',
|
56
57
|
'HeartbeatCheckAlertSettingsTimeBasedEscalation',
|
57
58
|
'HeartbeatCheckHeartbeat',
|
59
|
+
'HeartbeatCheckTriggerIncident',
|
58
60
|
'HeartbeatMonitorAlertChannelSubscription',
|
59
61
|
'HeartbeatMonitorAlertSettings',
|
60
62
|
'HeartbeatMonitorAlertSettingsParallelRunFailureThreshold',
|
@@ -63,6 +65,7 @@ __all__ = [
|
|
63
65
|
'HeartbeatMonitorAlertSettingsSslCertificate',
|
64
66
|
'HeartbeatMonitorAlertSettingsTimeBasedEscalation',
|
65
67
|
'HeartbeatMonitorHeartbeat',
|
68
|
+
'HeartbeatMonitorTriggerIncident',
|
66
69
|
'StatusPageCard',
|
67
70
|
'StatusPageCardServiceAttachment',
|
68
71
|
'TcpCheckAlertChannelSubscription',
|
@@ -74,6 +77,7 @@ __all__ = [
|
|
74
77
|
'TcpCheckRequest',
|
75
78
|
'TcpCheckRequestAssertion',
|
76
79
|
'TcpCheckRetryStrategy',
|
80
|
+
'TcpCheckTriggerIncident',
|
77
81
|
'TcpMonitorAlertChannelSubscription',
|
78
82
|
'TcpMonitorAlertSettings',
|
79
83
|
'TcpMonitorAlertSettingsParallelRunFailureThreshold',
|
@@ -83,6 +87,7 @@ __all__ = [
|
|
83
87
|
'TcpMonitorRequest',
|
84
88
|
'TcpMonitorRequestAssertion',
|
85
89
|
'TcpMonitorRetryStrategy',
|
90
|
+
'TcpMonitorTriggerIncident',
|
86
91
|
'UrlMonitorAlertChannelSubscription',
|
87
92
|
'UrlMonitorAlertSettings',
|
88
93
|
'UrlMonitorAlertSettingsParallelRunFailureThreshold',
|
@@ -92,6 +97,7 @@ __all__ = [
|
|
92
97
|
'UrlMonitorRequest',
|
93
98
|
'UrlMonitorRequestAssertion',
|
94
99
|
'UrlMonitorRetryStrategy',
|
100
|
+
'UrlMonitorTriggerIncident',
|
95
101
|
]
|
96
102
|
|
97
103
|
@pulumi.output_type
|
@@ -1592,6 +1598,87 @@ class CheckRetryStrategy(dict):
|
|
1592
1598
|
return pulumi.get(self, "same_region")
|
1593
1599
|
|
1594
1600
|
|
1601
|
+
@pulumi.output_type
|
1602
|
+
class CheckTriggerIncident(dict):
|
1603
|
+
@staticmethod
|
1604
|
+
def __key_warning(key: str):
|
1605
|
+
suggest = None
|
1606
|
+
if key == "notifySubscribers":
|
1607
|
+
suggest = "notify_subscribers"
|
1608
|
+
elif key == "serviceId":
|
1609
|
+
suggest = "service_id"
|
1610
|
+
|
1611
|
+
if suggest:
|
1612
|
+
pulumi.log.warn(f"Key '{key}' not found in CheckTriggerIncident. Access the value via the '{suggest}' property getter instead.")
|
1613
|
+
|
1614
|
+
def __getitem__(self, key: str) -> Any:
|
1615
|
+
CheckTriggerIncident.__key_warning(key)
|
1616
|
+
return super().__getitem__(key)
|
1617
|
+
|
1618
|
+
def get(self, key: str, default = None) -> Any:
|
1619
|
+
CheckTriggerIncident.__key_warning(key)
|
1620
|
+
return super().get(key, default)
|
1621
|
+
|
1622
|
+
def __init__(__self__, *,
|
1623
|
+
description: str,
|
1624
|
+
name: str,
|
1625
|
+
notify_subscribers: bool,
|
1626
|
+
service_id: str,
|
1627
|
+
severity: str):
|
1628
|
+
"""
|
1629
|
+
:param str description: A detailed description of the incident.
|
1630
|
+
:param str name: The name of the incident.
|
1631
|
+
:param bool notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
1632
|
+
:param str service_id: The status page service that this incident will be associated with.
|
1633
|
+
:param str severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
1634
|
+
"""
|
1635
|
+
pulumi.set(__self__, "description", description)
|
1636
|
+
pulumi.set(__self__, "name", name)
|
1637
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
1638
|
+
pulumi.set(__self__, "service_id", service_id)
|
1639
|
+
pulumi.set(__self__, "severity", severity)
|
1640
|
+
|
1641
|
+
@property
|
1642
|
+
@pulumi.getter
|
1643
|
+
def description(self) -> str:
|
1644
|
+
"""
|
1645
|
+
A detailed description of the incident.
|
1646
|
+
"""
|
1647
|
+
return pulumi.get(self, "description")
|
1648
|
+
|
1649
|
+
@property
|
1650
|
+
@pulumi.getter
|
1651
|
+
def name(self) -> str:
|
1652
|
+
"""
|
1653
|
+
The name of the incident.
|
1654
|
+
"""
|
1655
|
+
return pulumi.get(self, "name")
|
1656
|
+
|
1657
|
+
@property
|
1658
|
+
@pulumi.getter(name="notifySubscribers")
|
1659
|
+
def notify_subscribers(self) -> bool:
|
1660
|
+
"""
|
1661
|
+
Whether to notify subscribers when the incident is triggered.
|
1662
|
+
"""
|
1663
|
+
return pulumi.get(self, "notify_subscribers")
|
1664
|
+
|
1665
|
+
@property
|
1666
|
+
@pulumi.getter(name="serviceId")
|
1667
|
+
def service_id(self) -> str:
|
1668
|
+
"""
|
1669
|
+
The status page service that this incident will be associated with.
|
1670
|
+
"""
|
1671
|
+
return pulumi.get(self, "service_id")
|
1672
|
+
|
1673
|
+
@property
|
1674
|
+
@pulumi.getter
|
1675
|
+
def severity(self) -> str:
|
1676
|
+
"""
|
1677
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
1678
|
+
"""
|
1679
|
+
return pulumi.get(self, "severity")
|
1680
|
+
|
1681
|
+
|
1595
1682
|
@pulumi.output_type
|
1596
1683
|
class HeartbeatCheckAlertChannelSubscription(dict):
|
1597
1684
|
@staticmethod
|
@@ -1979,6 +2066,87 @@ class HeartbeatCheckHeartbeat(dict):
|
|
1979
2066
|
return pulumi.get(self, "ping_token")
|
1980
2067
|
|
1981
2068
|
|
2069
|
+
@pulumi.output_type
|
2070
|
+
class HeartbeatCheckTriggerIncident(dict):
|
2071
|
+
@staticmethod
|
2072
|
+
def __key_warning(key: str):
|
2073
|
+
suggest = None
|
2074
|
+
if key == "notifySubscribers":
|
2075
|
+
suggest = "notify_subscribers"
|
2076
|
+
elif key == "serviceId":
|
2077
|
+
suggest = "service_id"
|
2078
|
+
|
2079
|
+
if suggest:
|
2080
|
+
pulumi.log.warn(f"Key '{key}' not found in HeartbeatCheckTriggerIncident. Access the value via the '{suggest}' property getter instead.")
|
2081
|
+
|
2082
|
+
def __getitem__(self, key: str) -> Any:
|
2083
|
+
HeartbeatCheckTriggerIncident.__key_warning(key)
|
2084
|
+
return super().__getitem__(key)
|
2085
|
+
|
2086
|
+
def get(self, key: str, default = None) -> Any:
|
2087
|
+
HeartbeatCheckTriggerIncident.__key_warning(key)
|
2088
|
+
return super().get(key, default)
|
2089
|
+
|
2090
|
+
def __init__(__self__, *,
|
2091
|
+
description: str,
|
2092
|
+
name: str,
|
2093
|
+
notify_subscribers: bool,
|
2094
|
+
service_id: str,
|
2095
|
+
severity: str):
|
2096
|
+
"""
|
2097
|
+
:param str description: A detailed description of the incident.
|
2098
|
+
:param str name: The name of the incident.
|
2099
|
+
:param bool notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
2100
|
+
:param str service_id: The status page service that this incident will be associated with.
|
2101
|
+
:param str severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2102
|
+
"""
|
2103
|
+
pulumi.set(__self__, "description", description)
|
2104
|
+
pulumi.set(__self__, "name", name)
|
2105
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
2106
|
+
pulumi.set(__self__, "service_id", service_id)
|
2107
|
+
pulumi.set(__self__, "severity", severity)
|
2108
|
+
|
2109
|
+
@property
|
2110
|
+
@pulumi.getter
|
2111
|
+
def description(self) -> str:
|
2112
|
+
"""
|
2113
|
+
A detailed description of the incident.
|
2114
|
+
"""
|
2115
|
+
return pulumi.get(self, "description")
|
2116
|
+
|
2117
|
+
@property
|
2118
|
+
@pulumi.getter
|
2119
|
+
def name(self) -> str:
|
2120
|
+
"""
|
2121
|
+
The name of the incident.
|
2122
|
+
"""
|
2123
|
+
return pulumi.get(self, "name")
|
2124
|
+
|
2125
|
+
@property
|
2126
|
+
@pulumi.getter(name="notifySubscribers")
|
2127
|
+
def notify_subscribers(self) -> bool:
|
2128
|
+
"""
|
2129
|
+
Whether to notify subscribers when the incident is triggered.
|
2130
|
+
"""
|
2131
|
+
return pulumi.get(self, "notify_subscribers")
|
2132
|
+
|
2133
|
+
@property
|
2134
|
+
@pulumi.getter(name="serviceId")
|
2135
|
+
def service_id(self) -> str:
|
2136
|
+
"""
|
2137
|
+
The status page service that this incident will be associated with.
|
2138
|
+
"""
|
2139
|
+
return pulumi.get(self, "service_id")
|
2140
|
+
|
2141
|
+
@property
|
2142
|
+
@pulumi.getter
|
2143
|
+
def severity(self) -> str:
|
2144
|
+
"""
|
2145
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2146
|
+
"""
|
2147
|
+
return pulumi.get(self, "severity")
|
2148
|
+
|
2149
|
+
|
1982
2150
|
@pulumi.output_type
|
1983
2151
|
class HeartbeatMonitorAlertChannelSubscription(dict):
|
1984
2152
|
@staticmethod
|
@@ -2366,6 +2534,87 @@ class HeartbeatMonitorHeartbeat(dict):
|
|
2366
2534
|
return pulumi.get(self, "ping_token")
|
2367
2535
|
|
2368
2536
|
|
2537
|
+
@pulumi.output_type
|
2538
|
+
class HeartbeatMonitorTriggerIncident(dict):
|
2539
|
+
@staticmethod
|
2540
|
+
def __key_warning(key: str):
|
2541
|
+
suggest = None
|
2542
|
+
if key == "notifySubscribers":
|
2543
|
+
suggest = "notify_subscribers"
|
2544
|
+
elif key == "serviceId":
|
2545
|
+
suggest = "service_id"
|
2546
|
+
|
2547
|
+
if suggest:
|
2548
|
+
pulumi.log.warn(f"Key '{key}' not found in HeartbeatMonitorTriggerIncident. Access the value via the '{suggest}' property getter instead.")
|
2549
|
+
|
2550
|
+
def __getitem__(self, key: str) -> Any:
|
2551
|
+
HeartbeatMonitorTriggerIncident.__key_warning(key)
|
2552
|
+
return super().__getitem__(key)
|
2553
|
+
|
2554
|
+
def get(self, key: str, default = None) -> Any:
|
2555
|
+
HeartbeatMonitorTriggerIncident.__key_warning(key)
|
2556
|
+
return super().get(key, default)
|
2557
|
+
|
2558
|
+
def __init__(__self__, *,
|
2559
|
+
description: str,
|
2560
|
+
name: str,
|
2561
|
+
notify_subscribers: bool,
|
2562
|
+
service_id: str,
|
2563
|
+
severity: str):
|
2564
|
+
"""
|
2565
|
+
:param str description: A detailed description of the incident.
|
2566
|
+
:param str name: The name of the incident.
|
2567
|
+
:param bool notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
2568
|
+
:param str service_id: The status page service that this incident will be associated with.
|
2569
|
+
:param str severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2570
|
+
"""
|
2571
|
+
pulumi.set(__self__, "description", description)
|
2572
|
+
pulumi.set(__self__, "name", name)
|
2573
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
2574
|
+
pulumi.set(__self__, "service_id", service_id)
|
2575
|
+
pulumi.set(__self__, "severity", severity)
|
2576
|
+
|
2577
|
+
@property
|
2578
|
+
@pulumi.getter
|
2579
|
+
def description(self) -> str:
|
2580
|
+
"""
|
2581
|
+
A detailed description of the incident.
|
2582
|
+
"""
|
2583
|
+
return pulumi.get(self, "description")
|
2584
|
+
|
2585
|
+
@property
|
2586
|
+
@pulumi.getter
|
2587
|
+
def name(self) -> str:
|
2588
|
+
"""
|
2589
|
+
The name of the incident.
|
2590
|
+
"""
|
2591
|
+
return pulumi.get(self, "name")
|
2592
|
+
|
2593
|
+
@property
|
2594
|
+
@pulumi.getter(name="notifySubscribers")
|
2595
|
+
def notify_subscribers(self) -> bool:
|
2596
|
+
"""
|
2597
|
+
Whether to notify subscribers when the incident is triggered.
|
2598
|
+
"""
|
2599
|
+
return pulumi.get(self, "notify_subscribers")
|
2600
|
+
|
2601
|
+
@property
|
2602
|
+
@pulumi.getter(name="serviceId")
|
2603
|
+
def service_id(self) -> str:
|
2604
|
+
"""
|
2605
|
+
The status page service that this incident will be associated with.
|
2606
|
+
"""
|
2607
|
+
return pulumi.get(self, "service_id")
|
2608
|
+
|
2609
|
+
@property
|
2610
|
+
@pulumi.getter
|
2611
|
+
def severity(self) -> str:
|
2612
|
+
"""
|
2613
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2614
|
+
"""
|
2615
|
+
return pulumi.get(self, "severity")
|
2616
|
+
|
2617
|
+
|
2369
2618
|
@pulumi.output_type
|
2370
2619
|
class StatusPageCard(dict):
|
2371
2620
|
@staticmethod
|
@@ -2907,6 +3156,87 @@ class TcpCheckRetryStrategy(dict):
|
|
2907
3156
|
return pulumi.get(self, "same_region")
|
2908
3157
|
|
2909
3158
|
|
3159
|
+
@pulumi.output_type
|
3160
|
+
class TcpCheckTriggerIncident(dict):
|
3161
|
+
@staticmethod
|
3162
|
+
def __key_warning(key: str):
|
3163
|
+
suggest = None
|
3164
|
+
if key == "notifySubscribers":
|
3165
|
+
suggest = "notify_subscribers"
|
3166
|
+
elif key == "serviceId":
|
3167
|
+
suggest = "service_id"
|
3168
|
+
|
3169
|
+
if suggest:
|
3170
|
+
pulumi.log.warn(f"Key '{key}' not found in TcpCheckTriggerIncident. Access the value via the '{suggest}' property getter instead.")
|
3171
|
+
|
3172
|
+
def __getitem__(self, key: str) -> Any:
|
3173
|
+
TcpCheckTriggerIncident.__key_warning(key)
|
3174
|
+
return super().__getitem__(key)
|
3175
|
+
|
3176
|
+
def get(self, key: str, default = None) -> Any:
|
3177
|
+
TcpCheckTriggerIncident.__key_warning(key)
|
3178
|
+
return super().get(key, default)
|
3179
|
+
|
3180
|
+
def __init__(__self__, *,
|
3181
|
+
description: str,
|
3182
|
+
name: str,
|
3183
|
+
notify_subscribers: bool,
|
3184
|
+
service_id: str,
|
3185
|
+
severity: str):
|
3186
|
+
"""
|
3187
|
+
:param str description: A detailed description of the incident.
|
3188
|
+
:param str name: The name of the incident.
|
3189
|
+
:param bool notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
3190
|
+
:param str service_id: The status page service that this incident will be associated with.
|
3191
|
+
:param str severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
3192
|
+
"""
|
3193
|
+
pulumi.set(__self__, "description", description)
|
3194
|
+
pulumi.set(__self__, "name", name)
|
3195
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
3196
|
+
pulumi.set(__self__, "service_id", service_id)
|
3197
|
+
pulumi.set(__self__, "severity", severity)
|
3198
|
+
|
3199
|
+
@property
|
3200
|
+
@pulumi.getter
|
3201
|
+
def description(self) -> str:
|
3202
|
+
"""
|
3203
|
+
A detailed description of the incident.
|
3204
|
+
"""
|
3205
|
+
return pulumi.get(self, "description")
|
3206
|
+
|
3207
|
+
@property
|
3208
|
+
@pulumi.getter
|
3209
|
+
def name(self) -> str:
|
3210
|
+
"""
|
3211
|
+
The name of the incident.
|
3212
|
+
"""
|
3213
|
+
return pulumi.get(self, "name")
|
3214
|
+
|
3215
|
+
@property
|
3216
|
+
@pulumi.getter(name="notifySubscribers")
|
3217
|
+
def notify_subscribers(self) -> bool:
|
3218
|
+
"""
|
3219
|
+
Whether to notify subscribers when the incident is triggered.
|
3220
|
+
"""
|
3221
|
+
return pulumi.get(self, "notify_subscribers")
|
3222
|
+
|
3223
|
+
@property
|
3224
|
+
@pulumi.getter(name="serviceId")
|
3225
|
+
def service_id(self) -> str:
|
3226
|
+
"""
|
3227
|
+
The status page service that this incident will be associated with.
|
3228
|
+
"""
|
3229
|
+
return pulumi.get(self, "service_id")
|
3230
|
+
|
3231
|
+
@property
|
3232
|
+
@pulumi.getter
|
3233
|
+
def severity(self) -> str:
|
3234
|
+
"""
|
3235
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
3236
|
+
"""
|
3237
|
+
return pulumi.get(self, "severity")
|
3238
|
+
|
3239
|
+
|
2910
3240
|
@pulumi.output_type
|
2911
3241
|
class TcpMonitorAlertChannelSubscription(dict):
|
2912
3242
|
@staticmethod
|
@@ -3367,6 +3697,87 @@ class TcpMonitorRetryStrategy(dict):
|
|
3367
3697
|
return pulumi.get(self, "same_region")
|
3368
3698
|
|
3369
3699
|
|
3700
|
+
@pulumi.output_type
|
3701
|
+
class TcpMonitorTriggerIncident(dict):
|
3702
|
+
@staticmethod
|
3703
|
+
def __key_warning(key: str):
|
3704
|
+
suggest = None
|
3705
|
+
if key == "notifySubscribers":
|
3706
|
+
suggest = "notify_subscribers"
|
3707
|
+
elif key == "serviceId":
|
3708
|
+
suggest = "service_id"
|
3709
|
+
|
3710
|
+
if suggest:
|
3711
|
+
pulumi.log.warn(f"Key '{key}' not found in TcpMonitorTriggerIncident. Access the value via the '{suggest}' property getter instead.")
|
3712
|
+
|
3713
|
+
def __getitem__(self, key: str) -> Any:
|
3714
|
+
TcpMonitorTriggerIncident.__key_warning(key)
|
3715
|
+
return super().__getitem__(key)
|
3716
|
+
|
3717
|
+
def get(self, key: str, default = None) -> Any:
|
3718
|
+
TcpMonitorTriggerIncident.__key_warning(key)
|
3719
|
+
return super().get(key, default)
|
3720
|
+
|
3721
|
+
def __init__(__self__, *,
|
3722
|
+
description: str,
|
3723
|
+
name: str,
|
3724
|
+
notify_subscribers: bool,
|
3725
|
+
service_id: str,
|
3726
|
+
severity: str):
|
3727
|
+
"""
|
3728
|
+
:param str description: A detailed description of the incident.
|
3729
|
+
:param str name: The name of the incident.
|
3730
|
+
:param bool notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
3731
|
+
:param str service_id: The status page service that this incident will be associated with.
|
3732
|
+
:param str severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
3733
|
+
"""
|
3734
|
+
pulumi.set(__self__, "description", description)
|
3735
|
+
pulumi.set(__self__, "name", name)
|
3736
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
3737
|
+
pulumi.set(__self__, "service_id", service_id)
|
3738
|
+
pulumi.set(__self__, "severity", severity)
|
3739
|
+
|
3740
|
+
@property
|
3741
|
+
@pulumi.getter
|
3742
|
+
def description(self) -> str:
|
3743
|
+
"""
|
3744
|
+
A detailed description of the incident.
|
3745
|
+
"""
|
3746
|
+
return pulumi.get(self, "description")
|
3747
|
+
|
3748
|
+
@property
|
3749
|
+
@pulumi.getter
|
3750
|
+
def name(self) -> str:
|
3751
|
+
"""
|
3752
|
+
The name of the incident.
|
3753
|
+
"""
|
3754
|
+
return pulumi.get(self, "name")
|
3755
|
+
|
3756
|
+
@property
|
3757
|
+
@pulumi.getter(name="notifySubscribers")
|
3758
|
+
def notify_subscribers(self) -> bool:
|
3759
|
+
"""
|
3760
|
+
Whether to notify subscribers when the incident is triggered.
|
3761
|
+
"""
|
3762
|
+
return pulumi.get(self, "notify_subscribers")
|
3763
|
+
|
3764
|
+
@property
|
3765
|
+
@pulumi.getter(name="serviceId")
|
3766
|
+
def service_id(self) -> str:
|
3767
|
+
"""
|
3768
|
+
The status page service that this incident will be associated with.
|
3769
|
+
"""
|
3770
|
+
return pulumi.get(self, "service_id")
|
3771
|
+
|
3772
|
+
@property
|
3773
|
+
@pulumi.getter
|
3774
|
+
def severity(self) -> str:
|
3775
|
+
"""
|
3776
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
3777
|
+
"""
|
3778
|
+
return pulumi.get(self, "severity")
|
3779
|
+
|
3780
|
+
|
3370
3781
|
@pulumi.output_type
|
3371
3782
|
class UrlMonitorAlertChannelSubscription(dict):
|
3372
3783
|
@staticmethod
|
@@ -3860,3 +4271,84 @@ class UrlMonitorRetryStrategy(dict):
|
|
3860
4271
|
return pulumi.get(self, "same_region")
|
3861
4272
|
|
3862
4273
|
|
4274
|
+
@pulumi.output_type
|
4275
|
+
class UrlMonitorTriggerIncident(dict):
|
4276
|
+
@staticmethod
|
4277
|
+
def __key_warning(key: str):
|
4278
|
+
suggest = None
|
4279
|
+
if key == "notifySubscribers":
|
4280
|
+
suggest = "notify_subscribers"
|
4281
|
+
elif key == "serviceId":
|
4282
|
+
suggest = "service_id"
|
4283
|
+
|
4284
|
+
if suggest:
|
4285
|
+
pulumi.log.warn(f"Key '{key}' not found in UrlMonitorTriggerIncident. Access the value via the '{suggest}' property getter instead.")
|
4286
|
+
|
4287
|
+
def __getitem__(self, key: str) -> Any:
|
4288
|
+
UrlMonitorTriggerIncident.__key_warning(key)
|
4289
|
+
return super().__getitem__(key)
|
4290
|
+
|
4291
|
+
def get(self, key: str, default = None) -> Any:
|
4292
|
+
UrlMonitorTriggerIncident.__key_warning(key)
|
4293
|
+
return super().get(key, default)
|
4294
|
+
|
4295
|
+
def __init__(__self__, *,
|
4296
|
+
description: str,
|
4297
|
+
name: str,
|
4298
|
+
notify_subscribers: bool,
|
4299
|
+
service_id: str,
|
4300
|
+
severity: str):
|
4301
|
+
"""
|
4302
|
+
:param str description: A detailed description of the incident.
|
4303
|
+
:param str name: The name of the incident.
|
4304
|
+
:param bool notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
4305
|
+
:param str service_id: The status page service that this incident will be associated with.
|
4306
|
+
:param str severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4307
|
+
"""
|
4308
|
+
pulumi.set(__self__, "description", description)
|
4309
|
+
pulumi.set(__self__, "name", name)
|
4310
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
4311
|
+
pulumi.set(__self__, "service_id", service_id)
|
4312
|
+
pulumi.set(__self__, "severity", severity)
|
4313
|
+
|
4314
|
+
@property
|
4315
|
+
@pulumi.getter
|
4316
|
+
def description(self) -> str:
|
4317
|
+
"""
|
4318
|
+
A detailed description of the incident.
|
4319
|
+
"""
|
4320
|
+
return pulumi.get(self, "description")
|
4321
|
+
|
4322
|
+
@property
|
4323
|
+
@pulumi.getter
|
4324
|
+
def name(self) -> str:
|
4325
|
+
"""
|
4326
|
+
The name of the incident.
|
4327
|
+
"""
|
4328
|
+
return pulumi.get(self, "name")
|
4329
|
+
|
4330
|
+
@property
|
4331
|
+
@pulumi.getter(name="notifySubscribers")
|
4332
|
+
def notify_subscribers(self) -> bool:
|
4333
|
+
"""
|
4334
|
+
Whether to notify subscribers when the incident is triggered.
|
4335
|
+
"""
|
4336
|
+
return pulumi.get(self, "notify_subscribers")
|
4337
|
+
|
4338
|
+
@property
|
4339
|
+
@pulumi.getter(name="serviceId")
|
4340
|
+
def service_id(self) -> str:
|
4341
|
+
"""
|
4342
|
+
The status page service that this incident will be associated with.
|
4343
|
+
"""
|
4344
|
+
return pulumi.get(self, "service_id")
|
4345
|
+
|
4346
|
+
@property
|
4347
|
+
@pulumi.getter
|
4348
|
+
def severity(self) -> str:
|
4349
|
+
"""
|
4350
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4351
|
+
"""
|
4352
|
+
return pulumi.get(self, "severity")
|
4353
|
+
|
4354
|
+
|