pulumi-wavefront 3.2.0a1709368803__py3-none-any.whl → 3.2.0a1710920942__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 (47) hide show
  1. pulumi_wavefront/alert.py +6 -2
  2. pulumi_wavefront/alert_target.py +6 -2
  3. pulumi_wavefront/cloud_integration_app_dynamics.py +6 -2
  4. pulumi_wavefront/cloud_integration_aws_external_id.py +6 -2
  5. pulumi_wavefront/cloud_integration_azure.py +6 -2
  6. pulumi_wavefront/cloud_integration_azure_activity_log.py +6 -2
  7. pulumi_wavefront/cloud_integration_cloud_trail.py +6 -2
  8. pulumi_wavefront/cloud_integration_cloud_watch.py +6 -2
  9. pulumi_wavefront/cloud_integration_ec2.py +6 -2
  10. pulumi_wavefront/cloud_integration_gcp.py +6 -2
  11. pulumi_wavefront/cloud_integration_gcp_billing.py +6 -2
  12. pulumi_wavefront/cloud_integration_new_relic.py +6 -2
  13. pulumi_wavefront/dashboard.py +2 -2
  14. pulumi_wavefront/dashboard_json.py +6 -2
  15. pulumi_wavefront/derived_metric.py +6 -2
  16. pulumi_wavefront/event.py +6 -2
  17. pulumi_wavefront/external_link.py +6 -2
  18. pulumi_wavefront/get_alert.py +4 -0
  19. pulumi_wavefront/get_alerts.py +4 -0
  20. pulumi_wavefront/get_dashboard.py +4 -0
  21. pulumi_wavefront/get_dashboards.py +4 -0
  22. pulumi_wavefront/get_default_user_group.py +4 -0
  23. pulumi_wavefront/get_derived_metric.py +4 -0
  24. pulumi_wavefront/get_derived_metrics.py +4 -0
  25. pulumi_wavefront/get_event.py +4 -0
  26. pulumi_wavefront/get_events.py +4 -0
  27. pulumi_wavefront/get_external_link.py +4 -0
  28. pulumi_wavefront/get_external_links.py +4 -0
  29. pulumi_wavefront/get_maintenance_window.py +4 -0
  30. pulumi_wavefront/get_role.py +4 -0
  31. pulumi_wavefront/get_roles.py +4 -0
  32. pulumi_wavefront/get_user.py +4 -0
  33. pulumi_wavefront/get_user_group.py +4 -0
  34. pulumi_wavefront/get_user_groups.py +4 -0
  35. pulumi_wavefront/get_users.py +4 -0
  36. pulumi_wavefront/ingestion_policy.py +6 -2
  37. pulumi_wavefront/maintenance_window.py +6 -2
  38. pulumi_wavefront/metrics_policy.py +12 -2
  39. pulumi_wavefront/role.py +6 -2
  40. pulumi_wavefront/service_account.py +6 -2
  41. pulumi_wavefront/user.py +6 -2
  42. pulumi_wavefront/user_group.py +6 -2
  43. {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1710920942.dist-info}/METADATA +1 -1
  44. pulumi_wavefront-3.2.0a1710920942.dist-info/RECORD +58 -0
  45. {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1710920942.dist-info}/WHEEL +1 -1
  46. pulumi_wavefront-3.2.0a1709368803.dist-info/RECORD +0 -58
  47. {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1710920942.dist-info}/top_level.txt +0 -0
@@ -202,6 +202,7 @@ class DerivedMetric(pulumi.CustomResource):
202
202
 
203
203
  ## Example Usage
204
204
 
205
+ <!--Start PulumiCodeChooser -->
205
206
  ```python
206
207
  import pulumi
207
208
  import pulumi_wavefront as wavefront
@@ -210,13 +211,14 @@ class DerivedMetric(pulumi.CustomResource):
210
211
  minutes=5,
211
212
  query="aliasMetric(5, \\"some.metric\\")")
212
213
  ```
214
+ <!--End PulumiCodeChooser -->
213
215
 
214
216
  ## Import
215
217
 
216
218
  Derived Metrics can be imported by using the `id`, e.g.:
217
219
 
