pulumi-wavefront 3.2.0a1706750552__py3-none-any.whl → 3.2.0a1706831706__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_wavefront/_inputs.py +10 -0
- pulumi_wavefront/_utilities.py +6 -2
- pulumi_wavefront/outputs.py +30 -0
- {pulumi_wavefront-3.2.0a1706750552.dist-info → pulumi_wavefront-3.2.0a1706831706.dist-info}/METADATA +2 -1
- {pulumi_wavefront-3.2.0a1706750552.dist-info → pulumi_wavefront-3.2.0a1706831706.dist-info}/RECORD +7 -7
- {pulumi_wavefront-3.2.0a1706750552.dist-info → pulumi_wavefront-3.2.0a1706831706.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.2.0a1706750552.dist-info → pulumi_wavefront-3.2.0a1706831706.dist-info}/top_level.txt +0 -0
pulumi_wavefront/_inputs.py
CHANGED
@@ -31,6 +31,10 @@ class AlertAlertTriageDashboardArgs:
|
|
31
31
|
dashboard_id: pulumi.Input[str],
|
32
32
|
description: pulumi.Input[str],
|
33
33
|
parameters: Optional[pulumi.Input['AlertAlertTriageDashboardParametersArgs']] = None):
|
34
|
+
"""
|
35
|
+
:param pulumi.Input[str] dashboard_id: Dashboard ID
|
36
|
+
:param pulumi.Input[str] description: Dashboard Description
|
37
|
+
"""
|
34
38
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
35
39
|
pulumi.set(__self__, "description", description)
|
36
40
|
if parameters is not None:
|
@@ -39,6 +43,9 @@ class AlertAlertTriageDashboardArgs:
|
|
39
43
|
@property
|
40
44
|
@pulumi.getter(name="dashboardId")
|
41
45
|
def dashboard_id(self) -> pulumi.Input[str]:
|
46
|
+
"""
|
47
|
+
Dashboard ID
|
48
|
+
"""
|
42
49
|
return pulumi.get(self, "dashboard_id")
|
43
50
|
|
44
51
|
@dashboard_id.setter
|
@@ -48,6 +55,9 @@ class AlertAlertTriageDashboardArgs:
|
|
48
55
|
@property
|
49
56
|
@pulumi.getter
|
50
57
|
def description(self) -> pulumi.Input[str]:
|
58
|
+
"""
|
59
|
+
Dashboard Description
|
60
|
+
"""
|
51
61
|
return pulumi.get(self, "description")
|
52
62
|
|
53
63
|
@description.setter
|
pulumi_wavefront/_utilities.py
CHANGED
@@ -8,7 +8,6 @@ import importlib.util
|
|
8
8
|
import inspect
|
9
9
|
import json
|
10
10
|
import os
|
11
|
-
import pkg_resources
|
12
11
|
import sys
|
13
12
|
import typing
|
14
13
|
|
@@ -19,6 +18,11 @@ from pulumi.runtime.sync_await import _sync_await
|
|
19
18
|
from semver import VersionInfo as SemverVersion
|
20
19
|
from parver import Version as PEP440Version
|
21
20
|
|
21
|
+
if sys.version_info >= (3, 8):
|
22
|
+
from importlib import metadata
|
23
|
+
else:
|
24
|
+
import importlib_metadata as metadata
|
25
|
+
|
22
26
|
|
23
27
|
def get_env(*args):
|
24
28
|
for v in args:
|
@@ -72,7 +76,7 @@ def _get_semver_version():
|
|
72
76
|
# to receive a valid semver string when receiving requests from the language host, so it's our
|
73
77
|
# responsibility as the library to convert our own PEP440 version into a valid semver string.
|
74
78
|
|
75
|
-
pep440_version_string =
|
79
|
+
pep440_version_string = metadata.version(root_package)
|
76
80
|
pep440_version = PEP440Version.parse(pep440_version_string)
|
77
81
|
(major, minor, patch) = pep440_version.release
|
78
82
|
prerelease = None
|
pulumi_wavefront/outputs.py
CHANGED
@@ -80,6 +80,10 @@ class AlertAlertTriageDashboard(dict):
|
|
80
80
|
dashboard_id: str,
|
81
81
|
description: str,
|
82
82
|
parameters: Optional['outputs.AlertAlertTriageDashboardParameters'] = None):
|
83
|
+
"""
|
84
|
+
:param str dashboard_id: Dashboard ID
|
85
|
+
:param str description: Dashboard Description
|
86
|
+
"""
|
83
87
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
84
88
|
pulumi.set(__self__, "description", description)
|
85
89
|
if parameters is not None:
|
@@ -88,11 +92,17 @@ class AlertAlertTriageDashboard(dict):
|
|
88
92
|
@property
|
89
93
|
@pulumi.getter(name="dashboardId")
|
90
94
|
def dashboard_id(self) -> str:
|
95
|
+
"""
|
96
|
+
Dashboard ID
|
97
|
+
"""
|
91
98
|
return pulumi.get(self, "dashboard_id")
|
92
99
|
|
93
100
|
@property
|
94
101
|
@pulumi.getter
|
95
102
|
def description(self) -> str:
|
103
|
+
"""
|
104
|
+
Dashboard Description
|
105
|
+
"""
|
96
106
|
return pulumi.get(self, "description")
|
97
107
|
|
98
108
|
@property
|
@@ -1663,6 +1673,10 @@ class GetAlertAlertTriageDashboardResult(dict):
|
|
1663
1673
|
dashboard_id: str,
|
1664
1674
|
description: str,
|
1665
1675
|
parameters: Optional['outputs.GetAlertAlertTriageDashboardParametersResult'] = None):
|
1676
|
+
"""
|
1677
|
+
:param str dashboard_id: Dashboard ID
|
1678
|
+
:param str description: Dashboard Description
|
1679
|
+
"""
|
1666
1680
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
1667
1681
|
pulumi.set(__self__, "description", description)
|
1668
1682
|
if parameters is not None:
|
@@ -1671,11 +1685,17 @@ class GetAlertAlertTriageDashboardResult(dict):
|
|
1671
1685
|
@property
|
1672
1686
|
@pulumi.getter(name="dashboardId")
|
1673
1687
|
def dashboard_id(self) -> str:
|
1688
|
+
"""
|
1689
|
+
Dashboard ID
|
1690
|
+
"""
|
1674
1691
|
return pulumi.get(self, "dashboard_id")
|
1675
1692
|
|
1676
1693
|
@property
|
1677
1694
|
@pulumi.getter
|
1678
1695
|
def description(self) -> str:
|
1696
|
+
"""
|
1697
|
+
Dashboard Description
|
1698
|
+
"""
|
1679
1699
|
return pulumi.get(self, "description")
|
1680
1700
|
|
1681
1701
|
@property
|
@@ -2020,6 +2040,10 @@ class GetAlertsAlertAlertTriageDashboardResult(dict):
|
|
2020
2040
|
dashboard_id: str,
|
2021
2041
|
description: str,
|
2022
2042
|
parameters: Optional['outputs.GetAlertsAlertAlertTriageDashboardParametersResult'] = None):
|
2043
|
+
"""
|
2044
|
+
:param str dashboard_id: Dashboard ID
|
2045
|
+
:param str description: Dashboard Description
|
2046
|
+
"""
|
2023
2047
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
2024
2048
|
pulumi.set(__self__, "description", description)
|
2025
2049
|
if parameters is not None:
|
@@ -2028,11 +2052,17 @@ class GetAlertsAlertAlertTriageDashboardResult(dict):
|
|
2028
2052
|
@property
|
2029
2053
|
@pulumi.getter(name="dashboardId")
|
2030
2054
|
def dashboard_id(self) -> str:
|
2055
|
+
"""
|
2056
|
+
Dashboard ID
|
2057
|
+
"""
|
2031
2058
|
return pulumi.get(self, "dashboard_id")
|
2032
2059
|
|
2033
2060
|
@property
|
2034
2061
|
@pulumi.getter
|
2035
2062
|
def description(self) -> str:
|
2063
|
+
"""
|
2064
|
+
Dashboard Description
|
2065
|
+
"""
|
2036
2066
|
return pulumi.get(self, "description")
|
2037
2067
|
|
2038
2068
|
@property
|
{pulumi_wavefront-3.2.0a1706750552.dist-info → pulumi_wavefront-3.2.0a1706831706.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_wavefront
|
3
|
-
Version: 3.2.
|
3
|
+
Version: 3.2.0a1706831706
|
4
4
|
Summary: A Pulumi package for creating and managing wavefront cloud resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
@@ -11,6 +11,7 @@ Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
12
12
|
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
13
13
|
Requires-Dist: semver >=2.8.1
|
14
|
+
Requires-Dist: importlib-metadata <7.0.0,>=6.0.0 ; python_version < "3.8"
|
14
15
|
|
15
16
|
[](https://github.com/pulumi/pulumi-wavefront/actions)
|
16
17
|
[](https://slack.pulumi.com)
|
{pulumi_wavefront-3.2.0a1706750552.dist-info → pulumi_wavefront-3.2.0a1706831706.dist-info}/RECORD
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
pulumi_wavefront/__init__.py,sha256=GzcOZqBCXeYt4sDA_t2C2l5NHhs3DEqcURTuQYA73r4,6689
|
2
|
-
pulumi_wavefront/_inputs.py,sha256=
|
3
|
-
pulumi_wavefront/_utilities.py,sha256=
|
2
|
+
pulumi_wavefront/_inputs.py,sha256=NEbInNw68o-K4j0lF-KdJoi7-jIzLGrATYgxk2epxTA,81066
|
3
|
+
pulumi_wavefront/_utilities.py,sha256=jMbim532bPc1u3rZevJSaM4zw6tbQPf2c85Dkyq_7_g,9327
|
4
4
|
pulumi_wavefront/alert.py,sha256=GC2_eT7e-VMTh2VmB2fABj9-q89TUS3P4BMH4vWgiyc,55200
|
5
5
|
pulumi_wavefront/alert_target.py,sha256=LMDSEeG4sBgCx5Wp53kl1WnM_Z-Na4rtr4OHc6zzadw,33153
|
6
6
|
pulumi_wavefront/cloud_integration_app_dynamics.py,sha256=qZzuaWW0fjQ6Jp9MZeXbEu2Ne_nn9chRmUK2dlSNIDQ,46807
|
@@ -41,7 +41,7 @@ pulumi_wavefront/get_users.py,sha256=r0mRLbGIDUmddgZPF62bcYdCgyNwrVDiLux672E97Fk
|
|
41
41
|
pulumi_wavefront/ingestion_policy.py,sha256=cj952t3qZziSZc5U-7zpLIsaFuc-On4zFomXxfsY160,17077
|
42
42
|
pulumi_wavefront/maintenance_window.py,sha256=TRUsNBjJe5QDNcCS0Yx8IgGNnnQg_xpnRZ7F1d1XYl0,34484
|
43
43
|
pulumi_wavefront/metrics_policy.py,sha256=8Nr3XXhqR5o_pEUQZTC1K63m4UfnpIHS8vjqKsSaQTA,12927
|
44
|
-
pulumi_wavefront/outputs.py,sha256=
|
44
|
+
pulumi_wavefront/outputs.py,sha256=5GCzNAB5Mygso2jqdGP2Ik64DieHEs9T_PmMPH6E4ZM,217889
|
45
45
|
pulumi_wavefront/provider.py,sha256=McJomvmXAM64Cs_1TyQmUBDHnEOgJtmEXszmWqj6P3w,5652
|
46
46
|
pulumi_wavefront/pulumi-plugin.json,sha256=gT6Ds8KvTrlGY8HxD-gLJZYvOi2lo-g5bg74zWFCZxE,46
|
47
47
|
pulumi_wavefront/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -52,7 +52,7 @@ pulumi_wavefront/user_group.py,sha256=YEZ6HF7sRkHzOinvRfUUSG2Mm3BGA0DMaQy6A0wO9j
|
|
52
52
|
pulumi_wavefront/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
53
53
|
pulumi_wavefront/config/__init__.pyi,sha256=d2VUcPrbCK4iSf8oWPkl-TIq_T5OF3b5aQBtCM7CSjE,417
|
54
54
|
pulumi_wavefront/config/vars.py,sha256=FLpRg92qDNv_ERp4Re35vq8ik9UWlBjEXBaB1vTwfMQ,733
|
55
|
-
pulumi_wavefront-3.2.
|
56
|
-
pulumi_wavefront-3.2.
|
57
|
-
pulumi_wavefront-3.2.
|
58
|
-
pulumi_wavefront-3.2.
|
55
|
+
pulumi_wavefront-3.2.0a1706831706.dist-info/METADATA,sha256=EemYJu97LVAAWPEiur-iZJbysf733gX37VbhWYmWwns,2967
|
56
|
+
pulumi_wavefront-3.2.0a1706831706.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
57
|
+
pulumi_wavefront-3.2.0a1706831706.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
|
58
|
+
pulumi_wavefront-3.2.0a1706831706.dist-info/RECORD,,
|
{pulumi_wavefront-3.2.0a1706750552.dist-info → pulumi_wavefront-3.2.0a1706831706.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|