pulumi-checkly 2.5.0a1758735363__py3-none-any.whl → 2.5.0a1759322016__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 +2 -1
- pulumi_checkly/_inputs.py +1635 -1365
- pulumi_checkly/_utilities.py +9 -5
- pulumi_checkly/alert_channel.py +109 -108
- pulumi_checkly/check.py +473 -472
- pulumi_checkly/check_group.py +300 -299
- pulumi_checkly/client_certificate.py +88 -87
- pulumi_checkly/config/__init__.py +2 -1
- pulumi_checkly/config/__init__.pyi +2 -2
- pulumi_checkly/config/vars.py +5 -5
- pulumi_checkly/dashboard.py +403 -402
- pulumi_checkly/environment_variable.py +55 -54
- pulumi_checkly/get_static_ips.py +18 -18
- pulumi_checkly/heartbeat_check.py +100 -99
- pulumi_checkly/heartbeat_monitor.py +100 -99
- pulumi_checkly/maintenance_window.py +122 -121
- pulumi_checkly/outputs.py +1152 -897
- pulumi_checkly/private_location.py +63 -62
- pulumi_checkly/provider.py +56 -36
- pulumi_checkly/pulumi-plugin.json +1 -1
- pulumi_checkly/snippet.py +37 -36
- pulumi_checkly/status_page.py +125 -124
- pulumi_checkly/status_page_service.py +20 -19
- pulumi_checkly/tcp_check.py +297 -296
- pulumi_checkly/tcp_monitor.py +297 -296
- pulumi_checkly/trigger_check.py +54 -53
- pulumi_checkly/trigger_check_group.py +54 -53
- pulumi_checkly/url_monitor.py +280 -279
- {pulumi_checkly-2.5.0a1758735363.dist-info → pulumi_checkly-2.5.0a1759322016.dist-info}/METADATA +2 -2
- pulumi_checkly-2.5.0a1759322016.dist-info/RECORD +33 -0
- pulumi_checkly-2.5.0a1758735363.dist-info/RECORD +0 -33
- {pulumi_checkly-2.5.0a1758735363.dist-info → pulumi_checkly-2.5.0a1759322016.dist-info}/WHEEL +0 -0
- {pulumi_checkly-2.5.0a1758735363.dist-info → pulumi_checkly-2.5.0a1759322016.dist-info}/top_level.txt +0 -0
pulumi_checkly/trigger_check.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import
|
5
|
+
import builtins as _builtins
|
6
6
|
import warnings
|
7
7
|
import sys
|
8
8
|
import pulumi
|
@@ -19,14 +19,14 @@ __all__ = ['TriggerCheckArgs', 'TriggerCheck']
|
|
19
19
|
@pulumi.input_type
|
20
20
|
class TriggerCheckArgs:
|
21
21
|
def __init__(__self__, *,
|
22
|
-
check_id: pulumi.Input[str],
|
23
|
-
token: Optional[pulumi.Input[str]] = None,
|
24
|
-
url: Optional[pulumi.Input[str]] = None):
|
22
|
+
check_id: pulumi.Input[_builtins.str],
|
23
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
24
|
+
url: Optional[pulumi.Input[_builtins.str]] = None):
|
25
25
|
"""
|
26
26
|
The set of arguments for constructing a TriggerCheck resource.
|
27
|
-
:param pulumi.Input[str] check_id: The id of the check that you want to attach the trigger to.
|
28
|
-
:param pulumi.Input[str] token: The token value created to trigger the check
|
29
|
-
:param pulumi.Input[str] url: The request URL to trigger the check run.
|
27
|
+
:param pulumi.Input[_builtins.str] check_id: The id of the check that you want to attach the trigger to.
|
28
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the check
|
29
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the check run.
|
30
30
|
"""
|
31
31
|
pulumi.set(__self__, "check_id", check_id)
|
32
32
|
if token is not None:
|
@@ -34,54 +34,54 @@ class TriggerCheckArgs:
|
|
34
34
|
if url is not None:
|
35
35
|
pulumi.set(__self__, "url", url)
|
36
36
|
|
37
|
-
@property
|
37
|
+
@_builtins.property
|
38
38
|
@pulumi.getter(name="checkId")
|
39
|
-
def check_id(self) -> pulumi.Input[str]:
|
39
|
+
def check_id(self) -> pulumi.Input[_builtins.str]:
|
40
40
|
"""
|
41
41
|
The id of the check that you want to attach the trigger to.
|
42
42
|
"""
|
43
43
|
return pulumi.get(self, "check_id")
|
44
44
|
|
45
45
|
@check_id.setter
|
46
|
-
def check_id(self, value: pulumi.Input[str]):
|
46
|
+
def check_id(self, value: pulumi.Input[_builtins.str]):
|
47
47
|
pulumi.set(self, "check_id", value)
|
48
48
|
|
49
|
-
@property
|
49
|
+
@_builtins.property
|
50
50
|
@pulumi.getter
|
51
|
-
def token(self) -> Optional[pulumi.Input[str]]:
|
51
|
+
def token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
52
52
|
"""
|
53
53
|
The token value created to trigger the check
|
54
54
|
"""
|
55
55
|
return pulumi.get(self, "token")
|
56
56
|
|
57
57
|
@token.setter
|
58
|
-
def token(self, value: Optional[pulumi.Input[str]]):
|
58
|
+
def token(self, value: Optional[pulumi.Input[_builtins.str]]):
|
59
59
|
pulumi.set(self, "token", value)
|
60
60
|
|
61
|
-
@property
|
61
|
+
@_builtins.property
|
62
62
|
@pulumi.getter
|
63
|
-
def url(self) -> Optional[pulumi.Input[str]]:
|
63
|
+
def url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
64
64
|
"""
|
65
65
|
The request URL to trigger the check run.
|
66
66
|
"""
|
67
67
|
return pulumi.get(self, "url")
|
68
68
|
|
69
69
|
@url.setter
|
70
|
-
def url(self, value: Optional[pulumi.Input[str]]):
|
70
|
+
def url(self, value: Optional[pulumi.Input[_builtins.str]]):
|
71
71
|
pulumi.set(self, "url", value)
|
72
72
|
|
73
73
|
|
74
74
|
@pulumi.input_type
|
75
75
|
class _TriggerCheckState:
|
76
76
|
def __init__(__self__, *,
|
77
|
-
check_id: Optional[pulumi.Input[str]] = None,
|
78
|
-
token: Optional[pulumi.Input[str]] = None,
|
79
|
-
url: Optional[pulumi.Input[str]] = None):
|
77
|
+
check_id: Optional[pulumi.Input[_builtins.str]] = None,
|
78
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
79
|
+
url: Optional[pulumi.Input[_builtins.str]] = None):
|
80
80
|
"""
|
81
81
|
Input properties used for looking up and filtering TriggerCheck resources.
|
82
|
-
:param pulumi.Input[str] check_id: The id of the check that you want to attach the trigger to.
|
83
|
-
:param pulumi.Input[str] token: The token value created to trigger the check
|
84
|
-
:param pulumi.Input[str] url: The request URL to trigger the check run.
|
82
|
+
:param pulumi.Input[_builtins.str] check_id: The id of the check that you want to attach the trigger to.
|
83
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the check
|
84
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the check run.
|
85
85
|
"""
|
86
86
|
if check_id is not None:
|
87
87
|
pulumi.set(__self__, "check_id", check_id)
|
@@ -90,51 +90,52 @@ class _TriggerCheckState:
|
|
90
90
|
if url is not None:
|
91
91
|
pulumi.set(__self__, "url", url)
|
92
92
|
|
93
|
-
@property
|
93
|
+
@_builtins.property
|
94
94
|
@pulumi.getter(name="checkId")
|
95
|
-
def check_id(self) -> Optional[pulumi.Input[str]]:
|
95
|
+
def check_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
96
96
|
"""
|
97
97
|
The id of the check that you want to attach the trigger to.
|
98
98
|
"""
|
99
99
|
return pulumi.get(self, "check_id")
|
100
100
|
|
101
101
|
@check_id.setter
|
102
|
-
def check_id(self, value: Optional[pulumi.Input[str]]):
|
102
|
+
def check_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
103
103
|
pulumi.set(self, "check_id", value)
|
104
104
|
|
105
|
-
@property
|
105
|
+
@_builtins.property
|
106
106
|
@pulumi.getter
|
107
|
-
def token(self) -> Optional[pulumi.Input[str]]:
|
107
|
+
def token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
108
108
|
"""
|
109
109
|
The token value created to trigger the check
|
110
110
|
"""
|
111
111
|
return pulumi.get(self, "token")
|
112
112
|
|
113
113
|
@token.setter
|
114
|
-
def token(self, value: Optional[pulumi.Input[str]]):
|
114
|
+
def token(self, value: Optional[pulumi.Input[_builtins.str]]):
|
115
115
|
pulumi.set(self, "token", value)
|
116
116
|
|
117
|
-
@property
|
117
|
+
@_builtins.property
|
118
118
|
@pulumi.getter
|
119
|
-
def url(self) -> Optional[pulumi.Input[str]]:
|
119
|
+
def url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
120
120
|
"""
|
121
121
|
The request URL to trigger the check run.
|
122
122
|
"""
|
123
123
|
return pulumi.get(self, "url")
|
124
124
|
|
125
125
|
@url.setter
|
126
|
-
def url(self, value: Optional[pulumi.Input[str]]):
|
126
|
+
def url(self, value: Optional[pulumi.Input[_builtins.str]]):
|
127
127
|
pulumi.set(self, "url", value)
|
128
128
|
|
129
129
|
|
130
|
+
@pulumi.type_token("checkly:index/triggerCheck:TriggerCheck")
|
130
131
|
class TriggerCheck(pulumi.CustomResource):
|
131
132
|
@overload
|
132
133
|
def __init__(__self__,
|
133
134
|
resource_name: str,
|
134
135
|
opts: Optional[pulumi.ResourceOptions] = None,
|
135
|
-
check_id: Optional[pulumi.Input[str]] = None,
|
136
|
-
token: Optional[pulumi.Input[str]] = None,
|
137
|
-
url: Optional[pulumi.Input[str]] = None,
|
136
|
+
check_id: Optional[pulumi.Input[_builtins.str]] = None,
|
137
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
138
|
+
url: Optional[pulumi.Input[_builtins.str]] = None,
|
138
139
|
__props__=None):
|
139
140
|
"""
|
140
141
|
## Example Usage
|
@@ -149,9 +150,9 @@ class TriggerCheck(pulumi.CustomResource):
|
|
149
150
|
|
150
151
|
:param str resource_name: The name of the resource.
|
151
152
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
152
|
-
:param pulumi.Input[str] check_id: The id of the check that you want to attach the trigger to.
|
153
|
-
:param pulumi.Input[str] token: The token value created to trigger the check
|
154
|
-
:param pulumi.Input[str] url: The request URL to trigger the check run.
|
153
|
+
:param pulumi.Input[_builtins.str] check_id: The id of the check that you want to attach the trigger to.
|
154
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the check
|
155
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the check run.
|
155
156
|
"""
|
156
157
|
...
|
157
158
|
@overload
|
@@ -185,9 +186,9 @@ class TriggerCheck(pulumi.CustomResource):
|
|
185
186
|
def _internal_init(__self__,
|
186
187
|
resource_name: str,
|
187
188
|
opts: Optional[pulumi.ResourceOptions] = None,
|
188
|
-
check_id: Optional[pulumi.Input[str]] = None,
|
189
|
-
token: Optional[pulumi.Input[str]] = None,
|
190
|
-
url: Optional[pulumi.Input[str]] = None,
|
189
|
+
check_id: Optional[pulumi.Input[_builtins.str]] = None,
|
190
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
191
|
+
url: Optional[pulumi.Input[_builtins.str]] = None,
|
191
192
|
__props__=None):
|
192
193
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
193
194
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -212,9 +213,9 @@ class TriggerCheck(pulumi.CustomResource):
|
|
212
213
|
def get(resource_name: str,
|
213
214
|
id: pulumi.Input[str],
|
214
215
|
opts: Optional[pulumi.ResourceOptions] = None,
|
215
|
-
check_id: Optional[pulumi.Input[str]] = None,
|
216
|
-
token: Optional[pulumi.Input[str]] = None,
|
217
|
-
url: Optional[pulumi.Input[str]] = None) -> 'TriggerCheck':
|
216
|
+
check_id: Optional[pulumi.Input[_builtins.str]] = None,
|
217
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
218
|
+
url: Optional[pulumi.Input[_builtins.str]] = None) -> 'TriggerCheck':
|
218
219
|
"""
|
219
220
|
Get an existing TriggerCheck resource's state with the given name, id, and optional extra
|
220
221
|
properties used to qualify the lookup.
|
@@ -222,9 +223,9 @@ class TriggerCheck(pulumi.CustomResource):
|
|
222
223
|
:param str resource_name: The unique name of the resulting resource.
|
223
224
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
224
225
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
225
|
-
:param pulumi.Input[str] check_id: The id of the check that you want to attach the trigger to.
|
226
|
-
:param pulumi.Input[str] token: The token value created to trigger the check
|
227
|
-
:param pulumi.Input[str] url: The request URL to trigger the check run.
|
226
|
+
:param pulumi.Input[_builtins.str] check_id: The id of the check that you want to attach the trigger to.
|
227
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the check
|
228
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the check run.
|
228
229
|
"""
|
229
230
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
230
231
|
|
@@ -235,25 +236,25 @@ class TriggerCheck(pulumi.CustomResource):
|
|
235
236
|
__props__.__dict__["url"] = url
|
236
237
|
return TriggerCheck(resource_name, opts=opts, __props__=__props__)
|
237
238
|
|
238
|
-
@property
|
239
|
+
@_builtins.property
|
239
240
|
@pulumi.getter(name="checkId")
|
240
|
-
def check_id(self) -> pulumi.Output[str]:
|
241
|
+
def check_id(self) -> pulumi.Output[_builtins.str]:
|
241
242
|
"""
|
242
243
|
The id of the check that you want to attach the trigger to.
|
243
244
|
"""
|
244
245
|
return pulumi.get(self, "check_id")
|
245
246
|
|
246
|
-
@property
|
247
|
+
@_builtins.property
|
247
248
|
@pulumi.getter
|
248
|
-
def token(self) -> pulumi.Output[str]:
|
249
|
+
def token(self) -> pulumi.Output[_builtins.str]:
|
249
250
|
"""
|
250
251
|
The token value created to trigger the check
|
251
252
|
"""
|
252
253
|
return pulumi.get(self, "token")
|
253
254
|
|
254
|
-
@property
|
255
|
+
@_builtins.property
|
255
256
|
@pulumi.getter
|
256
|
-
def url(self) -> pulumi.Output[str]:
|
257
|
+
def url(self) -> pulumi.Output[_builtins.str]:
|
257
258
|
"""
|
258
259
|
The request URL to trigger the check run.
|
259
260
|
"""
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import
|
5
|
+
import builtins as _builtins
|
6
6
|
import warnings
|
7
7
|
import sys
|
8
8
|
import pulumi
|
@@ -19,14 +19,14 @@ __all__ = ['TriggerCheckGroupArgs', 'TriggerCheckGroup']
|
|
19
19
|
@pulumi.input_type
|
20
20
|
class TriggerCheckGroupArgs:
|
21
21
|
def __init__(__self__, *,
|
22
|
-
group_id: pulumi.Input[int],
|
23
|
-
token: Optional[pulumi.Input[str]] = None,
|
24
|
-
url: Optional[pulumi.Input[str]] = None):
|
22
|
+
group_id: pulumi.Input[_builtins.int],
|
23
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
24
|
+
url: Optional[pulumi.Input[_builtins.str]] = None):
|
25
25
|
"""
|
26
26
|
The set of arguments for constructing a TriggerCheckGroup resource.
|
27
|
-
:param pulumi.Input[int] group_id: The id of the group that you want to attach the trigger to.
|
28
|
-
:param pulumi.Input[str] token: The token value created to trigger the group
|
29
|
-
:param pulumi.Input[str] url: The request URL to trigger the group run.
|
27
|
+
:param pulumi.Input[_builtins.int] group_id: The id of the group that you want to attach the trigger to.
|
28
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the group
|
29
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the group run.
|
30
30
|
"""
|
31
31
|
pulumi.set(__self__, "group_id", group_id)
|
32
32
|
if token is not None:
|
@@ -34,54 +34,54 @@ class TriggerCheckGroupArgs:
|
|
34
34
|
if url is not None:
|
35
35
|
pulumi.set(__self__, "url", url)
|
36
36
|
|
37
|
-
@property
|
37
|
+
@_builtins.property
|
38
38
|
@pulumi.getter(name="groupId")
|
39
|
-
def group_id(self) -> pulumi.Input[int]:
|
39
|
+
def group_id(self) -> pulumi.Input[_builtins.int]:
|
40
40
|
"""
|
41
41
|
The id of the group that you want to attach the trigger to.
|
42
42
|
"""
|
43
43
|
return pulumi.get(self, "group_id")
|
44
44
|
|
45
45
|
@group_id.setter
|
46
|
-
def group_id(self, value: pulumi.Input[int]):
|
46
|
+
def group_id(self, value: pulumi.Input[_builtins.int]):
|
47
47
|
pulumi.set(self, "group_id", value)
|
48
48
|
|
49
|
-
@property
|
49
|
+
@_builtins.property
|
50
50
|
@pulumi.getter
|
51
|
-
def token(self) -> Optional[pulumi.Input[str]]:
|
51
|
+
def token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
52
52
|
"""
|
53
53
|
The token value created to trigger the group
|
54
54
|
"""
|
55
55
|
return pulumi.get(self, "token")
|
56
56
|
|
57
57
|
@token.setter
|
58
|
-
def token(self, value: Optional[pulumi.Input[str]]):
|
58
|
+
def token(self, value: Optional[pulumi.Input[_builtins.str]]):
|
59
59
|
pulumi.set(self, "token", value)
|
60
60
|
|
61
|
-
@property
|
61
|
+
@_builtins.property
|
62
62
|
@pulumi.getter
|
63
|
-
def url(self) -> Optional[pulumi.Input[str]]:
|
63
|
+
def url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
64
64
|
"""
|
65
65
|
The request URL to trigger the group run.
|
66
66
|
"""
|
67
67
|
return pulumi.get(self, "url")
|
68
68
|
|
69
69
|
@url.setter
|
70
|
-
def url(self, value: Optional[pulumi.Input[str]]):
|
70
|
+
def url(self, value: Optional[pulumi.Input[_builtins.str]]):
|
71
71
|
pulumi.set(self, "url", value)
|
72
72
|
|
73
73
|
|
74
74
|
@pulumi.input_type
|
75
75
|
class _TriggerCheckGroupState:
|
76
76
|
def __init__(__self__, *,
|
77
|
-
group_id: Optional[pulumi.Input[int]] = None,
|
78
|
-
token: Optional[pulumi.Input[str]] = None,
|
79
|
-
url: Optional[pulumi.Input[str]] = None):
|
77
|
+
group_id: Optional[pulumi.Input[_builtins.int]] = None,
|
78
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
79
|
+
url: Optional[pulumi.Input[_builtins.str]] = None):
|
80
80
|
"""
|
81
81
|
Input properties used for looking up and filtering TriggerCheckGroup resources.
|
82
|
-
:param pulumi.Input[int] group_id: The id of the group that you want to attach the trigger to.
|
83
|
-
:param pulumi.Input[str] token: The token value created to trigger the group
|
84
|
-
:param pulumi.Input[str] url: The request URL to trigger the group run.
|
82
|
+
:param pulumi.Input[_builtins.int] group_id: The id of the group that you want to attach the trigger to.
|
83
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the group
|
84
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the group run.
|
85
85
|
"""
|
86
86
|
if group_id is not None:
|
87
87
|
pulumi.set(__self__, "group_id", group_id)
|
@@ -90,51 +90,52 @@ class _TriggerCheckGroupState:
|
|
90
90
|
if url is not None:
|
91
91
|
pulumi.set(__self__, "url", url)
|
92
92
|
|
93
|
-
@property
|
93
|
+
@_builtins.property
|
94
94
|
@pulumi.getter(name="groupId")
|
95
|
-
def group_id(self) -> Optional[pulumi.Input[int]]:
|
95
|
+
def group_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
96
96
|
"""
|
97
97
|
The id of the group that you want to attach the trigger to.
|
98
98
|
"""
|
99
99
|
return pulumi.get(self, "group_id")
|
100
100
|
|
101
101
|
@group_id.setter
|
102
|
-
def group_id(self, value: Optional[pulumi.Input[int]]):
|
102
|
+
def group_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
103
103
|
pulumi.set(self, "group_id", value)
|
104
104
|
|
105
|
-
@property
|
105
|
+
@_builtins.property
|
106
106
|
@pulumi.getter
|
107
|
-
def token(self) -> Optional[pulumi.Input[str]]:
|
107
|
+
def token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
108
108
|
"""
|
109
109
|
The token value created to trigger the group
|
110
110
|
"""
|
111
111
|
return pulumi.get(self, "token")
|
112
112
|
|
113
113
|
@token.setter
|
114
|
-
def token(self, value: Optional[pulumi.Input[str]]):
|
114
|
+
def token(self, value: Optional[pulumi.Input[_builtins.str]]):
|
115
115
|
pulumi.set(self, "token", value)
|
116
116
|
|
117
|
-
@property
|
117
|
+
@_builtins.property
|
118
118
|
@pulumi.getter
|
119
|
-
def url(self) -> Optional[pulumi.Input[str]]:
|
119
|
+
def url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
120
120
|
"""
|
121
121
|
The request URL to trigger the group run.
|
122
122
|
"""
|
123
123
|
return pulumi.get(self, "url")
|
124
124
|
|
125
125
|
@url.setter
|
126
|
-
def url(self, value: Optional[pulumi.Input[str]]):
|
126
|
+
def url(self, value: Optional[pulumi.Input[_builtins.str]]):
|
127
127
|
pulumi.set(self, "url", value)
|
128
128
|
|
129
129
|
|
130
|
+
@pulumi.type_token("checkly:index/triggerCheckGroup:TriggerCheckGroup")
|
130
131
|
class TriggerCheckGroup(pulumi.CustomResource):
|
131
132
|
@overload
|
132
133
|
def __init__(__self__,
|
133
134
|
resource_name: str,
|
134
135
|
opts: Optional[pulumi.ResourceOptions] = None,
|
135
|
-
group_id: Optional[pulumi.Input[int]] = None,
|
136
|
-
token: Optional[pulumi.Input[str]] = None,
|
137
|
-
url: Optional[pulumi.Input[str]] = None,
|
136
|
+
group_id: Optional[pulumi.Input[_builtins.int]] = None,
|
137
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
138
|
+
url: Optional[pulumi.Input[_builtins.str]] = None,
|
138
139
|
__props__=None):
|
139
140
|
"""
|
140
141
|
## Example Usage
|
@@ -149,9 +150,9 @@ class TriggerCheckGroup(pulumi.CustomResource):
|
|
149
150
|
|
150
151
|
:param str resource_name: The name of the resource.
|
151
152
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
152
|
-
:param pulumi.Input[int] group_id: The id of the group that you want to attach the trigger to.
|
153
|
-
:param pulumi.Input[str] token: The token value created to trigger the group
|
154
|
-
:param pulumi.Input[str] url: The request URL to trigger the group run.
|
153
|
+
:param pulumi.Input[_builtins.int] group_id: The id of the group that you want to attach the trigger to.
|
154
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the group
|
155
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the group run.
|
155
156
|
"""
|
156
157
|
...
|
157
158
|
@overload
|
@@ -185,9 +186,9 @@ class TriggerCheckGroup(pulumi.CustomResource):
|
|
185
186
|
def _internal_init(__self__,
|
186
187
|
resource_name: str,
|
187
188
|
opts: Optional[pulumi.ResourceOptions] = None,
|
188
|
-
group_id: Optional[pulumi.Input[int]] = None,
|
189
|
-
token: Optional[pulumi.Input[str]] = None,
|
190
|
-
url: Optional[pulumi.Input[str]] = None,
|
189
|
+
group_id: Optional[pulumi.Input[_builtins.int]] = None,
|
190
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
191
|
+
url: Optional[pulumi.Input[_builtins.str]] = None,
|
191
192
|
__props__=None):
|
192
193
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
193
194
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -212,9 +213,9 @@ class TriggerCheckGroup(pulumi.CustomResource):
|
|
212
213
|
def get(resource_name: str,
|
213
214
|
id: pulumi.Input[str],
|
214
215
|
opts: Optional[pulumi.ResourceOptions] = None,
|
215
|
-
group_id: Optional[pulumi.Input[int]] = None,
|
216
|
-
token: Optional[pulumi.Input[str]] = None,
|
217
|
-
url: Optional[pulumi.Input[str]] = None) -> 'TriggerCheckGroup':
|
216
|
+
group_id: Optional[pulumi.Input[_builtins.int]] = None,
|
217
|
+
token: Optional[pulumi.Input[_builtins.str]] = None,
|
218
|
+
url: Optional[pulumi.Input[_builtins.str]] = None) -> 'TriggerCheckGroup':
|
218
219
|
"""
|
219
220
|
Get an existing TriggerCheckGroup resource's state with the given name, id, and optional extra
|
220
221
|
properties used to qualify the lookup.
|
@@ -222,9 +223,9 @@ class TriggerCheckGroup(pulumi.CustomResource):
|
|
222
223
|
:param str resource_name: The unique name of the resulting resource.
|
223
224
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
224
225
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
225
|
-
:param pulumi.Input[int] group_id: The id of the group that you want to attach the trigger to.
|
226
|
-
:param pulumi.Input[str] token: The token value created to trigger the group
|
227
|
-
:param pulumi.Input[str] url: The request URL to trigger the group run.
|
226
|
+
:param pulumi.Input[_builtins.int] group_id: The id of the group that you want to attach the trigger to.
|
227
|
+
:param pulumi.Input[_builtins.str] token: The token value created to trigger the group
|
228
|
+
:param pulumi.Input[_builtins.str] url: The request URL to trigger the group run.
|
228
229
|
"""
|
229
230
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
230
231
|
|
@@ -235,25 +236,25 @@ class TriggerCheckGroup(pulumi.CustomResource):
|
|
235
236
|
__props__.__dict__["url"] = url
|
236
237
|
return TriggerCheckGroup(resource_name, opts=opts, __props__=__props__)
|
237
238
|
|
238
|
-
@property
|
239
|
+
@_builtins.property
|
239
240
|
@pulumi.getter(name="groupId")
|
240
|
-
def group_id(self) -> pulumi.Output[int]:
|
241
|
+
def group_id(self) -> pulumi.Output[_builtins.int]:
|
241
242
|
"""
|
242
243
|
The id of the group that you want to attach the trigger to.
|
243
244
|
"""
|
244
245
|
return pulumi.get(self, "group_id")
|
245
246
|
|
246
|
-
@property
|
247
|
+
@_builtins.property
|
247
248
|
@pulumi.getter
|
248
|
-
def token(self) -> pulumi.Output[str]:
|
249
|
+
def token(self) -> pulumi.Output[_builtins.str]:
|
249
250
|
"""
|
250
251
|
The token value created to trigger the group
|
251
252
|
"""
|
252
253
|
return pulumi.get(self, "token")
|
253
254
|
|
254
|
-
@property
|
255
|
+
@_builtins.property
|
255
256
|
@pulumi.getter
|
256
|
-
def url(self) -> pulumi.Output[str]:
|
257
|
+
def url(self) -> pulumi.Output[_builtins.str]:
|
257
258
|
"""
|
258
259
|
The request URL to trigger the group run.
|
259
260
|
"""
|