pulumi-checkly 2.0.0a1738674781__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 +143 -0
- pulumi_checkly/_inputs.py +3131 -0
- pulumi_checkly/_utilities.py +327 -0
- pulumi_checkly/alert_channel.py +742 -0
- pulumi_checkly/check.py +1579 -0
- pulumi_checkly/check_group.py +1073 -0
- pulumi_checkly/config/__init__.py +8 -0
- pulumi_checkly/config/__init__.pyi +22 -0
- pulumi_checkly/config/vars.py +34 -0
- pulumi_checkly/dashboard.py +920 -0
- pulumi_checkly/environment_variable.py +269 -0
- pulumi_checkly/get_static_ips.py +126 -0
- pulumi_checkly/heartbeat_check.py +480 -0
- pulumi_checkly/maintenance_window.py +462 -0
- pulumi_checkly/outputs.py +2413 -0
- pulumi_checkly/private_location.py +293 -0
- pulumi_checkly/provider.py +144 -0
- pulumi_checkly/pulumi-plugin.json +6 -0
- pulumi_checkly/py.typed +0 -0
- pulumi_checkly/snippet.py +228 -0
- pulumi_checkly/tcp_check.py +1171 -0
- pulumi_checkly/trigger_check.py +261 -0
- pulumi_checkly/trigger_check_group.py +261 -0
- pulumi_checkly-2.0.0a1738674781.dist-info/METADATA +69 -0
- pulumi_checkly-2.0.0a1738674781.dist-info/RECORD +27 -0
- pulumi_checkly-2.0.0a1738674781.dist-info/WHEEL +5 -0
- pulumi_checkly-2.0.0a1738674781.dist-info/top_level.txt +1 -0
@@ -0,0 +1,143 @@
|
|
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
|
+
from . import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .alert_channel import *
|
9
|
+
from .check import *
|
10
|
+
from .check_group import *
|
11
|
+
from .dashboard import *
|
12
|
+
from .environment_variable import *
|
13
|
+
from .get_static_ips import *
|
14
|
+
from .heartbeat_check import *
|
15
|
+
from .maintenance_window import *
|
16
|
+
from .private_location import *
|
17
|
+
from .provider import *
|
18
|
+
from .snippet import *
|
19
|
+
from .tcp_check import *
|
20
|
+
from .trigger_check import *
|
21
|
+
from .trigger_check_group import *
|
22
|
+
from ._inputs import *
|
23
|
+
from . import outputs
|
24
|
+
|
25
|
+
# Make subpackages available:
|
26
|
+
if typing.TYPE_CHECKING:
|
27
|
+
import pulumi_checkly.config as __config
|
28
|
+
config = __config
|
29
|
+
else:
|
30
|
+
config = _utilities.lazy_import('pulumi_checkly.config')
|
31
|
+
|
32
|
+
_utilities.register(
|
33
|
+
resource_modules="""
|
34
|
+
[
|
35
|
+
{
|
36
|
+
"pkg": "checkly",
|
37
|
+
"mod": "index/alertChannel",
|
38
|
+
"fqn": "pulumi_checkly",
|
39
|
+
"classes": {
|
40
|
+
"checkly:index/alertChannel:AlertChannel": "AlertChannel"
|
41
|
+
}
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"pkg": "checkly",
|
45
|
+
"mod": "index/check",
|
46
|
+
"fqn": "pulumi_checkly",
|
47
|
+
"classes": {
|
48
|
+
"checkly:index/check:Check": "Check"
|
49
|
+
}
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"pkg": "checkly",
|
53
|
+
"mod": "index/checkGroup",
|
54
|
+
"fqn": "pulumi_checkly",
|
55
|
+
"classes": {
|
56
|
+
"checkly:index/checkGroup:CheckGroup": "CheckGroup"
|
57
|
+
}
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"pkg": "checkly",
|
61
|
+
"mod": "index/dashboard",
|
62
|
+
"fqn": "pulumi_checkly",
|
63
|
+
"classes": {
|
64
|
+
"checkly:index/dashboard:Dashboard": "Dashboard"
|
65
|
+
}
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"pkg": "checkly",
|
69
|
+
"mod": "index/environmentVariable",
|
70
|
+
"fqn": "pulumi_checkly",
|
71
|
+
"classes": {
|
72
|
+
"checkly:index/environmentVariable:EnvironmentVariable": "EnvironmentVariable"
|
73
|
+
}
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"pkg": "checkly",
|
77
|
+
"mod": "index/heartbeatCheck",
|
78
|
+
"fqn": "pulumi_checkly",
|
79
|
+
"classes": {
|
80
|
+
"checkly:index/heartbeatCheck:HeartbeatCheck": "HeartbeatCheck"
|
81
|
+
}
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"pkg": "checkly",
|
85
|
+
"mod": "index/maintenanceWindow",
|
86
|
+
"fqn": "pulumi_checkly",
|
87
|
+
"classes": {
|
88
|
+
"checkly:index/maintenanceWindow:MaintenanceWindow": "MaintenanceWindow"
|
89
|
+
}
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"pkg": "checkly",
|
93
|
+
"mod": "index/privateLocation",
|
94
|
+
"fqn": "pulumi_checkly",
|
95
|
+
"classes": {
|
96
|
+
"checkly:index/privateLocation:PrivateLocation": "PrivateLocation"
|
97
|
+
}
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"pkg": "checkly",
|
101
|
+
"mod": "index/snippet",
|
102
|
+
"fqn": "pulumi_checkly",
|
103
|
+
"classes": {
|
104
|
+
"checkly:index/snippet:Snippet": "Snippet"
|
105
|
+
}
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"pkg": "checkly",
|
109
|
+
"mod": "index/tcpCheck",
|
110
|
+
"fqn": "pulumi_checkly",
|
111
|
+
"classes": {
|
112
|
+
"checkly:index/tcpCheck:TcpCheck": "TcpCheck"
|
113
|
+
}
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"pkg": "checkly",
|
117
|
+
"mod": "index/triggerCheck",
|
118
|
+
"fqn": "pulumi_checkly",
|
119
|
+
"classes": {
|
120
|
+
"checkly:index/triggerCheck:TriggerCheck": "TriggerCheck"
|
121
|
+
}
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"pkg": "checkly",
|
125
|
+
"mod": "index/triggerCheckGroup",
|
126
|
+
"fqn": "pulumi_checkly",
|
127
|
+
"classes": {
|
128
|
+
"checkly:index/triggerCheckGroup:TriggerCheckGroup": "TriggerCheckGroup"
|
129
|
+
}
|
130
|
+
}
|
131
|
+
]
|
132
|
+
""",
|
133
|
+
resource_packages="""
|
134
|
+
[
|
135
|
+
{
|
136
|
+
"pkg": "checkly",
|
137
|
+
"token": "pulumi:providers:checkly",
|
138
|
+
"fqn": "pulumi_checkly",
|
139
|
+
"class": "Provider"
|
140
|
+
}
|
141
|
+
]
|
142
|
+
"""
|
143
|
+
)
|