218
220
  ```sh
219
- $ pulumi import wavefront:index/derivedMetric:DerivedMetric derived_metric 1577102900578
221
+ $ pulumi import wavefront:index/derivedMetric:DerivedMetric derived_metric 1577102900578
220
222
  ```
221
223
 
222
224
  :param str resource_name: The name of the resource.
@@ -239,6 +241,7 @@ class DerivedMetric(pulumi.CustomResource):
239
241
 
240
242
  ## Example Usage
241
243
 
244
+ <!--Start PulumiCodeChooser -->
242
245
  ```python
243
246
  import pulumi
244
247
  import pulumi_wavefront as wavefront
@@ -247,13 +250,14 @@ class DerivedMetric(pulumi.CustomResource):
247
250
  minutes=5,
248
251
  query="aliasMetric(5, \\"some.metric\\")")
249
252
  ```
253
+ <!--End PulumiCodeChooser -->
250
254
 
251
255
  ## Import
252
256
 
253
257
  Derived Metrics can be imported by using the `id`, e.g.:
254
258
 
255
259
  ```sh
256
- $ pulumi import wavefront:index/derivedMetric:DerivedMetric derived_metric 1577102900578
260
+ $ pulumi import wavefront:index/derivedMetric:DerivedMetric derived_metric 1577102900578
257
261
  ```
258
262
 
259
263
  :param str resource_name: The name of the resource.
pulumi_wavefront/event.py CHANGED
@@ -194,6 +194,7 @@ class Event(pulumi.CustomResource):
194
194
 
195
195
  ## Example Usage
196
196
 
197
+ <!--Start PulumiCodeChooser -->
197
198
  ```python
198
199
  import pulumi
199
200
  import pulumi_wavefront as wavefront
@@ -206,13 +207,14 @@ class Event(pulumi.CustomResource):
206
207
  },
207
208
  tags=["eventTag1"])
208
209
  ```
210
+ <!--End PulumiCodeChooser -->
209
211
 
210
212
  ## Import
211
213
 
212
214
  You can import events by using the id, for example:
213
215
 
214
216
  ```sh
215
- $ pulumi import wavefront:index/event:Event event 1479868728473
217
+ $ pulumi import wavefront:index/event:Event event 1479868728473
216
218
  ```
217
219
 
218
220
  :param str resource_name: The name of the resource.
@@ -233,6 +235,7 @@ class Event(pulumi.CustomResource):
233
235
 
234
236
  ## Example Usage
235
237
 
238
+ <!--Start PulumiCodeChooser -->
236
239
  ```python
237
240
  import pulumi
238
241
  import pulumi_wavefront as wavefront
@@ -245,13 +248,14 @@ class Event(pulumi.CustomResource):
245
248
  },
246
249
  tags=["eventTag1"])
247
250
  ```
251
+ <!--End PulumiCodeChooser -->
248
252
 
249
253
  ## Import
250
254
 
251
255
  You can import events by using the id, for example:
252
256
 
253
257
  ```sh
254
- $ pulumi import wavefront:index/event:Event event 1479868728473
258
+ $ pulumi import wavefront:index/event:Event event 1479868728473
255
259
  ```
256
260
 
257
261
  :param str resource_name: The name of the resource.
@@ -279,6 +279,7 @@ class ExternalLink(pulumi.CustomResource):
279
279
 
280
280
  ## Example Usage
281
281
 
282
+ <!--Start PulumiCodeChooser -->
282
283
  ```python
283
284
  import pulumi
284
285
  import pulumi_wavefront as wavefront
@@ -287,13 +288,14 @@ class ExternalLink(pulumi.CustomResource):
287
288
  description="An external link description",
288
289
  template="https://example.com/source={{{source}}}&startTime={{startEpochMillis}}")
289
290
  ```
291
+ <!--End PulumiCodeChooser -->
290
292
 
291
293
  ## Import
292
294
 
293
295
  Maintenance windows can be imported by using the `id`, e.g.:
294
296
 
295
297
  ```sh
296
- $ pulumi import wavefront:index/externalLink:ExternalLink basic fVj6fz6zYC4aBkID
298
+ $ pulumi import wavefront:index/externalLink:ExternalLink basic fVj6fz6zYC4aBkID
297
299
  ```
298
300
 
299
301
  :param str resource_name: The name of the resource.
