pulumi-checkly 1.1.4__tar.gz → 2.0.0__tar.gz

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.
Files changed (40) hide show
  1. pulumi_checkly-2.0.0/PKG-INFO +69 -0
  2. pulumi_checkly-2.0.0/README.md +54 -0
  3. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/__init__.py +19 -0
  4. pulumi_checkly-2.0.0/pulumi_checkly/_inputs.py +3131 -0
  5. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/_utilities.py +93 -5
  6. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/alert_channel.py +183 -110
  7. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/check.py +307 -152
  8. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/check_group.py +193 -222
  9. pulumi_checkly-2.0.0/pulumi_checkly/config/__init__.pyi +22 -0
  10. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/config/vars.py +6 -0
  11. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/dashboard.py +105 -27
  12. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/environment_variable.py +50 -15
  13. pulumi_checkly-2.0.0/pulumi_checkly/get_static_ips.py +126 -0
  14. pulumi_checkly-2.0.0/pulumi_checkly/heartbeat_check.py +480 -0
  15. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/maintenance_window.py +15 -12
  16. pulumi_checkly-2.0.0/pulumi_checkly/outputs.py +2413 -0
  17. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/private_location.py +15 -10
  18. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/provider.py +7 -6
  19. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/pulumi-plugin.json +1 -0
  20. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/snippet.py +41 -8
  21. pulumi_checkly-2.0.0/pulumi_checkly/tcp_check.py +1171 -0
  22. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/trigger_check.py +9 -8
  23. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/trigger_check_group.py +9 -8
  24. pulumi_checkly-2.0.0/pulumi_checkly.egg-info/PKG-INFO +69 -0
  25. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly.egg-info/SOURCES.txt +5 -2
  26. pulumi_checkly-2.0.0/pulumi_checkly.egg-info/requires.txt +6 -0
  27. pulumi_checkly-2.0.0/pyproject.toml +22 -0
  28. pulumi_checkly-1.1.4/PKG-INFO +0 -165
  29. pulumi_checkly-1.1.4/README.md +0 -152
  30. pulumi_checkly-1.1.4/pulumi_checkly/_inputs.py +0 -1003
  31. pulumi_checkly-1.1.4/pulumi_checkly/outputs.py +0 -991
  32. pulumi_checkly-1.1.4/pulumi_checkly.egg-info/PKG-INFO +0 -165
  33. pulumi_checkly-1.1.4/pulumi_checkly.egg-info/not-zip-safe +0 -1
  34. pulumi_checkly-1.1.4/pulumi_checkly.egg-info/requires.txt +0 -3
  35. pulumi_checkly-1.1.4/setup.py +0 -66
  36. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/config/__init__.py +0 -0
  37. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly/py.typed +0 -0
  38. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly.egg-info/dependency_links.txt +0 -0
  39. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/pulumi_checkly.egg-info/top_level.txt +0 -0
  40. {pulumi_checkly-1.1.4 → pulumi_checkly-2.0.0}/setup.cfg +0 -0
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.2
2
+ Name: pulumi_checkly
3
+ Version: 2.0.0
4
+ Summary: A Pulumi package for creating and managing Checkly monitoring resources.
5
+ License: Apache-2.0
6
+ Project-URL: Homepage, https://www.pulumi.com/registry/packages/checkly
7
+ Project-URL: Repository, https://github.com/checkly/pulumi-checkly
8
+ Keywords: pulumi,checkly,category/monitoring
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.0.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
15
+
16
+ # Checkly Provider for Pulumi
17
+
18
+ ![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)
19
+ ![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/checkly/pulumi-checkly?label=Version)
20
+
21
+ The Checkly provider for Pulumi can be used to provision any of the monitoring resources available in [Checkly](https://www.checklyhq.com/).
22
+
23
+ ## Installation
24
+
25
+ The Checkly provider is available as a package in most Pulumi languages:
26
+
27
+ * JavaScript/TypeScript: [`@checkly/pulumi`](https://www.npmjs.com/package/@checkly/pulumi)
28
+ * Python: [`pulumi-checkly`](https://pypi.org/project/pulumi-checkly/)
29
+ * Go: [`github.com/checkly/pulumi-checkly/sdk/v2/go/checkly`](https://github.com/checkly/pulumi-checkly)
30
+ * .NET: [`Pulumi.Checkly`](https://www.nuget.org/packages/Pulumi.Checkly)
31
+
32
+
33
+ ## Authentication
34
+
35
+ The Checkly provider must be configured with an `API Key` and an `Account ID` in order to deploy Checkly resources. Sign up for a [Checkly](https://www.checklyhq.com) account and follow our [integration guide](https://www.checklyhq.com/docs/integrations/pulumi/) to create and configure your credentials.
36
+
37
+ ### Example configuration
38
+
39
+ First, configure your Checkly Account ID:
40
+
41
+ ```
42
+ pulumi config set checkly:accountId YOUR_CHECKLY_ACCOUNT_ID
43
+ ```
44
+
45
+ Then, configure you Checkly API key (with `--secret`):
46
+
47
+ ```
48
+ pulumi config set checkly:apiKey YOUR_CHECKLY_API_KEY --secret
49
+ ```
50
+
51
+ You should now be able to deploy Checkly resources.
52
+
53
+ ## Example usage
54
+
55
+ You can find working JavaScript and TypeScript code samples in the [`./examples`](https://github.com/checkly/pulumi-checkly/tree/main/examples) directory.
56
+
57
+ ## Configuration options
58
+
59
+ The following configuration points are available for the Checkly provider:
60
+
61
+ - `checkly:accountId` (environment: `CHECKLY_ACCOUNT_ID`) - your Checkly Account ID
62
+ - `checkly:apiKey` (environment: `CHECKLY_API_KEY`) - your Checkly API Key
63
+ * If you don't have an API Key, you can create one [here](https://app.checklyhq.com/settings/user/api-keys).
64
+ * Make sure to use the `--secret` flag with `pulumi config set`.
65
+ - `checkly:apiUrl` (environment: `CHECKLY_API_URL`) - for internal development purposes only
66
+
67
+ ## Reference
68
+
69
+ For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/checkly/api-docs/).
@@ -0,0 +1,54 @@
1
+ # Checkly Provider for Pulumi
2
+
3
+ ![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)
4
+ ![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/checkly/pulumi-checkly?label=Version)
5
+
6
+ The Checkly provider for Pulumi can be used to provision any of the monitoring resources available in [Checkly](https://www.checklyhq.com/).
7
+
8
+ ## Installation
9
+
10
+ The Checkly provider is available as a package in most Pulumi languages:
11
+
12
+ * JavaScript/TypeScript: [`@checkly/pulumi`](https://www.npmjs.com/package/@checkly/pulumi)
13
+ * Python: [`pulumi-checkly`](https://pypi.org/project/pulumi-checkly/)
14
+ * Go: [`github.com/checkly/pulumi-checkly/sdk/v2/go/checkly`](https://github.com/checkly/pulumi-checkly)
15
+ * .NET: [`Pulumi.Checkly`](https://www.nuget.org/packages/Pulumi.Checkly)
16
+
17
+
18
+ ## Authentication
19
+
20
+ The Checkly provider must be configured with an `API Key` and an `Account ID` in order to deploy Checkly resources. Sign up for a [Checkly](https://www.checklyhq.com) account and follow our [integration guide](https://www.checklyhq.com/docs/integrations/pulumi/) to create and configure your credentials.
21
+
22
+ ### Example configuration
23
+
24
+ First, configure your Checkly Account ID:
25
+
26
+ ```
27
+ pulumi config set checkly:accountId YOUR_CHECKLY_ACCOUNT_ID
28
+ ```
29
+
30
+ Then, configure you Checkly API key (with `--secret`):
31
+
32
+ ```
33
+ pulumi config set checkly:apiKey YOUR_CHECKLY_API_KEY --secret
34
+ ```
35
+
36
+ You should now be able to deploy Checkly resources.
37
+
38
+ ## Example usage
39
+
40
+ You can find working JavaScript and TypeScript code samples in the [`./examples`](https://github.com/checkly/pulumi-checkly/tree/main/examples) directory.
41
+
42
+ ## Configuration options
43
+
44
+ The following configuration points are available for the Checkly provider:
45
+
46
+ - `checkly:accountId` (environment: `CHECKLY_ACCOUNT_ID`) - your Checkly Account ID
47
+ - `checkly:apiKey` (environment: `CHECKLY_API_KEY`) - your Checkly API Key
48
+ * If you don't have an API Key, you can create one [here](https://app.checklyhq.com/settings/user/api-keys).
49
+ * Make sure to use the `--secret` flag with `pulumi config set`.
50
+ - `checkly:apiUrl` (environment: `CHECKLY_API_URL`) - for internal development purposes only
51
+
52
+ ## Reference
53
+
54
+ For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/checkly/api-docs/).
@@ -10,10 +10,13 @@ from .check import *
10
10
  from .check_group import *
11
11
  from .dashboard import *
12
12
  from .environment_variable import *
13
+ from .get_static_ips import *
14
+ from .heartbeat_check import *
13
15
  from .maintenance_window import *
14
16
  from .private_location import *
15
17
  from .provider import *
16
18
  from .snippet import *
19
+ from .tcp_check import *
17
20
  from .trigger_check import *
18
21
  from .trigger_check_group import *
19
22
  from ._inputs import *
@@ -69,6 +72,14 @@ _utilities.register(
69
72
  "checkly:index/environmentVariable:EnvironmentVariable": "EnvironmentVariable"
70
73
  }
71
74
  },
75
+ {
76
+ "pkg": "checkly",
77
+ "mod": "index/heartbeatCheck",
78
+ "fqn": "pulumi_checkly",
79
+ "classes": {
80
+ "checkly:index/heartbeatCheck:HeartbeatCheck": "HeartbeatCheck"
81
+ }
82
+ },
72
83
  {
73
84
  "pkg": "checkly",
74
85
  "mod": "index/maintenanceWindow",
@@ -93,6 +104,14 @@ _utilities.register(
93
104
  "checkly:index/snippet:Snippet": "Snippet"
94
105
  }
95
106
  },
107
+ {
108
+ "pkg": "checkly",
109
+ "mod": "index/tcpCheck",
110
+ "fqn": "pulumi_checkly",
111
+ "classes": {
112
+ "checkly:index/tcpCheck:TcpCheck": "TcpCheck"
113
+ }
114
+ },
96
115
  {
97
116
  "pkg": "checkly",
98
117
  "mod": "index/triggerCheck",