pulumi-wavefront 3.2.0a1743576067__py3-none-any.whl → 3.2.0a1744183482__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/__init__.py +1 -0
- pulumi_wavefront/_inputs.py +501 -500
- pulumi_wavefront/alert.py +239 -238
- pulumi_wavefront/alert_target.py +148 -147
- pulumi_wavefront/cloud_integration_app_dynamics.py +239 -238
- pulumi_wavefront/cloud_integration_aws_external_id.py +1 -0
- pulumi_wavefront/cloud_integration_azure.py +155 -154
- pulumi_wavefront/cloud_integration_azure_activity_log.py +127 -126
- pulumi_wavefront/cloud_integration_cloud_trail.py +155 -154
- pulumi_wavefront/cloud_integration_cloud_watch.py +169 -168
- pulumi_wavefront/cloud_integration_ec2.py +113 -112
- pulumi_wavefront/cloud_integration_gcp.py +127 -126
- pulumi_wavefront/cloud_integration_gcp_billing.py +113 -112
- pulumi_wavefront/cloud_integration_new_relic.py +113 -112
- pulumi_wavefront/config/__init__.py +1 -0
- pulumi_wavefront/config/__init__.pyi +1 -0
- pulumi_wavefront/config/vars.py +1 -0
- pulumi_wavefront/dashboard.py +127 -126
- pulumi_wavefront/dashboard_json.py +15 -14
- pulumi_wavefront/derived_metric.py +71 -70
- pulumi_wavefront/event.py +67 -66
- pulumi_wavefront/external_link.py +99 -98
- pulumi_wavefront/get_alert.py +31 -30
- pulumi_wavefront/get_alerts.py +12 -11
- pulumi_wavefront/get_dashboard.py +38 -37
- pulumi_wavefront/get_dashboards.py +12 -11
- pulumi_wavefront/get_default_user_group.py +3 -2
- pulumi_wavefront/get_derived_metric.py +29 -28
- pulumi_wavefront/get_derived_metrics.py +12 -11
- pulumi_wavefront/get_event.py +15 -14
- pulumi_wavefront/get_events.py +22 -21
- pulumi_wavefront/get_external_link.py +17 -16
- pulumi_wavefront/get_external_links.py +12 -11
- pulumi_wavefront/get_maintenance_window.py +23 -22
- pulumi_wavefront/get_maintenance_window_all.py +8 -7
- pulumi_wavefront/get_metrics_policy.py +5 -4
- pulumi_wavefront/get_role.py +9 -8
- pulumi_wavefront/get_roles.py +12 -11
- pulumi_wavefront/get_user.py +11 -10
- pulumi_wavefront/get_user_group.py +10 -9
- pulumi_wavefront/get_user_groups.py +12 -11
- pulumi_wavefront/get_users.py +2 -1
- pulumi_wavefront/ingestion_policy.py +79 -78
- pulumi_wavefront/maintenance_window.py +127 -126
- pulumi_wavefront/metrics_policy.py +22 -21
- pulumi_wavefront/outputs.py +1205 -1204
- pulumi_wavefront/provider.py +19 -18
- pulumi_wavefront/pulumi-plugin.json +1 -1
- pulumi_wavefront/role.py +57 -56
- pulumi_wavefront/service_account.py +85 -84
- pulumi_wavefront/user.py +57 -56
- pulumi_wavefront/user_group.py +29 -28
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/METADATA +1 -1
- pulumi_wavefront-3.2.0a1744183482.dist-info/RECORD +58 -0
- pulumi_wavefront-3.2.0a1743576067.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/top_level.txt +0 -0
pulumi_wavefront/get_alert.py
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -106,7 +107,7 @@ class GetAlertResult:
|
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter(name="additionalInformation")
|
109
|
-
def additional_information(self) -> str:
|
110
|
+
def additional_information(self) -> builtins.str:
|
110
111
|
"""
|
111
112
|
User-supplied additional explanatory information about this alert.
|
112
113
|
"""
|
@@ -122,7 +123,7 @@ class GetAlertResult:
|
|
122
123
|
|
123
124
|
@property
|
124
125
|
@pulumi.getter(name="alertType")
|
125
|
-
def alert_type(self) -> str:
|
126
|
+
def alert_type(self) -> builtins.str:
|
126
127
|
"""
|
127
128
|
The type of alert in Wavefront.
|
128
129
|
"""
|
@@ -130,7 +131,7 @@ class GetAlertResult:
|
|
130
131
|
|
131
132
|
@property
|
132
133
|
@pulumi.getter(name="canModifies")
|
133
|
-
def can_modifies(self) -> Sequence[str]:
|
134
|
+
def can_modifies(self) -> Sequence[builtins.str]:
|
134
135
|
"""
|
135
136
|
A list of users or groups that can modify the alert.
|
136
137
|
"""
|
@@ -138,7 +139,7 @@ class GetAlertResult:
|
|
138
139
|
|
139
140
|
@property
|
140
141
|
@pulumi.getter(name="canViews")
|
141
|
-
def can_views(self) -> Sequence[str]:
|
142
|
+
def can_views(self) -> Sequence[builtins.str]:
|
142
143
|
"""
|
143
144
|
A list of users or groups that can view the alert.
|
144
145
|
"""
|
@@ -146,7 +147,7 @@ class GetAlertResult:
|
|
146
147
|
|
147
148
|
@property
|
148
149
|
@pulumi.getter
|
149
|
-
def condition(self) -> str:
|
150
|
+
def condition(self) -> builtins.str:
|
150
151
|
"""
|
151
152
|
A Wavefront query that is evaluated at regular intervals (default is 1 minute). The alert fires and notifications are triggered when a data series matching this query evaluates to a non-zero value for a set number of consecutive minutes.
|
152
153
|
"""
|
@@ -154,7 +155,7 @@ class GetAlertResult:
|
|
154
155
|
|
155
156
|
@property
|
156
157
|
@pulumi.getter
|
157
|
-
def conditions(self) -> Mapping[str, str]:
|
158
|
+
def conditions(self) -> Mapping[str, builtins.str]:
|
158
159
|
"""
|
159
160
|
A map of severity to condition for which this alert will trigger.
|
160
161
|
"""
|
@@ -162,7 +163,7 @@ class GetAlertResult:
|
|
162
163
|
|
163
164
|
@property
|
164
165
|
@pulumi.getter(name="displayExpression")
|
165
|
-
def display_expression(self) -> str:
|
166
|
+
def display_expression(self) -> builtins.str:
|
166
167
|
"""
|
167
168
|
A second query the results of which are displayed in the alert user interface instead of the condition query.
|
168
169
|
"""
|
@@ -170,7 +171,7 @@ class GetAlertResult:
|
|
170
171
|
|
171
172
|
@property
|
172
173
|
@pulumi.getter(name="evaluateRealtimeData")
|
173
|
-
def evaluate_realtime_data(self) -> bool:
|
174
|
+
def evaluate_realtime_data(self) -> builtins.bool:
|
174
175
|
"""
|
175
176
|
A Boolean flag to enable real-time evaluation.
|
176
177
|
"""
|
@@ -186,7 +187,7 @@ class GetAlertResult:
|
|
186
187
|
|
187
188
|
@property
|
188
189
|
@pulumi.getter
|
189
|
-
def id(self) -> str:
|
190
|
+
def id(self) -> builtins.str:
|
190
191
|
"""
|
191
192
|
The ID of the alert in Wavefront.
|
192
193
|
"""
|
@@ -202,7 +203,7 @@ class GetAlertResult:
|
|
202
203
|
|
203
204
|
@property
|
204
205
|
@pulumi.getter(name="includeObsoleteMetrics")
|
205
|
-
def include_obsolete_metrics(self) -> bool:
|
206
|
+
def include_obsolete_metrics(self) -> builtins.bool:
|
206
207
|
"""
|
207
208
|
A Boolean flag indicating whether to include obsolete metrics or not.
|
208
209
|
"""
|
@@ -210,7 +211,7 @@ class GetAlertResult:
|
|
210
211
|
|
211
212
|
@property
|
212
213
|
@pulumi.getter
|
213
|
-
def minutes(self) -> int:
|
214
|
+
def minutes(self) -> builtins.int:
|
214
215
|
"""
|
215
216
|
The number of consecutive minutes that a series matching the condition query must evaluate to "true" (non-zero value) before the alert fires.
|
216
217
|
"""
|
@@ -218,7 +219,7 @@ class GetAlertResult:
|
|
218
219
|
|
219
220
|
@property
|
220
221
|
@pulumi.getter
|
221
|
-
def name(self) -> str:
|
222
|
+
def name(self) -> builtins.str:
|
222
223
|
"""
|
223
224
|
The name of the alert as it is displayed in Wavefront.
|
224
225
|
"""
|
@@ -226,7 +227,7 @@ class GetAlertResult:
|
|
226
227
|
|
227
228
|
@property
|
228
229
|
@pulumi.getter(name="notificationResendFrequencyMinutes")
|
229
|
-
def notification_resend_frequency_minutes(self) -> int:
|
230
|
+
def notification_resend_frequency_minutes(self) -> builtins.int:
|
230
231
|
"""
|
231
232
|
How often to re-trigger a continually failing alert.
|
232
233
|
"""
|
@@ -234,7 +235,7 @@ class GetAlertResult:
|
|
234
235
|
|
235
236
|
@property
|
236
237
|
@pulumi.getter(name="processRateMinutes")
|
237
|
-
def process_rate_minutes(self) -> int:
|
238
|
+
def process_rate_minutes(self) -> builtins.int:
|
238
239
|
"""
|
239
240
|
The specified query is executed every `process_rate_minutes` minutes.
|
240
241
|
"""
|
@@ -242,7 +243,7 @@ class GetAlertResult:
|
|
242
243
|
|
243
244
|
@property
|
244
245
|
@pulumi.getter(name="resolveAfterMinutes")
|
245
|
-
def resolve_after_minutes(self) -> int:
|
246
|
+
def resolve_after_minutes(self) -> builtins.int:
|
246
247
|
"""
|
247
248
|
The number of consecutive minutes that a firing series matching the condition query must evaluate to "false" (zero value) before the alert resolves.
|
248
249
|
"""
|
@@ -250,7 +251,7 @@ class GetAlertResult:
|
|
250
251
|
|
251
252
|
@property
|
252
253
|
@pulumi.getter(name="runbookLinks")
|
253
|
-
def runbook_links(self) -> Sequence[str]:
|
254
|
+
def runbook_links(self) -> Sequence[builtins.str]:
|
254
255
|
"""
|
255
256
|
A list of user-supplied runbook links for this alert.
|
256
257
|
"""
|
@@ -258,7 +259,7 @@ class GetAlertResult:
|
|
258
259
|
|
259
260
|
@property
|
260
261
|
@pulumi.getter
|
261
|
-
def severity(self) -> str:
|
262
|
+
def severity(self) -> builtins.str:
|
262
263
|
"""
|
263
264
|
The severity of the alert.
|
264
265
|
"""
|
@@ -266,12 +267,12 @@ class GetAlertResult:
|
|
266
267
|
|
267
268
|
@property
|
268
269
|
@pulumi.getter(name="severityLists")
|
269
|
-
def severity_lists(self) -> Sequence[str]:
|
270
|
+
def severity_lists(self) -> Sequence[builtins.str]:
|
270
271
|
return pulumi.get(self, "severity_lists")
|
271
272
|
|
272
273
|
@property
|
273
274
|
@pulumi.getter
|
274
|
-
def statuses(self) -> Sequence[str]:
|
275
|
+
def statuses(self) -> Sequence[builtins.str]:
|
275
276
|
"""
|
276
277
|
The status of the alert.
|
277
278
|
"""
|
@@ -279,7 +280,7 @@ class GetAlertResult:
|
|
279
280
|
|
280
281
|
@property
|
281
282
|
@pulumi.getter
|
282
|
-
def tags(self) -> Sequence[str]:
|
283
|
+
def tags(self) -> Sequence[builtins.str]:
|
283
284
|
"""
|
284
285
|
A set of tags assigned to the alert.
|
285
286
|
"""
|
@@ -287,7 +288,7 @@ class GetAlertResult:
|
|
287
288
|
|
288
289
|
@property
|
289
290
|
@pulumi.getter
|
290
|
-
def target(self) -> str:
|
291
|
+
def target(self) -> builtins.str:
|
291
292
|
"""
|
292
293
|
An email address or integration endpoint (such as PagerDuty or webhook) to notify when the alert status changes.
|
293
294
|
"""
|
@@ -295,7 +296,7 @@ class GetAlertResult:
|
|
295
296
|
|
296
297
|
@property
|
297
298
|
@pulumi.getter
|
298
|
-
def targets(self) -> Optional[Mapping[str, str]]:
|
299
|
+
def targets(self) -> Optional[Mapping[str, builtins.str]]:
|
299
300
|
"""
|
300
301
|
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.
|
301
302
|
"""
|
@@ -335,8 +336,8 @@ class AwaitableGetAlertResult(GetAlertResult):
|
|
335
336
|
targets=self.targets)
|
336
337
|
|
337
338
|
|
338
|
-
def get_alert(id: Optional[str] = None,
|
339
|
-
targets: Optional[Mapping[str, str]] = None,
|
339
|
+
def get_alert(id: Optional[builtins.str] = None,
|
340
|
+
targets: Optional[Mapping[str, builtins.str]] = None,
|
340
341
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAlertResult:
|
341
342
|
"""
|
342
343
|
Use this data source to get information about a Wavefront alert by its ID.
|
@@ -352,8 +353,8 @@ def get_alert(id: Optional[str] = None,
|
|
352
353
|
```
|
353
354
|
|
354
355
|
|
355
|
-
:param str id: The ID associated with the alert data to be fetched.
|
356
|
-
: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.
|
356
|
+
:param builtins.str id: The ID associated with the alert data to be fetched.
|
357
|
+
:param Mapping[str, builtins.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.
|
357
358
|
"""
|
358
359
|
__args__ = dict()
|
359
360
|
__args__['id'] = id
|
@@ -387,8 +388,8 @@ def get_alert(id: Optional[str] = None,
|
|
387
388
|
tags=pulumi.get(__ret__, 'tags'),
|
388
389
|
target=pulumi.get(__ret__, 'target'),
|
389
390
|
targets=pulumi.get(__ret__, 'targets'))
|
390
|
-
def get_alert_output(id: Optional[pulumi.Input[str]] = None,
|
391
|
-
targets: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
391
|
+
def get_alert_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
392
|
+
targets: Optional[pulumi.Input[Optional[Mapping[str, builtins.str]]]] = None,
|
392
393
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertResult]:
|
393
394
|
"""
|
394
395
|
Use this data source to get information about a Wavefront alert by its ID.
|
@@ -404,8 +405,8 @@ def get_alert_output(id: Optional[pulumi.Input[str]] = None,
|
|
404
405
|
```
|
405
406
|
|
406
407
|
|
407
|
-
:param str id: The ID associated with the alert data to be fetched.
|
408
|
-
: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.
|
408
|
+
:param builtins.str id: The ID associated with the alert data to be fetched.
|
409
|
+
:param Mapping[str, builtins.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.
|
409
410
|
"""
|
410
411
|
__args__ = dict()
|
411
412
|
__args__['id'] = id
|
pulumi_wavefront/get_alerts.py
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -51,7 +52,7 @@ class GetAlertsResult:
|
|
51
52
|
|
52
53
|
@property
|
53
54
|
@pulumi.getter
|
54
|
-
def id(self) -> str:
|
55
|
+
def id(self) -> builtins.str:
|
55
56
|
"""
|
56
57
|
The provider-assigned unique ID for this managed resource.
|
57
58
|
"""
|
@@ -59,12 +60,12 @@ class GetAlertsResult:
|
|
59
60
|
|
60
61
|
@property
|
61
62
|
@pulumi.getter
|
62
|
-
def limit(self) -> Optional[int]:
|
63
|
+
def limit(self) -> Optional[builtins.int]:
|
63
64
|
return pulumi.get(self, "limit")
|
64
65
|
|
65
66
|
@property
|
66
67
|
@pulumi.getter
|
67
|
-
def offset(self) -> Optional[int]:
|
68
|
+
def offset(self) -> Optional[builtins.int]:
|
68
69
|
return pulumi.get(self, "offset")
|
69
70
|
|
70
71
|
|
@@ -80,8 +81,8 @@ class AwaitableGetAlertsResult(GetAlertsResult):
|
|
80
81
|
offset=self.offset)
|
81
82
|
|
82
83
|
|
83
|
-
def get_alerts(limit: Optional[int] = None,
|
84
|
-
offset: Optional[int] = None,
|
84
|
+
def get_alerts(limit: Optional[builtins.int] = None,
|
85
|
+
offset: Optional[builtins.int] = None,
|
85
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAlertsResult:
|
86
87
|
"""
|
87
88
|
Use this data source to get information about all Wavefront alerts.
|
@@ -98,8 +99,8 @@ def get_alerts(limit: Optional[int] = None,
|
|
98
99
|
```
|
99
100
|
|
100
101
|
|
101
|
-
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
102
|
-
:param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
102
|
+
:param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
103
|
+
:param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
103
104
|
"""
|
104
105
|
__args__ = dict()
|
105
106
|
__args__['limit'] = limit
|
@@ -112,8 +113,8 @@ def get_alerts(limit: Optional[int] = None,
|
|
112
113
|
id=pulumi.get(__ret__, 'id'),
|
113
114
|
limit=pulumi.get(__ret__, 'limit'),
|
114
115
|
offset=pulumi.get(__ret__, 'offset'))
|
115
|
-
def get_alerts_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
-
offset: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
+
def get_alerts_output(limit: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
117
|
+
offset: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
117
118
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertsResult]:
|
118
119
|
"""
|
119
120
|
Use this data source to get information about all Wavefront alerts.
|
@@ -130,8 +131,8 @@ def get_alerts_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
130
131
|
```
|
131
132
|
|
132
133
|
|
133
|
-
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
134
|
-
:param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
134
|
+
:param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
135
|
+
:param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
135
136
|
"""
|
136
137
|
__args__ = dict()
|
137
138
|
__args__['limit'] = limit
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -136,7 +137,7 @@ class GetDashboardResult:
|
|
136
137
|
|
137
138
|
@property
|
138
139
|
@pulumi.getter(name="canModifies")
|
139
|
-
def can_modifies(self) -> Sequence[str]:
|
140
|
+
def can_modifies(self) -> Sequence[builtins.str]:
|
140
141
|
"""
|
141
142
|
A list of users that have modify ACL access to the dashboard.
|
142
143
|
"""
|
@@ -144,7 +145,7 @@ class GetDashboardResult:
|
|
144
145
|
|
145
146
|
@property
|
146
147
|
@pulumi.getter(name="canViews")
|
147
|
-
def can_views(self) -> Sequence[str]:
|
148
|
+
def can_views(self) -> Sequence[builtins.str]:
|
148
149
|
"""
|
149
150
|
A list of users that have view ACL access to the dashboard.
|
150
151
|
"""
|
@@ -152,57 +153,57 @@ class GetDashboardResult:
|
|
152
153
|
|
153
154
|
@property
|
154
155
|
@pulumi.getter(name="chartTitleBgColor")
|
155
|
-
def chart_title_bg_color(self) -> str:
|
156
|
+
def chart_title_bg_color(self) -> builtins.str:
|
156
157
|
return pulumi.get(self, "chart_title_bg_color")
|
157
158
|
|
158
159
|
@property
|
159
160
|
@pulumi.getter(name="chartTitleColor")
|
160
|
-
def chart_title_color(self) -> str:
|
161
|
+
def chart_title_color(self) -> builtins.str:
|
161
162
|
return pulumi.get(self, "chart_title_color")
|
162
163
|
|
163
164
|
@property
|
164
165
|
@pulumi.getter(name="chartTitleScalar")
|
165
|
-
def chart_title_scalar(self) -> int:
|
166
|
+
def chart_title_scalar(self) -> builtins.int:
|
166
167
|
return pulumi.get(self, "chart_title_scalar")
|
167
168
|
|
168
169
|
@property
|
169
170
|
@pulumi.getter(name="createdEpochMillis")
|
170
|
-
def created_epoch_millis(self) -> int:
|
171
|
+
def created_epoch_millis(self) -> builtins.int:
|
171
172
|
return pulumi.get(self, "created_epoch_millis")
|
172
173
|
|
173
174
|
@property
|
174
175
|
@pulumi.getter(name="creatorId")
|
175
|
-
def creator_id(self) -> str:
|
176
|
+
def creator_id(self) -> builtins.str:
|
176
177
|
return pulumi.get(self, "creator_id")
|
177
178
|
|
178
179
|
@property
|
179
180
|
@pulumi.getter
|
180
|
-
def customer(self) -> str:
|
181
|
+
def customer(self) -> builtins.str:
|
181
182
|
return pulumi.get(self, "customer")
|
182
183
|
|
183
184
|
@property
|
184
185
|
@pulumi.getter(name="defaultEndTime")
|
185
|
-
def default_end_time(self) -> int:
|
186
|
+
def default_end_time(self) -> builtins.int:
|
186
187
|
return pulumi.get(self, "default_end_time")
|
187
188
|
|
188
189
|
@property
|
189
190
|
@pulumi.getter(name="defaultStartTime")
|
190
|
-
def default_start_time(self) -> int:
|
191
|
+
def default_start_time(self) -> builtins.int:
|
191
192
|
return pulumi.get(self, "default_start_time")
|
192
193
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter(name="defaultTimeWindow")
|
195
|
-
def default_time_window(self) -> str:
|
196
|
+
def default_time_window(self) -> builtins.str:
|
196
197
|
return pulumi.get(self, "default_time_window")
|
197
198
|
|
198
199
|
@property
|
199
200
|
@pulumi.getter
|
200
|
-
def deleted(self) -> bool:
|
201
|
+
def deleted(self) -> builtins.bool:
|
201
202
|
return pulumi.get(self, "deleted")
|
202
203
|
|
203
204
|
@property
|
204
205
|
@pulumi.getter
|
205
|
-
def description(self) -> str:
|
206
|
+
def description(self) -> builtins.str:
|
206
207
|
"""
|
207
208
|
Description of the chart.
|
208
209
|
"""
|
@@ -210,12 +211,12 @@ class GetDashboardResult:
|
|
210
211
|
|
211
212
|
@property
|
212
213
|
@pulumi.getter(name="displayDescription")
|
213
|
-
def display_description(self) -> bool:
|
214
|
+
def display_description(self) -> builtins.bool:
|
214
215
|
return pulumi.get(self, "display_description")
|
215
216
|
|
216
217
|
@property
|
217
218
|
@pulumi.getter(name="displayQueryParameters")
|
218
|
-
def display_query_parameters(self) -> bool:
|
219
|
+
def display_query_parameters(self) -> builtins.bool:
|
219
220
|
"""
|
220
221
|
Whether the dashboard parameters section is opened by default when the dashboard
|
221
222
|
is shown.
|
@@ -224,7 +225,7 @@ class GetDashboardResult:
|
|
224
225
|
|
225
226
|
@property
|
226
227
|
@pulumi.getter(name="displaySectionTableOfContents")
|
227
|
-
def display_section_table_of_contents(self) -> bool:
|
228
|
+
def display_section_table_of_contents(self) -> builtins.bool:
|
228
229
|
"""
|
229
230
|
Whether the "pills" quick-linked the sections of the dashboard are
|
230
231
|
displayed by default when the dashboard is shown.
|
@@ -233,7 +234,7 @@ class GetDashboardResult:
|
|
233
234
|
|
234
235
|
@property
|
235
236
|
@pulumi.getter(name="eventFilterType")
|
236
|
-
def event_filter_type(self) -> str:
|
237
|
+
def event_filter_type(self) -> builtins.str:
|
237
238
|
"""
|
238
239
|
How charts belonging to this dashboard should display events. `BYCHART` is default if
|
239
240
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
@@ -242,27 +243,27 @@ class GetDashboardResult:
|
|
242
243
|
|
243
244
|
@property
|
244
245
|
@pulumi.getter(name="eventQuery")
|
245
|
-
def event_query(self) -> str:
|
246
|
+
def event_query(self) -> builtins.str:
|
246
247
|
return pulumi.get(self, "event_query")
|
247
248
|
|
248
249
|
@property
|
249
250
|
@pulumi.getter
|
250
|
-
def favorite(self) -> bool:
|
251
|
+
def favorite(self) -> builtins.bool:
|
251
252
|
return pulumi.get(self, "favorite")
|
252
253
|
|
253
254
|
@property
|
254
255
|
@pulumi.getter
|
255
|
-
def hidden(self) -> bool:
|
256
|
+
def hidden(self) -> builtins.bool:
|
256
257
|
return pulumi.get(self, "hidden")
|
257
258
|
|
258
259
|
@property
|
259
260
|
@pulumi.getter
|
260
|
-
def id(self) -> str:
|
261
|
+
def id(self) -> builtins.str:
|
261
262
|
return pulumi.get(self, "id")
|
262
263
|
|
263
264
|
@property
|
264
265
|
@pulumi.getter
|
265
|
-
def name(self) -> str:
|
266
|
+
def name(self) -> builtins.str:
|
266
267
|
"""
|
267
268
|
The name of the parameters.
|
268
269
|
"""
|
@@ -270,12 +271,12 @@ class GetDashboardResult:
|
|
270
271
|
|
271
272
|
@property
|
272
273
|
@pulumi.getter(name="numCharts")
|
273
|
-
def num_charts(self) -> int:
|
274
|
+
def num_charts(self) -> builtins.int:
|
274
275
|
return pulumi.get(self, "num_charts")
|
275
276
|
|
276
277
|
@property
|
277
278
|
@pulumi.getter(name="numFavorites")
|
278
|
-
def num_favorites(self) -> int:
|
279
|
+
def num_favorites(self) -> builtins.int:
|
279
280
|
return pulumi.get(self, "num_favorites")
|
280
281
|
|
281
282
|
@property
|
@@ -288,7 +289,7 @@ class GetDashboardResult:
|
|
288
289
|
|
289
290
|
@property
|
290
291
|
@pulumi.getter
|
291
|
-
def parameters(self) -> Mapping[str, str]:
|
292
|
+
def parameters(self) -> Mapping[str, builtins.str]:
|
292
293
|
return pulumi.get(self, "parameters")
|
293
294
|
|
294
295
|
@property
|
@@ -298,12 +299,12 @@ class GetDashboardResult:
|
|
298
299
|
|
299
300
|
@property
|
300
301
|
@pulumi.getter(name="systemOwned")
|
301
|
-
def system_owned(self) -> bool:
|
302
|
+
def system_owned(self) -> builtins.bool:
|
302
303
|
return pulumi.get(self, "system_owned")
|
303
304
|
|
304
305
|
@property
|
305
306
|
@pulumi.getter
|
306
|
-
def tags(self) -> Sequence[str]:
|
307
|
+
def tags(self) -> Sequence[builtins.str]:
|
307
308
|
"""
|
308
309
|
A set of tags to assign to this resource.
|
309
310
|
"""
|
@@ -311,17 +312,17 @@ class GetDashboardResult:
|
|
311
312
|
|
312
313
|
@property
|
313
314
|
@pulumi.getter(name="updatedEpochMillis")
|
314
|
-
def updated_epoch_millis(self) -> int:
|
315
|
+
def updated_epoch_millis(self) -> builtins.int:
|
315
316
|
return pulumi.get(self, "updated_epoch_millis")
|
316
317
|
|
317
318
|
@property
|
318
319
|
@pulumi.getter(name="updaterId")
|
319
|
-
def updater_id(self) -> str:
|
320
|
+
def updater_id(self) -> builtins.str:
|
320
321
|
return pulumi.get(self, "updater_id")
|
321
322
|
|
322
323
|
@property
|
323
324
|
@pulumi.getter
|
324
|
-
def url(self) -> str:
|
325
|
+
def url(self) -> builtins.str:
|
325
326
|
"""
|
326
327
|
Unique identifier, also a URL slug of the dashboard.
|
327
328
|
"""
|
@@ -329,17 +330,17 @@ class GetDashboardResult:
|
|
329
330
|
|
330
331
|
@property
|
331
332
|
@pulumi.getter(name="viewsLastDay")
|
332
|
-
def views_last_day(self) -> int:
|
333
|
+
def views_last_day(self) -> builtins.int:
|
333
334
|
return pulumi.get(self, "views_last_day")
|
334
335
|
|
335
336
|
@property
|
336
337
|
@pulumi.getter(name="viewsLastMonth")
|
337
|
-
def views_last_month(self) -> int:
|
338
|
+
def views_last_month(self) -> builtins.int:
|
338
339
|
return pulumi.get(self, "views_last_month")
|
339
340
|
|
340
341
|
@property
|
341
342
|
@pulumi.getter(name="viewsLastWeek")
|
342
|
-
def views_last_week(self) -> int:
|
343
|
+
def views_last_week(self) -> builtins.int:
|
343
344
|
return pulumi.get(self, "views_last_week")
|
344
345
|
|
345
346
|
|
@@ -386,7 +387,7 @@ class AwaitableGetDashboardResult(GetDashboardResult):
|
|
386
387
|
views_last_week=self.views_last_week)
|
387
388
|
|
388
389
|
|
389
|
-
def get_dashboard(id: Optional[str] = None,
|
390
|
+
def get_dashboard(id: Optional[builtins.str] = None,
|
390
391
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDashboardResult:
|
391
392
|
"""
|
392
393
|
Use this data source to get information about a certain Wavefront dashboard by its ID.
|
@@ -402,7 +403,7 @@ def get_dashboard(id: Optional[str] = None,
|
|
402
403
|
```
|
403
404
|
|
404
405
|
|
405
|
-
:param str id: The ID associated with the dashboard data to be fetched.
|
406
|
+
:param builtins.str id: The ID associated with the dashboard data to be fetched.
|
406
407
|
"""
|
407
408
|
__args__ = dict()
|
408
409
|
__args__['id'] = id
|
@@ -445,7 +446,7 @@ def get_dashboard(id: Optional[str] = None,
|
|
445
446
|
views_last_day=pulumi.get(__ret__, 'views_last_day'),
|
446
447
|
views_last_month=pulumi.get(__ret__, 'views_last_month'),
|
447
448
|
views_last_week=pulumi.get(__ret__, 'views_last_week'))
|
448
|
-
def get_dashboard_output(id: Optional[pulumi.Input[str]] = None,
|
449
|
+
def get_dashboard_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
449
450
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDashboardResult]:
|
450
451
|
"""
|
451
452
|
Use this data source to get information about a certain Wavefront dashboard by its ID.
|
@@ -461,7 +462,7 @@ def get_dashboard_output(id: Optional[pulumi.Input[str]] = None,
|
|
461
462
|
```
|
462
463
|
|
463
464
|
|
464
|
-
:param str id: The ID associated with the dashboard data to be fetched.
|
465
|
+
:param builtins.str id: The ID associated with the dashboard data to be fetched.
|
465
466
|
"""
|
466
467
|
__args__ = dict()
|
467
468
|
__args__['id'] = id
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -51,7 +52,7 @@ class GetDashboardsResult:
|
|
51
52
|
|
52
53
|
@property
|
53
54
|
@pulumi.getter
|
54
|
-
def id(self) -> str:
|
55
|
+
def id(self) -> builtins.str:
|
55
56
|
"""
|
56
57
|
The provider-assigned unique ID for this managed resource.
|
57
58
|
"""
|
@@ -59,12 +60,12 @@ class GetDashboardsResult:
|
|
59
60
|
|
60
61
|
@property
|
61
62
|
@pulumi.getter
|
62
|
-
def limit(self) -> Optional[int]:
|
63
|
+
def limit(self) -> Optional[builtins.int]:
|
63
64
|
return pulumi.get(self, "limit")
|
64
65
|
|
65
66
|
@property
|
66
67
|
@pulumi.getter
|
67
|
-
def offset(self) -> Optional[int]:
|
68
|
+
def offset(self) -> Optional[builtins.int]:
|
68
69
|
return pulumi.get(self, "offset")
|
69
70
|
|
70
71
|
|
@@ -80,8 +81,8 @@ class AwaitableGetDashboardsResult(GetDashboardsResult):
|
|
80
81
|
offset=self.offset)
|
81
82
|
|
82
83
|
|
83
|
-
def get_dashboards(limit: Optional[int] = None,
|
84
|
-
offset: Optional[int] = None,
|
84
|
+
def get_dashboards(limit: Optional[builtins.int] = None,
|
85
|
+
offset: Optional[builtins.int] = None,
|
85
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDashboardsResult:
|
86
87
|
"""
|
87
88
|
Use this data source to get information about all Wavefront dashboards.
|
@@ -98,8 +99,8 @@ def get_dashboards(limit: Optional[int] = None,
|
|
98
99
|
```
|
99
100
|
|
100
101
|
|
101
|
-
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
102
|
-
:param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
102
|
+
:param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
103
|
+
:param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
103
104
|
"""
|
104
105
|
__args__ = dict()
|
105
106
|
__args__['limit'] = limit
|
@@ -112,8 +113,8 @@ def get_dashboards(limit: Optional[int] = None,
|
|
112
113
|
id=pulumi.get(__ret__, 'id'),
|
113
114
|
limit=pulumi.get(__ret__, 'limit'),
|
114
115
|
offset=pulumi.get(__ret__, 'offset'))
|
115
|
-
def get_dashboards_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
-
offset: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
+
def get_dashboards_output(limit: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
117
|
+
offset: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
117
118
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDashboardsResult]:
|
118
119
|
"""
|
119
120
|
Use this data source to get information about all Wavefront dashboards.
|
@@ -130,8 +131,8 @@ def get_dashboards_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
130
131
|
```
|
131
132
|
|
132
133
|
|
133
|
-
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
134
|
-
:param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
134
|
+
:param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
135
|
+
:param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
|
135
136
|
"""
|
136
137
|
__args__ = dict()
|
137
138
|
__args__['limit'] = limit
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -36,7 +37,7 @@ class GetDefaultUserGroupResult:
|
|
36
37
|
|
37
38
|
@property
|
38
39
|
@pulumi.getter(name="groupId")
|
39
|
-
def group_id(self) -> str:
|
40
|
+
def group_id(self) -> builtins.str:
|
40
41
|
"""
|
41
42
|
Set to the Group ID of the `Everyone` group, suitable for referencing
|
42
43
|
in other resources that support group memberships.
|
@@ -45,7 +46,7 @@ class GetDefaultUserGroupResult:
|
|
45
46
|
|
46
47
|
@property
|
47
48
|
@pulumi.getter
|
48
|
-
def id(self) -> str:
|
49
|
+
def id(self) -> builtins.str:
|
49
50
|
"""
|
50
51
|
The provider-assigned unique ID for this managed resource.
|
51
52
|
"""
|