pulumi-checkly 2.4.0a1757083696__py3-none-any.whl → 2.5.0a1758735363__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.5.0a1758735363.dist-info}/METADATA +1 -1
- {pulumi_checkly-2.4.0a1757083696.dist-info → pulumi_checkly-2.5.0a1758735363.dist-info}/RECORD +13 -13
- {pulumi_checkly-2.4.0a1757083696.dist-info → pulumi_checkly-2.5.0a1758735363.dist-info}/WHEEL +0 -0
- {pulumi_checkly-2.4.0a1757083696.dist-info → pulumi_checkly-2.5.0a1758735363.dist-info}/top_level.txt +0 -0
pulumi_checkly/_inputs.py
CHANGED
@@ -77,6 +77,8 @@ __all__ = [
|
|
77
77
|
'CheckRequestBasicAuthArgsDict',
|
78
78
|
'CheckRetryStrategyArgs',
|
79
79
|
'CheckRetryStrategyArgsDict',
|
80
|
+
'CheckTriggerIncidentArgs',
|
81
|
+
'CheckTriggerIncidentArgsDict',
|
80
82
|
'HeartbeatCheckAlertChannelSubscriptionArgs',
|
81
83
|
'HeartbeatCheckAlertChannelSubscriptionArgsDict',
|
82
84
|
'HeartbeatCheckAlertSettingsArgs',
|
@@ -93,6 +95,8 @@ __all__ = [
|
|
93
95
|
'HeartbeatCheckAlertSettingsTimeBasedEscalationArgsDict',
|
94
96
|
'HeartbeatCheckHeartbeatArgs',
|
95
97
|
'HeartbeatCheckHeartbeatArgsDict',
|
98
|
+
'HeartbeatCheckTriggerIncidentArgs',
|
99
|
+
'HeartbeatCheckTriggerIncidentArgsDict',
|
96
100
|
'HeartbeatMonitorAlertChannelSubscriptionArgs',
|
97
101
|
'HeartbeatMonitorAlertChannelSubscriptionArgsDict',
|
98
102
|
'HeartbeatMonitorAlertSettingsArgs',
|
@@ -109,6 +113,8 @@ __all__ = [
|
|
109
113
|
'HeartbeatMonitorAlertSettingsTimeBasedEscalationArgsDict',
|
110
114
|
'HeartbeatMonitorHeartbeatArgs',
|
111
115
|
'HeartbeatMonitorHeartbeatArgsDict',
|
116
|
+
'HeartbeatMonitorTriggerIncidentArgs',
|
117
|
+
'HeartbeatMonitorTriggerIncidentArgsDict',
|
112
118
|
'StatusPageCardArgs',
|
113
119
|
'StatusPageCardArgsDict',
|
114
120
|
'StatusPageCardServiceAttachmentArgs',
|
@@ -131,6 +137,8 @@ __all__ = [
|
|
131
137
|
'TcpCheckRequestAssertionArgsDict',
|
132
138
|
'TcpCheckRetryStrategyArgs',
|
133
139
|
'TcpCheckRetryStrategyArgsDict',
|
140
|
+
'TcpCheckTriggerIncidentArgs',
|
141
|
+
'TcpCheckTriggerIncidentArgsDict',
|
134
142
|
'TcpMonitorAlertChannelSubscriptionArgs',
|
135
143
|
'TcpMonitorAlertChannelSubscriptionArgsDict',
|
136
144
|
'TcpMonitorAlertSettingsArgs',
|
@@ -149,6 +157,8 @@ __all__ = [
|
|
149
157
|
'TcpMonitorRequestAssertionArgsDict',
|
150
158
|
'TcpMonitorRetryStrategyArgs',
|
151
159
|
'TcpMonitorRetryStrategyArgsDict',
|
160
|
+
'TcpMonitorTriggerIncidentArgs',
|
161
|
+
'TcpMonitorTriggerIncidentArgsDict',
|
152
162
|
'UrlMonitorAlertChannelSubscriptionArgs',
|
153
163
|
'UrlMonitorAlertChannelSubscriptionArgsDict',
|
154
164
|
'UrlMonitorAlertSettingsArgs',
|
@@ -167,6 +177,8 @@ __all__ = [
|
|
167
177
|
'UrlMonitorRequestAssertionArgsDict',
|
168
178
|
'UrlMonitorRetryStrategyArgs',
|
169
179
|
'UrlMonitorRetryStrategyArgsDict',
|
180
|
+
'UrlMonitorTriggerIncidentArgs',
|
181
|
+
'UrlMonitorTriggerIncidentArgsDict',
|
170
182
|
]
|
171
183
|
|
172
184
|
MYPY = False
|
@@ -2139,6 +2151,113 @@ class CheckRetryStrategyArgs:
|
|
2139
2151
|
pulumi.set(self, "same_region", value)
|
2140
2152
|
|
2141
2153
|
|
2154
|
+
if not MYPY:
|
2155
|
+
class CheckTriggerIncidentArgsDict(TypedDict):
|
2156
|
+
description: pulumi.Input[str]
|
2157
|
+
"""
|
2158
|
+
A detailed description of the incident.
|
2159
|
+
"""
|
2160
|
+
name: pulumi.Input[str]
|
2161
|
+
"""
|
2162
|
+
The name of the incident.
|
2163
|
+
"""
|
2164
|
+
notify_subscribers: pulumi.Input[bool]
|
2165
|
+
"""
|
2166
|
+
Whether to notify subscribers when the incident is triggered.
|
2167
|
+
"""
|
2168
|
+
service_id: pulumi.Input[str]
|
2169
|
+
"""
|
2170
|
+
The status page service that this incident will be associated with.
|
2171
|
+
"""
|
2172
|
+
severity: pulumi.Input[str]
|
2173
|
+
"""
|
2174
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2175
|
+
"""
|
2176
|
+
elif False:
|
2177
|
+
CheckTriggerIncidentArgsDict: TypeAlias = Mapping[str, Any]
|
2178
|
+
|
2179
|
+
@pulumi.input_type
|
2180
|
+
class CheckTriggerIncidentArgs:
|
2181
|
+
def __init__(__self__, *,
|
2182
|
+
description: pulumi.Input[str],
|
2183
|
+
name: pulumi.Input[str],
|
2184
|
+
notify_subscribers: pulumi.Input[bool],
|
2185
|
+
service_id: pulumi.Input[str],
|
2186
|
+
severity: pulumi.Input[str]):
|
2187
|
+
"""
|
2188
|
+
:param pulumi.Input[str] description: A detailed description of the incident.
|
2189
|
+
:param pulumi.Input[str] name: The name of the incident.
|
2190
|
+
:param pulumi.Input[bool] notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
2191
|
+
:param pulumi.Input[str] service_id: The status page service that this incident will be associated with.
|
2192
|
+
:param pulumi.Input[str] severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2193
|
+
"""
|
2194
|
+
pulumi.set(__self__, "description", description)
|
2195
|
+
pulumi.set(__self__, "name", name)
|
2196
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
2197
|
+
pulumi.set(__self__, "service_id", service_id)
|
2198
|
+
pulumi.set(__self__, "severity", severity)
|
2199
|
+
|
2200
|
+
@property
|
2201
|
+
@pulumi.getter
|
2202
|
+
def description(self) -> pulumi.Input[str]:
|
2203
|
+
"""
|
2204
|
+
A detailed description of the incident.
|
2205
|
+
"""
|
2206
|
+
return pulumi.get(self, "description")
|
2207
|
+
|
2208
|
+
@description.setter
|
2209
|
+
def description(self, value: pulumi.Input[str]):
|
2210
|
+
pulumi.set(self, "description", value)
|
2211
|
+
|
2212
|
+
@property
|
2213
|
+
@pulumi.getter
|
2214
|
+
def name(self) -> pulumi.Input[str]:
|
2215
|
+
"""
|
2216
|
+
The name of the incident.
|
2217
|
+
"""
|
2218
|
+
return pulumi.get(self, "name")
|
2219
|
+
|
2220
|
+
@name.setter
|
2221
|
+
def name(self, value: pulumi.Input[str]):
|
2222
|
+
pulumi.set(self, "name", value)
|
2223
|
+
|
2224
|
+
@property
|
2225
|
+
@pulumi.getter(name="notifySubscribers")
|
2226
|
+
def notify_subscribers(self) -> pulumi.Input[bool]:
|
2227
|
+
"""
|
2228
|
+
Whether to notify subscribers when the incident is triggered.
|
2229
|
+
"""
|
2230
|
+
return pulumi.get(self, "notify_subscribers")
|
2231
|
+
|
2232
|
+
@notify_subscribers.setter
|
2233
|
+
def notify_subscribers(self, value: pulumi.Input[bool]):
|
2234
|
+
pulumi.set(self, "notify_subscribers", value)
|
2235
|
+
|
2236
|
+
@property
|
2237
|
+
@pulumi.getter(name="serviceId")
|
2238
|
+
def service_id(self) -> pulumi.Input[str]:
|
2239
|
+
"""
|
2240
|
+
The status page service that this incident will be associated with.
|
2241
|
+
"""
|
2242
|
+
return pulumi.get(self, "service_id")
|
2243
|
+
|
2244
|
+
@service_id.setter
|
2245
|
+
def service_id(self, value: pulumi.Input[str]):
|
2246
|
+
pulumi.set(self, "service_id", value)
|
2247
|
+
|
2248
|
+
@property
|
2249
|
+
@pulumi.getter
|
2250
|
+
def severity(self) -> pulumi.Input[str]:
|
2251
|
+
"""
|
2252
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2253
|
+
"""
|
2254
|
+
return pulumi.get(self, "severity")
|
2255
|
+
|
2256
|
+
@severity.setter
|
2257
|
+
def severity(self, value: pulumi.Input[str]):
|
2258
|
+
pulumi.set(self, "severity", value)
|
2259
|
+
|
2260
|
+
|
2142
2261
|
if not MYPY:
|
2143
2262
|
class HeartbeatCheckAlertChannelSubscriptionArgsDict(TypedDict):
|
2144
2263
|
activated: pulumi.Input[bool]
|
@@ -2602,6 +2721,113 @@ class HeartbeatCheckHeartbeatArgs:
|
|
2602
2721
|
pulumi.set(self, "ping_token", value)
|
2603
2722
|
|
2604
2723
|
|
2724
|
+
if not MYPY:
|
2725
|
+
class HeartbeatCheckTriggerIncidentArgsDict(TypedDict):
|
2726
|
+
description: pulumi.Input[str]
|
2727
|
+
"""
|
2728
|
+
A detailed description of the incident.
|
2729
|
+
"""
|
2730
|
+
name: pulumi.Input[str]
|
2731
|
+
"""
|
2732
|
+
The name of the incident.
|
2733
|
+
"""
|
2734
|
+
notify_subscribers: pulumi.Input[bool]
|
2735
|
+
"""
|
2736
|
+
Whether to notify subscribers when the incident is triggered.
|
2737
|
+
"""
|
2738
|
+
service_id: pulumi.Input[str]
|
2739
|
+
"""
|
2740
|
+
The status page service that this incident will be associated with.
|
2741
|
+
"""
|
2742
|
+
severity: pulumi.Input[str]
|
2743
|
+
"""
|
2744
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2745
|
+
"""
|
2746
|
+
elif False:
|
2747
|
+
HeartbeatCheckTriggerIncidentArgsDict: TypeAlias = Mapping[str, Any]
|
2748
|
+
|
2749
|
+
@pulumi.input_type
|
2750
|
+
class HeartbeatCheckTriggerIncidentArgs:
|
2751
|
+
def __init__(__self__, *,
|
2752
|
+
description: pulumi.Input[str],
|
2753
|
+
name: pulumi.Input[str],
|
2754
|
+
notify_subscribers: pulumi.Input[bool],
|
2755
|
+
service_id: pulumi.Input[str],
|
2756
|
+
severity: pulumi.Input[str]):
|
2757
|
+
"""
|
2758
|
+
:param pulumi.Input[str] description: A detailed description of the incident.
|
2759
|
+
:param pulumi.Input[str] name: The name of the incident.
|
2760
|
+
:param pulumi.Input[bool] notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
2761
|
+
:param pulumi.Input[str] service_id: The status page service that this incident will be associated with.
|
2762
|
+
:param pulumi.Input[str] severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2763
|
+
"""
|
2764
|
+
pulumi.set(__self__, "description", description)
|
2765
|
+
pulumi.set(__self__, "name", name)
|
2766
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
2767
|
+
pulumi.set(__self__, "service_id", service_id)
|
2768
|
+
pulumi.set(__self__, "severity", severity)
|
2769
|
+
|
2770
|
+
@property
|
2771
|
+
@pulumi.getter
|
2772
|
+
def description(self) -> pulumi.Input[str]:
|
2773
|
+
"""
|
2774
|
+
A detailed description of the incident.
|
2775
|
+
"""
|
2776
|
+
return pulumi.get(self, "description")
|
2777
|
+
|
2778
|
+
@description.setter
|
2779
|
+
def description(self, value: pulumi.Input[str]):
|
2780
|
+
pulumi.set(self, "description", value)
|
2781
|
+
|
2782
|
+
@property
|
2783
|
+
@pulumi.getter
|
2784
|
+
def name(self) -> pulumi.Input[str]:
|
2785
|
+
"""
|
2786
|
+
The name of the incident.
|
2787
|
+
"""
|
2788
|
+
return pulumi.get(self, "name")
|
2789
|
+
|
2790
|
+
@name.setter
|
2791
|
+
def name(self, value: pulumi.Input[str]):
|
2792
|
+
pulumi.set(self, "name", value)
|
2793
|
+
|
2794
|
+
@property
|
2795
|
+
@pulumi.getter(name="notifySubscribers")
|
2796
|
+
def notify_subscribers(self) -> pulumi.Input[bool]:
|
2797
|
+
"""
|
2798
|
+
Whether to notify subscribers when the incident is triggered.
|
2799
|
+
"""
|
2800
|
+
return pulumi.get(self, "notify_subscribers")
|
2801
|
+
|
2802
|
+
@notify_subscribers.setter
|
2803
|
+
def notify_subscribers(self, value: pulumi.Input[bool]):
|
2804
|
+
pulumi.set(self, "notify_subscribers", value)
|
2805
|
+
|
2806
|
+
@property
|
2807
|
+
@pulumi.getter(name="serviceId")
|
2808
|
+
def service_id(self) -> pulumi.Input[str]:
|
2809
|
+
"""
|
2810
|
+
The status page service that this incident will be associated with.
|
2811
|
+
"""
|
2812
|
+
return pulumi.get(self, "service_id")
|
2813
|
+
|
2814
|
+
@service_id.setter
|
2815
|
+
def service_id(self, value: pulumi.Input[str]):
|
2816
|
+
pulumi.set(self, "service_id", value)
|
2817
|
+
|
2818
|
+
@property
|
2819
|
+
@pulumi.getter
|
2820
|
+
def severity(self) -> pulumi.Input[str]:
|
2821
|
+
"""
|
2822
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
2823
|
+
"""
|
2824
|
+
return pulumi.get(self, "severity")
|
2825
|
+
|
2826
|
+
@severity.setter
|
2827
|
+
def severity(self, value: pulumi.Input[str]):
|
2828
|
+
pulumi.set(self, "severity", value)
|
2829
|
+
|
2830
|
+
|
2605
2831
|
if not MYPY:
|
2606
2832
|
class HeartbeatMonitorAlertChannelSubscriptionArgsDict(TypedDict):
|
2607
2833
|
activated: pulumi.Input[bool]
|
@@ -3065,6 +3291,113 @@ class HeartbeatMonitorHeartbeatArgs:
|
|
3065
3291
|
pulumi.set(self, "ping_token", value)
|
3066
3292
|
|
3067
3293
|
|
3294
|
+
if not MYPY:
|
3295
|
+
class HeartbeatMonitorTriggerIncidentArgsDict(TypedDict):
|
3296
|
+
description: pulumi.Input[str]
|
3297
|
+
"""
|
3298
|
+
A detailed description of the incident.
|
3299
|
+
"""
|
3300
|
+
name: pulumi.Input[str]
|
3301
|
+
"""
|
3302
|
+
The name of the incident.
|
3303
|
+
"""
|
3304
|
+
notify_subscribers: pulumi.Input[bool]
|
3305
|
+
"""
|
3306
|
+
Whether to notify subscribers when the incident is triggered.
|
3307
|
+
"""
|
3308
|
+
service_id: pulumi.Input[str]
|
3309
|
+
"""
|
3310
|
+
The status page service that this incident will be associated with.
|
3311
|
+
"""
|
3312
|
+
severity: pulumi.Input[str]
|
3313
|
+
"""
|
3314
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
3315
|
+
"""
|
3316
|
+
elif False:
|
3317
|
+
HeartbeatMonitorTriggerIncidentArgsDict: TypeAlias = Mapping[str, Any]
|
3318
|
+
|
3319
|
+
@pulumi.input_type
|
3320
|
+
class HeartbeatMonitorTriggerIncidentArgs:
|
3321
|
+
def __init__(__self__, *,
|
3322
|
+
description: pulumi.Input[str],
|
3323
|
+
name: pulumi.Input[str],
|
3324
|
+
notify_subscribers: pulumi.Input[bool],
|
3325
|
+
service_id: pulumi.Input[str],
|
3326
|
+
severity: pulumi.Input[str]):
|
3327
|
+
"""
|
3328
|
+
:param pulumi.Input[str] description: A detailed description of the incident.
|
3329
|
+
:param pulumi.Input[str] name: The name of the incident.
|
3330
|
+
:param pulumi.Input[bool] notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
3331
|
+
:param pulumi.Input[str] service_id: The status page service that this incident will be associated with.
|
3332
|
+
:param pulumi.Input[str] severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
3333
|
+
"""
|
3334
|
+
pulumi.set(__self__, "description", description)
|
3335
|
+
pulumi.set(__self__, "name", name)
|
3336
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
3337
|
+
pulumi.set(__self__, "service_id", service_id)
|
3338
|
+
pulumi.set(__self__, "severity", severity)
|
3339
|
+
|
3340
|
+
@property
|
3341
|
+
@pulumi.getter
|
3342
|
+
def description(self) -> pulumi.Input[str]:
|
3343
|
+
"""
|
3344
|
+
A detailed description of the incident.
|
3345
|
+
"""
|
3346
|
+
return pulumi.get(self, "description")
|
3347
|
+
|
3348
|
+
@description.setter
|
3349
|
+
def description(self, value: pulumi.Input[str]):
|
3350
|
+
pulumi.set(self, "description", value)
|
3351
|
+
|
3352
|
+
@property
|
3353
|
+
@pulumi.getter
|
3354
|
+
def name(self) -> pulumi.Input[str]:
|
3355
|
+
"""
|
3356
|
+
The name of the incident.
|
3357
|
+
"""
|
3358
|
+
return pulumi.get(self, "name")
|
3359
|
+
|
3360
|
+
@name.setter
|
3361
|
+
def name(self, value: pulumi.Input[str]):
|
3362
|
+
pulumi.set(self, "name", value)
|
3363
|
+
|
3364
|
+
@property
|
3365
|
+
@pulumi.getter(name="notifySubscribers")
|
3366
|
+
def notify_subscribers(self) -> pulumi.Input[bool]:
|
3367
|
+
"""
|
3368
|
+
Whether to notify subscribers when the incident is triggered.
|
3369
|
+
"""
|
3370
|
+
return pulumi.get(self, "notify_subscribers")
|
3371
|
+
|
3372
|
+
@notify_subscribers.setter
|
3373
|
+
def notify_subscribers(self, value: pulumi.Input[bool]):
|
3374
|
+
pulumi.set(self, "notify_subscribers", value)
|
3375
|
+
|
3376
|
+
@property
|
3377
|
+
@pulumi.getter(name="serviceId")
|
3378
|
+
def service_id(self) -> pulumi.Input[str]:
|
3379
|
+
"""
|
3380
|
+
The status page service that this incident will be associated with.
|
3381
|
+
"""
|
3382
|
+
return pulumi.get(self, "service_id")
|
3383
|
+
|
3384
|
+
@service_id.setter
|
3385
|
+
def service_id(self, value: pulumi.Input[str]):
|
3386
|
+
pulumi.set(self, "service_id", value)
|
3387
|
+
|
3388
|
+
@property
|
3389
|
+
@pulumi.getter
|
3390
|
+
def severity(self) -> pulumi.Input[str]:
|
3391
|
+
"""
|
3392
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
3393
|
+
"""
|
3394
|
+
return pulumi.get(self, "severity")
|
3395
|
+
|
3396
|
+
@severity.setter
|
3397
|
+
def severity(self, value: pulumi.Input[str]):
|
3398
|
+
pulumi.set(self, "severity", value)
|
3399
|
+
|
3400
|
+
|
3068
3401
|
if not MYPY:
|
3069
3402
|
class StatusPageCardArgsDict(TypedDict):
|
3070
3403
|
name: pulumi.Input[str]
|
@@ -3729,6 +4062,113 @@ class TcpCheckRetryStrategyArgs:
|
|
3729
4062
|
pulumi.set(self, "same_region", value)
|
3730
4063
|
|
3731
4064
|
|
4065
|
+
if not MYPY:
|
4066
|
+
class TcpCheckTriggerIncidentArgsDict(TypedDict):
|
4067
|
+
description: pulumi.Input[str]
|
4068
|
+
"""
|
4069
|
+
A detailed description of the incident.
|
4070
|
+
"""
|
4071
|
+
name: pulumi.Input[str]
|
4072
|
+
"""
|
4073
|
+
The name of the incident.
|
4074
|
+
"""
|
4075
|
+
notify_subscribers: pulumi.Input[bool]
|
4076
|
+
"""
|
4077
|
+
Whether to notify subscribers when the incident is triggered.
|
4078
|
+
"""
|
4079
|
+
service_id: pulumi.Input[str]
|
4080
|
+
"""
|
4081
|
+
The status page service that this incident will be associated with.
|
4082
|
+
"""
|
4083
|
+
severity: pulumi.Input[str]
|
4084
|
+
"""
|
4085
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4086
|
+
"""
|
4087
|
+
elif False:
|
4088
|
+
TcpCheckTriggerIncidentArgsDict: TypeAlias = Mapping[str, Any]
|
4089
|
+
|
4090
|
+
@pulumi.input_type
|
4091
|
+
class TcpCheckTriggerIncidentArgs:
|
4092
|
+
def __init__(__self__, *,
|
4093
|
+
description: pulumi.Input[str],
|
4094
|
+
name: pulumi.Input[str],
|
4095
|
+
notify_subscribers: pulumi.Input[bool],
|
4096
|
+
service_id: pulumi.Input[str],
|
4097
|
+
severity: pulumi.Input[str]):
|
4098
|
+
"""
|
4099
|
+
:param pulumi.Input[str] description: A detailed description of the incident.
|
4100
|
+
:param pulumi.Input[str] name: The name of the incident.
|
4101
|
+
:param pulumi.Input[bool] notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
4102
|
+
:param pulumi.Input[str] service_id: The status page service that this incident will be associated with.
|
4103
|
+
:param pulumi.Input[str] severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4104
|
+
"""
|
4105
|
+
pulumi.set(__self__, "description", description)
|
4106
|
+
pulumi.set(__self__, "name", name)
|
4107
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
4108
|
+
pulumi.set(__self__, "service_id", service_id)
|
4109
|
+
pulumi.set(__self__, "severity", severity)
|
4110
|
+
|
4111
|
+
@property
|
4112
|
+
@pulumi.getter
|
4113
|
+
def description(self) -> pulumi.Input[str]:
|
4114
|
+
"""
|
4115
|
+
A detailed description of the incident.
|
4116
|
+
"""
|
4117
|
+
return pulumi.get(self, "description")
|
4118
|
+
|
4119
|
+
@description.setter
|
4120
|
+
def description(self, value: pulumi.Input[str]):
|
4121
|
+
pulumi.set(self, "description", value)
|
4122
|
+
|
4123
|
+
@property
|
4124
|
+
@pulumi.getter
|
4125
|
+
def name(self) -> pulumi.Input[str]:
|
4126
|
+
"""
|
4127
|
+
The name of the incident.
|
4128
|
+
"""
|
4129
|
+
return pulumi.get(self, "name")
|
4130
|
+
|
4131
|
+
@name.setter
|
4132
|
+
def name(self, value: pulumi.Input[str]):
|
4133
|
+
pulumi.set(self, "name", value)
|
4134
|
+
|
4135
|
+
@property
|
4136
|
+
@pulumi.getter(name="notifySubscribers")
|
4137
|
+
def notify_subscribers(self) -> pulumi.Input[bool]:
|
4138
|
+
"""
|
4139
|
+
Whether to notify subscribers when the incident is triggered.
|
4140
|
+
"""
|
4141
|
+
return pulumi.get(self, "notify_subscribers")
|
4142
|
+
|
4143
|
+
@notify_subscribers.setter
|
4144
|
+
def notify_subscribers(self, value: pulumi.Input[bool]):
|
4145
|
+
pulumi.set(self, "notify_subscribers", value)
|
4146
|
+
|
4147
|
+
@property
|
4148
|
+
@pulumi.getter(name="serviceId")
|
4149
|
+
def service_id(self) -> pulumi.Input[str]:
|
4150
|
+
"""
|
4151
|
+
The status page service that this incident will be associated with.
|
4152
|
+
"""
|
4153
|
+
return pulumi.get(self, "service_id")
|
4154
|
+
|
4155
|
+
@service_id.setter
|
4156
|
+
def service_id(self, value: pulumi.Input[str]):
|
4157
|
+
pulumi.set(self, "service_id", value)
|
4158
|
+
|
4159
|
+
@property
|
4160
|
+
@pulumi.getter
|
4161
|
+
def severity(self) -> pulumi.Input[str]:
|
4162
|
+
"""
|
4163
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4164
|
+
"""
|
4165
|
+
return pulumi.get(self, "severity")
|
4166
|
+
|
4167
|
+
@severity.setter
|
4168
|
+
def severity(self, value: pulumi.Input[str]):
|
4169
|
+
pulumi.set(self, "severity", value)
|
4170
|
+
|
4171
|
+
|
3732
4172
|
if not MYPY:
|
3733
4173
|
class TcpMonitorAlertChannelSubscriptionArgsDict(TypedDict):
|
3734
4174
|
activated: pulumi.Input[bool]
|
@@ -4312,6 +4752,113 @@ class TcpMonitorRetryStrategyArgs:
|
|
4312
4752
|
pulumi.set(self, "same_region", value)
|
4313
4753
|
|
4314
4754
|
|
4755
|
+
if not MYPY:
|
4756
|
+
class TcpMonitorTriggerIncidentArgsDict(TypedDict):
|
4757
|
+
description: pulumi.Input[str]
|
4758
|
+
"""
|
4759
|
+
A detailed description of the incident.
|
4760
|
+
"""
|
4761
|
+
name: pulumi.Input[str]
|
4762
|
+
"""
|
4763
|
+
The name of the incident.
|
4764
|
+
"""
|
4765
|
+
notify_subscribers: pulumi.Input[bool]
|
4766
|
+
"""
|
4767
|
+
Whether to notify subscribers when the incident is triggered.
|
4768
|
+
"""
|
4769
|
+
service_id: pulumi.Input[str]
|
4770
|
+
"""
|
4771
|
+
The status page service that this incident will be associated with.
|
4772
|
+
"""
|
4773
|
+
severity: pulumi.Input[str]
|
4774
|
+
"""
|
4775
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4776
|
+
"""
|
4777
|
+
elif False:
|
4778
|
+
TcpMonitorTriggerIncidentArgsDict: TypeAlias = Mapping[str, Any]
|
4779
|
+
|
4780
|
+
@pulumi.input_type
|
4781
|
+
class TcpMonitorTriggerIncidentArgs:
|
4782
|
+
def __init__(__self__, *,
|
4783
|
+
description: pulumi.Input[str],
|
4784
|
+
name: pulumi.Input[str],
|
4785
|
+
notify_subscribers: pulumi.Input[bool],
|
4786
|
+
service_id: pulumi.Input[str],
|
4787
|
+
severity: pulumi.Input[str]):
|
4788
|
+
"""
|
4789
|
+
:param pulumi.Input[str] description: A detailed description of the incident.
|
4790
|
+
:param pulumi.Input[str] name: The name of the incident.
|
4791
|
+
:param pulumi.Input[bool] notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
4792
|
+
:param pulumi.Input[str] service_id: The status page service that this incident will be associated with.
|
4793
|
+
:param pulumi.Input[str] severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4794
|
+
"""
|
4795
|
+
pulumi.set(__self__, "description", description)
|
4796
|
+
pulumi.set(__self__, "name", name)
|
4797
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
4798
|
+
pulumi.set(__self__, "service_id", service_id)
|
4799
|
+
pulumi.set(__self__, "severity", severity)
|
4800
|
+
|
4801
|
+
@property
|
4802
|
+
@pulumi.getter
|
4803
|
+
def description(self) -> pulumi.Input[str]:
|
4804
|
+
"""
|
4805
|
+
A detailed description of the incident.
|
4806
|
+
"""
|
4807
|
+
return pulumi.get(self, "description")
|
4808
|
+
|
4809
|
+
@description.setter
|
4810
|
+
def description(self, value: pulumi.Input[str]):
|
4811
|
+
pulumi.set(self, "description", value)
|
4812
|
+
|
4813
|
+
@property
|
4814
|
+
@pulumi.getter
|
4815
|
+
def name(self) -> pulumi.Input[str]:
|
4816
|
+
"""
|
4817
|
+
The name of the incident.
|
4818
|
+
"""
|
4819
|
+
return pulumi.get(self, "name")
|
4820
|
+
|
4821
|
+
@name.setter
|
4822
|
+
def name(self, value: pulumi.Input[str]):
|
4823
|
+
pulumi.set(self, "name", value)
|
4824
|
+
|
4825
|
+
@property
|
4826
|
+
@pulumi.getter(name="notifySubscribers")
|
4827
|
+
def notify_subscribers(self) -> pulumi.Input[bool]:
|
4828
|
+
"""
|
4829
|
+
Whether to notify subscribers when the incident is triggered.
|
4830
|
+
"""
|
4831
|
+
return pulumi.get(self, "notify_subscribers")
|
4832
|
+
|
4833
|
+
@notify_subscribers.setter
|
4834
|
+
def notify_subscribers(self, value: pulumi.Input[bool]):
|
4835
|
+
pulumi.set(self, "notify_subscribers", value)
|
4836
|
+
|
4837
|
+
@property
|
4838
|
+
@pulumi.getter(name="serviceId")
|
4839
|
+
def service_id(self) -> pulumi.Input[str]:
|
4840
|
+
"""
|
4841
|
+
The status page service that this incident will be associated with.
|
4842
|
+
"""
|
4843
|
+
return pulumi.get(self, "service_id")
|
4844
|
+
|
4845
|
+
@service_id.setter
|
4846
|
+
def service_id(self, value: pulumi.Input[str]):
|
4847
|
+
pulumi.set(self, "service_id", value)
|
4848
|
+
|
4849
|
+
@property
|
4850
|
+
@pulumi.getter
|
4851
|
+
def severity(self) -> pulumi.Input[str]:
|
4852
|
+
"""
|
4853
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
4854
|
+
"""
|
4855
|
+
return pulumi.get(self, "severity")
|
4856
|
+
|
4857
|
+
@severity.setter
|
4858
|
+
def severity(self, value: pulumi.Input[str]):
|
4859
|
+
pulumi.set(self, "severity", value)
|
4860
|
+
|
4861
|
+
|
4315
4862
|
if not MYPY:
|
4316
4863
|
class UrlMonitorAlertChannelSubscriptionArgsDict(TypedDict):
|
4317
4864
|
activated: pulumi.Input[bool]
|
@@ -4945,3 +5492,110 @@ class UrlMonitorRetryStrategyArgs:
|
|
4945
5492
|
pulumi.set(self, "same_region", value)
|
4946
5493
|
|
4947
5494
|
|
5495
|
+
if not MYPY:
|
5496
|
+
class UrlMonitorTriggerIncidentArgsDict(TypedDict):
|
5497
|
+
description: pulumi.Input[str]
|
5498
|
+
"""
|
5499
|
+
A detailed description of the incident.
|
5500
|
+
"""
|
5501
|
+
name: pulumi.Input[str]
|
5502
|
+
"""
|
5503
|
+
The name of the incident.
|
5504
|
+
"""
|
5505
|
+
notify_subscribers: pulumi.Input[bool]
|
5506
|
+
"""
|
5507
|
+
Whether to notify subscribers when the incident is triggered.
|
5508
|
+
"""
|
5509
|
+
service_id: pulumi.Input[str]
|
5510
|
+
"""
|
5511
|
+
The status page service that this incident will be associated with.
|
5512
|
+
"""
|
5513
|
+
severity: pulumi.Input[str]
|
5514
|
+
"""
|
5515
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
5516
|
+
"""
|
5517
|
+
elif False:
|
5518
|
+
UrlMonitorTriggerIncidentArgsDict: TypeAlias = Mapping[str, Any]
|
5519
|
+
|
5520
|
+
@pulumi.input_type
|
5521
|
+
class UrlMonitorTriggerIncidentArgs:
|
5522
|
+
def __init__(__self__, *,
|
5523
|
+
description: pulumi.Input[str],
|
5524
|
+
name: pulumi.Input[str],
|
5525
|
+
notify_subscribers: pulumi.Input[bool],
|
5526
|
+
service_id: pulumi.Input[str],
|
5527
|
+
severity: pulumi.Input[str]):
|
5528
|
+
"""
|
5529
|
+
:param pulumi.Input[str] description: A detailed description of the incident.
|
5530
|
+
:param pulumi.Input[str] name: The name of the incident.
|
5531
|
+
:param pulumi.Input[bool] notify_subscribers: Whether to notify subscribers when the incident is triggered.
|
5532
|
+
:param pulumi.Input[str] service_id: The status page service that this incident will be associated with.
|
5533
|
+
:param pulumi.Input[str] severity: The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
5534
|
+
"""
|
5535
|
+
pulumi.set(__self__, "description", description)
|
5536
|
+
pulumi.set(__self__, "name", name)
|
5537
|
+
pulumi.set(__self__, "notify_subscribers", notify_subscribers)
|
5538
|
+
pulumi.set(__self__, "service_id", service_id)
|
5539
|
+
pulumi.set(__self__, "severity", severity)
|
5540
|
+
|
5541
|
+
@property
|
5542
|
+
@pulumi.getter
|
5543
|
+
def description(self) -> pulumi.Input[str]:
|
5544
|
+
"""
|
5545
|
+
A detailed description of the incident.
|
5546
|
+
"""
|
5547
|
+
return pulumi.get(self, "description")
|
5548
|
+
|
5549
|
+
@description.setter
|
5550
|
+
def description(self, value: pulumi.Input[str]):
|
5551
|
+
pulumi.set(self, "description", value)
|
5552
|
+
|
5553
|
+
@property
|
5554
|
+
@pulumi.getter
|
5555
|
+
def name(self) -> pulumi.Input[str]:
|
5556
|
+
"""
|
5557
|
+
The name of the incident.
|
5558
|
+
"""
|
5559
|
+
return pulumi.get(self, "name")
|
5560
|
+
|
5561
|
+
@name.setter
|
5562
|
+
def name(self, value: pulumi.Input[str]):
|
5563
|
+
pulumi.set(self, "name", value)
|
5564
|
+
|
5565
|
+
@property
|
5566
|
+
@pulumi.getter(name="notifySubscribers")
|
5567
|
+
def notify_subscribers(self) -> pulumi.Input[bool]:
|
5568
|
+
"""
|
5569
|
+
Whether to notify subscribers when the incident is triggered.
|
5570
|
+
"""
|
5571
|
+
return pulumi.get(self, "notify_subscribers")
|
5572
|
+
|
5573
|
+
@notify_subscribers.setter
|
5574
|
+
def notify_subscribers(self, value: pulumi.Input[bool]):
|
5575
|
+
pulumi.set(self, "notify_subscribers", value)
|
5576
|
+
|
5577
|
+
@property
|
5578
|
+
@pulumi.getter(name="serviceId")
|
5579
|
+
def service_id(self) -> pulumi.Input[str]:
|
5580
|
+
"""
|
5581
|
+
The status page service that this incident will be associated with.
|
5582
|
+
"""
|
5583
|
+
return pulumi.get(self, "service_id")
|
5584
|
+
|
5585
|
+
@service_id.setter
|
5586
|
+
def service_id(self, value: pulumi.Input[str]):
|
5587
|
+
pulumi.set(self, "service_id", value)
|
5588
|
+
|
5589
|
+
@property
|
5590
|
+
@pulumi.getter
|
5591
|
+
def severity(self) -> pulumi.Input[str]:
|
5592
|
+
"""
|
5593
|
+
The severity level of the incident. Possible values are `MINOR`, `MEDIUM`, `MAJOR`, and `CRITICAL`.
|
5594
|
+
"""
|
5595
|
+
return pulumi.get(self, "severity")
|
5596
|
+
|
5597
|
+
@severity.setter
|
5598
|
+
def severity(self, value: pulumi.Input[str]):
|
5599
|
+
pulumi.set(self, "severity", value)
|
5600
|
+
|
5601
|
+
|