pulumi-wavefront 3.1.0a1704217862__py3-none-any.whl → 3.1.1__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.
Files changed (50) hide show
  1. pulumi_wavefront/_inputs.py +68 -0
  2. pulumi_wavefront/_utilities.py +2 -2
  3. pulumi_wavefront/alert.py +102 -2
  4. pulumi_wavefront/alert_target.py +6 -2
  5. pulumi_wavefront/cloud_integration_app_dynamics.py +6 -2
  6. pulumi_wavefront/cloud_integration_aws_external_id.py +6 -2
  7. pulumi_wavefront/cloud_integration_azure.py +6 -2
  8. pulumi_wavefront/cloud_integration_azure_activity_log.py +6 -2
  9. pulumi_wavefront/cloud_integration_cloud_trail.py +6 -2
  10. pulumi_wavefront/cloud_integration_cloud_watch.py +6 -2
  11. pulumi_wavefront/cloud_integration_ec2.py +6 -2
  12. pulumi_wavefront/cloud_integration_gcp.py +6 -2
  13. pulumi_wavefront/cloud_integration_gcp_billing.py +6 -2
  14. pulumi_wavefront/cloud_integration_new_relic.py +6 -2
  15. pulumi_wavefront/dashboard.py +2 -2
  16. pulumi_wavefront/dashboard_json.py +6 -2
  17. pulumi_wavefront/derived_metric.py +6 -2
  18. pulumi_wavefront/event.py +6 -2
  19. pulumi_wavefront/external_link.py +6 -2
  20. pulumi_wavefront/get_alert.py +31 -1
  21. pulumi_wavefront/get_alerts.py +4 -0
  22. pulumi_wavefront/get_dashboard.py +4 -0
  23. pulumi_wavefront/get_dashboards.py +4 -0
  24. pulumi_wavefront/get_default_user_group.py +4 -0
  25. pulumi_wavefront/get_derived_metric.py +4 -0
  26. pulumi_wavefront/get_derived_metrics.py +4 -0
  27. pulumi_wavefront/get_event.py +4 -0
  28. pulumi_wavefront/get_events.py +4 -0
  29. pulumi_wavefront/get_external_link.py +4 -0
  30. pulumi_wavefront/get_external_links.py +4 -0
  31. pulumi_wavefront/get_maintenance_window.py +4 -0
  32. pulumi_wavefront/get_role.py +4 -0
  33. pulumi_wavefront/get_roles.py +4 -0
  34. pulumi_wavefront/get_user.py +4 -0
  35. pulumi_wavefront/get_user_group.py +4 -0
  36. pulumi_wavefront/get_user_groups.py +4 -0
  37. pulumi_wavefront/get_users.py +4 -0
  38. pulumi_wavefront/ingestion_policy.py +6 -2
  39. pulumi_wavefront/maintenance_window.py +6 -2
  40. pulumi_wavefront/metrics_policy.py +12 -2
  41. pulumi_wavefront/outputs.py +195 -0
  42. pulumi_wavefront/role.py +6 -2
  43. pulumi_wavefront/service_account.py +6 -2
  44. pulumi_wavefront/user.py +6 -2
  45. pulumi_wavefront/user_group.py +6 -2
  46. {pulumi_wavefront-3.1.0a1704217862.dist-info → pulumi_wavefront-3.1.1.dist-info}/METADATA +2 -2
  47. pulumi_wavefront-3.1.1.dist-info/RECORD +58 -0
  48. pulumi_wavefront-3.1.0a1704217862.dist-info/RECORD +0 -58
  49. {pulumi_wavefront-3.1.0a1704217862.dist-info → pulumi_wavefront-3.1.1.dist-info}/WHEEL +0 -0
  50. {pulumi_wavefront-3.1.0a1704217862.dist-info → pulumi_wavefront-3.1.1.dist-info}/top_level.txt +0 -0
@@ -120,6 +120,7 @@ class MetricsPolicy(pulumi.CustomResource):
120
120
 
121
121
  ## Example Usage
122
122
 
123
+ <!--Start PulumiCodeChooser -->
123
124
  ```python
124
125
  import pulumi
125
126
  import pulumi_wavefront as wavefront
@@ -134,12 +135,15 @@ class MetricsPolicy(pulumi.CustomResource):
134
135
  user_group_ids=[everyone.group_id],
135
136
  )])
136
137
  ```
138
+ <!--End PulumiCodeChooser -->
139
+
137
140
  ## Data Source
138
141
 
139
142
  Provides a Wavefront Metrics Policy Data Source. This allows looking up the current policy and associated rules.
140
143
 
141
144
  ### Example
142
145
 
