pulumi-checkly 2.1.0a1740991085__py3-none-any.whl → 2.1.0a1741101968__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 +9 -0
- pulumi_checkly/client_certificate.py +351 -0
- pulumi_checkly/pulumi-plugin.json +1 -1
- pulumi_checkly/tcp_check.py +14 -14
- {pulumi_checkly-2.1.0a1740991085.dist-info → pulumi_checkly-2.1.0a1741101968.dist-info}/METADATA +1 -1
- {pulumi_checkly-2.1.0a1740991085.dist-info → pulumi_checkly-2.1.0a1741101968.dist-info}/RECORD +8 -7
- {pulumi_checkly-2.1.0a1740991085.dist-info → pulumi_checkly-2.1.0a1741101968.dist-info}/WHEEL +0 -0
- {pulumi_checkly-2.1.0a1740991085.dist-info → pulumi_checkly-2.1.0a1741101968.dist-info}/top_level.txt +0 -0
pulumi_checkly/__init__.py
CHANGED
@@ -8,6 +8,7 @@ import typing
|
|
8
8
|
from .alert_channel import *
|
9
9
|
from .check import *
|
10
10
|
from .check_group import *
|
11
|
+
from .client_certificate import *
|
11
12
|
from .dashboard import *
|
12
13
|
from .environment_variable import *
|
13
14
|
from .get_static_ips import *
|
@@ -56,6 +57,14 @@ _utilities.register(
|
|
56
57
|
"checkly:index/checkGroup:CheckGroup": "CheckGroup"
|
57
58
|
}
|
58
59
|
},
|
60
|
+
{
|
61
|
+
"pkg": "checkly",
|
62
|
+
"mod": "index/clientCertificate",
|
63
|
+
"fqn": "pulumi_checkly",
|
64
|
+
"classes": {
|
65
|
+
"checkly:index/clientCertificate:ClientCertificate": "ClientCertificate"
|
66
|
+
}
|
67
|
+
},
|
59
68
|
{
|
60
69
|
"pkg": "checkly",
|
61
70
|
"mod": "index/dashboard",
|
@@ -0,0 +1,351 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from . import _utilities
|
16
|
+
|
17
|
+
__all__ = ['ClientCertificateArgs', 'ClientCertificate']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class ClientCertificateArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
certificate: pulumi.Input[str],
|
23
|
+
host: pulumi.Input[str],
|
24
|
+
private_key: pulumi.Input[str],
|
25
|
+
passphrase: Optional[pulumi.Input[str]] = None,
|
26
|
+
trusted_ca: Optional[pulumi.Input[str]] = None):
|
27
|
+
"""
|
28
|
+
The set of arguments for constructing a ClientCertificate resource.
|
29
|
+
:param pulumi.Input[str] certificate: The client certificate in PEM format.
|
30
|
+
:param pulumi.Input[str] host: The host domain that the certificate should be used for.
|
31
|
+
:param pulumi.Input[str] private_key: The private key for the certificate in PEM format.
|
32
|
+
:param pulumi.Input[str] passphrase: Passphrase for the private key.
|
33
|
+
:param pulumi.Input[str] trusted_ca: PEM formatted bundle of CA certificates that the client should trust. The bundle may contain many CA certificates.
|
34
|
+
"""
|
35
|
+
pulumi.set(__self__, "certificate", certificate)
|
36
|
+
pulumi.set(__self__, "host", host)
|
37
|
+
pulumi.set(__self__, "private_key", private_key)
|
38
|
+
if passphrase is not None:
|
39
|
+
pulumi.set(__self__, "passphrase", passphrase)
|
40
|
+
if trusted_ca is not None:
|
41
|
+
pulumi.set(__self__, "trusted_ca", trusted_ca)
|
42
|
+
|
43
|
+
@property
|
44
|
+
@pulumi.getter
|
45
|
+
def certificate(self) -> pulumi.Input[str]:
|
46
|
+
"""
|
47
|
+
The client certificate in PEM format.
|
48
|
+
"""
|
49
|
+
return pulumi.get(self, "certificate")
|
50
|
+
|
51
|
+
@certificate.setter
|
52
|
+
def certificate(self, value: pulumi.Input[str]):
|
53
|
+
pulumi.set(self, "certificate", value)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter
|
57
|
+
def host(self) -> pulumi.Input[str]:
|
58
|
+
"""
|
59
|
+
The host domain that the certificate should be used for.
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "host")
|
62
|
+
|
63
|
+
@host.setter
|
64
|
+
def host(self, value: pulumi.Input[str]):
|
65
|
+
pulumi.set(self, "host", value)
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="privateKey")
|
69
|
+
def private_key(self) -> pulumi.Input[str]:
|
70
|
+
"""
|
71
|
+
The private key for the certificate in PEM format.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "private_key")
|
74
|
+
|
75
|
+
@private_key.setter
|
76
|
+
def private_key(self, value: pulumi.Input[str]):
|
77
|
+
pulumi.set(self, "private_key", value)
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter
|
81
|
+
def passphrase(self) -> Optional[pulumi.Input[str]]:
|
82
|
+
"""
|
83
|
+
Passphrase for the private key.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "passphrase")
|
86
|
+
|
87
|
+
@passphrase.setter
|
88
|
+
def passphrase(self, value: Optional[pulumi.Input[str]]):
|
89
|
+
pulumi.set(self, "passphrase", value)
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter(name="trustedCa")
|
93
|
+
def trusted_ca(self) -> Optional[pulumi.Input[str]]:
|
94
|
+
"""
|
95
|
+
PEM formatted bundle of CA certificates that the client should trust. The bundle may contain many CA certificates.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "trusted_ca")
|
98
|
+
|
99
|
+
@trusted_ca.setter
|
100
|
+
def trusted_ca(self, value: Optional[pulumi.Input[str]]):
|
101
|
+
pulumi.set(self, "trusted_ca", value)
|
102
|
+
|
103
|
+
|
104
|
+
@pulumi.input_type
|
105
|
+
class _ClientCertificateState:
|
106
|
+
def __init__(__self__, *,
|
107
|
+
certificate: Optional[pulumi.Input[str]] = None,
|
108
|
+
host: Optional[pulumi.Input[str]] = None,
|
109
|
+
passphrase: Optional[pulumi.Input[str]] = None,
|
110
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
111
|
+
trusted_ca: Optional[pulumi.Input[str]] = None):
|
112
|
+
"""
|
113
|
+
Input properties used for looking up and filtering ClientCertificate resources.
|
114
|
+
:param pulumi.Input[str] certificate: The client certificate in PEM format.
|
115
|
+
:param pulumi.Input[str] host: The host domain that the certificate should be used for.
|
116
|
+
:param pulumi.Input[str] passphrase: Passphrase for the private key.
|
117
|
+
:param pulumi.Input[str] private_key: The private key for the certificate in PEM format.
|
118
|
+
:param pulumi.Input[str] trusted_ca: PEM formatted bundle of CA certificates that the client should trust. The bundle may contain many CA certificates.
|
119
|
+
"""
|
120
|
+
if certificate is not None:
|
121
|
+
pulumi.set(__self__, "certificate", certificate)
|
122
|
+
if host is not None:
|
123
|
+
pulumi.set(__self__, "host", host)
|
124
|
+
if passphrase is not None:
|
125
|
+
pulumi.set(__self__, "passphrase", passphrase)
|
126
|
+
if private_key is not None:
|
127
|
+
pulumi.set(__self__, "private_key", private_key)
|
128
|
+
if trusted_ca is not None:
|
129
|
+
pulumi.set(__self__, "trusted_ca", trusted_ca)
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter
|
133
|
+
def certificate(self) -> Optional[pulumi.Input[str]]:
|
134
|
+
"""
|
135
|
+
The client certificate in PEM format.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "certificate")
|
138
|
+
|
139
|
+
@certificate.setter
|
140
|
+
def certificate(self, value: Optional[pulumi.Input[str]]):
|
141
|
+
pulumi.set(self, "certificate", value)
|
142
|
+
|
143
|
+
@property
|
144
|
+
@pulumi.getter
|
145
|
+
def host(self) -> Optional[pulumi.Input[str]]:
|
146
|
+
"""
|
147
|
+
The host domain that the certificate should be used for.
|
148
|
+
"""
|
149
|
+
return pulumi.get(self, "host")
|
150
|
+
|
151
|
+
@host.setter
|
152
|
+
def host(self, value: Optional[pulumi.Input[str]]):
|
153
|
+
pulumi.set(self, "host", value)
|
154
|
+
|
155
|
+
@property
|
156
|
+
@pulumi.getter
|
157
|
+
def passphrase(self) -> Optional[pulumi.Input[str]]:
|
158
|
+
"""
|
159
|
+
Passphrase for the private key.
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "passphrase")
|
162
|
+
|
163
|
+
@passphrase.setter
|
164
|
+
def passphrase(self, value: Optional[pulumi.Input[str]]):
|
165
|
+
pulumi.set(self, "passphrase", value)
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="privateKey")
|
169
|
+
def private_key(self) -> Optional[pulumi.Input[str]]:
|
170
|
+
"""
|
171
|
+
The private key for the certificate in PEM format.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "private_key")
|
174
|
+
|
175
|
+
@private_key.setter
|
176
|
+
def private_key(self, value: Optional[pulumi.Input[str]]):
|
177
|
+
pulumi.set(self, "private_key", value)
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="trustedCa")
|
181
|
+
def trusted_ca(self) -> Optional[pulumi.Input[str]]:
|
182
|
+
"""
|
183
|
+
PEM formatted bundle of CA certificates that the client should trust. The bundle may contain many CA certificates.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "trusted_ca")
|
186
|
+
|
187
|
+
@trusted_ca.setter
|
188
|
+
def trusted_ca(self, value: Optional[pulumi.Input[str]]):
|
189
|
+
pulumi.set(self, "trusted_ca", value)
|
190
|
+
|
191
|
+
|
192
|
+
class ClientCertificate(pulumi.CustomResource):
|
193
|
+
@overload
|
194
|
+
def __init__(__self__,
|
195
|
+
resource_name: str,
|
196
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
197
|
+
certificate: Optional[pulumi.Input[str]] = None,
|
198
|
+
host: Optional[pulumi.Input[str]] = None,
|
199
|
+
passphrase: Optional[pulumi.Input[str]] = None,
|
200
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
201
|
+
trusted_ca: Optional[pulumi.Input[str]] = None,
|
202
|
+
__props__=None):
|
203
|
+
"""
|
204
|
+
Use client certificates to authenticate your API checks to APIs that require mutual TLS (mTLS) authentication, or any other authentication scheme where the requester needs to provide a certificate.
|
205
|
+
|
206
|
+
Each client certificate is specific to a domain name, e.g. `acme.com` and will be used automatically by any API checks targeting that domain.
|
207
|
+
|
208
|
+
Changing the value of any attribute forces a new resource to be created.
|
209
|
+
|
210
|
+
:param str resource_name: The name of the resource.
|
211
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
212
|
+
:param pulumi.Input[str] certificate: The client certificate in PEM format.
|
213
|
+
:param pulumi.Input[str] host: The host domain that the certificate should be used for.
|
214
|
+
:param pulumi.Input[str] passphrase: Passphrase for the private key.
|
215
|
+
:param pulumi.Input[str] private_key: The private key for the certificate in PEM format.
|
216
|
+
:param pulumi.Input[str] trusted_ca: PEM formatted bundle of CA certificates that the client should trust. The bundle may contain many CA certificates.
|
217
|
+
"""
|
218
|
+
...
|
219
|
+
@overload
|
220
|
+
def __init__(__self__,
|
221
|
+
resource_name: str,
|
222
|
+
args: ClientCertificateArgs,
|
223
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
224
|
+
"""
|
225
|
+
Use client certificates to authenticate your API checks to APIs that require mutual TLS (mTLS) authentication, or any other authentication scheme where the requester needs to provide a certificate.
|
226
|
+
|
227
|
+
Each client certificate is specific to a domain name, e.g. `acme.com` and will be used automatically by any API checks targeting that domain.
|
228
|
+
|
229
|
+
Changing the value of any attribute forces a new resource to be created.
|
230
|
+
|
231
|
+
:param str resource_name: The name of the resource.
|
232
|
+
:param ClientCertificateArgs args: The arguments to use to populate this resource's properties.
|
233
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
234
|
+
"""
|
235
|
+
...
|
236
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
237
|
+
resource_args, opts = _utilities.get_resource_args_opts(ClientCertificateArgs, pulumi.ResourceOptions, *args, **kwargs)
|
238
|
+
if resource_args is not None:
|
239
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
240
|
+
else:
|
241
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
242
|
+
|
243
|
+
def _internal_init(__self__,
|
244
|
+
resource_name: str,
|
245
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
246
|
+
certificate: Optional[pulumi.Input[str]] = None,
|
247
|
+
host: Optional[pulumi.Input[str]] = None,
|
248
|
+
passphrase: Optional[pulumi.Input[str]] = None,
|
249
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
250
|
+
trusted_ca: Optional[pulumi.Input[str]] = None,
|
251
|
+
__props__=None):
|
252
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
253
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
254
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
255
|
+
if opts.id is None:
|
256
|
+
if __props__ is not None:
|
257
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
258
|
+
__props__ = ClientCertificateArgs.__new__(ClientCertificateArgs)
|
259
|
+
|
260
|
+
if certificate is None and not opts.urn:
|
261
|
+
raise TypeError("Missing required property 'certificate'")
|
262
|
+
__props__.__dict__["certificate"] = certificate
|
263
|
+
if host is None and not opts.urn:
|
264
|
+
raise TypeError("Missing required property 'host'")
|
265
|
+
__props__.__dict__["host"] = host
|
266
|
+
__props__.__dict__["passphrase"] = None if passphrase is None else pulumi.Output.secret(passphrase)
|
267
|
+
if private_key is None and not opts.urn:
|
268
|
+
raise TypeError("Missing required property 'private_key'")
|
269
|
+
__props__.__dict__["private_key"] = private_key
|
270
|
+
__props__.__dict__["trusted_ca"] = trusted_ca
|
271
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["passphrase"])
|
272
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
273
|
+
super(ClientCertificate, __self__).__init__(
|
274
|
+
'checkly:index/clientCertificate:ClientCertificate',
|
275
|
+
resource_name,
|
276
|
+
__props__,
|
277
|
+
opts)
|
278
|
+
|
279
|
+
@staticmethod
|
280
|
+
def get(resource_name: str,
|
281
|
+
id: pulumi.Input[str],
|
282
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
283
|
+
certificate: Optional[pulumi.Input[str]] = None,
|
284
|
+
host: Optional[pulumi.Input[str]] = None,
|
285
|
+
passphrase: Optional[pulumi.Input[str]] = None,
|
286
|
+
private_key: Optional[pulumi.Input[str]] = None,
|
287
|
+
trusted_ca: Optional[pulumi.Input[str]] = None) -> 'ClientCertificate':
|
288
|
+
"""
|
289
|
+
Get an existing ClientCertificate resource's state with the given name, id, and optional extra
|
290
|
+
properties used to qualify the lookup.
|
291
|
+
|
292
|
+
:param str resource_name: The unique name of the resulting resource.
|
293
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
294
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
295
|
+
:param pulumi.Input[str] certificate: The client certificate in PEM format.
|
296
|
+
:param pulumi.Input[str] host: The host domain that the certificate should be used for.
|
297
|
+
:param pulumi.Input[str] passphrase: Passphrase for the private key.
|
298
|
+
:param pulumi.Input[str] private_key: The private key for the certificate in PEM format.
|
299
|
+
:param pulumi.Input[str] trusted_ca: PEM formatted bundle of CA certificates that the client should trust. The bundle may contain many CA certificates.
|
300
|
+
"""
|
301
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
302
|
+
|
303
|
+
__props__ = _ClientCertificateState.__new__(_ClientCertificateState)
|
304
|
+
|
305
|
+
__props__.__dict__["certificate"] = certificate
|
306
|
+
__props__.__dict__["host"] = host
|
307
|
+
__props__.__dict__["passphrase"] = passphrase
|
308
|
+
__props__.__dict__["private_key"] = private_key
|
309
|
+
__props__.__dict__["trusted_ca"] = trusted_ca
|
310
|
+
return ClientCertificate(resource_name, opts=opts, __props__=__props__)
|
311
|
+
|
312
|
+
@property
|
313
|
+
@pulumi.getter
|
314
|
+
def certificate(self) -> pulumi.Output[str]:
|
315
|
+
"""
|
316
|
+
The client certificate in PEM format.
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "certificate")
|
319
|
+
|
320
|
+
@property
|
321
|
+
@pulumi.getter
|
322
|
+
def host(self) -> pulumi.Output[str]:
|
323
|
+
"""
|
324
|
+
The host domain that the certificate should be used for.
|
325
|
+
"""
|
326
|
+
return pulumi.get(self, "host")
|
327
|
+
|
328
|
+
@property
|
329
|
+
@pulumi.getter
|
330
|
+
def passphrase(self) -> pulumi.Output[Optional[str]]:
|
331
|
+
"""
|
332
|
+
Passphrase for the private key.
|
333
|
+
"""
|
334
|
+
return pulumi.get(self, "passphrase")
|
335
|
+
|
336
|
+
@property
|
337
|
+
@pulumi.getter(name="privateKey")
|
338
|
+
def private_key(self) -> pulumi.Output[str]:
|
339
|
+
"""
|
340
|
+
The private key for the certificate in PEM format.
|
341
|
+
"""
|
342
|
+
return pulumi.get(self, "private_key")
|
343
|
+
|
344
|
+
@property
|
345
|
+
@pulumi.getter(name="trustedCa")
|
346
|
+
def trusted_ca(self) -> pulumi.Output[Optional[str]]:
|
347
|
+
"""
|
348
|
+
PEM formatted bundle of CA certificates that the client should trust. The bundle may contain many CA certificates.
|
349
|
+
"""
|
350
|
+
return pulumi.get(self, "trusted_ca")
|
351
|
+
|
pulumi_checkly/tcp_check.py
CHANGED
@@ -47,12 +47,12 @@ class TcpCheckArgs:
|
|
47
47
|
:param pulumi.Input[int] frequency: The frequency in minutes to run the check. Possible values are `0`, `1`, `2`, `5`, `10`, `15`, `30`, `60`, `120`, `180`, `360`, `720`, and `1440`.
|
48
48
|
:param pulumi.Input['TcpCheckRequestArgs'] request: The parameters for the TCP connection.
|
49
49
|
:param pulumi.Input[Sequence[pulumi.Input['TcpCheckAlertChannelSubscriptionArgs']]] alert_channel_subscriptions: An array of channel IDs and whether they're activated or not. If you don't set at least one alert subscription for your check, we won't be able to alert you in case something goes wrong with it.
|
50
|
-
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and
|
50
|
+
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and 5000. (Default `4000`).
|
51
51
|
:param pulumi.Input[int] frequency_offset: To create a high frequency check, the property `frequency` must be `0` and `frequency_offset` can be `10`, `20` or `30`.
|
52
52
|
:param pulumi.Input[int] group_id: The id of the check group this check is part of.
|
53
53
|
:param pulumi.Input[int] group_order: The position of this check in a check group. It determines in what order checks are run when a group is triggered from the API or from CI/CD.
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations: An array of one or more data center locations where to run the this check. (Default ["us-east-1"])
|
55
|
-
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and
|
55
|
+
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and 5000. (Default `5000`).
|
56
56
|
:param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
|
57
57
|
:param pulumi.Input[str] name: The name of the check.
|
58
58
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] private_locations: An array of one or more private locations slugs.
|
@@ -162,7 +162,7 @@ class TcpCheckArgs:
|
|
162
162
|
@pulumi.getter(name="degradedResponseTime")
|
163
163
|
def degraded_response_time(self) -> Optional[pulumi.Input[int]]:
|
164
164
|
"""
|
165
|
-
The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and
|
165
|
+
The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and 5000. (Default `4000`).
|
166
166
|
"""
|
167
167
|
return pulumi.get(self, "degraded_response_time")
|
168
168
|
|
@@ -222,7 +222,7 @@ class TcpCheckArgs:
|
|
222
222
|
@pulumi.getter(name="maxResponseTime")
|
223
223
|
def max_response_time(self) -> Optional[pulumi.Input[int]]:
|
224
224
|
"""
|
225
|
-
The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and
|
225
|
+
The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and 5000. (Default `5000`).
|
226
226
|
"""
|
227
227
|
return pulumi.get(self, "max_response_time")
|
228
228
|
|
@@ -366,13 +366,13 @@ class _TcpCheckState:
|
|
366
366
|
Input properties used for looking up and filtering TcpCheck resources.
|
367
367
|
:param pulumi.Input[bool] activated: Determines if the check is running or not. Possible values `true`, and `false`.
|
368
368
|
:param pulumi.Input[Sequence[pulumi.Input['TcpCheckAlertChannelSubscriptionArgs']]] alert_channel_subscriptions: An array of channel IDs and whether they're activated or not. If you don't set at least one alert subscription for your check, we won't be able to alert you in case something goes wrong with it.
|
369
|
-
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and
|
369
|
+
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and 5000. (Default `4000`).
|
370
370
|
:param pulumi.Input[int] frequency: The frequency in minutes to run the check. Possible values are `0`, `1`, `2`, `5`, `10`, `15`, `30`, `60`, `120`, `180`, `360`, `720`, and `1440`.
|
371
371
|
:param pulumi.Input[int] frequency_offset: To create a high frequency check, the property `frequency` must be `0` and `frequency_offset` can be `10`, `20` or `30`.
|
372
372
|
:param pulumi.Input[int] group_id: The id of the check group this check is part of.
|
373
373
|
:param pulumi.Input[int] group_order: The position of this check in a check group. It determines in what order checks are run when a group is triggered from the API or from CI/CD.
|
374
374
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations: An array of one or more data center locations where to run the this check. (Default ["us-east-1"])
|
375
|
-
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and
|
375
|
+
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and 5000. (Default `5000`).
|
376
376
|
:param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
|
377
377
|
:param pulumi.Input[str] name: The name of the check.
|
378
378
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] private_locations: An array of one or more private locations slugs.
|
@@ -462,7 +462,7 @@ class _TcpCheckState:
|
|
462
462
|
@pulumi.getter(name="degradedResponseTime")
|
463
463
|
def degraded_response_time(self) -> Optional[pulumi.Input[int]]:
|
464
464
|
"""
|
465
|
-
The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and
|
465
|
+
The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and 5000. (Default `4000`).
|
466
466
|
"""
|
467
467
|
return pulumi.get(self, "degraded_response_time")
|
468
468
|
|
@@ -534,7 +534,7 @@ class _TcpCheckState:
|
|
534
534
|
@pulumi.getter(name="maxResponseTime")
|
535
535
|
def max_response_time(self) -> Optional[pulumi.Input[int]]:
|
536
536
|
"""
|
537
|
-
The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and
|
537
|
+
The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and 5000. (Default `5000`).
|
538
538
|
"""
|
539
539
|
return pulumi.get(self, "max_response_time")
|
540
540
|
|
@@ -764,13 +764,13 @@ class TcpCheck(pulumi.CustomResource):
|
|
764
764
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
765
765
|
:param pulumi.Input[bool] activated: Determines if the check is running or not. Possible values `true`, and `false`.
|
766
766
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TcpCheckAlertChannelSubscriptionArgs', 'TcpCheckAlertChannelSubscriptionArgsDict']]]] alert_channel_subscriptions: An array of channel IDs and whether they're activated or not. If you don't set at least one alert subscription for your check, we won't be able to alert you in case something goes wrong with it.
|
767
|
-
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and
|
767
|
+
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and 5000. (Default `4000`).
|
768
768
|
:param pulumi.Input[int] frequency: The frequency in minutes to run the check. Possible values are `0`, `1`, `2`, `5`, `10`, `15`, `30`, `60`, `120`, `180`, `360`, `720`, and `1440`.
|
769
769
|
:param pulumi.Input[int] frequency_offset: To create a high frequency check, the property `frequency` must be `0` and `frequency_offset` can be `10`, `20` or `30`.
|
770
770
|
:param pulumi.Input[int] group_id: The id of the check group this check is part of.
|
771
771
|
:param pulumi.Input[int] group_order: The position of this check in a check group. It determines in what order checks are run when a group is triggered from the API or from CI/CD.
|
772
772
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations: An array of one or more data center locations where to run the this check. (Default ["us-east-1"])
|
773
|
-
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and
|
773
|
+
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and 5000. (Default `5000`).
|
774
774
|
:param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
|
775
775
|
:param pulumi.Input[str] name: The name of the check.
|
776
776
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] private_locations: An array of one or more private locations slugs.
|
@@ -968,13 +968,13 @@ class TcpCheck(pulumi.CustomResource):
|
|
968
968
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
969
969
|
:param pulumi.Input[bool] activated: Determines if the check is running or not. Possible values `true`, and `false`.
|
970
970
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TcpCheckAlertChannelSubscriptionArgs', 'TcpCheckAlertChannelSubscriptionArgsDict']]]] alert_channel_subscriptions: An array of channel IDs and whether they're activated or not. If you don't set at least one alert subscription for your check, we won't be able to alert you in case something goes wrong with it.
|
971
|
-
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and
|
971
|
+
:param pulumi.Input[int] degraded_response_time: The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and 5000. (Default `4000`).
|
972
972
|
:param pulumi.Input[int] frequency: The frequency in minutes to run the check. Possible values are `0`, `1`, `2`, `5`, `10`, `15`, `30`, `60`, `120`, `180`, `360`, `720`, and `1440`.
|
973
973
|
:param pulumi.Input[int] frequency_offset: To create a high frequency check, the property `frequency` must be `0` and `frequency_offset` can be `10`, `20` or `30`.
|
974
974
|
:param pulumi.Input[int] group_id: The id of the check group this check is part of.
|
975
975
|
:param pulumi.Input[int] group_order: The position of this check in a check group. It determines in what order checks are run when a group is triggered from the API or from CI/CD.
|
976
976
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations: An array of one or more data center locations where to run the this check. (Default ["us-east-1"])
|
977
|
-
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and
|
977
|
+
:param pulumi.Input[int] max_response_time: The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and 5000. (Default `5000`).
|
978
978
|
:param pulumi.Input[bool] muted: Determines if any notifications will be sent out when a check fails/degrades/recovers.
|
979
979
|
:param pulumi.Input[str] name: The name of the check.
|
980
980
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] private_locations: An array of one or more private locations slugs.
|
@@ -1037,7 +1037,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
1037
1037
|
@pulumi.getter(name="degradedResponseTime")
|
1038
1038
|
def degraded_response_time(self) -> pulumi.Output[Optional[int]]:
|
1039
1039
|
"""
|
1040
|
-
The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and
|
1040
|
+
The response time in milliseconds starting from which a check should be considered degraded. Possible values are between 0 and 5000. (Default `4000`).
|
1041
1041
|
"""
|
1042
1042
|
return pulumi.get(self, "degraded_response_time")
|
1043
1043
|
|
@@ -1085,7 +1085,7 @@ class TcpCheck(pulumi.CustomResource):
|
|
1085
1085
|
@pulumi.getter(name="maxResponseTime")
|
1086
1086
|
def max_response_time(self) -> pulumi.Output[Optional[int]]:
|
1087
1087
|
"""
|
1088
|
-
The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and
|
1088
|
+
The response time in milliseconds starting from which a check should be considered failing. Possible values are between 0 and 5000. (Default `5000`).
|
1089
1089
|
"""
|
1090
1090
|
return pulumi.get(self, "max_response_time")
|
1091
1091
|
|
{pulumi_checkly-2.1.0a1740991085.dist-info → pulumi_checkly-2.1.0a1741101968.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: pulumi_checkly
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.0a1741101968
|
4
4
|
Summary: A Pulumi package for creating and managing Checkly monitoring resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com/registry/packages/checkly
|
{pulumi_checkly-2.1.0a1740991085.dist-info → pulumi_checkly-2.1.0a1741101968.dist-info}/RECORD
RENAMED
@@ -1,9 +1,10 @@
|
|
1
|
-
pulumi_checkly/__init__.py,sha256=
|
1
|
+
pulumi_checkly/__init__.py,sha256=0QB82FPdcTXyKMkuu6E6mhOV2o8YI_xbxDCl0AW-4Dg,3312
|
2
2
|
pulumi_checkly/_inputs.py,sha256=Xf2QZYg2oQTqtvFvZklnoDw1Te7lkXKn2Auz1jzil-E,128369
|
3
3
|
pulumi_checkly/_utilities.py,sha256=GxpBUMlXYTk7YrVGFAGjHfL-BVibLeIvwRfmSiVbIpY,10533
|
4
4
|
pulumi_checkly/alert_channel.py,sha256=3zoTr0x0k8RaVJ-bl0bi_rPwsTUTFNuYXpBrj80ESSo,29910
|
5
5
|
pulumi_checkly/check.py,sha256=1RKemc45tO13RcwKDTiNHPCV_cAWgnIIHvFVmGbG1C0,87656
|
6
6
|
pulumi_checkly/check_group.py,sha256=7t5xUdFXL1A4BVhYG_Q4TcnxL9gmt_5Ab-EerdUmvdE,59577
|
7
|
+
pulumi_checkly/client_certificate.py,sha256=bgdZTAo1ZYaeGQZ4d36W741Zi3qU13zS4HjFsvjq6w8,14986
|
7
8
|
pulumi_checkly/dashboard.py,sha256=aZ8woX74siC8tMwqrsuzgwMfd3GWCzoe_7L5y3-2dA8,38827
|
8
9
|
pulumi_checkly/environment_variable.py,sha256=bvFEMIHoNlAIN4fHLbOCoLtv_zId34VUgRO1bmo-mTU,9560
|
9
10
|
pulumi_checkly/get_static_ips.py,sha256=dyNQ2dCQaDClMJOIG_d-IMoj2_aPLx3-v4urKFVnbWo,5026
|
@@ -12,16 +13,16 @@ pulumi_checkly/maintenance_window.py,sha256=LWrPK7ZBtj8paG8K5aS7hZCxVUgZX9MOVOO2
|
|
12
13
|
pulumi_checkly/outputs.py,sha256=9-U4YpWu7HhtE9_nGtEP74CxGplzDB3xX0hOH9tQMao,91797
|
13
14
|
pulumi_checkly/private_location.py,sha256=RqBW5lQbvmKlL3gQL0DqR_nYkhhZ9nE1ADf8q0dWQ6w,10528
|
14
15
|
pulumi_checkly/provider.py,sha256=t8RlYsceAV-_DMVTbtdyr6SQyQ462L_8ni1mNXhZvGw,5875
|
15
|
-
pulumi_checkly/pulumi-plugin.json,sha256=
|
16
|
+
pulumi_checkly/pulumi-plugin.json,sha256=Ijgs7KrAUlugV37RSHcKqOxHijvNPD-AvIwzTYSXorU,130
|
16
17
|
pulumi_checkly/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
18
|
pulumi_checkly/snippet.py,sha256=xQCa0HQeoGljCRg2hs8yfuWI-TcDOE6cRv0_hszQVLw,8431
|
18
|
-
pulumi_checkly/tcp_check.py,sha256=
|
19
|
+
pulumi_checkly/tcp_check.py,sha256=ENvTMngSA68LSRMD429nNGJJMO5kJQ8uq-VwGmLHyUA,57575
|
19
20
|
pulumi_checkly/trigger_check.py,sha256=cnozFnPJS30arFqCEmI4m6UeOy5bCW3QfLJFC8f3swg,9787
|
20
21
|
pulumi_checkly/trigger_check_group.py,sha256=wJkACfvIh-xzcPNekcil0WgQtA8DpQGyjevTOh7zPg0,9827
|
21
22
|
pulumi_checkly/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
22
23
|
pulumi_checkly/config/__init__.pyi,sha256=Fpk-O56lUiCTFequ30t3iJiEmChj_bG4iJMrQ-x0wp0,591
|
23
24
|
pulumi_checkly/config/vars.py,sha256=lv8NkDSQLIvNDzktM9EO-XFf39KPqFhim4nvCHQd8wE,907
|
24
|
-
pulumi_checkly-2.1.
|
25
|
-
pulumi_checkly-2.1.
|
26
|
-
pulumi_checkly-2.1.
|
27
|
-
pulumi_checkly-2.1.
|
25
|
+
pulumi_checkly-2.1.0a1741101968.dist-info/METADATA,sha256=AD4oFU92JPFEcL0Vim1o4cpCltOtDR0ovZIxaaO_NzQ,2887
|
26
|
+
pulumi_checkly-2.1.0a1741101968.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
27
|
+
pulumi_checkly-2.1.0a1741101968.dist-info/top_level.txt,sha256=qWgkLdBIceubF5gJGeOwoEFK1XXVtmkd6AKHMl9Qnk4,15
|
28
|
+
pulumi_checkly-2.1.0a1741101968.dist-info/RECORD,,
|
{pulumi_checkly-2.1.0a1740991085.dist-info → pulumi_checkly-2.1.0a1741101968.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|