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.
- pulumi_checkly/__init__.py +27 -0
- pulumi_checkly/_inputs.py +1925 -194
- pulumi_checkly/dashboard.py +396 -66
- pulumi_checkly/heartbeat_check.py +0 -4
- pulumi_checkly/heartbeat_monitor.py +480 -0
- pulumi_checkly/outputs.py +1518 -152
- pulumi_checkly/pulumi-plugin.json +1 -1
- pulumi_checkly/tcp_check.py +0 -4
- pulumi_checkly/tcp_monitor.py +1171 -0
- pulumi_checkly/url_monitor.py +1045 -0
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/METADATA +1 -1
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/RECORD +14 -11
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/WHEEL +0 -0
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/top_level.txt +0 -0
pulumi_checkly/dashboard.py
CHANGED
@@ -20,11 +20,14 @@ __all__ = ['DashboardArgs', 'Dashboard']
|
|
20
20
|
class DashboardArgs:
|
21
21
|
def __init__(__self__, *,
|
22
22
|
custom_url: pulumi.Input[str],
|
23
|
+
header: pulumi.Input[str],
|
23
24
|
checks_per_page: Optional[pulumi.Input[int]] = None,
|
25
|
+
custom_css: Optional[pulumi.Input[str]] = None,
|
24
26
|
custom_domain: Optional[pulumi.Input[str]] = None,
|
25
27
|
description: Optional[pulumi.Input[str]] = None,
|
28
|
+
enable_incidents: Optional[pulumi.Input[bool]] = None,
|
29
|
+
expand_checks: Optional[pulumi.Input[bool]] = None,
|
26
30
|
favicon: Optional[pulumi.Input[str]] = None,
|
27
|
-
header: Optional[pulumi.Input[str]] = None,
|
28
31
|
hide_tags: Optional[pulumi.Input[bool]] = None,
|
29
32
|
is_private: Optional[pulumi.Input[bool]] = None,
|
30
33
|
link: Optional[pulumi.Input[str]] = None,
|
@@ -32,39 +35,55 @@ class DashboardArgs:
|
|
32
35
|
paginate: Optional[pulumi.Input[bool]] = None,
|
33
36
|
pagination_rate: Optional[pulumi.Input[int]] = None,
|
34
37
|
refresh_rate: Optional[pulumi.Input[int]] = None,
|
38
|
+
show_check_run_links: Optional[pulumi.Input[bool]] = None,
|
39
|
+
show_header: Optional[pulumi.Input[bool]] = None,
|
40
|
+
show_p95: Optional[pulumi.Input[bool]] = None,
|
41
|
+
show_p99: Optional[pulumi.Input[bool]] = None,
|
35
42
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
36
43
|
use_tags_and_operator: Optional[pulumi.Input[bool]] = None,
|
37
44
|
width: Optional[pulumi.Input[str]] = None):
|
38
45
|
"""
|
39
46
|
The set of arguments for constructing a Dashboard resource.
|
40
47
|
:param pulumi.Input[str] custom_url: A subdomain name under 'checklyhq.com'. Needs to be unique across all users.
|
41
|
-
:param pulumi.Input[
|
48
|
+
:param pulumi.Input[str] header: A piece of text displayed at the top of your dashboard.
|
49
|
+
:param pulumi.Input[int] checks_per_page: Determines how many checks to show per page. Possible values are between 1 and 20. (Default `15`).
|
50
|
+
:param pulumi.Input[str] custom_css: Custom CSS to be applied to the dashboard.
|
42
51
|
:param pulumi.Input[str] custom_domain: A custom user domain, e.g. 'status.example.com'. See the docs on updating your DNS and SSL usage.
|
43
52
|
:param pulumi.Input[str] description: HTML \\n\\n description for the dashboard.
|
53
|
+
:param pulumi.Input[bool] enable_incidents: Enable incident support for the dashboard. (Default `false`).
|
54
|
+
:param pulumi.Input[bool] expand_checks: Expand or collapse checks on the dashboard. (Default `false`).
|
44
55
|
:param pulumi.Input[str] favicon: A URL pointing to an image file to use as browser favicon.
|
45
|
-
:param pulumi.Input[
|
46
|
-
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard.
|
56
|
+
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard. (Default `false`).
|
47
57
|
:param pulumi.Input[bool] is_private: Set your dashboard as private and generate key.
|
48
58
|
:param pulumi.Input[str] link: A link to for the dashboard logo.
|
49
59
|
:param pulumi.Input[str] logo: A URL pointing to an image file to use for the dashboard logo.
|
50
|
-
:param pulumi.Input[bool] paginate: Determines if pagination is on or off.
|
51
|
-
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`.
|
52
|
-
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`.
|
60
|
+
:param pulumi.Input[bool] paginate: Determines if pagination is on or off. (Default `true`).
|
61
|
+
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`. (Default `60`).
|
62
|
+
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`. (Default `60`).
|
63
|
+
:param pulumi.Input[bool] show_check_run_links: Show or hide check run links on the dashboard. (Default `false`).
|
64
|
+
:param pulumi.Input[bool] show_header: Show or hide header and description on the dashboard. (Default `true`).
|
65
|
+
:param pulumi.Input[bool] show_p95: Show or hide the P95 stats on the dashboard. (Default `true`).
|
66
|
+
:param pulumi.Input[bool] show_p99: Show or hide the P99 stats on the dashboard. (Default `true`).
|
53
67
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of one or more tags that filter which checks to display on the dashboard.
|
54
|
-
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags.
|
55
|
-
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values `FULL` and `960PX`.
|
68
|
+
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags. (Default `false`).
|
69
|
+
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values are `FULL` and `960PX`. (Default `FULL`).
|
56
70
|
"""
|
57
71
|
pulumi.set(__self__, "custom_url", custom_url)
|
72
|
+
pulumi.set(__self__, "header", header)
|
58
73
|
if checks_per_page is not None:
|
59
74
|
pulumi.set(__self__, "checks_per_page", checks_per_page)
|
75
|
+
if custom_css is not None:
|
76
|
+
pulumi.set(__self__, "custom_css", custom_css)
|
60
77
|
if custom_domain is not None:
|
61
78
|
pulumi.set(__self__, "custom_domain", custom_domain)
|
62
79
|
if description is not None:
|
63
80
|
pulumi.set(__self__, "description", description)
|
81
|
+
if enable_incidents is not None:
|
82
|
+
pulumi.set(__self__, "enable_incidents", enable_incidents)
|
83
|
+
if expand_checks is not None:
|
84
|
+
pulumi.set(__self__, "expand_checks", expand_checks)
|
64
85
|
if favicon is not None:
|
65
86
|
pulumi.set(__self__, "favicon", favicon)
|
66
|
-
if header is not None:
|
67
|
-
pulumi.set(__self__, "header", header)
|
68
87
|
if hide_tags is not None:
|
69
88
|
pulumi.set(__self__, "hide_tags", hide_tags)
|
70
89
|
if is_private is not None:
|
@@ -79,6 +98,14 @@ class DashboardArgs:
|
|
79
98
|
pulumi.set(__self__, "pagination_rate", pagination_rate)
|
80
99
|
if refresh_rate is not None:
|
81
100
|
pulumi.set(__self__, "refresh_rate", refresh_rate)
|
101
|
+
if show_check_run_links is not None:
|
102
|
+
pulumi.set(__self__, "show_check_run_links", show_check_run_links)
|
103
|
+
if show_header is not None:
|
104
|
+
pulumi.set(__self__, "show_header", show_header)
|
105
|
+
if show_p95 is not None:
|
106
|
+
pulumi.set(__self__, "show_p95", show_p95)
|
107
|
+
if show_p99 is not None:
|
108
|
+
pulumi.set(__self__, "show_p99", show_p99)
|
82
109
|
if tags is not None:
|
83
110
|
pulumi.set(__self__, "tags", tags)
|
84
111
|
if use_tags_and_operator is not None:
|
@@ -98,11 +125,23 @@ class DashboardArgs:
|
|
98
125
|
def custom_url(self, value: pulumi.Input[str]):
|
99
126
|
pulumi.set(self, "custom_url", value)
|
100
127
|
|
128
|
+
@property
|
129
|
+
@pulumi.getter
|
130
|
+
def header(self) -> pulumi.Input[str]:
|
131
|
+
"""
|
132
|
+
A piece of text displayed at the top of your dashboard.
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "header")
|
135
|
+
|
136
|
+
@header.setter
|
137
|
+
def header(self, value: pulumi.Input[str]):
|
138
|
+
pulumi.set(self, "header", value)
|
139
|
+
|
101
140
|
@property
|
102
141
|
@pulumi.getter(name="checksPerPage")
|
103
142
|
def checks_per_page(self) -> Optional[pulumi.Input[int]]:
|
104
143
|
"""
|
105
|
-
Determines how many checks to show per page.
|
144
|
+
Determines how many checks to show per page. Possible values are between 1 and 20. (Default `15`).
|
106
145
|
"""
|
107
146
|
return pulumi.get(self, "checks_per_page")
|
108
147
|
|
@@ -110,6 +149,18 @@ class DashboardArgs:
|
|
110
149
|
def checks_per_page(self, value: Optional[pulumi.Input[int]]):
|
111
150
|
pulumi.set(self, "checks_per_page", value)
|
112
151
|
|
152
|
+
@property
|
153
|
+
@pulumi.getter(name="customCss")
|
154
|
+
def custom_css(self) -> Optional[pulumi.Input[str]]:
|
155
|
+
"""
|
156
|
+
Custom CSS to be applied to the dashboard.
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "custom_css")
|
159
|
+
|
160
|
+
@custom_css.setter
|
161
|
+
def custom_css(self, value: Optional[pulumi.Input[str]]):
|
162
|
+
pulumi.set(self, "custom_css", value)
|
163
|
+
|
113
164
|
@property
|
114
165
|
@pulumi.getter(name="customDomain")
|
115
166
|
def custom_domain(self) -> Optional[pulumi.Input[str]]:
|
@@ -134,6 +185,30 @@ class DashboardArgs:
|
|
134
185
|
def description(self, value: Optional[pulumi.Input[str]]):
|
135
186
|
pulumi.set(self, "description", value)
|
136
187
|
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="enableIncidents")
|
190
|
+
def enable_incidents(self) -> Optional[pulumi.Input[bool]]:
|
191
|
+
"""
|
192
|
+
Enable incident support for the dashboard. (Default `false`).
|
193
|
+
"""
|
194
|
+
return pulumi.get(self, "enable_incidents")
|
195
|
+
|
196
|
+
@enable_incidents.setter
|
197
|
+
def enable_incidents(self, value: Optional[pulumi.Input[bool]]):
|
198
|
+
pulumi.set(self, "enable_incidents", value)
|
199
|
+
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="expandChecks")
|
202
|
+
def expand_checks(self) -> Optional[pulumi.Input[bool]]:
|
203
|
+
"""
|
204
|
+
Expand or collapse checks on the dashboard. (Default `false`).
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "expand_checks")
|
207
|
+
|
208
|
+
@expand_checks.setter
|
209
|
+
def expand_checks(self, value: Optional[pulumi.Input[bool]]):
|
210
|
+
pulumi.set(self, "expand_checks", value)
|
211
|
+
|
137
212
|
@property
|
138
213
|
@pulumi.getter
|
139
214
|
def favicon(self) -> Optional[pulumi.Input[str]]:
|
@@ -146,23 +221,11 @@ class DashboardArgs:
|
|
146
221
|
def favicon(self, value: Optional[pulumi.Input[str]]):
|
147
222
|
pulumi.set(self, "favicon", value)
|
148
223
|
|
149
|
-
@property
|
150
|
-
@pulumi.getter
|
151
|
-
def header(self) -> Optional[pulumi.Input[str]]:
|
152
|
-
"""
|
153
|
-
A piece of text displayed at the top of your dashboard.
|
154
|
-
"""
|
155
|
-
return pulumi.get(self, "header")
|
156
|
-
|
157
|
-
@header.setter
|
158
|
-
def header(self, value: Optional[pulumi.Input[str]]):
|
159
|
-
pulumi.set(self, "header", value)
|
160
|
-
|
161
224
|
@property
|
162
225
|
@pulumi.getter(name="hideTags")
|
163
226
|
def hide_tags(self) -> Optional[pulumi.Input[bool]]:
|
164
227
|
"""
|
165
|
-
Show or hide the tags on the dashboard.
|
228
|
+
Show or hide the tags on the dashboard. (Default `false`).
|
166
229
|
"""
|
167
230
|
return pulumi.get(self, "hide_tags")
|
168
231
|
|
@@ -210,7 +273,7 @@ class DashboardArgs:
|
|
210
273
|
@pulumi.getter
|
211
274
|
def paginate(self) -> Optional[pulumi.Input[bool]]:
|
212
275
|
"""
|
213
|
-
Determines if pagination is on or off.
|
276
|
+
Determines if pagination is on or off. (Default `true`).
|
214
277
|
"""
|
215
278
|
return pulumi.get(self, "paginate")
|
216
279
|
|
@@ -222,7 +285,7 @@ class DashboardArgs:
|
|
222
285
|
@pulumi.getter(name="paginationRate")
|
223
286
|
def pagination_rate(self) -> Optional[pulumi.Input[int]]:
|
224
287
|
"""
|
225
|
-
How often to trigger pagination in seconds. Possible values `30`, `60` and `300`.
|
288
|
+
How often to trigger pagination in seconds. Possible values `30`, `60` and `300`. (Default `60`).
|
226
289
|
"""
|
227
290
|
return pulumi.get(self, "pagination_rate")
|
228
291
|
|
@@ -234,7 +297,7 @@ class DashboardArgs:
|
|
234
297
|
@pulumi.getter(name="refreshRate")
|
235
298
|
def refresh_rate(self) -> Optional[pulumi.Input[int]]:
|
236
299
|
"""
|
237
|
-
How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`.
|
300
|
+
How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`. (Default `60`).
|
238
301
|
"""
|
239
302
|
return pulumi.get(self, "refresh_rate")
|
240
303
|
|
@@ -242,6 +305,54 @@ class DashboardArgs:
|
|
242
305
|
def refresh_rate(self, value: Optional[pulumi.Input[int]]):
|
243
306
|
pulumi.set(self, "refresh_rate", value)
|
244
307
|
|
308
|
+
@property
|
309
|
+
@pulumi.getter(name="showCheckRunLinks")
|
310
|
+
def show_check_run_links(self) -> Optional[pulumi.Input[bool]]:
|
311
|
+
"""
|
312
|
+
Show or hide check run links on the dashboard. (Default `false`).
|
313
|
+
"""
|
314
|
+
return pulumi.get(self, "show_check_run_links")
|
315
|
+
|
316
|
+
@show_check_run_links.setter
|
317
|
+
def show_check_run_links(self, value: Optional[pulumi.Input[bool]]):
|
318
|
+
pulumi.set(self, "show_check_run_links", value)
|
319
|
+
|
320
|
+
@property
|
321
|
+
@pulumi.getter(name="showHeader")
|
322
|
+
def show_header(self) -> Optional[pulumi.Input[bool]]:
|
323
|
+
"""
|
324
|
+
Show or hide header and description on the dashboard. (Default `true`).
|
325
|
+
"""
|
326
|
+
return pulumi.get(self, "show_header")
|
327
|
+
|
328
|
+
@show_header.setter
|
329
|
+
def show_header(self, value: Optional[pulumi.Input[bool]]):
|
330
|
+
pulumi.set(self, "show_header", value)
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="showP95")
|
334
|
+
def show_p95(self) -> Optional[pulumi.Input[bool]]:
|
335
|
+
"""
|
336
|
+
Show or hide the P95 stats on the dashboard. (Default `true`).
|
337
|
+
"""
|
338
|
+
return pulumi.get(self, "show_p95")
|
339
|
+
|
340
|
+
@show_p95.setter
|
341
|
+
def show_p95(self, value: Optional[pulumi.Input[bool]]):
|
342
|
+
pulumi.set(self, "show_p95", value)
|
343
|
+
|
344
|
+
@property
|
345
|
+
@pulumi.getter(name="showP99")
|
346
|
+
def show_p99(self) -> Optional[pulumi.Input[bool]]:
|
347
|
+
"""
|
348
|
+
Show or hide the P99 stats on the dashboard. (Default `true`).
|
349
|
+
"""
|
350
|
+
return pulumi.get(self, "show_p99")
|
351
|
+
|
352
|
+
@show_p99.setter
|
353
|
+
def show_p99(self, value: Optional[pulumi.Input[bool]]):
|
354
|
+
pulumi.set(self, "show_p99", value)
|
355
|
+
|
245
356
|
@property
|
246
357
|
@pulumi.getter
|
247
358
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -258,7 +369,7 @@ class DashboardArgs:
|
|
258
369
|
@pulumi.getter(name="useTagsAndOperator")
|
259
370
|
def use_tags_and_operator(self) -> Optional[pulumi.Input[bool]]:
|
260
371
|
"""
|
261
|
-
Set when to use AND operator for fetching dashboard tags.
|
372
|
+
Set when to use AND operator for fetching dashboard tags. (Default `false`).
|
262
373
|
"""
|
263
374
|
return pulumi.get(self, "use_tags_and_operator")
|
264
375
|
|
@@ -270,7 +381,7 @@ class DashboardArgs:
|
|
270
381
|
@pulumi.getter
|
271
382
|
def width(self) -> Optional[pulumi.Input[str]]:
|
272
383
|
"""
|
273
|
-
Determines whether to use the full screen or focus in the center. Possible values `FULL` and `960PX`.
|
384
|
+
Determines whether to use the full screen or focus in the center. Possible values are `FULL` and `960PX`. (Default `FULL`).
|
274
385
|
"""
|
275
386
|
return pulumi.get(self, "width")
|
276
387
|
|
@@ -283,9 +394,12 @@ class DashboardArgs:
|
|
283
394
|
class _DashboardState:
|
284
395
|
def __init__(__self__, *,
|
285
396
|
checks_per_page: Optional[pulumi.Input[int]] = None,
|
397
|
+
custom_css: Optional[pulumi.Input[str]] = None,
|
286
398
|
custom_domain: Optional[pulumi.Input[str]] = None,
|
287
399
|
custom_url: Optional[pulumi.Input[str]] = None,
|
288
400
|
description: Optional[pulumi.Input[str]] = None,
|
401
|
+
enable_incidents: Optional[pulumi.Input[bool]] = None,
|
402
|
+
expand_checks: Optional[pulumi.Input[bool]] = None,
|
289
403
|
favicon: Optional[pulumi.Input[str]] = None,
|
290
404
|
header: Optional[pulumi.Input[str]] = None,
|
291
405
|
hide_tags: Optional[pulumi.Input[bool]] = None,
|
@@ -296,37 +410,54 @@ class _DashboardState:
|
|
296
410
|
paginate: Optional[pulumi.Input[bool]] = None,
|
297
411
|
pagination_rate: Optional[pulumi.Input[int]] = None,
|
298
412
|
refresh_rate: Optional[pulumi.Input[int]] = None,
|
413
|
+
show_check_run_links: Optional[pulumi.Input[bool]] = None,
|
414
|
+
show_header: Optional[pulumi.Input[bool]] = None,
|
415
|
+
show_p95: Optional[pulumi.Input[bool]] = None,
|
416
|
+
show_p99: Optional[pulumi.Input[bool]] = None,
|
299
417
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
300
418
|
use_tags_and_operator: Optional[pulumi.Input[bool]] = None,
|
301
419
|
width: Optional[pulumi.Input[str]] = None):
|
302
420
|
"""
|
303
421
|
Input properties used for looking up and filtering Dashboard resources.
|
304
|
-
:param pulumi.Input[int] checks_per_page: Determines how many checks to show per page.
|
422
|
+
:param pulumi.Input[int] checks_per_page: Determines how many checks to show per page. Possible values are between 1 and 20. (Default `15`).
|
423
|
+
:param pulumi.Input[str] custom_css: Custom CSS to be applied to the dashboard.
|
305
424
|
:param pulumi.Input[str] custom_domain: A custom user domain, e.g. 'status.example.com'. See the docs on updating your DNS and SSL usage.
|
306
425
|
:param pulumi.Input[str] custom_url: A subdomain name under 'checklyhq.com'. Needs to be unique across all users.
|
307
426
|
:param pulumi.Input[str] description: HTML \\n\\n description for the dashboard.
|
427
|
+
:param pulumi.Input[bool] enable_incidents: Enable incident support for the dashboard. (Default `false`).
|
428
|
+
:param pulumi.Input[bool] expand_checks: Expand or collapse checks on the dashboard. (Default `false`).
|
308
429
|
:param pulumi.Input[str] favicon: A URL pointing to an image file to use as browser favicon.
|
309
430
|
:param pulumi.Input[str] header: A piece of text displayed at the top of your dashboard.
|
310
|
-
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard.
|
431
|
+
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard. (Default `false`).
|
311
432
|
:param pulumi.Input[bool] is_private: Set your dashboard as private and generate key.
|
312
433
|
:param pulumi.Input[str] key: The access key when the dashboard is private.
|
313
434
|
:param pulumi.Input[str] link: A link to for the dashboard logo.
|
314
435
|
:param pulumi.Input[str] logo: A URL pointing to an image file to use for the dashboard logo.
|
315
|
-
:param pulumi.Input[bool] paginate: Determines if pagination is on or off.
|
316
|
-
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`.
|
317
|
-
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`.
|
436
|
+
:param pulumi.Input[bool] paginate: Determines if pagination is on or off. (Default `true`).
|
437
|
+
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`. (Default `60`).
|
438
|
+
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`. (Default `60`).
|
439
|
+
:param pulumi.Input[bool] show_check_run_links: Show or hide check run links on the dashboard. (Default `false`).
|
440
|
+
:param pulumi.Input[bool] show_header: Show or hide header and description on the dashboard. (Default `true`).
|
441
|
+
:param pulumi.Input[bool] show_p95: Show or hide the P95 stats on the dashboard. (Default `true`).
|
442
|
+
:param pulumi.Input[bool] show_p99: Show or hide the P99 stats on the dashboard. (Default `true`).
|
318
443
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of one or more tags that filter which checks to display on the dashboard.
|
319
|
-
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags.
|
320
|
-
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values `FULL` and `960PX`.
|
444
|
+
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags. (Default `false`).
|
445
|
+
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values are `FULL` and `960PX`. (Default `FULL`).
|
321
446
|
"""
|
322
447
|
if checks_per_page is not None:
|
323
448
|
pulumi.set(__self__, "checks_per_page", checks_per_page)
|
449
|
+
if custom_css is not None:
|
450
|
+
pulumi.set(__self__, "custom_css", custom_css)
|
324
451
|
if custom_domain is not None:
|
325
452
|
pulumi.set(__self__, "custom_domain", custom_domain)
|
326
453
|
if custom_url is not None:
|
327
454
|
pulumi.set(__self__, "custom_url", custom_url)
|
328
455
|
if description is not None:
|
329
456
|
pulumi.set(__self__, "description", description)
|
457
|
+
if enable_incidents is not None:
|
458
|
+
pulumi.set(__self__, "enable_incidents", enable_incidents)
|
459
|
+
if expand_checks is not None:
|
460
|
+
pulumi.set(__self__, "expand_checks", expand_checks)
|
330
461
|
if favicon is not None:
|
331
462
|
pulumi.set(__self__, "favicon", favicon)
|
332
463
|
if header is not None:
|
@@ -347,6 +478,14 @@ class _DashboardState:
|
|
347
478
|
pulumi.set(__self__, "pagination_rate", pagination_rate)
|
348
479
|
if refresh_rate is not None:
|
349
480
|
pulumi.set(__self__, "refresh_rate", refresh_rate)
|
481
|
+
if show_check_run_links is not None:
|
482
|
+
pulumi.set(__self__, "show_check_run_links", show_check_run_links)
|
483
|
+
if show_header is not None:
|
484
|
+
pulumi.set(__self__, "show_header", show_header)
|
485
|
+
if show_p95 is not None:
|
486
|
+
pulumi.set(__self__, "show_p95", show_p95)
|
487
|
+
if show_p99 is not None:
|
488
|
+
pulumi.set(__self__, "show_p99", show_p99)
|
350
489
|
if tags is not None:
|
351
490
|
pulumi.set(__self__, "tags", tags)
|
352
491
|
if use_tags_and_operator is not None:
|
@@ -358,7 +497,7 @@ class _DashboardState:
|
|
358
497
|
@pulumi.getter(name="checksPerPage")
|
359
498
|
def checks_per_page(self) -> Optional[pulumi.Input[int]]:
|
360
499
|
"""
|
361
|
-
Determines how many checks to show per page.
|
500
|
+
Determines how many checks to show per page. Possible values are between 1 and 20. (Default `15`).
|
362
501
|
"""
|
363
502
|
return pulumi.get(self, "checks_per_page")
|
364
503
|
|
@@ -366,6 +505,18 @@ class _DashboardState:
|
|
366
505
|
def checks_per_page(self, value: Optional[pulumi.Input[int]]):
|
367
506
|
pulumi.set(self, "checks_per_page", value)
|
368
507
|
|
508
|
+
@property
|
509
|
+
@pulumi.getter(name="customCss")
|
510
|
+
def custom_css(self) -> Optional[pulumi.Input[str]]:
|
511
|
+
"""
|
512
|
+
Custom CSS to be applied to the dashboard.
|
513
|
+
"""
|
514
|
+
return pulumi.get(self, "custom_css")
|
515
|
+
|
516
|
+
@custom_css.setter
|
517
|
+
def custom_css(self, value: Optional[pulumi.Input[str]]):
|
518
|
+
pulumi.set(self, "custom_css", value)
|
519
|
+
|
369
520
|
@property
|
370
521
|
@pulumi.getter(name="customDomain")
|
371
522
|
def custom_domain(self) -> Optional[pulumi.Input[str]]:
|
@@ -402,6 +553,30 @@ class _DashboardState:
|
|
402
553
|
def description(self, value: Optional[pulumi.Input[str]]):
|
403
554
|
pulumi.set(self, "description", value)
|
404
555
|
|
556
|
+
@property
|
557
|
+
@pulumi.getter(name="enableIncidents")
|
558
|
+
def enable_incidents(self) -> Optional[pulumi.Input[bool]]:
|
559
|
+
"""
|
560
|
+
Enable incident support for the dashboard. (Default `false`).
|
561
|
+
"""
|
562
|
+
return pulumi.get(self, "enable_incidents")
|
563
|
+
|
564
|
+
@enable_incidents.setter
|
565
|
+
def enable_incidents(self, value: Optional[pulumi.Input[bool]]):
|
566
|
+
pulumi.set(self, "enable_incidents", value)
|
567
|
+
|
568
|
+
@property
|
569
|
+
@pulumi.getter(name="expandChecks")
|
570
|
+
def expand_checks(self) -> Optional[pulumi.Input[bool]]:
|
571
|
+
"""
|
572
|
+
Expand or collapse checks on the dashboard. (Default `false`).
|
573
|
+
"""
|
574
|
+
return pulumi.get(self, "expand_checks")
|
575
|
+
|
576
|
+
@expand_checks.setter
|
577
|
+
def expand_checks(self, value: Optional[pulumi.Input[bool]]):
|
578
|
+
pulumi.set(self, "expand_checks", value)
|
579
|
+
|
405
580
|
@property
|
406
581
|
@pulumi.getter
|
407
582
|
def favicon(self) -> Optional[pulumi.Input[str]]:
|
@@ -430,7 +605,7 @@ class _DashboardState:
|
|
430
605
|
@pulumi.getter(name="hideTags")
|
431
606
|
def hide_tags(self) -> Optional[pulumi.Input[bool]]:
|
432
607
|
"""
|
433
|
-
Show or hide the tags on the dashboard.
|
608
|
+
Show or hide the tags on the dashboard. (Default `false`).
|
434
609
|
"""
|
435
610
|
return pulumi.get(self, "hide_tags")
|
436
611
|
|
@@ -490,7 +665,7 @@ class _DashboardState:
|
|
490
665
|
@pulumi.getter
|
491
666
|
def paginate(self) -> Optional[pulumi.Input[bool]]:
|
492
667
|
"""
|
493
|
-
Determines if pagination is on or off.
|
668
|
+
Determines if pagination is on or off. (Default `true`).
|
494
669
|
"""
|
495
670
|
return pulumi.get(self, "paginate")
|
496
671
|
|
@@ -502,7 +677,7 @@ class _DashboardState:
|
|
502
677
|
@pulumi.getter(name="paginationRate")
|
503
678
|
def pagination_rate(self) -> Optional[pulumi.Input[int]]:
|
504
679
|
"""
|
505
|
-
How often to trigger pagination in seconds. Possible values `30`, `60` and `300`.
|
680
|
+
How often to trigger pagination in seconds. Possible values `30`, `60` and `300`. (Default `60`).
|
506
681
|
"""
|
507
682
|
return pulumi.get(self, "pagination_rate")
|
508
683
|
|
@@ -514,7 +689,7 @@ class _DashboardState:
|
|
514
689
|
@pulumi.getter(name="refreshRate")
|
515
690
|
def refresh_rate(self) -> Optional[pulumi.Input[int]]:
|
516
691
|
"""
|
517
|
-
How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`.
|
692
|
+
How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`. (Default `60`).
|
518
693
|
"""
|
519
694
|
return pulumi.get(self, "refresh_rate")
|
520
695
|
|
@@ -522,6 +697,54 @@ class _DashboardState:
|
|
522
697
|
def refresh_rate(self, value: Optional[pulumi.Input[int]]):
|
523
698
|
pulumi.set(self, "refresh_rate", value)
|
524
699
|
|
700
|
+
@property
|
701
|
+
@pulumi.getter(name="showCheckRunLinks")
|
702
|
+
def show_check_run_links(self) -> Optional[pulumi.Input[bool]]:
|
703
|
+
"""
|
704
|
+
Show or hide check run links on the dashboard. (Default `false`).
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "show_check_run_links")
|
707
|
+
|
708
|
+
@show_check_run_links.setter
|
709
|
+
def show_check_run_links(self, value: Optional[pulumi.Input[bool]]):
|
710
|
+
pulumi.set(self, "show_check_run_links", value)
|
711
|
+
|
712
|
+
@property
|
713
|
+
@pulumi.getter(name="showHeader")
|
714
|
+
def show_header(self) -> Optional[pulumi.Input[bool]]:
|
715
|
+
"""
|
716
|
+
Show or hide header and description on the dashboard. (Default `true`).
|
717
|
+
"""
|
718
|
+
return pulumi.get(self, "show_header")
|
719
|
+
|
720
|
+
@show_header.setter
|
721
|
+
def show_header(self, value: Optional[pulumi.Input[bool]]):
|
722
|
+
pulumi.set(self, "show_header", value)
|
723
|
+
|
724
|
+
@property
|
725
|
+
@pulumi.getter(name="showP95")
|
726
|
+
def show_p95(self) -> Optional[pulumi.Input[bool]]:
|
727
|
+
"""
|
728
|
+
Show or hide the P95 stats on the dashboard. (Default `true`).
|
729
|
+
"""
|
730
|
+
return pulumi.get(self, "show_p95")
|
731
|
+
|
732
|
+
@show_p95.setter
|
733
|
+
def show_p95(self, value: Optional[pulumi.Input[bool]]):
|
734
|
+
pulumi.set(self, "show_p95", value)
|
735
|
+
|
736
|
+
@property
|
737
|
+
@pulumi.getter(name="showP99")
|
738
|
+
def show_p99(self) -> Optional[pulumi.Input[bool]]:
|
739
|
+
"""
|
740
|
+
Show or hide the P99 stats on the dashboard. (Default `true`).
|
741
|
+
"""
|
742
|
+
return pulumi.get(self, "show_p99")
|
743
|
+
|
744
|
+
@show_p99.setter
|
745
|
+
def show_p99(self, value: Optional[pulumi.Input[bool]]):
|
746
|
+
pulumi.set(self, "show_p99", value)
|
747
|
+
|
525
748
|
@property
|
526
749
|
@pulumi.getter
|
527
750
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -538,7 +761,7 @@ class _DashboardState:
|
|
538
761
|
@pulumi.getter(name="useTagsAndOperator")
|
539
762
|
def use_tags_and_operator(self) -> Optional[pulumi.Input[bool]]:
|
540
763
|
"""
|
541
|
-
Set when to use AND operator for fetching dashboard tags.
|
764
|
+
Set when to use AND operator for fetching dashboard tags. (Default `false`).
|
542
765
|
"""
|
543
766
|
return pulumi.get(self, "use_tags_and_operator")
|
544
767
|
|
@@ -550,7 +773,7 @@ class _DashboardState:
|
|
550
773
|
@pulumi.getter
|
551
774
|
def width(self) -> Optional[pulumi.Input[str]]:
|
552
775
|
"""
|
553
|
-
Determines whether to use the full screen or focus in the center. Possible values `FULL` and `960PX`.
|
776
|
+
Determines whether to use the full screen or focus in the center. Possible values are `FULL` and `960PX`. (Default `FULL`).
|
554
777
|
"""
|
555
778
|
return pulumi.get(self, "width")
|
556
779
|
|
@@ -565,9 +788,12 @@ class Dashboard(pulumi.CustomResource):
|
|
565
788
|
resource_name: str,
|
566
789
|
opts: Optional[pulumi.ResourceOptions] = None,
|
567
790
|
checks_per_page: Optional[pulumi.Input[int]] = None,
|
791
|
+
custom_css: Optional[pulumi.Input[str]] = None,
|
568
792
|
custom_domain: Optional[pulumi.Input[str]] = None,
|
569
793
|
custom_url: Optional[pulumi.Input[str]] = None,
|
570
794
|
description: Optional[pulumi.Input[str]] = None,
|
795
|
+
enable_incidents: Optional[pulumi.Input[bool]] = None,
|
796
|
+
expand_checks: Optional[pulumi.Input[bool]] = None,
|
571
797
|
favicon: Optional[pulumi.Input[str]] = None,
|
572
798
|
header: Optional[pulumi.Input[str]] = None,
|
573
799
|
hide_tags: Optional[pulumi.Input[bool]] = None,
|
@@ -577,6 +803,10 @@ class Dashboard(pulumi.CustomResource):
|
|
577
803
|
paginate: Optional[pulumi.Input[bool]] = None,
|
578
804
|
pagination_rate: Optional[pulumi.Input[int]] = None,
|
579
805
|
refresh_rate: Optional[pulumi.Input[int]] = None,
|
806
|
+
show_check_run_links: Optional[pulumi.Input[bool]] = None,
|
807
|
+
show_header: Optional[pulumi.Input[bool]] = None,
|
808
|
+
show_p95: Optional[pulumi.Input[bool]] = None,
|
809
|
+
show_p99: Optional[pulumi.Input[bool]] = None,
|
580
810
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
581
811
|
use_tags_and_operator: Optional[pulumi.Input[bool]] = None,
|
582
812
|
width: Optional[pulumi.Input[str]] = None,
|
@@ -603,22 +833,29 @@ class Dashboard(pulumi.CustomResource):
|
|
603
833
|
|
604
834
|
:param str resource_name: The name of the resource.
|
605
835
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
606
|
-
:param pulumi.Input[int] checks_per_page: Determines how many checks to show per page.
|
836
|
+
:param pulumi.Input[int] checks_per_page: Determines how many checks to show per page. Possible values are between 1 and 20. (Default `15`).
|
837
|
+
:param pulumi.Input[str] custom_css: Custom CSS to be applied to the dashboard.
|
607
838
|
:param pulumi.Input[str] custom_domain: A custom user domain, e.g. 'status.example.com'. See the docs on updating your DNS and SSL usage.
|
608
839
|
:param pulumi.Input[str] custom_url: A subdomain name under 'checklyhq.com'. Needs to be unique across all users.
|
609
840
|
:param pulumi.Input[str] description: HTML \\n\\n description for the dashboard.
|
841
|
+
:param pulumi.Input[bool] enable_incidents: Enable incident support for the dashboard. (Default `false`).
|
842
|
+
:param pulumi.Input[bool] expand_checks: Expand or collapse checks on the dashboard. (Default `false`).
|
610
843
|
:param pulumi.Input[str] favicon: A URL pointing to an image file to use as browser favicon.
|
611
844
|
:param pulumi.Input[str] header: A piece of text displayed at the top of your dashboard.
|
612
|
-
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard.
|
845
|
+
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard. (Default `false`).
|
613
846
|
:param pulumi.Input[bool] is_private: Set your dashboard as private and generate key.
|
614
847
|
:param pulumi.Input[str] link: A link to for the dashboard logo.
|
615
848
|
:param pulumi.Input[str] logo: A URL pointing to an image file to use for the dashboard logo.
|
616
|
-
:param pulumi.Input[bool] paginate: Determines if pagination is on or off.
|
617
|
-
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`.
|
618
|
-
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`.
|
849
|
+
:param pulumi.Input[bool] paginate: Determines if pagination is on or off. (Default `true`).
|
850
|
+
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`. (Default `60`).
|
851
|
+
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`. (Default `60`).
|
852
|
+
:param pulumi.Input[bool] show_check_run_links: Show or hide check run links on the dashboard. (Default `false`).
|
853
|
+
:param pulumi.Input[bool] show_header: Show or hide header and description on the dashboard. (Default `true`).
|
854
|
+
:param pulumi.Input[bool] show_p95: Show or hide the P95 stats on the dashboard. (Default `true`).
|
855
|
+
:param pulumi.Input[bool] show_p99: Show or hide the P99 stats on the dashboard. (Default `true`).
|
619
856
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of one or more tags that filter which checks to display on the dashboard.
|
620
|
-
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags.
|
621
|
-
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values `FULL` and `960PX`.
|
857
|
+
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags. (Default `false`).
|
858
|
+
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values are `FULL` and `960PX`. (Default `FULL`).
|
622
859
|
"""
|
623
860
|
...
|
624
861
|
@overload
|
@@ -662,9 +899,12 @@ class Dashboard(pulumi.CustomResource):
|
|
662
899
|
resource_name: str,
|
663
900
|
opts: Optional[pulumi.ResourceOptions] = None,
|
664
901
|
checks_per_page: Optional[pulumi.Input[int]] = None,
|
902
|
+
custom_css: Optional[pulumi.Input[str]] = None,
|
665
903
|
custom_domain: Optional[pulumi.Input[str]] = None,
|
666
904
|
custom_url: Optional[pulumi.Input[str]] = None,
|
667
905
|
description: Optional[pulumi.Input[str]] = None,
|
906
|
+
enable_incidents: Optional[pulumi.Input[bool]] = None,
|
907
|
+
expand_checks: Optional[pulumi.Input[bool]] = None,
|
668
908
|
favicon: Optional[pulumi.Input[str]] = None,
|
669
909
|
header: Optional[pulumi.Input[str]] = None,
|
670
910
|
hide_tags: Optional[pulumi.Input[bool]] = None,
|
@@ -674,6 +914,10 @@ class Dashboard(pulumi.CustomResource):
|
|
674
914
|
paginate: Optional[pulumi.Input[bool]] = None,
|
675
915
|
pagination_rate: Optional[pulumi.Input[int]] = None,
|
676
916
|
refresh_rate: Optional[pulumi.Input[int]] = None,
|
917
|
+
show_check_run_links: Optional[pulumi.Input[bool]] = None,
|
918
|
+
show_header: Optional[pulumi.Input[bool]] = None,
|
919
|
+
show_p95: Optional[pulumi.Input[bool]] = None,
|
920
|
+
show_p99: Optional[pulumi.Input[bool]] = None,
|
677
921
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
678
922
|
use_tags_and_operator: Optional[pulumi.Input[bool]] = None,
|
679
923
|
width: Optional[pulumi.Input[str]] = None,
|
@@ -687,12 +931,17 @@ class Dashboard(pulumi.CustomResource):
|
|
687
931
|
__props__ = DashboardArgs.__new__(DashboardArgs)
|
688
932
|
|
689
933
|
__props__.__dict__["checks_per_page"] = checks_per_page
|
934
|
+
__props__.__dict__["custom_css"] = custom_css
|
690
935
|
__props__.__dict__["custom_domain"] = custom_domain
|
691
936
|
if custom_url is None and not opts.urn:
|
692
937
|
raise TypeError("Missing required property 'custom_url'")
|
693
938
|
__props__.__dict__["custom_url"] = custom_url
|
694
939
|
__props__.__dict__["description"] = description
|
940
|
+
__props__.__dict__["enable_incidents"] = enable_incidents
|
941
|
+
__props__.__dict__["expand_checks"] = expand_checks
|
695
942
|
__props__.__dict__["favicon"] = favicon
|
943
|
+
if header is None and not opts.urn:
|
944
|
+
raise TypeError("Missing required property 'header'")
|
696
945
|
__props__.__dict__["header"] = header
|
697
946
|
__props__.__dict__["hide_tags"] = hide_tags
|
698
947
|
__props__.__dict__["is_private"] = is_private
|
@@ -701,6 +950,10 @@ class Dashboard(pulumi.CustomResource):
|
|
701
950
|
__props__.__dict__["paginate"] = paginate
|
702
951
|
__props__.__dict__["pagination_rate"] = pagination_rate
|
703
952
|
__props__.__dict__["refresh_rate"] = refresh_rate
|
953
|
+
__props__.__dict__["show_check_run_links"] = show_check_run_links
|
954
|
+
__props__.__dict__["show_header"] = show_header
|
955
|
+
__props__.__dict__["show_p95"] = show_p95
|
956
|
+
__props__.__dict__["show_p99"] = show_p99
|
704
957
|
__props__.__dict__["tags"] = tags
|
705
958
|
__props__.__dict__["use_tags_and_operator"] = use_tags_and_operator
|
706
959
|
__props__.__dict__["width"] = width
|
@@ -718,9 +971,12 @@ class Dashboard(pulumi.CustomResource):
|
|
718
971
|
id: pulumi.Input[str],
|
719
972
|
opts: Optional[pulumi.ResourceOptions] = None,
|
720
973
|
checks_per_page: Optional[pulumi.Input[int]] = None,
|
974
|
+
custom_css: Optional[pulumi.Input[str]] = None,
|
721
975
|
custom_domain: Optional[pulumi.Input[str]] = None,
|
722
976
|
custom_url: Optional[pulumi.Input[str]] = None,
|
723
977
|
description: Optional[pulumi.Input[str]] = None,
|
978
|
+
enable_incidents: Optional[pulumi.Input[bool]] = None,
|
979
|
+
expand_checks: Optional[pulumi.Input[bool]] = None,
|
724
980
|
favicon: Optional[pulumi.Input[str]] = None,
|
725
981
|
header: Optional[pulumi.Input[str]] = None,
|
726
982
|
hide_tags: Optional[pulumi.Input[bool]] = None,
|
@@ -731,6 +987,10 @@ class Dashboard(pulumi.CustomResource):
|
|
731
987
|
paginate: Optional[pulumi.Input[bool]] = None,
|
732
988
|
pagination_rate: Optional[pulumi.Input[int]] = None,
|
733
989
|
refresh_rate: Optional[pulumi.Input[int]] = None,
|
990
|
+
show_check_run_links: Optional[pulumi.Input[bool]] = None,
|
991
|
+
show_header: Optional[pulumi.Input[bool]] = None,
|
992
|
+
show_p95: Optional[pulumi.Input[bool]] = None,
|
993
|
+
show_p99: Optional[pulumi.Input[bool]] = None,
|
734
994
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
735
995
|
use_tags_and_operator: Optional[pulumi.Input[bool]] = None,
|
736
996
|
width: Optional[pulumi.Input[str]] = None) -> 'Dashboard':
|
@@ -741,32 +1001,42 @@ class Dashboard(pulumi.CustomResource):
|
|
741
1001
|
:param str resource_name: The unique name of the resulting resource.
|
742
1002
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
743
1003
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
744
|
-
:param pulumi.Input[int] checks_per_page: Determines how many checks to show per page.
|
1004
|
+
:param pulumi.Input[int] checks_per_page: Determines how many checks to show per page. Possible values are between 1 and 20. (Default `15`).
|
1005
|
+
:param pulumi.Input[str] custom_css: Custom CSS to be applied to the dashboard.
|
745
1006
|
:param pulumi.Input[str] custom_domain: A custom user domain, e.g. 'status.example.com'. See the docs on updating your DNS and SSL usage.
|
746
1007
|
:param pulumi.Input[str] custom_url: A subdomain name under 'checklyhq.com'. Needs to be unique across all users.
|
747
1008
|
:param pulumi.Input[str] description: HTML \\n\\n description for the dashboard.
|
1009
|
+
:param pulumi.Input[bool] enable_incidents: Enable incident support for the dashboard. (Default `false`).
|
1010
|
+
:param pulumi.Input[bool] expand_checks: Expand or collapse checks on the dashboard. (Default `false`).
|
748
1011
|
:param pulumi.Input[str] favicon: A URL pointing to an image file to use as browser favicon.
|
749
1012
|
:param pulumi.Input[str] header: A piece of text displayed at the top of your dashboard.
|
750
|
-
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard.
|
1013
|
+
:param pulumi.Input[bool] hide_tags: Show or hide the tags on the dashboard. (Default `false`).
|
751
1014
|
:param pulumi.Input[bool] is_private: Set your dashboard as private and generate key.
|
752
1015
|
:param pulumi.Input[str] key: The access key when the dashboard is private.
|
753
1016
|
:param pulumi.Input[str] link: A link to for the dashboard logo.
|
754
1017
|
:param pulumi.Input[str] logo: A URL pointing to an image file to use for the dashboard logo.
|
755
|
-
:param pulumi.Input[bool] paginate: Determines if pagination is on or off.
|
756
|
-
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`.
|
757
|
-
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`.
|
1018
|
+
:param pulumi.Input[bool] paginate: Determines if pagination is on or off. (Default `true`).
|
1019
|
+
:param pulumi.Input[int] pagination_rate: How often to trigger pagination in seconds. Possible values `30`, `60` and `300`. (Default `60`).
|
1020
|
+
:param pulumi.Input[int] refresh_rate: How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`. (Default `60`).
|
1021
|
+
:param pulumi.Input[bool] show_check_run_links: Show or hide check run links on the dashboard. (Default `false`).
|
1022
|
+
:param pulumi.Input[bool] show_header: Show or hide header and description on the dashboard. (Default `true`).
|
1023
|
+
:param pulumi.Input[bool] show_p95: Show or hide the P95 stats on the dashboard. (Default `true`).
|
1024
|
+
:param pulumi.Input[bool] show_p99: Show or hide the P99 stats on the dashboard. (Default `true`).
|
758
1025
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of one or more tags that filter which checks to display on the dashboard.
|
759
|
-
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags.
|
760
|
-
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values `FULL` and `960PX`.
|
1026
|
+
:param pulumi.Input[bool] use_tags_and_operator: Set when to use AND operator for fetching dashboard tags. (Default `false`).
|
1027
|
+
:param pulumi.Input[str] width: Determines whether to use the full screen or focus in the center. Possible values are `FULL` and `960PX`. (Default `FULL`).
|
761
1028
|
"""
|
762
1029
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
763
1030
|
|
764
1031
|
__props__ = _DashboardState.__new__(_DashboardState)
|
765
1032
|
|
766
1033
|
__props__.__dict__["checks_per_page"] = checks_per_page
|
1034
|
+
__props__.__dict__["custom_css"] = custom_css
|
767
1035
|
__props__.__dict__["custom_domain"] = custom_domain
|
768
1036
|
__props__.__dict__["custom_url"] = custom_url
|
769
1037
|
__props__.__dict__["description"] = description
|
1038
|
+
__props__.__dict__["enable_incidents"] = enable_incidents
|
1039
|
+
__props__.__dict__["expand_checks"] = expand_checks
|
770
1040
|
__props__.__dict__["favicon"] = favicon
|
771
1041
|
__props__.__dict__["header"] = header
|
772
1042
|
__props__.__dict__["hide_tags"] = hide_tags
|
@@ -777,6 +1047,10 @@ class Dashboard(pulumi.CustomResource):
|
|
777
1047
|
__props__.__dict__["paginate"] = paginate
|
778
1048
|
__props__.__dict__["pagination_rate"] = pagination_rate
|
779
1049
|
__props__.__dict__["refresh_rate"] = refresh_rate
|
1050
|
+
__props__.__dict__["show_check_run_links"] = show_check_run_links
|
1051
|
+
__props__.__dict__["show_header"] = show_header
|
1052
|
+
__props__.__dict__["show_p95"] = show_p95
|
1053
|
+
__props__.__dict__["show_p99"] = show_p99
|
780
1054
|
__props__.__dict__["tags"] = tags
|
781
1055
|
__props__.__dict__["use_tags_and_operator"] = use_tags_and_operator
|
782
1056
|
__props__.__dict__["width"] = width
|
@@ -786,10 +1060,18 @@ class Dashboard(pulumi.CustomResource):
|
|
786
1060
|
@pulumi.getter(name="checksPerPage")
|
787
1061
|
def checks_per_page(self) -> pulumi.Output[Optional[int]]:
|
788
1062
|
"""
|
789
|
-
Determines how many checks to show per page.
|
1063
|
+
Determines how many checks to show per page. Possible values are between 1 and 20. (Default `15`).
|
790
1064
|
"""
|
791
1065
|
return pulumi.get(self, "checks_per_page")
|
792
1066
|
|
1067
|
+
@property
|
1068
|
+
@pulumi.getter(name="customCss")
|
1069
|
+
def custom_css(self) -> pulumi.Output[Optional[str]]:
|
1070
|
+
"""
|
1071
|
+
Custom CSS to be applied to the dashboard.
|
1072
|
+
"""
|
1073
|
+
return pulumi.get(self, "custom_css")
|
1074
|
+
|
793
1075
|
@property
|
794
1076
|
@pulumi.getter(name="customDomain")
|
795
1077
|
def custom_domain(self) -> pulumi.Output[Optional[str]]:
|
@@ -814,6 +1096,22 @@ class Dashboard(pulumi.CustomResource):
|
|
814
1096
|
"""
|
815
1097
|
return pulumi.get(self, "description")
|
816
1098
|
|
1099
|
+
@property
|
1100
|
+
@pulumi.getter(name="enableIncidents")
|
1101
|
+
def enable_incidents(self) -> pulumi.Output[Optional[bool]]:
|
1102
|
+
"""
|
1103
|
+
Enable incident support for the dashboard. (Default `false`).
|
1104
|
+
"""
|
1105
|
+
return pulumi.get(self, "enable_incidents")
|
1106
|
+
|
1107
|
+
@property
|
1108
|
+
@pulumi.getter(name="expandChecks")
|
1109
|
+
def expand_checks(self) -> pulumi.Output[Optional[bool]]:
|
1110
|
+
"""
|
1111
|
+
Expand or collapse checks on the dashboard. (Default `false`).
|
1112
|
+
"""
|
1113
|
+
return pulumi.get(self, "expand_checks")
|
1114
|
+
|
817
1115
|
@property
|
818
1116
|
@pulumi.getter
|
819
1117
|
def favicon(self) -> pulumi.Output[Optional[str]]:
|
@@ -824,7 +1122,7 @@ class Dashboard(pulumi.CustomResource):
|
|
824
1122
|
|
825
1123
|
@property
|
826
1124
|
@pulumi.getter
|
827
|
-
def header(self) -> pulumi.Output[
|
1125
|
+
def header(self) -> pulumi.Output[str]:
|
828
1126
|
"""
|
829
1127
|
A piece of text displayed at the top of your dashboard.
|
830
1128
|
"""
|
@@ -834,7 +1132,7 @@ class Dashboard(pulumi.CustomResource):
|
|
834
1132
|
@pulumi.getter(name="hideTags")
|
835
1133
|
def hide_tags(self) -> pulumi.Output[Optional[bool]]:
|
836
1134
|
"""
|
837
|
-
Show or hide the tags on the dashboard.
|
1135
|
+
Show or hide the tags on the dashboard. (Default `false`).
|
838
1136
|
"""
|
839
1137
|
return pulumi.get(self, "hide_tags")
|
840
1138
|
|
@@ -874,7 +1172,7 @@ class Dashboard(pulumi.CustomResource):
|
|
874
1172
|
@pulumi.getter
|
875
1173
|
def paginate(self) -> pulumi.Output[Optional[bool]]:
|
876
1174
|
"""
|
877
|
-
Determines if pagination is on or off.
|
1175
|
+
Determines if pagination is on or off. (Default `true`).
|
878
1176
|
"""
|
879
1177
|
return pulumi.get(self, "paginate")
|
880
1178
|
|
@@ -882,7 +1180,7 @@ class Dashboard(pulumi.CustomResource):
|
|
882
1180
|
@pulumi.getter(name="paginationRate")
|
883
1181
|
def pagination_rate(self) -> pulumi.Output[Optional[int]]:
|
884
1182
|
"""
|
885
|
-
How often to trigger pagination in seconds. Possible values `30`, `60` and `300`.
|
1183
|
+
How often to trigger pagination in seconds. Possible values `30`, `60` and `300`. (Default `60`).
|
886
1184
|
"""
|
887
1185
|
return pulumi.get(self, "pagination_rate")
|
888
1186
|
|
@@ -890,10 +1188,42 @@ class Dashboard(pulumi.CustomResource):
|
|
890
1188
|
@pulumi.getter(name="refreshRate")
|
891
1189
|
def refresh_rate(self) -> pulumi.Output[Optional[int]]:
|
892
1190
|
"""
|
893
|
-
How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`.
|
1191
|
+
How often to refresh the dashboard in seconds. Possible values `60`, '300' and `600`. (Default `60`).
|
894
1192
|
"""
|
895
1193
|
return pulumi.get(self, "refresh_rate")
|
896
1194
|
|
1195
|
+
@property
|
1196
|
+
@pulumi.getter(name="showCheckRunLinks")
|
1197
|
+
def show_check_run_links(self) -> pulumi.Output[Optional[bool]]:
|
1198
|
+
"""
|
1199
|
+
Show or hide check run links on the dashboard. (Default `false`).
|
1200
|
+
"""
|
1201
|
+
return pulumi.get(self, "show_check_run_links")
|
1202
|
+
|
1203
|
+
@property
|
1204
|
+
@pulumi.getter(name="showHeader")
|
1205
|
+
def show_header(self) -> pulumi.Output[Optional[bool]]:
|
1206
|
+
"""
|
1207
|
+
Show or hide header and description on the dashboard. (Default `true`).
|
1208
|
+
"""
|
1209
|
+
return pulumi.get(self, "show_header")
|
1210
|
+
|
1211
|
+
@property
|
1212
|
+
@pulumi.getter(name="showP95")
|
1213
|
+
def show_p95(self) -> pulumi.Output[Optional[bool]]:
|
1214
|
+
"""
|
1215
|
+
Show or hide the P95 stats on the dashboard. (Default `true`).
|
1216
|
+
"""
|
1217
|
+
return pulumi.get(self, "show_p95")
|
1218
|
+
|
1219
|
+
@property
|
1220
|
+
@pulumi.getter(name="showP99")
|
1221
|
+
def show_p99(self) -> pulumi.Output[Optional[bool]]:
|
1222
|
+
"""
|
1223
|
+
Show or hide the P99 stats on the dashboard. (Default `true`).
|
1224
|
+
"""
|
1225
|
+
return pulumi.get(self, "show_p99")
|
1226
|
+
|
897
1227
|
@property
|
898
1228
|
@pulumi.getter
|
899
1229
|
def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
@@ -906,7 +1236,7 @@ class Dashboard(pulumi.CustomResource):
|
|
906
1236
|
@pulumi.getter(name="useTagsAndOperator")
|
907
1237
|
def use_tags_and_operator(self) -> pulumi.Output[Optional[bool]]:
|
908
1238
|
"""
|
909
|
-
Set when to use AND operator for fetching dashboard tags.
|
1239
|
+
Set when to use AND operator for fetching dashboard tags. (Default `false`).
|
910
1240
|
"""
|
911
1241
|
return pulumi.get(self, "use_tags_and_operator")
|
912
1242
|
|
@@ -914,7 +1244,7 @@ class Dashboard(pulumi.CustomResource):
|
|
914
1244
|
@pulumi.getter
|
915
1245
|
def width(self) -> pulumi.Output[Optional[str]]:
|
916
1246
|
"""
|
917
|
-
Determines whether to use the full screen or focus in the center. Possible values `FULL` and `960PX`.
|
1247
|
+
Determines whether to use the full screen or focus in the center. Possible values are `FULL` and `960PX`. (Default `FULL`).
|
918
1248
|
"""
|
919
1249
|
return pulumi.get(self, "width")
|
920
1250
|
|