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
@@ -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,22 +19,22 @@ __all__ = ['MaintenanceWindowArgs', 'MaintenanceWindow']
|
|
19
19
|
@pulumi.input_type
|
20
20
|
class MaintenanceWindowArgs:
|
21
21
|
def __init__(__self__, *,
|
22
|
-
ends_at: pulumi.Input[str],
|
23
|
-
starts_at: pulumi.Input[str],
|
24
|
-
name: Optional[pulumi.Input[str]] = None,
|
25
|
-
repeat_ends_at: Optional[pulumi.Input[str]] = None,
|
26
|
-
repeat_interval: Optional[pulumi.Input[int]] = None,
|
27
|
-
repeat_unit: Optional[pulumi.Input[str]] = None,
|
28
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
22
|
+
ends_at: pulumi.Input[_builtins.str],
|
23
|
+
starts_at: pulumi.Input[_builtins.str],
|
24
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
25
|
+
repeat_ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
26
|
+
repeat_interval: Optional[pulumi.Input[_builtins.int]] = None,
|
27
|
+
repeat_unit: Optional[pulumi.Input[_builtins.str]] = None,
|
28
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
29
29
|
"""
|
30
30
|
The set of arguments for constructing a MaintenanceWindow resource.
|
31
|
-
:param pulumi.Input[str] ends_at: The end date of the maintenance window.
|
32
|
-
:param pulumi.Input[str] starts_at: The start date of the maintenance window.
|
33
|
-
:param pulumi.Input[str] name: The maintenance window name.
|
34
|
-
:param pulumi.Input[str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
35
|
-
:param pulumi.Input[int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
36
|
-
:param pulumi.Input[str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
37
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The names of the checks and groups maintenance window should apply to.
|
31
|
+
:param pulumi.Input[_builtins.str] ends_at: The end date of the maintenance window.
|
32
|
+
:param pulumi.Input[_builtins.str] starts_at: The start date of the maintenance window.
|
33
|
+
:param pulumi.Input[_builtins.str] name: The maintenance window name.
|
34
|
+
:param pulumi.Input[_builtins.str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
35
|
+
:param pulumi.Input[_builtins.int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
36
|
+
:param pulumi.Input[_builtins.str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The names of the checks and groups maintenance window should apply to.
|
38
38
|
"""
|
39
39
|
pulumi.set(__self__, "ends_at", ends_at)
|
40
40
|
pulumi.set(__self__, "starts_at", starts_at)
|
@@ -49,110 +49,110 @@ class MaintenanceWindowArgs:
|
|
49
49
|
if tags is not None:
|
50
50
|
pulumi.set(__self__, "tags", tags)
|
51
51
|
|
52
|
-
@property
|
52
|
+
@_builtins.property
|
53
53
|
@pulumi.getter(name="endsAt")
|
54
|
-
def ends_at(self) -> pulumi.Input[str]:
|
54
|
+
def ends_at(self) -> pulumi.Input[_builtins.str]:
|
55
55
|
"""
|
56
56
|
The end date of the maintenance window.
|
57
57
|
"""
|
58
58
|
return pulumi.get(self, "ends_at")
|
59
59
|
|
60
60
|
@ends_at.setter
|
61
|
-
def ends_at(self, value: pulumi.Input[str]):
|
61
|
+
def ends_at(self, value: pulumi.Input[_builtins.str]):
|
62
62
|
pulumi.set(self, "ends_at", value)
|
63
63
|
|
64
|
-
@property
|
64
|
+
@_builtins.property
|
65
65
|
@pulumi.getter(name="startsAt")
|
66
|
-
def starts_at(self) -> pulumi.Input[str]:
|
66
|
+
def starts_at(self) -> pulumi.Input[_builtins.str]:
|
67
67
|
"""
|
68
68
|
The start date of the maintenance window.
|
69
69
|
"""
|
70
70
|
return pulumi.get(self, "starts_at")
|
71
71
|
|
72
72
|
@starts_at.setter
|
73
|
-
def starts_at(self, value: pulumi.Input[str]):
|
73
|
+
def starts_at(self, value: pulumi.Input[_builtins.str]):
|
74
74
|
pulumi.set(self, "starts_at", value)
|
75
75
|
|
76
|
-
@property
|
76
|
+
@_builtins.property
|
77
77
|
@pulumi.getter
|
78
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
78
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
79
79
|
"""
|
80
80
|
The maintenance window name.
|
81
81
|
"""
|
82
82
|
return pulumi.get(self, "name")
|
83
83
|
|
84
84
|
@name.setter
|
85
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
85
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
86
86
|
pulumi.set(self, "name", value)
|
87
87
|
|
88
|
-
@property
|
88
|
+
@_builtins.property
|
89
89
|
@pulumi.getter(name="repeatEndsAt")
|
90
|
-
def repeat_ends_at(self) -> Optional[pulumi.Input[str]]:
|
90
|
+
def repeat_ends_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
91
91
|
"""
|
92
92
|
The date on which the maintenance window should stop repeating.
|
93
93
|
"""
|
94
94
|
return pulumi.get(self, "repeat_ends_at")
|
95
95
|
|
96
96
|
@repeat_ends_at.setter
|
97
|
-
def repeat_ends_at(self, value: Optional[pulumi.Input[str]]):
|
97
|
+
def repeat_ends_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
98
98
|
pulumi.set(self, "repeat_ends_at", value)
|
99
99
|
|
100
|
-
@property
|
100
|
+
@_builtins.property
|
101
101
|
@pulumi.getter(name="repeatInterval")
|
102
|
-
def repeat_interval(self) -> Optional[pulumi.Input[int]]:
|
102
|
+
def repeat_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
|
103
103
|
"""
|
104
104
|
The repeat interval of the maintenance window from the first occurrence.
|
105
105
|
"""
|
106
106
|
return pulumi.get(self, "repeat_interval")
|
107
107
|
|
108
108
|
@repeat_interval.setter
|
109
|
-
def repeat_interval(self, value: Optional[pulumi.Input[int]]):
|
109
|
+
def repeat_interval(self, value: Optional[pulumi.Input[_builtins.int]]):
|
110
110
|
pulumi.set(self, "repeat_interval", value)
|
111
111
|
|
112
|
-
@property
|
112
|
+
@_builtins.property
|
113
113
|
@pulumi.getter(name="repeatUnit")
|
114
|
-
def repeat_unit(self) -> Optional[pulumi.Input[str]]:
|
114
|
+
def repeat_unit(self) -> Optional[pulumi.Input[_builtins.str]]:
|
115
115
|
"""
|
116
116
|
The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
117
117
|
"""
|
118
118
|
return pulumi.get(self, "repeat_unit")
|
119
119
|
|
120
120
|
@repeat_unit.setter
|
121
|
-
def repeat_unit(self, value: Optional[pulumi.Input[str]]):
|
121
|
+
def repeat_unit(self, value: Optional[pulumi.Input[_builtins.str]]):
|
122
122
|
pulumi.set(self, "repeat_unit", value)
|
123
123
|
|
124
|
-
@property
|
124
|
+
@_builtins.property
|
125
125
|
@pulumi.getter
|
126
|
-
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
126
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
127
127
|
"""
|
128
128
|
The names of the checks and groups maintenance window should apply to.
|
129
129
|
"""
|
130
130
|
return pulumi.get(self, "tags")
|
131
131
|
|
132
132
|
@tags.setter
|
133
|
-
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
133
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
134
134
|
pulumi.set(self, "tags", value)
|
135
135
|
|
136
136
|
|
137
137
|
@pulumi.input_type
|
138
138
|
class _MaintenanceWindowState:
|
139
139
|
def __init__(__self__, *,
|
140
|
-
ends_at: Optional[pulumi.Input[str]] = None,
|
141
|
-
name: Optional[pulumi.Input[str]] = None,
|
142
|
-
repeat_ends_at: Optional[pulumi.Input[str]] = None,
|
143
|
-
repeat_interval: Optional[pulumi.Input[int]] = None,
|
144
|
-
repeat_unit: Optional[pulumi.Input[str]] = None,
|
145
|
-
starts_at: Optional[pulumi.Input[str]] = None,
|
146
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
140
|
+
ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
141
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
142
|
+
repeat_ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
143
|
+
repeat_interval: Optional[pulumi.Input[_builtins.int]] = None,
|
144
|
+
repeat_unit: Optional[pulumi.Input[_builtins.str]] = None,
|
145
|
+
starts_at: Optional[pulumi.Input[_builtins.str]] = None,
|
146
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
147
147
|
"""
|
148
148
|
Input properties used for looking up and filtering MaintenanceWindow resources.
|
149
|
-
:param pulumi.Input[str] ends_at: The end date of the maintenance window.
|
150
|
-
:param pulumi.Input[str] name: The maintenance window name.
|
151
|
-
:param pulumi.Input[str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
152
|
-
:param pulumi.Input[int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
153
|
-
:param pulumi.Input[str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
154
|
-
:param pulumi.Input[str] starts_at: The start date of the maintenance window.
|
155
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The names of the checks and groups maintenance window should apply to.
|
149
|
+
:param pulumi.Input[_builtins.str] ends_at: The end date of the maintenance window.
|
150
|
+
:param pulumi.Input[_builtins.str] name: The maintenance window name.
|
151
|
+
:param pulumi.Input[_builtins.str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
152
|
+
:param pulumi.Input[_builtins.int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
153
|
+
:param pulumi.Input[_builtins.str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
154
|
+
:param pulumi.Input[_builtins.str] starts_at: The start date of the maintenance window.
|
155
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The names of the checks and groups maintenance window should apply to.
|
156
156
|
"""
|
157
157
|
if ends_at is not None:
|
158
158
|
pulumi.set(__self__, "ends_at", ends_at)
|
@@ -169,103 +169,104 @@ class _MaintenanceWindowState:
|
|
169
169
|
if tags is not None:
|
170
170
|
pulumi.set(__self__, "tags", tags)
|
171
171
|
|
172
|
-
@property
|
172
|
+
@_builtins.property
|
173
173
|
@pulumi.getter(name="endsAt")
|
174
|
-
def ends_at(self) -> Optional[pulumi.Input[str]]:
|
174
|
+
def ends_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
175
175
|
"""
|
176
176
|
The end date of the maintenance window.
|
177
177
|
"""
|
178
178
|
return pulumi.get(self, "ends_at")
|
179
179
|
|
180
180
|
@ends_at.setter
|
181
|
-
def ends_at(self, value: Optional[pulumi.Input[str]]):
|
181
|
+
def ends_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
182
182
|
pulumi.set(self, "ends_at", value)
|
183
183
|
|
184
|
-
@property
|
184
|
+
@_builtins.property
|
185
185
|
@pulumi.getter
|
186
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
186
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
187
187
|
"""
|
188
188
|
The maintenance window name.
|
189
189
|
"""
|
190
190
|
return pulumi.get(self, "name")
|
191
191
|
|
192
192
|
@name.setter
|
193
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
193
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
194
194
|
pulumi.set(self, "name", value)
|
195
195
|
|
196
|
-
@property
|
196
|
+
@_builtins.property
|
197
197
|
@pulumi.getter(name="repeatEndsAt")
|
198
|
-
def repeat_ends_at(self) -> Optional[pulumi.Input[str]]:
|
198
|
+
def repeat_ends_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
199
199
|
"""
|
200
200
|
The date on which the maintenance window should stop repeating.
|
201
201
|
"""
|
202
202
|
return pulumi.get(self, "repeat_ends_at")
|
203
203
|
|
204
204
|
@repeat_ends_at.setter
|
205
|
-
def repeat_ends_at(self, value: Optional[pulumi.Input[str]]):
|
205
|
+
def repeat_ends_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
206
206
|
pulumi.set(self, "repeat_ends_at", value)
|
207
207
|
|
208
|
-
@property
|
208
|
+
@_builtins.property
|
209
209
|
@pulumi.getter(name="repeatInterval")
|
210
|
-
def repeat_interval(self) -> Optional[pulumi.Input[int]]:
|
210
|
+
def repeat_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
|
211
211
|
"""
|
212
212
|
The repeat interval of the maintenance window from the first occurrence.
|
213
213
|
"""
|
214
214
|
return pulumi.get(self, "repeat_interval")
|
215
215
|
|
216
216
|
@repeat_interval.setter
|
217
|
-
def repeat_interval(self, value: Optional[pulumi.Input[int]]):
|
217
|
+
def repeat_interval(self, value: Optional[pulumi.Input[_builtins.int]]):
|
218
218
|
pulumi.set(self, "repeat_interval", value)
|
219
219
|
|
220
|
-
@property
|
220
|
+
@_builtins.property
|
221
221
|
@pulumi.getter(name="repeatUnit")
|
222
|
-
def repeat_unit(self) -> Optional[pulumi.Input[str]]:
|
222
|
+
def repeat_unit(self) -> Optional[pulumi.Input[_builtins.str]]:
|
223
223
|
"""
|
224
224
|
The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
225
225
|
"""
|
226
226
|
return pulumi.get(self, "repeat_unit")
|
227
227
|
|
228
228
|
@repeat_unit.setter
|
229
|
-
def repeat_unit(self, value: Optional[pulumi.Input[str]]):
|
229
|
+
def repeat_unit(self, value: Optional[pulumi.Input[_builtins.str]]):
|
230
230
|
pulumi.set(self, "repeat_unit", value)
|
231
231
|
|
232
|
-
@property
|
232
|
+
@_builtins.property
|
233
233
|
@pulumi.getter(name="startsAt")
|
234
|
-
def starts_at(self) -> Optional[pulumi.Input[str]]:
|
234
|
+
def starts_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
235
235
|
"""
|
236
236
|
The start date of the maintenance window.
|
237
237
|
"""
|
238
238
|
return pulumi.get(self, "starts_at")
|
239
239
|
|
240
240
|
@starts_at.setter
|
241
|
-
def starts_at(self, value: Optional[pulumi.Input[str]]):
|
241
|
+
def starts_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
242
242
|
pulumi.set(self, "starts_at", value)
|
243
243
|
|
244
|
-
@property
|
244
|
+
@_builtins.property
|
245
245
|
@pulumi.getter
|
246
|
-
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
246
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
247
247
|
"""
|
248
248
|
The names of the checks and groups maintenance window should apply to.
|
249
249
|
"""
|
250
250
|
return pulumi.get(self, "tags")
|
251
251
|
|
252
252
|
@tags.setter
|
253
|
-
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
253
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
254
254
|
pulumi.set(self, "tags", value)
|
255
255
|
|
256
256
|
|
257
|
+
@pulumi.type_token("checkly:index/maintenanceWindow:MaintenanceWindow")
|
257
258
|
class MaintenanceWindow(pulumi.CustomResource):
|
258
259
|
@overload
|
259
260
|
def __init__(__self__,
|
260
261
|
resource_name: str,
|
261
262
|
opts: Optional[pulumi.ResourceOptions] = None,
|
262
|
-
ends_at: Optional[pulumi.Input[str]] = None,
|
263
|
-
name: Optional[pulumi.Input[str]] = None,
|
264
|
-
repeat_ends_at: Optional[pulumi.Input[str]] = None,
|
265
|
-
repeat_interval: Optional[pulumi.Input[int]] = None,
|
266
|
-
repeat_unit: Optional[pulumi.Input[str]] = None,
|
267
|
-
starts_at: Optional[pulumi.Input[str]] = None,
|
268
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
263
|
+
ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
264
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
265
|
+
repeat_ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
266
|
+
repeat_interval: Optional[pulumi.Input[_builtins.int]] = None,
|
267
|
+
repeat_unit: Optional[pulumi.Input[_builtins.str]] = None,
|
268
|
+
starts_at: Optional[pulumi.Input[_builtins.str]] = None,
|
269
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
269
270
|
__props__=None):
|
270
271
|
"""
|
271
272
|
## Example Usage
|
@@ -286,13 +287,13 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
286
287
|
|
287
288
|
:param str resource_name: The name of the resource.
|
288
289
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
289
|
-
:param pulumi.Input[str] ends_at: The end date of the maintenance window.
|
290
|
-
:param pulumi.Input[str] name: The maintenance window name.
|
291
|
-
:param pulumi.Input[str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
292
|
-
:param pulumi.Input[int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
293
|
-
:param pulumi.Input[str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
294
|
-
:param pulumi.Input[str] starts_at: The start date of the maintenance window.
|
295
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The names of the checks and groups maintenance window should apply to.
|
290
|
+
:param pulumi.Input[_builtins.str] ends_at: The end date of the maintenance window.
|
291
|
+
:param pulumi.Input[_builtins.str] name: The maintenance window name.
|
292
|
+
:param pulumi.Input[_builtins.str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
293
|
+
:param pulumi.Input[_builtins.int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
294
|
+
:param pulumi.Input[_builtins.str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
295
|
+
:param pulumi.Input[_builtins.str] starts_at: The start date of the maintenance window.
|
296
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The names of the checks and groups maintenance window should apply to.
|
296
297
|
"""
|
297
298
|
...
|
298
299
|
@overload
|
@@ -332,13 +333,13 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
332
333
|
def _internal_init(__self__,
|
333
334
|
resource_name: str,
|
334
335
|
opts: Optional[pulumi.ResourceOptions] = None,
|
335
|
-
ends_at: Optional[pulumi.Input[str]] = None,
|
336
|
-
name: Optional[pulumi.Input[str]] = None,
|
337
|
-
repeat_ends_at: Optional[pulumi.Input[str]] = None,
|
338
|
-
repeat_interval: Optional[pulumi.Input[int]] = None,
|
339
|
-
repeat_unit: Optional[pulumi.Input[str]] = None,
|
340
|
-
starts_at: Optional[pulumi.Input[str]] = None,
|
341
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
336
|
+
ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
337
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
338
|
+
repeat_ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
339
|
+
repeat_interval: Optional[pulumi.Input[_builtins.int]] = None,
|
340
|
+
repeat_unit: Optional[pulumi.Input[_builtins.str]] = None,
|
341
|
+
starts_at: Optional[pulumi.Input[_builtins.str]] = None,
|
342
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
342
343
|
__props__=None):
|
343
344
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
344
345
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -369,13 +370,13 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
369
370
|
def get(resource_name: str,
|
370
371
|
id: pulumi.Input[str],
|
371
372
|
opts: Optional[pulumi.ResourceOptions] = None,
|
372
|
-
ends_at: Optional[pulumi.Input[str]] = None,
|
373
|
-
name: Optional[pulumi.Input[str]] = None,
|
374
|
-
repeat_ends_at: Optional[pulumi.Input[str]] = None,
|
375
|
-
repeat_interval: Optional[pulumi.Input[int]] = None,
|
376
|
-
repeat_unit: Optional[pulumi.Input[str]] = None,
|
377
|
-
starts_at: Optional[pulumi.Input[str]] = None,
|
378
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'MaintenanceWindow':
|
373
|
+
ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
374
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
375
|
+
repeat_ends_at: Optional[pulumi.Input[_builtins.str]] = None,
|
376
|
+
repeat_interval: Optional[pulumi.Input[_builtins.int]] = None,
|
377
|
+
repeat_unit: Optional[pulumi.Input[_builtins.str]] = None,
|
378
|
+
starts_at: Optional[pulumi.Input[_builtins.str]] = None,
|
379
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None) -> 'MaintenanceWindow':
|
379
380
|
"""
|
380
381
|
Get an existing MaintenanceWindow resource's state with the given name, id, and optional extra
|
381
382
|
properties used to qualify the lookup.
|
@@ -383,13 +384,13 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
383
384
|
:param str resource_name: The unique name of the resulting resource.
|
384
385
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
385
386
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
386
|
-
:param pulumi.Input[str] ends_at: The end date of the maintenance window.
|
387
|
-
:param pulumi.Input[str] name: The maintenance window name.
|
388
|
-
:param pulumi.Input[str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
389
|
-
:param pulumi.Input[int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
390
|
-
:param pulumi.Input[str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
391
|
-
:param pulumi.Input[str] starts_at: The start date of the maintenance window.
|
392
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The names of the checks and groups maintenance window should apply to.
|
387
|
+
:param pulumi.Input[_builtins.str] ends_at: The end date of the maintenance window.
|
388
|
+
:param pulumi.Input[_builtins.str] name: The maintenance window name.
|
389
|
+
:param pulumi.Input[_builtins.str] repeat_ends_at: The date on which the maintenance window should stop repeating.
|
390
|
+
:param pulumi.Input[_builtins.int] repeat_interval: The repeat interval of the maintenance window from the first occurrence.
|
391
|
+
:param pulumi.Input[_builtins.str] repeat_unit: The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
392
|
+
:param pulumi.Input[_builtins.str] starts_at: The start date of the maintenance window.
|
393
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The names of the checks and groups maintenance window should apply to.
|
393
394
|
"""
|
394
395
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
395
396
|
|
@@ -404,57 +405,57 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
404
405
|
__props__.__dict__["tags"] = tags
|
405
406
|
return MaintenanceWindow(resource_name, opts=opts, __props__=__props__)
|
406
407
|
|
407
|
-
@property
|
408
|
+
@_builtins.property
|
408
409
|
@pulumi.getter(name="endsAt")
|
409
|
-
def ends_at(self) -> pulumi.Output[str]:
|
410
|
+
def ends_at(self) -> pulumi.Output[_builtins.str]:
|
410
411
|
"""
|
411
412
|
The end date of the maintenance window.
|
412
413
|
"""
|
413
414
|
return pulumi.get(self, "ends_at")
|
414
415
|
|
415
|
-
@property
|
416
|
+
@_builtins.property
|
416
417
|
@pulumi.getter
|
417
|
-
def name(self) -> pulumi.Output[str]:
|
418
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
418
419
|
"""
|
419
420
|
The maintenance window name.
|
420
421
|
"""
|
421
422
|
return pulumi.get(self, "name")
|
422
423
|
|
423
|
-
@property
|
424
|
+
@_builtins.property
|
424
425
|
@pulumi.getter(name="repeatEndsAt")
|
425
|
-
def repeat_ends_at(self) -> pulumi.Output[Optional[str]]:
|
426
|
+
def repeat_ends_at(self) -> pulumi.Output[Optional[_builtins.str]]:
|
426
427
|
"""
|
427
428
|
The date on which the maintenance window should stop repeating.
|
428
429
|
"""
|
429
430
|
return pulumi.get(self, "repeat_ends_at")
|
430
431
|
|
431
|
-
@property
|
432
|
+
@_builtins.property
|
432
433
|
@pulumi.getter(name="repeatInterval")
|
433
|
-
def repeat_interval(self) -> pulumi.Output[Optional[int]]:
|
434
|
+
def repeat_interval(self) -> pulumi.Output[Optional[_builtins.int]]:
|
434
435
|
"""
|
435
436
|
The repeat interval of the maintenance window from the first occurrence.
|
436
437
|
"""
|
437
438
|
return pulumi.get(self, "repeat_interval")
|
438
439
|
|
439
|
-
@property
|
440
|
+
@_builtins.property
|
440
441
|
@pulumi.getter(name="repeatUnit")
|
441
|
-
def repeat_unit(self) -> pulumi.Output[Optional[str]]:
|
442
|
+
def repeat_unit(self) -> pulumi.Output[Optional[_builtins.str]]:
|
442
443
|
"""
|
443
444
|
The repeat cadence for the maintenance window. Possible values `DAY`, `WEEK` and `MONTH`.
|
444
445
|
"""
|
445
446
|
return pulumi.get(self, "repeat_unit")
|
446
447
|
|
447
|
-
@property
|
448
|
+
@_builtins.property
|
448
449
|
@pulumi.getter(name="startsAt")
|
449
|
-
def starts_at(self) -> pulumi.Output[str]:
|
450
|
+
def starts_at(self) -> pulumi.Output[_builtins.str]:
|
450
451
|
"""
|
451
452
|
The start date of the maintenance window.
|
452
453
|
"""
|
453
454
|
return pulumi.get(self, "starts_at")
|
454
455
|
|
455
|
-
@property
|
456
|
+
@_builtins.property
|
456
457
|
@pulumi.getter
|
457
|
-
def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
458
|
+
def tags(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
458
459
|
"""
|
459
460
|
The names of the checks and groups maintenance window should apply to.
|
460
461
|
"""
|