146
+ <!--Start PulumiCodeChooser -->
143
147
  ```python
144
148
  import pulumi
145
149
  import pulumi_wavefront as wavefront
@@ -147,13 +151,14 @@ class MetricsPolicy(pulumi.CustomResource):
147
151
  policy_metrics_policy = wavefront.get_metrics_policy()
148
152
  pulumi.export("policy", policy_metrics_policy)
149
153
  ```
154
+ <!--End PulumiCodeChooser -->
150
155
 
151
156
  ## Import
152
157
 
153
158
  Users can be imported by using the `updated_epoch_millis`, e.g.:
154
159
 
155
160
  ```sh
156
- $ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
161
+ $ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
157
162
  ```
158
163
 
159
164
  :param str resource_name: The name of the resource.
@@ -171,6 +176,7 @@ class MetricsPolicy(pulumi.CustomResource):
171
176
 
172
177
  ## Example Usage
173
178
 
179
+ <!--Start PulumiCodeChooser -->
174
180
  ```python
175
181
  import pulumi
176
182
  import pulumi_wavefront as wavefront
@@ -185,12 +191,15 @@ class MetricsPolicy(pulumi.CustomResource):
185
191
  user_group_ids=[everyone.group_id],
186
192
  )])
187
193
  ```
194
+ <!--End PulumiCodeChooser -->
195
+
188
196
  ## Data Source
189
197
 
190
198
  Provides a Wavefront Metrics Policy Data Source. This allows looking up the current policy and associated rules.
191
199
 
192
200
  ### Example
193
201
 
202
+ <!--Start PulumiCodeChooser -->
194
203
  ```python
195
204
  import pulumi
196
205
  import pulumi_wavefront as wavefront
@@ -198,13 +207,14 @@ class MetricsPolicy(pulumi.CustomResource):
198
207
  policy_metrics_policy = wavefront.get_metrics_policy()
199
208
  pulumi.export("policy", policy_metrics_policy)
200
209
  ```
210
+ <!--End PulumiCodeChooser -->
201
211
 
202
212
  ## Import
203
213
 
204
214
  Users can be imported by using the `updated_epoch_millis`, e.g.:
205
215
 
206
216
  ```sh
207
- $ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
217
+ $ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
208
218
  ```
209
219
 
210
220
  :param str resource_name: The name of the resource.
@@ -11,6 +11,8 @@ from . import _utilities
11
11
  from . import outputs
12
12
 