@@ -320,6 +322,7 @@ class ExternalLink(pulumi.CustomResource):
320
322
 
321
323
  ## Example Usage
322
324
 
325
+ <!--Start PulumiCodeChooser -->
323
326
  ```python
324
327
  import pulumi
325
328
  import pulumi_wavefront as wavefront
@@ -328,13 +331,14 @@ class ExternalLink(pulumi.CustomResource):
328
331
  description="An external link description",
329
332
  template="https://example.com/source={{{source}}}&startTime={{startEpochMillis}}")
330
333
  ```
334
+ <!--End PulumiCodeChooser -->
331
335
 
332
336
  ## Import
333
337
 
334
338
  Maintenance windows can be imported by using the `id`, e.g.:
335
339
 
336
340
  ```sh
337
- $ pulumi import wavefront:index/externalLink:ExternalLink basic fVj6fz6zYC4aBkID
341
+ $ pulumi import wavefront:index/externalLink:ExternalLink basic fVj6fz6zYC4aBkID
338
342
  ```
339
343
 
340
344
  :param str resource_name: The name of the resource.
@@ -338,12 +338,14 @@ def get_alert(id: Optional[str] = None,
338
338
 
339
339
  ## Example Usage
340
340
 
341
+ <!--Start PulumiCodeChooser -->
341
342
  ```python
342
343
  import pulumi
343
344
  import pulumi_wavefront as wavefront
344
345
 
345
346
  example = wavefront.get_alert(id="alert-id")
346
347
  ```
348
+ <!--End PulumiCodeChooser -->
347
349
 
348
350
 
349
351
  :param str id: The ID associated with the alert data to be fetched.
@@ -392,12 +394,14 @@ def get_alert_output(id: Optional[pulumi.Input[str]] = None,
392
394
 
393
395
  ## Example Usage
394
396
 
397
+ <!--Start PulumiCodeChooser -->
395
398
  ```python
396
399
  import pulumi
397
400
  import pulumi_wavefront as wavefront
398
401
 
399
402
  example = wavefront.get_alert(id="alert-id")
400
403
  ```
404
+ <!--End PulumiCodeChooser -->
401
405
 
402
406
 
403
407
  :param str id: The ID associated with the alert data to be fetched.
@@ -83,6 +83,7 @@ def get_alerts(limit: Optional[int] = None,
83
83
 
84
84
  ## Example Usage
85
85
 
86
+ <!--Start PulumiCodeChooser -->
86
87
  ```python
87
88
  import pulumi
88
89
  import pulumi_wavefront as wavefront
@@ -90,6 +91,7 @@ def get_alerts(limit: Optional[int] = None,
90
91
  example = wavefront.get_alerts(limit=10,
91
92
  offset=0)
92
93
  ```
94
+ <!--End PulumiCodeChooser -->
93
95
 
94
96
 
95
97
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -117,6 +119,7 @@ def get_alerts_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
117
119
 
118
120
  ## Example Usage
119
121
 
122
+ <!--Start PulumiCodeChooser -->
120
123
  ```python
121
124
  import pulumi
122
125
  import pulumi_wavefront as wavefront
@@ -124,6 +127,7 @@ def get_alerts_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
124
127
  example = wavefront.get_alerts(limit=10,
125
128
  offset=0)
126
129
  ```
130
+ <!--End PulumiCodeChooser -->
127
131
 
128
132
 
129
133
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -388,12 +388,14 @@ def get_dashboard(id: Optional[str] = None,
388
388
 
389
389
  ## Example Usage
390
390
 
391
+ <!--Start PulumiCodeChooser -->
391
392
  ```python
392
393
  import pulumi
393
394
  import pulumi_wavefront as wavefront
394
395
 
395
396
  example = wavefront.get_dashboard(id="dashboard-id")
396
397
  ```
398
+ <!--End PulumiCodeChooser -->
397
399
 
398
400
 
399
401
  :param str id: The ID associated with the dashboard data to be fetched.
@@ -449,12 +451,14 @@ def get_dashboard_output(id: Optional[pulumi.Input[str]] = None,
449
451
 
450
452
  ## Example Usage
451
453
 
454
+ <!--Start PulumiCodeChooser -->
452
455
  ```python
453
456
  import pulumi
454
457
  import pulumi_wavefront as wavefront
455
458
 
456
459
  example = wavefront.get_dashboard(id="dashboard-id")
457
460
  ```
461
+ <!--End PulumiCodeChooser -->
458
462
 
459
463
 
460
464
  :param str id: The ID associated with the dashboard data to be fetched.
@@ -83,6 +83,7 @@ def get_dashboards(limit: Optional[int] = None,
83
83
 
84
84
  ## Example Usage
85
85
 
86
+ <!--Start PulumiCodeChooser -->
86
87
  ```python
87
88
  import pulumi
88
89
  import pulumi_wavefront as wavefront
@@ -90,6 +91,7 @@ def get_dashboards(limit: Optional[int] = None,
90
91
  example = wavefront.get_dashboards(limit=10,
91
92
  offset=0)
92
93
  ```
94
+ <!--End PulumiCodeChooser -->
93
95
 
94
96
 
95
97
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -117,6 +119,7 @@ def get_dashboards_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
117
119
 
118
120
  ## Example Usage
119
121
 
122
+ <!--Start PulumiCodeChooser -->
120
123
  ```python
121
124
  import pulumi
122
125
  import pulumi_wavefront as wavefront
@@ -124,6 +127,7 @@ def get_dashboards_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
124
127
  example = wavefront.get_dashboards(limit=10,
125
128
  offset=0)
126
129
  ```
130
+ <!--End PulumiCodeChooser -->
127
131
 
128
132
 
129
133
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -63,12 +63,14 @@ def get_default_user_group(opts: Optional[pulumi.InvokeOptions] = None) -> Await
63
63
 
64
64
  ## Example Usage
65
65
 
66
+ <!--Start PulumiCodeChooser -->
66
67
  ```python
67
68
  import pulumi
68
69
  import pulumi_wavefront as wavefront
69
70
 
70
71
  everyone_group = wavefront.get_default_user_group()
71
72
  ```
73
+ <!--End PulumiCodeChooser -->
72
74
  """
73
75
  __args__ = dict()
74
76
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
@@ -86,11 +88,13 @@ def get_default_user_group_output(opts: Optional[pulumi.InvokeOptions] = None) -
86
88
 
87
89
  ## Example Usage
88
90
 
91
+ <!--Start PulumiCodeChooser -->
89
92
  ```python
90
93
  import pulumi
91
94
  import pulumi_wavefront as wavefront
92
95
 
93
96
  everyone_group = wavefront.get_default_user_group()
94
97
  ```
98
+ <!--End PulumiCodeChooser -->
95
99
  """
96
100
  ...
@@ -327,12 +327,14 @@ def get_derived_metric(id: Optional[str] = None,
327
327
 
328
328
  ## Example Usage
329
329
 
330
+ <!--Start PulumiCodeChooser -->
330
331
  ```python
331
332
  import pulumi
332
333
  import pulumi_wavefront as wavefront
333
334
 
334
335
  example = wavefront.get_derived_metric(id="derived_metric_id")
335
336
  ```
337
+ <!--End PulumiCodeChooser -->
336
338
 
337
339
 
338
340
  :param str id: The ID associated with the derived metric data to be fetched.
@@ -377,12 +379,14 @@ def get_derived_metric_output(id: Optional[pulumi.Input[str]] = None,
377
379
 
378
380
  ## Example Usage
379
381
 
382
+ <!--Start PulumiCodeChooser -->
380
383
  ```python
381
384
  import pulumi
382
385
  import pulumi_wavefront as wavefront
383
386
 
384
387
  example = wavefront.get_derived_metric(id="derived_metric_id")
385
388
  ```
389
+ <!--End PulumiCodeChooser -->
386
390
 
387
391
 
388
392
  :param str id: The ID associated with the derived metric data to be fetched.
@@ -83,6 +83,7 @@ def get_derived_metrics(limit: Optional[int] = None,
83
83
 
84
84
  ## Example Usage
85
85
 
86
+ <!--Start PulumiCodeChooser -->
86
87
  ```python
87
88
  import pulumi
88
89
  import pulumi_wavefront as wavefront
@@ -90,6 +91,7 @@ def get_derived_metrics(limit: Optional[int] = None,
90
91
  example = wavefront.get_derived_metrics(limit=10,
91
92
  offset=0)
92
93
  ```
94
+ <!--End PulumiCodeChooser -->
93
95
 
94
96
 
95
97
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -117,6 +119,7 @@ def get_derived_metrics_output(limit: Optional[pulumi.Input[Optional[int]]] = No
117
119
 
118
120
  ## Example Usage
119
121
 
122
+ <!--Start PulumiCodeChooser -->
120
123
  ```python
121
124
  import pulumi
122
125
  import pulumi_wavefront as wavefront
@@ -124,6 +127,7 @@ def get_derived_metrics_output(limit: Optional[pulumi.Input[Optional[int]]] = No
124
127
  example = wavefront.get_derived_metrics(limit=10,
125
128
  offset=0)
126
129
  ```
130
+ <!--End PulumiCodeChooser -->
127
131
 
128
132
 
129
133
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -156,12 +156,14 @@ def get_event(id: Optional[str] = None,
156
156
 
157
157
  ## Example Usage
158
158
 
159
+ <!--Start PulumiCodeChooser -->
159
160
  ```python
160
161
  import pulumi
161
162
  import pulumi_wavefront as wavefront
162
163
 
163
164
  example = wavefront.get_event(id="sample-event-id")
164
165
  ```
166
+ <!--End PulumiCodeChooser -->
165
167
 
166
168
 
167
169
  :param str id: The ID associated with the event data to be fetched.
@@ -192,12 +194,14 @@ def get_event_output(id: Optional[pulumi.Input[str]] = None,
192
194
 
193
195
  ## Example Usage
194
196
 
197
+ <!--Start PulumiCodeChooser -->
195
198
  ```python
196
199
  import pulumi
197
200
  import pulumi_wavefront as wavefront
198
201
 
199
202
  example = wavefront.get_event(id="sample-event-id")
200
203
  ```
204
+ <!--End PulumiCodeChooser -->
201
205
 
202
206
 
203
207
  :param str id: The ID associated with the event data to be fetched.
@@ -109,6 +109,7 @@ def get_events(earliest_start_time_epoch_millis: Optional[int] = None,
109
109
 
110
110
  ## Example Usage
111
111
 
112
+ <!--Start PulumiCodeChooser -->
112
113
  ```python
113
114
  import pulumi
114
115
  import pulumi_wavefront as wavefront
@@ -118,6 +119,7 @@ def get_events(earliest_start_time_epoch_millis: Optional[int] = None,
118
119
  limit=10,
119
120
  offset=0)
120
121
  ```
122
+ <!--End PulumiCodeChooser -->
121
123
 
122
124
 
123
125
  :param int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
@@ -153,6 +155,7 @@ def get_events_output(earliest_start_time_epoch_millis: Optional[pulumi.Input[in
153
155
 
154
156
  ## Example Usage
155
157
 
158
+ <!--Start PulumiCodeChooser -->
156
159
  ```python
157
160
  import pulumi
158
161
  import pulumi_wavefront as wavefront
@@ -162,6 +165,7 @@ def get_events_output(earliest_start_time_epoch_millis: Optional[pulumi.Input[in
162
165
  limit=10,
163
166
  offset=0)
164
167
  ```
168
+ <!--End PulumiCodeChooser -->
165
169
 
166
170
 
167
171
  :param int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
@@ -186,12 +186,14 @@ def get_external_link(id: Optional[str] = None,
186
186
 
187
187
  ## Example Usage
188
188
 
189
+ <!--Start PulumiCodeChooser -->
189
190
  ```python
190
191
  import pulumi
191
192
  import pulumi_wavefront as wavefront
192
193
 
193
194
  example = wavefront.get_external_link(id="sample-external-link-id")
194
195
  ```
196
+ <!--End PulumiCodeChooser -->
195
197
 
196
198
 
197
199
  :param str id: The ID of the external link.
@@ -224,12 +226,14 @@ def get_external_link_output(id: Optional[pulumi.Input[str]] = None,
224
226
 
225
227
  ## Example Usage
226
228
 
229
+ <!--Start PulumiCodeChooser -->
227
230
  ```python
228
231
  import pulumi
229
232
  import pulumi_wavefront as wavefront
230
233
 
231
234
  example = wavefront.get_external_link(id="sample-external-link-id")
232
235
  ```
236
+ <!--End PulumiCodeChooser -->
233
237
 
234
238
 
235
239
  :param str id: The ID of the external link.
@@ -83,6 +83,7 @@ def get_external_links(limit: Optional[int] = None,
83
83
 
84
84
  ## Example Usage
85
85
 
86
+ <!--Start PulumiCodeChooser -->
86
87
  ```python
87
88
  import pulumi
88
89
  import pulumi_wavefront as wavefront
@@ -90,6 +91,7 @@ def get_external_links(limit: Optional[int] = None,
90
91
  example = wavefront.get_external_links(limit=10,
91
92
  offset=0)
92
93
  ```
94
+ <!--End PulumiCodeChooser -->
93
95
 
94
96
 
95
97
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -117,6 +119,7 @@ def get_external_links_output(limit: Optional[pulumi.Input[Optional[int]]] = Non
117
119
 
118
120
  ## Example Usage
119
121
 
122
+ <!--Start PulumiCodeChooser -->
120
123
  ```python
121
124
  import pulumi
122
125
  import pulumi_wavefront as wavefront
@@ -124,6 +127,7 @@ def get_external_links_output(limit: Optional[pulumi.Input[Optional[int]]] = Non
124
127
  example = wavefront.get_external_links(limit=10,
125
128
  offset=0)
126
129
  ```
130
+ <!--End PulumiCodeChooser -->
127
131
 
128
132
 
129
133
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -261,12 +261,14 @@ def get_maintenance_window(id: Optional[str] = None,
261
261
 
262
262
  ## Example Usage
263
263
 
264
+ <!--Start PulumiCodeChooser -->
264
265
  ```python
265
266
  import pulumi
266
267
  import pulumi_wavefront as wavefront
267
268
 
268
269
  example = wavefront.get_maintenance_window(id="sample-maintenance-window-id")
269
270
  ```
271
+ <!--End PulumiCodeChooser -->
270
272
 
271
273
 
272
274
  :param str id: The ID of the maintenance window.
@@ -305,12 +307,14 @@ def get_maintenance_window_output(id: Optional[pulumi.Input[str]] = None,
305
307
 
306
308
  ## Example Usage
307
309
 
310
+ <!--Start PulumiCodeChooser -->
308
311
  ```python
309
312
  import pulumi
310
313
  import pulumi_wavefront as wavefront
311
314
 
312
315
  example = wavefront.get_maintenance_window(id="sample-maintenance-window-id")
313
316
  ```
317
+ <!--End PulumiCodeChooser -->
314
318
 
315
319
 
316
320
  :param str id: The ID of the maintenance window.
@@ -87,12 +87,14 @@ def get_role(id: Optional[str] = None,
87
87
 
88
88
  ## Example Usage
89
89
 
90
+ <!--Start PulumiCodeChooser -->
90
91
  ```python
91
92
  import pulumi
92
93
  import pulumi_wavefront as wavefront
93
94
 
94
95
  example = wavefront.get_role(id="role-id")
95
96
  ```
97
+ <!--End PulumiCodeChooser -->
96
98
 
97
99
 
98
100
  :param str id: The ID associated with the role data to be fetched.
@@ -117,12 +119,14 @@ def get_role_output(id: Optional[pulumi.Input[str]] = None,
117
119
 
118
120
  ## Example Usage
119
121
 
122
+ <!--Start PulumiCodeChooser -->
120
123
  ```python
121
124
  import pulumi
122
125
  import pulumi_wavefront as wavefront
123
126
 
124
127
  example = wavefront.get_role(id="role-id")
125
128
  ```
129
+ <!--End PulumiCodeChooser -->
126
130
 
127
131
 
128
132
  :param str id: The ID associated with the role data to be fetched.
@@ -83,6 +83,7 @@ def get_roles(limit: Optional[int] = None,
83
83
 
84
84
  ## Example Usage
85
85
 
86
+ <!--Start PulumiCodeChooser -->
86
87
  ```python
87
88
  import pulumi
88
89
  import pulumi_wavefront as wavefront
@@ -90,6 +91,7 @@ def get_roles(limit: Optional[int] = None,
90
91
  roles = wavefront.get_roles(limit=10,
91
92
  offset=0)
92
93
  ```
94
+ <!--End PulumiCodeChooser -->
93
95
 
94
96
 
95
97
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -117,6 +119,7 @@ def get_roles_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
117
119
 
118
120
  ## Example Usage
119
121
 
122
+ <!--Start PulumiCodeChooser -->
120
123
  ```python
121
124
  import pulumi
122
125
  import pulumi_wavefront as wavefront
@@ -124,6 +127,7 @@ def get_roles_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
124
127
  roles = wavefront.get_roles(limit=10,
125
128
  offset=0)
126
129
  ```
130
+ <!--End PulumiCodeChooser -->
127
131
 
128
132
 
129
133
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -108,12 +108,14 @@ def get_user(email: Optional[str] = None,
108
108
 
109
109
  ## Example Usage
110
110
 
111
+ <!--Start PulumiCodeChooser -->
111
112
  ```python
112
113
  import pulumi
113
114
  import pulumi_wavefront as wavefront
114
115
 
115
116
  example = wavefront.get_user(email="example.user@example.com")
116
117
  ```
118
+ <!--End PulumiCodeChooser -->
117
119
 
118
120
 
119
121
  :param str email: The email associated with the user data to be fetched.
@@ -140,12 +142,14 @@ def get_user_output(email: Optional[pulumi.Input[str]] = None,
140
142
 
141
143
  ## Example Usage
142
144
 
145
+ <!--Start PulumiCodeChooser -->
143
146
  ```python
144
147
  import pulumi
145
148
  import pulumi_wavefront as wavefront
146
149
 
147
150
  example = wavefront.get_user(email="example.user@example.com")
148
151
  ```
152
+ <!--End PulumiCodeChooser -->
149
153
 
150
154
 
151
155
  :param str email: The email associated with the user data to be fetched.
@@ -99,12 +99,14 @@ def get_user_group(id: Optional[str] = None,
99
99
 
100
100
  ## Example Usage
101
101
 
102
+ <!--Start PulumiCodeChooser -->
102
103
  ```python
103
104
  import pulumi
104
105
  import pulumi_wavefront as wavefront
105
106
 
106
107
  example = wavefront.get_user_group(id="user-group-id")
107
108
  ```
109
+ <!--End PulumiCodeChooser -->
108
110
 
109
111
 
110
112
  :param str id: The ID associated with the user group data to be fetched.
@@ -130,12 +132,14 @@ def get_user_group_output(id: Optional[pulumi.Input[str]] = None,
130
132
 
131
133
  ## Example Usage
132
134
 
135
+ <!--Start PulumiCodeChooser -->
133
136
  ```python
134
137
  import pulumi
135
138
  import pulumi_wavefront as wavefront
136
139
 
137
140
  example = wavefront.get_user_group(id="user-group-id")
138
141
  ```
142
+ <!--End PulumiCodeChooser -->
139
143
 
140
144
 
141
145
  :param str id: The ID associated with the user group data to be fetched.
@@ -83,6 +83,7 @@ def get_user_groups(limit: Optional[int] = None,
83
83
 
84
84
  ## Example Usage
85
85
 
86
+ <!--Start PulumiCodeChooser -->
86
87
  ```python
87
88
  import pulumi
88
89
  import pulumi_wavefront as wavefront
@@ -90,6 +91,7 @@ def get_user_groups(limit: Optional[int] = None,
90
91
  groups = wavefront.get_user_groups(limit=10,
91
92
  offset=0)
92
93
  ```
94
+ <!--End PulumiCodeChooser -->
93
95
 
94
96
 
95
97
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
@@ -117,6 +119,7 @@ def get_user_groups_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
117
119
 
118
120
  ## Example Usage
119
121
 
122
+ <!--Start PulumiCodeChooser -->
120
123
  ```python
121
124
  import pulumi
122
125
  import pulumi_wavefront as wavefront
@@ -124,6 +127,7 @@ def get_user_groups_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
124
127
  groups = wavefront.get_user_groups(limit=10,
125
128
  offset=0)
126
129
  ```
130
+ <!--End PulumiCodeChooser -->
127
131
 
128
132
 
129
133
  :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.