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.
- pulumi_wavefront/_inputs.py +68 -0
- pulumi_wavefront/_utilities.py +2 -2
- pulumi_wavefront/alert.py +102 -2
- pulumi_wavefront/alert_target.py +6 -2
- pulumi_wavefront/cloud_integration_app_dynamics.py +6 -2
- pulumi_wavefront/cloud_integration_aws_external_id.py +6 -2
- pulumi_wavefront/cloud_integration_azure.py +6 -2
- pulumi_wavefront/cloud_integration_azure_activity_log.py +6 -2
- pulumi_wavefront/cloud_integration_cloud_trail.py +6 -2
- pulumi_wavefront/cloud_integration_cloud_watch.py +6 -2
- pulumi_wavefront/cloud_integration_ec2.py +6 -2
- pulumi_wavefront/cloud_integration_gcp.py +6 -2
- pulumi_wavefront/cloud_integration_gcp_billing.py +6 -2
- pulumi_wavefront/cloud_integration_new_relic.py +6 -2
- pulumi_wavefront/dashboard.py +2 -2
- pulumi_wavefront/dashboard_json.py +6 -2
- pulumi_wavefront/derived_metric.py +6 -2
- pulumi_wavefront/event.py +6 -2
- pulumi_wavefront/external_link.py +6 -2
- pulumi_wavefront/get_alert.py +31 -1
- pulumi_wavefront/get_alerts.py +4 -0
- pulumi_wavefront/get_dashboard.py +4 -0
- pulumi_wavefront/get_dashboards.py +4 -0
- pulumi_wavefront/get_default_user_group.py +4 -0
- pulumi_wavefront/get_derived_metric.py +4 -0
- pulumi_wavefront/get_derived_metrics.py +4 -0
- pulumi_wavefront/get_event.py +4 -0
- pulumi_wavefront/get_events.py +4 -0
- pulumi_wavefront/get_external_link.py +4 -0
- pulumi_wavefront/get_external_links.py +4 -0
- pulumi_wavefront/get_maintenance_window.py +4 -0
- pulumi_wavefront/get_role.py +4 -0
- pulumi_wavefront/get_roles.py +4 -0
- pulumi_wavefront/get_user.py +4 -0
- pulumi_wavefront/get_user_group.py +4 -0
- pulumi_wavefront/get_user_groups.py +4 -0
- pulumi_wavefront/get_users.py +4 -0
- pulumi_wavefront/ingestion_policy.py +6 -2
- pulumi_wavefront/maintenance_window.py +6 -2
- pulumi_wavefront/metrics_policy.py +12 -2
- pulumi_wavefront/outputs.py +195 -0
- pulumi_wavefront/role.py +6 -2
- pulumi_wavefront/service_account.py +6 -2
- pulumi_wavefront/user.py +6 -2
- pulumi_wavefront/user_group.py +6 -2
- {pulumi_wavefront-3.1.0a1704217862.dist-info → pulumi_wavefront-3.1.1.dist-info}/METADATA +2 -2
- pulumi_wavefront-3.1.1.dist-info/RECORD +58 -0
- pulumi_wavefront-3.1.0a1704217862.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.1.0a1704217862.dist-info → pulumi_wavefront-3.1.1.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.1.0a1704217862.dist-info → pulumi_wavefront-3.1.1.dist-info}/top_level.txt +0 -0
pulumi_wavefront/get_alerts.py
CHANGED
@@ -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.
|
pulumi_wavefront/get_event.py
CHANGED
@@ -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.
|
pulumi_wavefront/get_events.py
CHANGED
@@ -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.
|
pulumi_wavefront/get_role.py
CHANGED
@@ -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.
|
pulumi_wavefront/get_roles.py
CHANGED
@@ -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.
|
pulumi_wavefront/get_user.py
CHANGED
@@ -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.
|
pulumi_wavefront/get_users.py
CHANGED
@@ -63,12 +63,14 @@ def get_users(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUsersR
|
|
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
|
users = wavefront.get_users()
|
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_users_output(opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Outp
|
|
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
|
users = wavefront.get_users()
|
94
97
|
```
|
98
|
+
<!--End PulumiCodeChooser -->
|
95
99
|
"""
|
96
100
|
...
|
@@ -254,19 +254,21 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
254
254
|
|
255
255
|
## Example Usage
|
256
256
|
|
257
|
+
<!--Start PulumiCodeChooser -->
|
257
258
|
```python
|
258
259
|
import pulumi
|
259
260
|
import pulumi_wavefront as wavefront
|
260
261
|
|
261
262
|
basic = wavefront.IngestionPolicy("basic", description="An ingestion policy for testing")
|
262
263
|
```
|
264
|
+
<!--End PulumiCodeChooser -->
|
263
265
|
|
264
266
|
## Import
|
265
267
|
|
266
268
|
ingestion policies can be imported by using the `id`, e.g.:
|
267
269
|
|
268
270
|
```sh
|
269
|
-
|
271
|
+
$ pulumi import wavefront:index/ingestionPolicy:IngestionPolicy basic test_ingestion-1611946841064
|
270
272
|
```
|
271
273
|
|
272
274
|
:param str resource_name: The name of the resource.
|
@@ -285,19 +287,21 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
285
287
|
|
286
288
|
## Example Usage
|
287
289
|
|
290
|
+
<!--Start PulumiCodeChooser -->
|
288
291
|
```python
|
289
292
|
import pulumi
|
290
293
|
import pulumi_wavefront as wavefront
|
291
294
|
|
292
295
|
basic = wavefront.IngestionPolicy("basic", description="An ingestion policy for testing")
|
293
296
|
```
|
297
|
+
<!--End PulumiCodeChooser -->
|
294
298
|
|
295
299
|
## Import
|
296
300
|
|
297
301
|
ingestion policies can be imported by using the `id`, e.g.:
|
298
302
|
|
299
303
|
```sh
|
300
|
-
|
304
|
+
$ pulumi import wavefront:index/ingestionPolicy:IngestionPolicy basic test_ingestion-1611946841064
|
301
305
|
```
|
302
306
|
|
303
307
|
:param str resource_name: The name of the resource.
|
@@ -375,6 +375,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
375
375
|
|
376
376
|
## Example Usage
|
377
377
|
|
378
|
+
<!--Start PulumiCodeChooser -->
|
378
379
|
```python
|
379
380
|
import pulumi
|
380
381
|
import pulumi_wavefront as wavefront
|
@@ -389,13 +390,14 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
389
390
|
start_time_in_seconds=1600123456,
|
390
391
|
title="Routine maintenance")
|
391
392
|
```
|
393
|
+
<!--End PulumiCodeChooser -->
|
392
394
|
|
393
395
|
## Import
|
394
396
|
|
395
397
|
Maintenance windows can be imported using the `id`, e.g.
|
396
398
|
|
397
399
|
```sh
|
398
|
-
|
400
|
+
$ pulumi import wavefront:index/maintenanceWindow:MaintenanceWindow basic 1600383357095
|
399
401
|
```
|
400
402
|
|
401
403
|
:param str resource_name: The name of the resource.
|
@@ -432,6 +434,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
432
434
|
|
433
435
|
## Example Usage
|
434
436
|
|
437
|
+
<!--Start PulumiCodeChooser -->
|
435
438
|
```python
|
436
439
|
import pulumi
|
437
440
|
import pulumi_wavefront as wavefront
|
@@ -446,13 +449,14 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
446
449
|
start_time_in_seconds=1600123456,
|
447
450
|
title="Routine maintenance")
|
448
451
|
```
|
452
|
+
<!--End PulumiCodeChooser -->
|
449
453
|
|
450
454
|
## Import
|
451
455
|
|
452
456
|
Maintenance windows can be imported using the `id`, e.g.
|
453
457
|
|
454
458
|
```sh
|
455
|
-
|
459
|
+
$ pulumi import wavefront:index/maintenanceWindow:MaintenanceWindow basic 1600383357095
|
456
460
|
```
|
457
461
|
|
458
462
|
:param str resource_name: The name of the resource.
|