pulumi-wavefront 3.2.0a1713340678__py3-none-any.whl → 3.2.0a1713526439__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/alert.py +6 -4
- pulumi_wavefront/alert_target.py +10 -8
- pulumi_wavefront/cloud_integration_app_dynamics.py +8 -6
- pulumi_wavefront/cloud_integration_aws_external_id.py +2 -2
- pulumi_wavefront/cloud_integration_azure.py +4 -2
- pulumi_wavefront/cloud_integration_azure_activity_log.py +4 -2
- pulumi_wavefront/cloud_integration_cloud_trail.py +4 -2
- pulumi_wavefront/cloud_integration_cloud_watch.py +4 -2
- pulumi_wavefront/cloud_integration_ec2.py +4 -2
- pulumi_wavefront/cloud_integration_gcp.py +6 -8
- pulumi_wavefront/cloud_integration_gcp_billing.py +8 -10
- pulumi_wavefront/cloud_integration_new_relic.py +6 -2
- pulumi_wavefront/dashboard_json.py +228 -230
- pulumi_wavefront/derived_metric.py +2 -0
- pulumi_wavefront/event.py +4 -2
- pulumi_wavefront/external_link.py +2 -0
- pulumi_wavefront/get_alert.py +2 -0
- pulumi_wavefront/get_alerts.py +2 -0
- pulumi_wavefront/get_dashboard.py +2 -0
- pulumi_wavefront/get_dashboards.py +2 -0
- pulumi_wavefront/get_default_user_group.py +2 -0
- pulumi_wavefront/get_derived_metric.py +2 -0
- pulumi_wavefront/get_derived_metrics.py +2 -0
- pulumi_wavefront/get_event.py +2 -0
- pulumi_wavefront/get_events.py +8 -6
- pulumi_wavefront/get_external_link.py +2 -0
- pulumi_wavefront/get_external_links.py +2 -0
- pulumi_wavefront/get_maintenance_window.py +2 -0
- pulumi_wavefront/get_role.py +2 -0
- pulumi_wavefront/get_roles.py +2 -0
- pulumi_wavefront/get_user.py +2 -0
- pulumi_wavefront/get_user_group.py +2 -0
- pulumi_wavefront/get_user_groups.py +2 -0
- pulumi_wavefront/get_users.py +2 -0
- pulumi_wavefront/ingestion_policy.py +6 -2
- pulumi_wavefront/maintenance_window.py +8 -8
- pulumi_wavefront/metrics_policy.py +4 -4
- pulumi_wavefront/role.py +2 -2
- pulumi_wavefront/service_account.py +4 -4
- pulumi_wavefront/user_group.py +6 -2
- {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713526439.dist-info}/METADATA +1 -1
- pulumi_wavefront-3.2.0a1713526439.dist-info/RECORD +58 -0
- pulumi_wavefront-3.2.0a1713340678.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713526439.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713526439.dist-info}/top_level.txt +0 -0
@@ -79,126 +79,125 @@ class DashboardJson(pulumi.CustomResource):
|
|
79
79
|
import pulumi
|
80
80
|
import pulumi_wavefront as wavefront
|
81
81
|
|
82
|
-
test_dashboard_json = wavefront.DashboardJson("
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
82
|
+
test_dashboard_json = wavefront.DashboardJson("test_dashboard_json", dashboard_json=\"\"\"{
|
83
|
+
"acl": {
|
84
|
+
"canModify": [
|
85
|
+
"group-uuid",
|
86
|
+
"role-uuid"
|
87
|
+
],
|
88
|
+
"canView": [
|
89
|
+
"group-uuid",
|
90
|
+
"role-uuid"
|
91
|
+
]
|
92
|
+
},
|
93
|
+
"name": "Terraform Test Dashboard Json",
|
94
|
+
"description": "a",
|
95
|
+
"eventFilterType": "BYCHART",
|
96
|
+
"eventQuery": "",
|
97
|
+
"defaultTimeWindow": "",
|
98
|
+
"url": "tftestimport",
|
99
|
+
"displayDescription": false,
|
100
|
+
"displaySectionTableOfContents": true,
|
101
|
+
"displayQueryParameters": false,
|
102
|
+
"sections": [
|
103
|
+
{
|
104
|
+
"name": "section 1",
|
105
|
+
"rows": [
|
106
|
+
{
|
107
|
+
"charts": [
|
108
|
+
{
|
109
|
+
"name": "chart 1",
|
110
|
+
"sources": [
|
111
|
+
{
|
112
|
+
"name": "source 1",
|
113
|
+
"query": "ts()",
|
114
|
+
"scatterPlotSource": "Y",
|
115
|
+
"querybuilderEnabled": false,
|
116
|
+
"sourceDescription": ""
|
117
|
+
}
|
118
|
+
],
|
119
|
+
"units": "someunit",
|
120
|
+
"base": 0,
|
121
|
+
"noDefaultEvents": false,
|
122
|
+
"interpolatePoints": false,
|
123
|
+
"includeObsoleteMetrics": false,
|
124
|
+
"description": "This is chart 1, showing something",
|
125
|
+
"chartSettings": {
|
126
|
+
"type": "markdown-widget",
|
127
|
+
"max": 100,
|
128
|
+
"expectedDataSpacing": 120,
|
129
|
+
"windowing": "full",
|
130
|
+
"windowSize": 10,
|
131
|
+
"autoColumnTags": false,
|
132
|
+
"columnTags": "deprecated",
|
133
|
+
"tagMode": "all",
|
134
|
+
"numTags": 2,
|
135
|
+
"customTags": [
|
136
|
+
"tag1",
|
137
|
+
"tag2"
|
138
|
+
],
|
139
|
+
"groupBySource": true,
|
140
|
+
"y1Max": 100,
|
141
|
+
"y1Units": "units",
|
142
|
+
"y0ScaleSIBy1024": true,
|
143
|
+
"y1ScaleSIBy1024": true,
|
144
|
+
"y0UnitAutoscaling": true,
|
145
|
+
"y1UnitAutoscaling": true,
|
146
|
+
"fixedLegendEnabled": true,
|
147
|
+
"fixedLegendUseRawStats": true,
|
148
|
+
"fixedLegendPosition": "RIGHT",
|
149
|
+
"fixedLegendDisplayStats": [
|
150
|
+
"stat1",
|
151
|
+
"stat2"
|
118
152
|
],
|
119
|
-
"
|
120
|
-
"
|
121
|
-
"
|
122
|
-
"
|
123
|
-
|
124
|
-
|
125
|
-
"
|
126
|
-
"
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
"autoColumnTags": false,
|
132
|
-
"columnTags": "deprecated",
|
133
|
-
"tagMode": "all",
|
134
|
-
"numTags": 2,
|
135
|
-
"customTags": [
|
136
|
-
"tag1",
|
137
|
-
"tag2"
|
138
|
-
],
|
139
|
-
"groupBySource": true,
|
140
|
-
"y1Max": 100,
|
141
|
-
"y1Units": "units",
|
142
|
-
"y0ScaleSIBy1024": true,
|
143
|
-
"y1ScaleSIBy1024": true,
|
144
|
-
"y0UnitAutoscaling": true,
|
145
|
-
"y1UnitAutoscaling": true,
|
146
|
-
"fixedLegendEnabled": true,
|
147
|
-
"fixedLegendUseRawStats": true,
|
148
|
-
"fixedLegendPosition": "RIGHT",
|
149
|
-
"fixedLegendDisplayStats": [
|
150
|
-
"stat1",
|
151
|
-
"stat2"
|
152
|
-
],
|
153
|
-
"fixedLegendFilterSort": "TOP",
|
154
|
-
"fixedLegendFilterLimit": 1,
|
155
|
-
"fixedLegendFilterField": "CURRENT",
|
156
|
-
"plainMarkdownContent": "markdown content"
|
157
|
-
},
|
158
|
-
"chartAttributes": {
|
159
|
-
"dashboardLinks": {
|
160
|
-
"*": {
|
161
|
-
"variables": {
|
162
|
-
"xxx": "xxx"
|
163
|
-
},
|
164
|
-
"destination": "/dashboards/xxxx"
|
165
|
-
}
|
153
|
+
"fixedLegendFilterSort": "TOP",
|
154
|
+
"fixedLegendFilterLimit": 1,
|
155
|
+
"fixedLegendFilterField": "CURRENT",
|
156
|
+
"plainMarkdownContent": "markdown content"
|
157
|
+
},
|
158
|
+
"chartAttributes": {
|
159
|
+
"dashboardLinks": {
|
160
|
+
"*": {
|
161
|
+
"variables": {
|
162
|
+
"xxx": "xxx"
|
163
|
+
},
|
164
|
+
"destination": "/dashboards/xxxx"
|
166
165
|
}
|
167
|
-
}
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
}
|
175
|
-
],
|
176
|
-
"parameterDetails": {
|
177
|
-
"param": {
|
178
|
-
"hideFromView": false,
|
179
|
-
"description": null,
|
180
|
-
"allowAll": null,
|
181
|
-
"tagKey": null,
|
182
|
-
"queryValue": null,
|
183
|
-
"dynamicFieldType": null,
|
184
|
-
"reverseDynSort": null,
|
185
|
-
"parameterType": "SIMPLE",
|
186
|
-
"label": "test",
|
187
|
-
"defaultValue": "Label",
|
188
|
-
"valuesToReadableStrings": {
|
189
|
-
"Label": "test"
|
190
|
-
},
|
191
|
-
"selectedLabel": "Label",
|
192
|
-
"value": "test"
|
193
|
-
}
|
194
|
-
},
|
195
|
-
"tags": {
|
196
|
-
"customerTags": [
|
197
|
-
"terraform"
|
166
|
+
}
|
167
|
+
},
|
168
|
+
"summarization": "MEAN"
|
169
|
+
}
|
170
|
+
],
|
171
|
+
"heightFactor": 50
|
172
|
+
}
|
198
173
|
]
|
199
174
|
}
|
175
|
+
],
|
176
|
+
"parameterDetails": {
|
177
|
+
"param": {
|
178
|
+
"hideFromView": false,
|
179
|
+
"description": null,
|
180
|
+
"allowAll": null,
|
181
|
+
"tagKey": null,
|
182
|
+
"queryValue": null,
|
183
|
+
"dynamicFieldType": null,
|
184
|
+
"reverseDynSort": null,
|
185
|
+
"parameterType": "SIMPLE",
|
186
|
+
"label": "test",
|
187
|
+
"defaultValue": "Label",
|
188
|
+
"valuesToReadableStrings": {
|
189
|
+
"Label": "test"
|
190
|
+
},
|
191
|
+
"selectedLabel": "Label",
|
192
|
+
"value": "test"
|
193
|
+
}
|
194
|
+
},
|
195
|
+
"tags": {
|
196
|
+
"customerTags": [
|
197
|
+
"terraform"
|
198
|
+
]
|
200
199
|
}
|
201
|
-
|
200
|
+
}
|
202
201
|
\"\"\")
|
203
202
|
```
|
204
203
|
<!--End PulumiCodeChooser -->
|
@@ -236,126 +235,125 @@ class DashboardJson(pulumi.CustomResource):
|
|
236
235
|
import pulumi
|
237
236
|
import pulumi_wavefront as wavefront
|
238
237
|
|
239
|
-
test_dashboard_json = wavefront.DashboardJson("
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
238
|
+
test_dashboard_json = wavefront.DashboardJson("test_dashboard_json", dashboard_json=\"\"\"{
|
239
|
+
"acl": {
|
240
|
+
"canModify": [
|
241
|
+
"group-uuid",
|
242
|
+
"role-uuid"
|
243
|
+
],
|
244
|
+
"canView": [
|
245
|
+
"group-uuid",
|
246
|
+
"role-uuid"
|
247
|
+
]
|
248
|
+
},
|
249
|
+
"name": "Terraform Test Dashboard Json",
|
250
|
+
"description": "a",
|
251
|
+
"eventFilterType": "BYCHART",
|
252
|
+
"eventQuery": "",
|
253
|
+
"defaultTimeWindow": "",
|
254
|
+
"url": "tftestimport",
|
255
|
+
"displayDescription": false,
|
256
|
+
"displaySectionTableOfContents": true,
|
257
|
+
"displayQueryParameters": false,
|
258
|
+
"sections": [
|
259
|
+
{
|
260
|
+
"name": "section 1",
|
261
|
+
"rows": [
|
262
|
+
{
|
263
|
+
"charts": [
|
264
|
+
{
|
265
|
+
"name": "chart 1",
|
266
|
+
"sources": [
|
267
|
+
{
|
268
|
+
"name": "source 1",
|
269
|
+
"query": "ts()",
|
270
|
+
"scatterPlotSource": "Y",
|
271
|
+
"querybuilderEnabled": false,
|
272
|
+
"sourceDescription": ""
|
273
|
+
}
|
274
|
+
],
|
275
|
+
"units": "someunit",
|
276
|
+
"base": 0,
|
277
|
+
"noDefaultEvents": false,
|
278
|
+
"interpolatePoints": false,
|
279
|
+
"includeObsoleteMetrics": false,
|
280
|
+
"description": "This is chart 1, showing something",
|
281
|
+
"chartSettings": {
|
282
|
+
"type": "markdown-widget",
|
283
|
+
"max": 100,
|
284
|
+
"expectedDataSpacing": 120,
|
285
|
+
"windowing": "full",
|
286
|
+
"windowSize": 10,
|
287
|
+
"autoColumnTags": false,
|
288
|
+
"columnTags": "deprecated",
|
289
|
+
"tagMode": "all",
|
290
|
+
"numTags": 2,
|
291
|
+
"customTags": [
|
292
|
+
"tag1",
|
293
|
+
"tag2"
|
294
|
+
],
|
295
|
+
"groupBySource": true,
|
296
|
+
"y1Max": 100,
|
297
|
+
"y1Units": "units",
|
298
|
+
"y0ScaleSIBy1024": true,
|
299
|
+
"y1ScaleSIBy1024": true,
|
300
|
+
"y0UnitAutoscaling": true,
|
301
|
+
"y1UnitAutoscaling": true,
|
302
|
+
"fixedLegendEnabled": true,
|
303
|
+
"fixedLegendUseRawStats": true,
|
304
|
+
"fixedLegendPosition": "RIGHT",
|
305
|
+
"fixedLegendDisplayStats": [
|
306
|
+
"stat1",
|
307
|
+
"stat2"
|
275
308
|
],
|
276
|
-
"
|
277
|
-
"
|
278
|
-
"
|
279
|
-
"
|
280
|
-
|
281
|
-
|
282
|
-
"
|
283
|
-
"
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
"autoColumnTags": false,
|
289
|
-
"columnTags": "deprecated",
|
290
|
-
"tagMode": "all",
|
291
|
-
"numTags": 2,
|
292
|
-
"customTags": [
|
293
|
-
"tag1",
|
294
|
-
"tag2"
|
295
|
-
],
|
296
|
-
"groupBySource": true,
|
297
|
-
"y1Max": 100,
|
298
|
-
"y1Units": "units",
|
299
|
-
"y0ScaleSIBy1024": true,
|
300
|
-
"y1ScaleSIBy1024": true,
|
301
|
-
"y0UnitAutoscaling": true,
|
302
|
-
"y1UnitAutoscaling": true,
|
303
|
-
"fixedLegendEnabled": true,
|
304
|
-
"fixedLegendUseRawStats": true,
|
305
|
-
"fixedLegendPosition": "RIGHT",
|
306
|
-
"fixedLegendDisplayStats": [
|
307
|
-
"stat1",
|
308
|
-
"stat2"
|
309
|
-
],
|
310
|
-
"fixedLegendFilterSort": "TOP",
|
311
|
-
"fixedLegendFilterLimit": 1,
|
312
|
-
"fixedLegendFilterField": "CURRENT",
|
313
|
-
"plainMarkdownContent": "markdown content"
|
314
|
-
},
|
315
|
-
"chartAttributes": {
|
316
|
-
"dashboardLinks": {
|
317
|
-
"*": {
|
318
|
-
"variables": {
|
319
|
-
"xxx": "xxx"
|
320
|
-
},
|
321
|
-
"destination": "/dashboards/xxxx"
|
322
|
-
}
|
309
|
+
"fixedLegendFilterSort": "TOP",
|
310
|
+
"fixedLegendFilterLimit": 1,
|
311
|
+
"fixedLegendFilterField": "CURRENT",
|
312
|
+
"plainMarkdownContent": "markdown content"
|
313
|
+
},
|
314
|
+
"chartAttributes": {
|
315
|
+
"dashboardLinks": {
|
316
|
+
"*": {
|
317
|
+
"variables": {
|
318
|
+
"xxx": "xxx"
|
319
|
+
},
|
320
|
+
"destination": "/dashboards/xxxx"
|
323
321
|
}
|
324
|
-
}
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
}
|
332
|
-
],
|
333
|
-
"parameterDetails": {
|
334
|
-
"param": {
|
335
|
-
"hideFromView": false,
|
336
|
-
"description": null,
|
337
|
-
"allowAll": null,
|
338
|
-
"tagKey": null,
|
339
|
-
"queryValue": null,
|
340
|
-
"dynamicFieldType": null,
|
341
|
-
"reverseDynSort": null,
|
342
|
-
"parameterType": "SIMPLE",
|
343
|
-
"label": "test",
|
344
|
-
"defaultValue": "Label",
|
345
|
-
"valuesToReadableStrings": {
|
346
|
-
"Label": "test"
|
347
|
-
},
|
348
|
-
"selectedLabel": "Label",
|
349
|
-
"value": "test"
|
350
|
-
}
|
351
|
-
},
|
352
|
-
"tags": {
|
353
|
-
"customerTags": [
|
354
|
-
"terraform"
|
322
|
+
}
|
323
|
+
},
|
324
|
+
"summarization": "MEAN"
|
325
|
+
}
|
326
|
+
],
|
327
|
+
"heightFactor": 50
|
328
|
+
}
|
355
329
|
]
|
356
330
|
}
|
331
|
+
],
|
332
|
+
"parameterDetails": {
|
333
|
+
"param": {
|
334
|
+
"hideFromView": false,
|
335
|
+
"description": null,
|
336
|
+
"allowAll": null,
|
337
|
+
"tagKey": null,
|
338
|
+
"queryValue": null,
|
339
|
+
"dynamicFieldType": null,
|
340
|
+
"reverseDynSort": null,
|
341
|
+
"parameterType": "SIMPLE",
|
342
|
+
"label": "test",
|
343
|
+
"defaultValue": "Label",
|
344
|
+
"valuesToReadableStrings": {
|
345
|
+
"Label": "test"
|
346
|
+
},
|
347
|
+
"selectedLabel": "Label",
|
348
|
+
"value": "test"
|
349
|
+
}
|
350
|
+
},
|
351
|
+
"tags": {
|
352
|
+
"customerTags": [
|
353
|
+
"terraform"
|
354
|
+
]
|
357
355
|
}
|
358
|
-
|
356
|
+
}
|
359
357
|
\"\"\")
|
360
358
|
```
|
361
359
|
<!--End PulumiCodeChooser -->
|
@@ -208,6 +208,7 @@ class DerivedMetric(pulumi.CustomResource):
|
|
208
208
|
import pulumi_wavefront as wavefront
|
209
209
|
|
210
210
|
derived = wavefront.DerivedMetric("derived",
|
211
|
+
name="dummy derived metric",
|
211
212
|
minutes=5,
|
212
213
|
query="aliasMetric(5, \\"some.metric\\")")
|
213
214
|
```
|
@@ -247,6 +248,7 @@ class DerivedMetric(pulumi.CustomResource):
|
|
247
248
|
import pulumi_wavefront as wavefront
|
248
249
|
|
249
250
|
derived = wavefront.DerivedMetric("derived",
|
251
|
+
name="dummy derived metric",
|
250
252
|
minutes=5,
|
251
253
|
query="aliasMetric(5, \\"some.metric\\")")
|
252
254
|
```
|
pulumi_wavefront/event.py
CHANGED
@@ -200,10 +200,11 @@ class Event(pulumi.CustomResource):
|
|
200
200
|
import pulumi_wavefront as wavefront
|
201
201
|
|
202
202
|
event = wavefront.Event("event",
|
203
|
+
name="terraform-test",
|
203
204
|
annotations={
|
204
|
-
"details": "description",
|
205
205
|
"severity": "info",
|
206
206
|
"type": "event type",
|
207
|
+
"details": "description",
|
207
208
|
},
|
208
209
|
tags=["eventTag1"])
|
209
210
|
```
|
@@ -241,10 +242,11 @@ class Event(pulumi.CustomResource):
|
|
241
242
|
import pulumi_wavefront as wavefront
|
242
243
|
|
243
244
|
event = wavefront.Event("event",
|
245
|
+
name="terraform-test",
|
244
246
|
annotations={
|
245
|
-
"details": "description",
|
246
247
|
"severity": "info",
|
247
248
|
"type": "event type",
|
249
|
+
"details": "description",
|
248
250
|
},
|
249
251
|
tags=["eventTag1"])
|
250
252
|
```
|
@@ -285,6 +285,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
285
285
|
import pulumi_wavefront as wavefront
|
286
286
|
|
287
287
|
basic = wavefront.ExternalLink("basic",
|
288
|
+
name="External Link",
|
288
289
|
description="An external link description",
|
289
290
|
template="https://example.com/source={{{source}}}&startTime={{startEpochMillis}}")
|
290
291
|
```
|
@@ -328,6 +329,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
328
329
|
import pulumi_wavefront as wavefront
|
329
330
|
|
330
331
|
basic = wavefront.ExternalLink("basic",
|
332
|
+
name="External Link",
|
331
333
|
description="An external link description",
|
332
334
|
template="https://example.com/source={{{source}}}&startTime={{startEpochMillis}}")
|
333
335
|
```
|
pulumi_wavefront/get_alert.py
CHANGED
@@ -343,6 +343,7 @@ def get_alert(id: Optional[str] = None,
|
|
343
343
|
import pulumi
|
344
344
|
import pulumi_wavefront as wavefront
|
345
345
|
|
346
|
+
# Get the information about the alert.
|
346
347
|
example = wavefront.get_alert(id="alert-id")
|
347
348
|
```
|
348
349
|
<!--End PulumiCodeChooser -->
|
@@ -399,6 +400,7 @@ def get_alert_output(id: Optional[pulumi.Input[str]] = None,
|
|
399
400
|
import pulumi
|
400
401
|
import pulumi_wavefront as wavefront
|
401
402
|
|
403
|
+
# Get the information about the alert.
|
402
404
|
example = wavefront.get_alert(id="alert-id")
|
403
405
|
```
|
404
406
|
<!--End PulumiCodeChooser -->
|
pulumi_wavefront/get_alerts.py
CHANGED
@@ -88,6 +88,7 @@ def get_alerts(limit: Optional[int] = None,
|
|
88
88
|
import pulumi
|
89
89
|
import pulumi_wavefront as wavefront
|
90
90
|
|
91
|
+
# Get the information about all alerts.
|
91
92
|
example = wavefront.get_alerts(limit=10,
|
92
93
|
offset=0)
|
93
94
|
```
|
@@ -124,6 +125,7 @@ def get_alerts_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
124
125
|
import pulumi
|
125
126
|
import pulumi_wavefront as wavefront
|
126
127
|
|
128
|
+
# Get the information about all alerts.
|
127
129
|
example = wavefront.get_alerts(limit=10,
|
128
130
|
offset=0)
|
129
131
|
```
|
@@ -393,6 +393,7 @@ def get_dashboard(id: Optional[str] = None,
|
|
393
393
|
import pulumi
|
394
394
|
import pulumi_wavefront as wavefront
|
395
395
|
|
396
|
+
# Get the information about a dashboard.
|
396
397
|
example = wavefront.get_dashboard(id="dashboard-id")
|
397
398
|
```
|
398
399
|
<!--End PulumiCodeChooser -->
|
@@ -456,6 +457,7 @@ def get_dashboard_output(id: Optional[pulumi.Input[str]] = None,
|
|
456
457
|
import pulumi
|
457
458
|
import pulumi_wavefront as wavefront
|
458
459
|
|
460
|
+
# Get the information about a dashboard.
|
459
461
|
example = wavefront.get_dashboard(id="dashboard-id")
|
460
462
|
```
|
461
463
|
<!--End PulumiCodeChooser -->
|
@@ -88,6 +88,7 @@ def get_dashboards(limit: Optional[int] = None,
|
|
88
88
|
import pulumi
|
89
89
|
import pulumi_wavefront as wavefront
|
90
90
|
|
91
|
+
# Get the information about all dashboards.
|
91
92
|
example = wavefront.get_dashboards(limit=10,
|
92
93
|
offset=0)
|
93
94
|
```
|
@@ -124,6 +125,7 @@ def get_dashboards_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
124
125
|
import pulumi
|
125
126
|
import pulumi_wavefront as wavefront
|
126
127
|
|
128
|
+
# Get the information about all dashboards.
|
127
129
|
example = wavefront.get_dashboards(limit=10,
|
128
130
|
offset=0)
|
129
131
|
```
|
@@ -68,6 +68,7 @@ def get_default_user_group(opts: Optional[pulumi.InvokeOptions] = None) -> Await
|
|
68
68
|
import pulumi
|
69
69
|
import pulumi_wavefront as wavefront
|
70
70
|
|
71
|
+
# Get the default user group "Everyone"
|
71
72
|
everyone_group = wavefront.get_default_user_group()
|
72
73
|
```
|
73
74
|
<!--End PulumiCodeChooser -->
|
@@ -93,6 +94,7 @@ def get_default_user_group_output(opts: Optional[pulumi.InvokeOptions] = None) -
|
|
93
94
|
import pulumi
|
94
95
|
import pulumi_wavefront as wavefront
|
95
96
|
|
97
|
+
# Get the default user group "Everyone"
|
96
98
|
everyone_group = wavefront.get_default_user_group()
|
97
99
|
```
|
98
100
|
<!--End PulumiCodeChooser -->
|
@@ -332,6 +332,7 @@ def get_derived_metric(id: Optional[str] = None,
|
|
332
332
|
import pulumi
|
333
333
|
import pulumi_wavefront as wavefront
|
334
334
|
|
335
|
+
#Get the information about a derived metric.
|
335
336
|
example = wavefront.get_derived_metric(id="derived_metric_id")
|
336
337
|
```
|
337
338
|
<!--End PulumiCodeChooser -->
|
@@ -384,6 +385,7 @@ def get_derived_metric_output(id: Optional[pulumi.Input[str]] = None,
|
|
384
385
|
import pulumi
|
385
386
|
import pulumi_wavefront as wavefront
|
386
387
|
|
388
|
+
#Get the information about a derived metric.
|
387
389
|
example = wavefront.get_derived_metric(id="derived_metric_id")
|
388
390
|
```
|
389
391
|
<!--End PulumiCodeChooser -->
|
@@ -88,6 +88,7 @@ def get_derived_metrics(limit: Optional[int] = None,
|
|
88
88
|
import pulumi
|
89
89
|
import pulumi_wavefront as wavefront
|
90
90
|
|
91
|
+
# Get the information about all derived metrics.
|
91
92
|
example = wavefront.get_derived_metrics(limit=10,
|
92
93
|
offset=0)
|
93
94
|
```
|
@@ -124,6 +125,7 @@ def get_derived_metrics_output(limit: Optional[pulumi.Input[Optional[int]]] = No
|
|
124
125
|
import pulumi
|
125
126
|
import pulumi_wavefront as wavefront
|
126
127
|
|
128
|
+
# Get the information about all derived metrics.
|
127
129
|
example = wavefront.get_derived_metrics(limit=10,
|
128
130
|
offset=0)
|
129
131
|
```
|