pulumi-checkly 2.3.0a1750944663__py3-none-any.whl → 2.4.0a1754310884__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 +27 -0
- pulumi_checkly/_inputs.py +1925 -194
- pulumi_checkly/dashboard.py +396 -66
- pulumi_checkly/heartbeat_check.py +0 -4
- pulumi_checkly/heartbeat_monitor.py +480 -0
- pulumi_checkly/outputs.py +1518 -152
- pulumi_checkly/pulumi-plugin.json +1 -1
- pulumi_checkly/tcp_check.py +0 -4
- pulumi_checkly/tcp_monitor.py +1171 -0
- pulumi_checkly/url_monitor.py +1045 -0
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/METADATA +1 -1
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/RECORD +14 -11
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/WHEEL +0 -0
- {pulumi_checkly-2.3.0a1750944663.dist-info → pulumi_checkly-2.4.0a1754310884.dist-info}/top_level.txt +0 -0
pulumi_checkly/tcp_check.py
CHANGED
@@ -690,8 +690,6 @@ class TcpCheck(pulumi.CustomResource):
|
|
690
690
|
use_global_alert_settings: Optional[pulumi.Input[bool]] = None,
|
691
691
|
__props__=None):
|
692
692
|
"""
|
693
|
-
TCP checks allow you to monitor remote endpoints at a lower level.
|
694
|
-
|
695
693
|
## Example Usage
|
696
694
|
|
697
695
|
```python
|
@@ -789,8 +787,6 @@ class TcpCheck(pulumi.CustomResource):
|
|
789
787
|
args: TcpCheckArgs,
|
790
788
|
opts: Optional[pulumi.ResourceOptions] = None):
|
791
789
|
"""
|
792
|
-
TCP checks allow you to monitor remote endpoints at a lower level.
|
793
|
-
|
794
790
|
## Example Usage
|
795
791
|
|
796
792
|
```python
|