13
13
  __all__ = [
14
+ 'AlertAlertTriageDashboard',
15
+ 'AlertAlertTriageDashboardParameters',
14
16
  'AlertTargetRoute',
15
17
  'CloudIntegrationNewRelicMetricFilter',
16
18
  'DashboardParameterDetail',
@@ -22,9 +24,13 @@ __all__ = [
22
24
  'IngestionPolicyTag',
23
25
  'MetricsPolicyPolicyRule',
24
26
  'MetricsPolicyPolicyRuleTag',
27
+ 'GetAlertAlertTriageDashboardResult',
28
+ 'GetAlertAlertTriageDashboardParametersResult',
25
29
  'GetAlertFailingHostLabelPairResult',
26
30
  'GetAlertInMaintenanceHostLabelPairResult',
27
31
  'GetAlertsAlertResult',
32
+ 'GetAlertsAlertAlertTriageDashboardResult',
33
+ 'GetAlertsAlertAlertTriageDashboardParametersResult',
28
34
  'GetAlertsAlertFailingHostLabelPairResult',
29
35
  'GetAlertsAlertInMaintenanceHostLabelPairResult',
30
36
  'GetDashboardParameterDetailResult',
@@ -51,6 +57,73 @@ __all__ = [
51
57
  'GetUsersUserResult',
52
58
  ]
53
59
 
60
+ @pulumi.output_type
61
+ class AlertAlertTriageDashboard(dict):
62
+ @staticmethod
63
+ def __key_warning(key: str):
64
+ suggest = None
65
+ if key == "dashboardId":
66
+ suggest = "dashboard_id"
67
+
68
+ if suggest:
69
+ pulumi.log.warn(f"Key '{key}' not found in AlertAlertTriageDashboard. Access the value via the '{suggest}' property getter instead.")
70
+
71
+ def __getitem__(self, key: str) -> Any:
72
+ AlertAlertTriageDashboard.__key_warning(key)
73
+ return super().__getitem__(key)
74
+
75
+ def get(self, key: str, default = None) -> Any:
76
+ AlertAlertTriageDashboard.__key_warning(key)
77
+ return super().get(key, default)
78
+
79
+ def __init__(__self__, *,
80
+ dashboard_id: str,
81
+ description: str,
82
+ parameters: Optional['outputs.AlertAlertTriageDashboardParameters'] = None):
83
+ """
84
+ :param str dashboard_id: Dashboard ID
85
+ :param str description: Dashboard Description
86
+ """
87
+ pulumi.set(__self__, "dashboard_id", dashboard_id)
88
+ pulumi.set(__self__, "description", description)
89
+ if parameters is not None:
90
+ pulumi.set(__self__, "parameters", parameters)
91
+
92
+ @property
93
+ @pulumi.getter(name="dashboardId")
94
+ def dashboard_id(self) -> str:
95
+ """
96
+ Dashboard ID
97
+ """
98
+ return pulumi.get(self, "dashboard_id")
99
+
100
+ @property
101
+ @pulumi.getter
102
+ def description(self) -> str:
103
+ """
104
+ Dashboard Description
105
+ """
106
+ return pulumi.get(self, "description")
107
+
108
+ @property
109
+ @pulumi.getter
110
+ def parameters(self) -> Optional['outputs.AlertAlertTriageDashboardParameters']:
111
+ return pulumi.get(self, "parameters")
112
+
113
+
114
+ @pulumi.output_type
115
+ class AlertAlertTriageDashboardParameters(dict):
116
+ def __init__(__self__, *,
117
+ constants: Optional[Mapping[str, Any]] = None):
118
+ if constants is not None:
119
+ pulumi.set(__self__, "constants", constants)
120
+
121
+ @property
122
+ @pulumi.getter
123
+ def constants(self) -> Optional[Mapping[str, Any]]:
124
+ return pulumi.get(self, "constants")
125
+
126
+
54
127
  @pulumi.output_type
55
128
  class AlertTargetRoute(dict):
56
129
  def __init__(__self__, *,
@@ -1594,6 +1667,56 @@ class MetricsPolicyPolicyRuleTag(dict):
1594
1667
  return pulumi.get(self, "value")
1595
1668
 
1596
1669
 
1670
+ @pulumi.output_type
1671
+ class GetAlertAlertTriageDashboardResult(dict):
1672
+ def __init__(__self__, *,
1673
+ dashboard_id: str,
1674
+ description: str,
1675
+ parameters: Optional['outputs.GetAlertAlertTriageDashboardParametersResult'] = None):
1676
+ """
1677
+ :param str dashboard_id: Dashboard ID
1678
+ :param str description: Dashboard Description
1679
+ """
1680
+ pulumi.set(__self__, "dashboard_id", dashboard_id)
1681
+ pulumi.set(__self__, "description", description)
1682
+ if parameters is not None:
1683
+ pulumi.set(__self__, "parameters", parameters)
1684
+
1685
+ @property
1686
+ @pulumi.getter(name="dashboardId")
1687
+ def dashboard_id(self) -> str:
1688
+ """
1689
+ Dashboard ID
1690
+ """
1691
+ return pulumi.get(self, "dashboard_id")
1692
+
1693
+ @property
1694
+ @pulumi.getter
1695
+ def description(self) -> str:
1696
+ """
1697
+ Dashboard Description
1698
+ """
1699
+ return pulumi.get(self, "description")
1700
+
1701
+ @property
1702
+ @pulumi.getter
1703
+ def parameters(self) -> Optional['outputs.GetAlertAlertTriageDashboardParametersResult']:
1704
+ return pulumi.get(self, "parameters")
1705
+
1706
+
1707
+ @pulumi.output_type
1708
+ class GetAlertAlertTriageDashboardParametersResult(dict):
1709
+ def __init__(__self__, *,
1710
+ constants: Optional[Mapping[str, Any]] = None):
1711
+ if constants is not None:
1712
+ pulumi.set(__self__, "constants", constants)
1713
+
1714
+ @property
1715
+ @pulumi.getter
1716
+ def constants(self) -> Optional[Mapping[str, Any]]:
1717
+ return pulumi.get(self, "constants")
1718
+
1719
+
1597
1720
  @pulumi.output_type
1598
1721
  class GetAlertFailingHostLabelPairResult(dict):
1599
1722
  def __init__(__self__, *,
@@ -1636,6 +1759,7 @@ class GetAlertInMaintenanceHostLabelPairResult(dict):
1636
1759
  class GetAlertsAlertResult(dict):
1637
1760
  def __init__(__self__, *,
1638
1761
  additional_information: str,
1762
+ alert_triage_dashboards: Sequence['outputs.GetAlertsAlertAlertTriageDashboardResult'],
1639
1763
  alert_type: str,
1640
1764
  can_modifies: Sequence[str],
1641
1765
  can_views: Sequence[str],
@@ -1652,6 +1776,7 @@ class GetAlertsAlertResult(dict):
1652
1776
  notification_resend_frequency_minutes: int,
1653
1777
  process_rate_minutes: int,
1654
1778
  resolve_after_minutes: int,
1779
+ runbook_links: Sequence[str],
1655
1780
  severity: str,
1656
1781
  severity_lists: Sequence[str],
1657
1782
  statuses: Sequence[str],
@@ -1660,6 +1785,7 @@ class GetAlertsAlertResult(dict):
1660
1785
  targets: Optional[Mapping[str, str]] = None):
1661
1786
  """
1662
1787
  :param str additional_information: User-supplied additional explanatory information about this alert.
1788
+ :param Sequence['GetAlertsAlertAlertTriageDashboardArgs'] alert_triage_dashboards: A set of user-supplied dashboard and parameters to create dashboard links for triaging alerts.
1663
1789
  :param str alert_type: The type of alert in Wavefront.
1664
1790
  :param Sequence[str] can_modifies: A list of users or groups that can modify the alert.
1665
1791
  :param Sequence[str] can_views: A list of users or groups that can view the alert.
@@ -1676,6 +1802,7 @@ class GetAlertsAlertResult(dict):
1676
1802
  :param int notification_resend_frequency_minutes: How often to re-trigger a continually failing alert.
1677
1803
  :param int process_rate_minutes: The specified query is executed every `process_rate_minutes` minutes.
1678
1804
  :param int resolve_after_minutes: The number of consecutive minutes that a firing series matching the condition query must evaluate to "false" (zero value) before the alert resolves.
1805
+ :param Sequence[str] runbook_links: A list of user-supplied runbook links for this alert.
1679
1806
  :param str severity: The severity of the alert.
1680
1807
  :param Sequence[str] statuses: The status of the alert.
1681
1808
  :param Sequence[str] tags: A set of tags assigned to the alert.
@@ -1683,6 +1810,7 @@ class GetAlertsAlertResult(dict):
1683
1810
  :param Mapping[str, str] targets: A comma-separated list of the email addresses or integration endpoints (such as PagerDuty or webhook) to notify when the alert status changes. Multiple target types can be in the list.
1684
1811
  """
1685
1812
  pulumi.set(__self__, "additional_information", additional_information)
1813
+ pulumi.set(__self__, "alert_triage_dashboards", alert_triage_dashboards)
1686
1814
  pulumi.set(__self__, "alert_type", alert_type)
1687
1815
  pulumi.set(__self__, "can_modifies", can_modifies)
1688
1816
  pulumi.set(__self__, "can_views", can_views)
@@ -1699,6 +1827,7 @@ class GetAlertsAlertResult(dict):
1699
1827
  pulumi.set(__self__, "notification_resend_frequency_minutes", notification_resend_frequency_minutes)
1700
1828
  pulumi.set(__self__, "process_rate_minutes", process_rate_minutes)
1701
1829
  pulumi.set(__self__, "resolve_after_minutes", resolve_after_minutes)
1830
+ pulumi.set(__self__, "runbook_links", runbook_links)
1702
1831
  pulumi.set(__self__, "severity", severity)
1703
1832
  pulumi.set(__self__, "severity_lists", severity_lists)
1704
1833
  pulumi.set(__self__, "statuses", statuses)
@@ -1715,6 +1844,14 @@ class GetAlertsAlertResult(dict):
1715
1844
  """
1716
1845
  return pulumi.get(self, "additional_information")
1717
1846
 
1847
+ @property
1848
+ @pulumi.getter(name="alertTriageDashboards")
1849
+ def alert_triage_dashboards(self) -> Sequence['outputs.GetAlertsAlertAlertTriageDashboardResult']:
1850
+ """
1851
+ A set of user-supplied dashboard and parameters to create dashboard links for triaging alerts.
1852
+ """
1853
+ return pulumi.get(self, "alert_triage_dashboards")
1854
+
1718
1855
  @property
1719
1856
  @pulumi.getter(name="alertType")
1720
1857
  def alert_type(self) -> str:
@@ -1843,6 +1980,14 @@ class GetAlertsAlertResult(dict):
1843
1980
  """
1844
1981
  return pulumi.get(self, "resolve_after_minutes")
1845
1982
 
1983
+ @property
1984
+ @pulumi.getter(name="runbookLinks")
1985
+ def runbook_links(self) -> Sequence[str]:
1986
+ """
1987
+ A list of user-supplied runbook links for this alert.
1988
+ """
1989
+ return pulumi.get(self, "runbook_links")
1990
+
1846
1991
  @property
1847
1992
  @pulumi.getter
1848
1993
  def severity(self) -> str:
@@ -1889,6 +2034,56 @@ class GetAlertsAlertResult(dict):
1889
2034
  return pulumi.get(self, "targets")
1890
2035
 
1891
2036
 
2037
+ @pulumi.output_type
2038
+ class GetAlertsAlertAlertTriageDashboardResult(dict):
2039
+ def __init__(__self__, *,
2040
+ dashboard_id: str,
2041
+ description: str,
2042
+ parameters: Optional['outputs.GetAlertsAlertAlertTriageDashboardParametersResult'] = None):
2043
+ """
2044
+ :param str dashboard_id: Dashboard ID
2045
+ :param str description: Dashboard Description
2046
+ """
2047
+ pulumi.set(__self__, "dashboard_id", dashboard_id)
2048
+ pulumi.set(__self__, "description", description)
2049
+ if parameters is not None:
2050
+ pulumi.set(__self__, "parameters", parameters)
2051
+
2052
+ @property
2053
+ @pulumi.getter(name="dashboardId")
2054
+ def dashboard_id(self) -> str:
2055
+ """
2056
+ Dashboard ID
2057
+ """
2058
+ return pulumi.get(self, "dashboard_id")
2059
+
2060
+ @property
2061
+ @pulumi.getter
2062
+ def description(self) -> str:
2063
+ """
2064
+ Dashboard Description
2065
+ """
2066
+ return pulumi.get(self, "description")
2067
+
2068
+ @property
2069
+ @pulumi.getter
2070
+ def parameters(self) -> Optional['outputs.GetAlertsAlertAlertTriageDashboardParametersResult']:
2071
+ return pulumi.get(self, "parameters")
2072
+
2073
+
2074
+ @pulumi.output_type
2075
+ class GetAlertsAlertAlertTriageDashboardParametersResult(dict):
2076
+ def __init__(__self__, *,
2077
+ constants: Optional[Mapping[str, Any]] = None):
2078
+ if constants is not None:
2079
+ pulumi.set(__self__, "constants", constants)
2080
+
2081
+ @property
2082
+ @pulumi.getter
2083
+ def constants(self) -> Optional[Mapping[str, Any]]:
2084
+ return pulumi.get(self, "constants")
2085
+
2086
+
1892
2087
  @pulumi.output_type
1893
2088
  class GetAlertsAlertFailingHostLabelPairResult(dict):
1894
2089
  def __init__(__self__, *,
pulumi_wavefront/role.py CHANGED
@@ -178,19 +178,21 @@ class Role(pulumi.CustomResource):
178
178
 
179
179
  ## Example Usage
180
180
 
181
+ <!--Start PulumiCodeChooser -->
181
182
  ```python
182
183
  import pulumi
183
184
  import pulumi_wavefront as wavefront
184
185
 
185
186
  role = wavefront.Role("role")
186
187
  ```
188
+ <!--End PulumiCodeChooser -->
187
189
 
188
190
  ## Import
189
191
 
190
192
  Roles can be imported by using the `id`, e.g.:
191
193
 
192
194
  ```sh
193
- $ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
195
+ $ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
194
196
  ```
195
197
 
196
198
  :param str resource_name: The name of the resource.
@@ -213,19 +215,21 @@ class Role(pulumi.CustomResource):
213
215
 
214
216
  ## Example Usage
215
217
 
218
+ <!--Start PulumiCodeChooser -->
216
219
  ```python
217
220
  import pulumi
218
221
  import pulumi_wavefront as wavefront
219
222
 
220
223
  role = wavefront.Role("role")
221
224
  ```
225
+ <!--End PulumiCodeChooser -->
222
226
 
223
227
  ## Import
224
228
 
225
229
  Roles can be imported by using the `id`, e.g.:
226
230
 
227
231
  ```sh
228
- $ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
232
+ $ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
229
233
  ```
230
234
 
231
235
  :param str resource_name: The name of the resource.
@@ -243,6 +243,7 @@ class ServiceAccount(pulumi.CustomResource):
243
243
 
244
244
  ## Example Usage
245
245
 
246
+ <!--Start PulumiCodeChooser -->
246
247
  ```python
247
248
  import pulumi
248
249
  import pulumi_wavefront as wavefront
@@ -251,13 +252,14 @@ class ServiceAccount(pulumi.CustomResource):
251
252
  active=True,
252
253
  identifier="sa::tftesting")
253
254
  ```
255
+ <!--End PulumiCodeChooser -->
254
256
 
255
257
  ## Import
256
258
 
257
259
  Service accounts can be imported by using `identifier`, e.g.:
258
260
 
259
261
  ```sh
260
- $ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
262
+ $ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
261
263
  ```
262
264
 
263
265
  :param str resource_name: The name of the resource.
@@ -282,6 +284,7 @@ class ServiceAccount(pulumi.CustomResource):
282
284
 
283
285
  ## Example Usage
284
286
 
287
+ <!--Start PulumiCodeChooser -->
285
288
  ```python
286
289
  import pulumi
287
290
  import pulumi_wavefront as wavefront
@@ -290,13 +293,14 @@ class ServiceAccount(pulumi.CustomResource):
290
293
  active=True,
291
294
  identifier="sa::tftesting")
292
295
  ```
296
+ <!--End PulumiCodeChooser -->
293
297
 
294
298
  ## Import
295
299
 
296
300
  Service accounts can be imported by using `identifier`, e.g.:
297
301
 
298
302
  ```sh
299
- $ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
303
+ $ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
300
304
  ```
301
305
 
302
306
  :param str resource_name: The name of the resource.
pulumi_wavefront/user.py CHANGED
@@ -177,19 +177,21 @@ class User(pulumi.CustomResource):
177
177
 
178
178
  ## Example Usage
179
179
 
180
+ <!--Start PulumiCodeChooser -->
180
181
  ```python
181
182
  import pulumi
182
183
  import pulumi_wavefront as wavefront
183
184
 
184
185
  basic = wavefront.User("basic", email="test+tftesting@example.com")
185
186
  ```
187
+ <!--End PulumiCodeChooser -->
186
188
 
187
189
  ## Import
188
190
 
189
191
  Users can be imported by using the `id`, e.g.:
190
192
 
191
193
  ```sh
192
- $ pulumi import wavefront:index/user:User some_user test@example.com
194
+ $ pulumi import wavefront:index/user:User some_user test@example.com
193
195
  ```
194
196
 
195
197
  :param str resource_name: The name of the resource.
@@ -212,19 +214,21 @@ class User(pulumi.CustomResource):
212
214
 
213
215
  ## Example Usage
214
216
 
217
+ <!--Start PulumiCodeChooser -->
215
218
  ```python
216
219
  import pulumi
217
220
  import pulumi_wavefront as wavefront
218
221
 
219
222
  basic = wavefront.User("basic", email="test+tftesting@example.com")
220
223
  ```
224
+ <!--End PulumiCodeChooser -->
221
225
 
222
226
  ## Import
223
227
 
224
228
  Users can be imported by using the `id`, e.g.:
225
229
 
226
230
  ```sh
227
- $ pulumi import wavefront:index/user:User some_user test@example.com
231
+ $ pulumi import wavefront:index/user:User some_user test@example.com
228
232
  ```
229
233
 
230
234
  :param str resource_name: The name of the resource.
@@ -103,19 +103,21 @@ class UserGroup(pulumi.CustomResource):
103
103
 
104
104
  ## Example Usage
105
105
 
106
+ <!--Start PulumiCodeChooser -->
106
107
  ```python
107
108
  import pulumi
108
109
  import pulumi_wavefront as wavefront
109
110
 
110
111
  basic = wavefront.UserGroup("basic", description="Basic User Group for Unit Tests")
111
112
  ```
113
+ <!--End PulumiCodeChooser -->
112
114
 
113
115
  ## Import
114
116
 
115
117
  User Groups can be imported by using the `id`, e.g.:
116
118
 
117
119
  ```sh
118
- $ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
120
+ $ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
119
121
  ```
120
122
 
121
123
  :param str resource_name: The name of the resource.
@@ -134,19 +136,21 @@ class UserGroup(pulumi.CustomResource):
134
136
 
135
137
  ## Example Usage
136
138
 
139
+ <!--Start PulumiCodeChooser -->
137
140
  ```python
138
141
  import pulumi
139
142
  import pulumi_wavefront as wavefront
140
143
 
141
144
  basic = wavefront.UserGroup("basic", description="Basic User Group for Unit Tests")
142
145
  ```
146
+ <!--End PulumiCodeChooser -->
143
147
 
144
148
  ## Import
145
149
 
146
150
  User Groups can be imported by using the `id`, e.g.:
147
151
 
148
152
  ```sh
149
- $ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
153
+ $ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
150
154
  ```
151
155
 
152
156
  :param str resource_name: The name of the resource.
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_wavefront
3
- Version: 3.1.0a1704217862
3
+ Version: 3.1.1
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
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-wavefront
8
8
  Keywords: pulumi,wavefront
9
- Requires-Python: >=3.7
9
+ Requires-Python: >=3.8
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver >=0.2.1
12
12
  Requires-Dist: pulumi <4.0.0,>=3.0.0
@@ -0,0 +1,58 @@
1
+ pulumi_wavefront/__init__.py,sha256=GzcOZqBCXeYt4sDA_t2C2l5NHhs3DEqcURTuQYA73r4,6689
2
+ pulumi_wavefront/_inputs.py,sha256=NEbInNw68o-K4j0lF-KdJoi7-jIzLGrATYgxk2epxTA,81066
3
+ pulumi_wavefront/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
+ pulumi_wavefront/alert.py,sha256=ykOxGoWAI-CLnbaZbwAZ20MLS6mOOXcB9kELhikjPBY,55354
5
+ pulumi_wavefront/alert_target.py,sha256=zeItKsFSViizmi_0dVFSv_lMnZ4vPNpACOye-UT2YKE,33307
6
+ pulumi_wavefront/cloud_integration_app_dynamics.py,sha256=6mfZDUZ_rf4h-d9b7Hf6C7lUXTj26M5lXjr3peDSs0o,46961
7
+ pulumi_wavefront/cloud_integration_aws_external_id.py,sha256=SGBeGqWnk9v4dd67na7WpyadV0kwMxMFeWFH4v03V2Y,5032
8
+ pulumi_wavefront/cloud_integration_azure.py,sha256=UNTXOsDqbKHuZ5YNoVwtv36Fea6k65d_T4LLkAnIT8U,30771
9
+ pulumi_wavefront/cloud_integration_azure_activity_log.py,sha256=cGXflNKbAEOwf30c3cFJJJdbIASarTMIeu-CMEv2oeo,26210
10
+ pulumi_wavefront/cloud_integration_cloud_trail.py,sha256=0Zee8LnEWGsTI1b4HU8mH_MowDf31ttKGfEvjxlgfgY,28989
11
+ pulumi_wavefront/cloud_integration_cloud_watch.py,sha256=kfKzYuDxhkTOi-C5mUNQF7SN-mUzUqEdd47x5Xpw-K0,36755
12
+ pulumi_wavefront/cloud_integration_ec2.py,sha256=Vl24w5QmvmaJ8q2mNXGFvXes-ID8Hbo1_9ihMihakYM,24249
13
+ pulumi_wavefront/cloud_integration_gcp.py,sha256=Xwoq-h0IbMmgs3F4Myvo-O9vyIyVTt1hTWD6S5e_s_0,29433
14
+ pulumi_wavefront/cloud_integration_gcp_billing.py,sha256=QV-NJCPtL4h8u4x8m3qpcOVMESWFZnWDsYdfqNWJe8Q,23850
15
+ pulumi_wavefront/cloud_integration_new_relic.py,sha256=qyWJUX1P6diq0OX6IaUkMJ40G4FV1WPktsobVWWwKyo,26370
16
+ pulumi_wavefront/dashboard.py,sha256=JbpEDW3RGMpgzrfiJ2OGufYfFcsgpfSITHtcgRaDiOE,31524
17
+ pulumi_wavefront/dashboard_json.py,sha256=9Q3wmP3gJZ8N3ALrhuVhOgAtrka6pfOn8g-fB5izg4Q,17455
18
+ pulumi_wavefront/derived_metric.py,sha256=H9DG3IZ_jQl9WDlke4gbr8lUTm_BNtvRs-Hc5zDXXmo,15185
19
+ pulumi_wavefront/event.py,sha256=u56I16VE4JXo8mzgCDsDEh7-ILBMdTlzs4nrFrdoSKI,14353
20
+ pulumi_wavefront/external_link.py,sha256=gaRPXQtaiVfrVTTRCO7tGsJwdB9iwQfiTPLOcl-C_UI,25134
21
+ pulumi_wavefront/get_alert.py,sha256=OrnPNRVSl4pFaaUbes9V2zCDcLMS1OKmiKM1vSz-QgY,17832
22
+ pulumi_wavefront/get_alerts.py,sha256=wyNv6mG-K4-Nu2AuTNl2Nu0fO8tAIii0equPyh4_JQU,4318
23
+ pulumi_wavefront/get_dashboard.py,sha256=ldW3jzTncH40IH0t0xI1IR65c2Pdit3A7eT3c6b_oHk,19926
24
+ pulumi_wavefront/get_dashboards.py,sha256=OyzZUVUeL5R3at_IBLcU_t4oEnJUiiF7mI_NPOUmWf8,4483
25
+ pulumi_wavefront/get_default_user_group.py,sha256=Cy21TGAPAd3W7gCOEzUabIaJOZO_HwXkAyfh6bqHlG0,3117
26
+ pulumi_wavefront/get_derived_metric.py,sha256=HyhuMDkXKtkBDvOsckSjFC1dZKgAwru1fXWXMvGP6L0,16001
27
+ pulumi_wavefront/get_derived_metrics.py,sha256=kDp1XgVFed24PV2yEKLonSzxwuVnPdpUF_8NifwlAI8,4704
28
+ pulumi_wavefront/get_event.py,sha256=fWYsbV9EPaFFUAku4SiuK4cHMkvGofAcxIOxvUfuI8I,6745
29
+ pulumi_wavefront/get_events.py,sha256=BSQylOtxhigBYNNYQoKEdCdIcDYSNbdBAs1mQAFnNLI,6928
30
+ pulumi_wavefront/get_external_link.py,sha256=2kWYYtYYbi35jPaCVSmedtcIMtSKgG36VGgbzB58ZIA,9760
31
+ pulumi_wavefront/get_external_links.py,sha256=k9ssm4jktne1i-0ofmr3mS_zeW9XVmH9N1CpHh_TWH0,4661
32
+ pulumi_wavefront/get_maintenance_window.py,sha256=LXk7vT6_bOctpS9r50fhCA7yY_fr80r_VboksVZi_Y4,14006
33
+ pulumi_wavefront/get_maintenance_window_all.py,sha256=XXmoPqWeQhHdz2e0a9G688j8Wt-rZ-0jDyPWPOGSuMQ,3882
34
+ pulumi_wavefront/get_metrics_policy.py,sha256=hqriAV5ubAMWGOU-z1VDU_bim6ovBhwJ_t5PNAOulsY,3921
35
+ pulumi_wavefront/get_role.py,sha256=N8oF2VeNWXy2HAQJNdhoslYZjqLDlvEgw5k4Px1-2-U,3958
36
+ pulumi_wavefront/get_roles.py,sha256=PKxsVRJEEAt6YnvqICbnOf51zCfQIkF0y2PTFZet1Ro,4186
37
+ pulumi_wavefront/get_user.py,sha256=VNZQ0sqSZdAeagfubh-fYSntjbWAk4MecYmZQsRns98,5188
38
+ pulumi_wavefront/get_user_group.py,sha256=p_DSjtDHcDnA9A-Zfk-LnA_ZQAduH_Otwwsq0oohU74,4480
39
+ pulumi_wavefront/get_user_groups.py,sha256=myLgVyW6HMFQIJiRjA97ukPBsS9mrHAgTCAyqbm96vU,4428
40
+ pulumi_wavefront/get_users.py,sha256=46zE_aXbIi2uxYHWuqK6-Cr2BMkqrqe7MlE1MbAZRyM,2721
41
+ pulumi_wavefront/ingestion_policy.py,sha256=XcypVrzIsrXTA2zdIyqlXC6hzoWYwKrGM9Dv5UD1ZKw,17231
42
+ pulumi_wavefront/maintenance_window.py,sha256=hQn62tszb5gfXe9l5ramXT4wD1ia2kt-9yGQSPS-Ee8,34638
43
+ pulumi_wavefront/metrics_policy.py,sha256=H-uQIsx-Qi_h9VhEp60eQlvUtNtWEcXPNhmmS_YtCmE,13239
44
+ pulumi_wavefront/outputs.py,sha256=5GCzNAB5Mygso2jqdGP2Ik64DieHEs9T_PmMPH6E4ZM,217889
45
+ pulumi_wavefront/provider.py,sha256=McJomvmXAM64Cs_1TyQmUBDHnEOgJtmEXszmWqj6P3w,5652
46
+ pulumi_wavefront/pulumi-plugin.json,sha256=gT6Ds8KvTrlGY8HxD-gLJZYvOi2lo-g5bg74zWFCZxE,46
47
+ pulumi_wavefront/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ pulumi_wavefront/role.py,sha256=uqQKGT6VR3j7z9yU5fBR7p12l64-c6b3li_IGqCCSlo,14141
49
+ pulumi_wavefront/service_account.py,sha256=y8hgkDcoO9TgWm88Ld_uD-oRiFKwccWi-KKB8NW-KPk,19110
50
+ pulumi_wavefront/user.py,sha256=lsKg8qm_tdiV4z_B_AwHDWZHiLpKQuK5C-fcW3gYtHI,14549
51
+ pulumi_wavefront/user_group.py,sha256=MUeXQaB4FO0UeX2GyHZZzeIa8q_jM00O3APYyZkEkcI,8291
52
+ pulumi_wavefront/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
53
+ pulumi_wavefront/config/__init__.pyi,sha256=d2VUcPrbCK4iSf8oWPkl-TIq_T5OF3b5aQBtCM7CSjE,417
54
+ pulumi_wavefront/config/vars.py,sha256=FLpRg92qDNv_ERp4Re35vq8ik9UWlBjEXBaB1vTwfMQ,733
55
+ pulumi_wavefront-3.1.1.dist-info/METADATA,sha256=GPjXbC4F0kwJW0KU1Hs4xbYS1MfzMa9URvfgb2Ijwcw,2882
56
+ pulumi_wavefront-3.1.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
57
+ pulumi_wavefront-3.1.1.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
58
+ pulumi_wavefront-3.1.1.dist-info/RECORD,,