pulumi-wavefront 3.2.0a1713340678__py3-none-any.whl → 3.2.0a1713905403__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 +0 -10
- pulumi_wavefront/alert.py +6 -8
- pulumi_wavefront/alert_target.py +10 -12
- pulumi_wavefront/cloud_integration_app_dynamics.py +8 -10
- pulumi_wavefront/cloud_integration_aws_external_id.py +2 -6
- pulumi_wavefront/cloud_integration_azure.py +4 -6
- pulumi_wavefront/cloud_integration_azure_activity_log.py +4 -6
- pulumi_wavefront/cloud_integration_cloud_trail.py +4 -6
- pulumi_wavefront/cloud_integration_cloud_watch.py +4 -6
- pulumi_wavefront/cloud_integration_ec2.py +4 -6
- pulumi_wavefront/cloud_integration_gcp.py +6 -12
- pulumi_wavefront/cloud_integration_gcp_billing.py +8 -14
- pulumi_wavefront/cloud_integration_new_relic.py +6 -6
- pulumi_wavefront/dashboard_json.py +228 -234
- pulumi_wavefront/derived_metric.py +2 -4
- pulumi_wavefront/event.py +4 -6
- pulumi_wavefront/external_link.py +2 -4
- pulumi_wavefront/get_alert.py +2 -4
- pulumi_wavefront/get_alerts.py +2 -4
- pulumi_wavefront/get_dashboard.py +2 -4
- pulumi_wavefront/get_dashboards.py +2 -4
- pulumi_wavefront/get_default_user_group.py +2 -4
- pulumi_wavefront/get_derived_metric.py +2 -4
- pulumi_wavefront/get_derived_metrics.py +2 -4
- pulumi_wavefront/get_event.py +2 -4
- pulumi_wavefront/get_events.py +8 -10
- pulumi_wavefront/get_external_link.py +2 -4
- pulumi_wavefront/get_external_links.py +2 -4
- pulumi_wavefront/get_maintenance_window.py +2 -4
- pulumi_wavefront/get_role.py +2 -4
- pulumi_wavefront/get_roles.py +2 -4
- pulumi_wavefront/get_user.py +2 -4
- pulumi_wavefront/get_user_group.py +2 -4
- pulumi_wavefront/get_user_groups.py +2 -4
- pulumi_wavefront/get_users.py +2 -4
- pulumi_wavefront/ingestion_policy.py +6 -6
- pulumi_wavefront/maintenance_window.py +8 -12
- pulumi_wavefront/metrics_policy.py +4 -12
- pulumi_wavefront/outputs.py +0 -10
- pulumi_wavefront/role.py +2 -6
- pulumi_wavefront/service_account.py +4 -8
- pulumi_wavefront/user.py +0 -4
- pulumi_wavefront/user_group.py +6 -6
- {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713905403.dist-info}/METADATA +1 -1
- pulumi_wavefront-3.2.0a1713905403.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.0a1713905403.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713905403.dist-info}/top_level.txt +0 -0
pulumi_wavefront/get_alerts.py
CHANGED
@@ -83,15 +83,14 @@ def get_alerts(limit: Optional[int] = None,
|
|
83
83
|
|
84
84
|
## Example Usage
|
85
85
|
|
86
|
-
<!--Start PulumiCodeChooser -->
|
87
86
|
```python
|
88
87
|
import pulumi
|
89
88
|
import pulumi_wavefront as wavefront
|
90
89
|
|
90
|
+
# Get the information about all alerts.
|
91
91
|
example = wavefront.get_alerts(limit=10,
|
92
92
|
offset=0)
|
93
93
|
```
|
94
|
-
<!--End PulumiCodeChooser -->
|
95
94
|
|
96
95
|
|
97
96
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -119,15 +118,14 @@ def get_alerts_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
119
118
|
|
120
119
|
## Example Usage
|
121
120
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
121
|
```python
|
124
122
|
import pulumi
|
125
123
|
import pulumi_wavefront as wavefront
|
126
124
|
|
125
|
+
# Get the information about all alerts.
|
127
126
|
example = wavefront.get_alerts(limit=10,
|
128
127
|
offset=0)
|
129
128
|
```
|
130
|
-
<!--End PulumiCodeChooser -->
|
131
129
|
|
132
130
|
|
133
131
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -388,14 +388,13 @@ def get_dashboard(id: Optional[str] = None,
|
|
388
388
|
|
389
389
|
## Example Usage
|
390
390
|
|
391
|
-
<!--Start PulumiCodeChooser -->
|
392
391
|
```python
|
393
392
|
import pulumi
|
394
393
|
import pulumi_wavefront as wavefront
|
395
394
|
|
395
|
+
# Get the information about a dashboard.
|
396
396
|
example = wavefront.get_dashboard(id="dashboard-id")
|
397
397
|
```
|
398
|
-
<!--End PulumiCodeChooser -->
|
399
398
|
|
400
399
|
|
401
400
|
:param str id: The ID associated with the dashboard data to be fetched.
|
@@ -451,14 +450,13 @@ def get_dashboard_output(id: Optional[pulumi.Input[str]] = None,
|
|
451
450
|
|
452
451
|
## Example Usage
|
453
452
|
|
454
|
-
<!--Start PulumiCodeChooser -->
|
455
453
|
```python
|
456
454
|
import pulumi
|
457
455
|
import pulumi_wavefront as wavefront
|
458
456
|
|
457
|
+
# Get the information about a dashboard.
|
459
458
|
example = wavefront.get_dashboard(id="dashboard-id")
|
460
459
|
```
|
461
|
-
<!--End PulumiCodeChooser -->
|
462
460
|
|
463
461
|
|
464
462
|
:param str id: The ID associated with the dashboard data to be fetched.
|
@@ -83,15 +83,14 @@ def get_dashboards(limit: Optional[int] = None,
|
|
83
83
|
|
84
84
|
## Example Usage
|
85
85
|
|
86
|
-
<!--Start PulumiCodeChooser -->
|
87
86
|
```python
|
88
87
|
import pulumi
|
89
88
|
import pulumi_wavefront as wavefront
|
90
89
|
|
90
|
+
# Get the information about all dashboards.
|
91
91
|
example = wavefront.get_dashboards(limit=10,
|
92
92
|
offset=0)
|
93
93
|
```
|
94
|
-
<!--End PulumiCodeChooser -->
|
95
94
|
|
96
95
|
|
97
96
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -119,15 +118,14 @@ def get_dashboards_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
119
118
|
|
120
119
|
## Example Usage
|
121
120
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
121
|
```python
|
124
122
|
import pulumi
|
125
123
|
import pulumi_wavefront as wavefront
|
126
124
|
|
125
|
+
# Get the information about all dashboards.
|
127
126
|
example = wavefront.get_dashboards(limit=10,
|
128
127
|
offset=0)
|
129
128
|
```
|
130
|
-
<!--End PulumiCodeChooser -->
|
131
129
|
|
132
130
|
|
133
131
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -63,14 +63,13 @@ def get_default_user_group(opts: Optional[pulumi.InvokeOptions] = None) -> Await
|
|
63
63
|
|
64
64
|
## Example Usage
|
65
65
|
|
66
|
-
<!--Start PulumiCodeChooser -->
|
67
66
|
```python
|
68
67
|
import pulumi
|
69
68
|
import pulumi_wavefront as wavefront
|
70
69
|
|
70
|
+
# Get the default user group "Everyone"
|
71
71
|
everyone_group = wavefront.get_default_user_group()
|
72
72
|
```
|
73
|
-
<!--End PulumiCodeChooser -->
|
74
73
|
"""
|
75
74
|
__args__ = dict()
|
76
75
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -88,13 +87,12 @@ def get_default_user_group_output(opts: Optional[pulumi.InvokeOptions] = None) -
|
|
88
87
|
|
89
88
|
## Example Usage
|
90
89
|
|
91
|
-
<!--Start PulumiCodeChooser -->
|
92
90
|
```python
|
93
91
|
import pulumi
|
94
92
|
import pulumi_wavefront as wavefront
|
95
93
|
|
94
|
+
# Get the default user group "Everyone"
|
96
95
|
everyone_group = wavefront.get_default_user_group()
|
97
96
|
```
|
98
|
-
<!--End PulumiCodeChooser -->
|
99
97
|
"""
|
100
98
|
...
|
@@ -327,14 +327,13 @@ def get_derived_metric(id: Optional[str] = None,
|
|
327
327
|
|
328
328
|
## Example Usage
|
329
329
|
|
330
|
-
<!--Start PulumiCodeChooser -->
|
331
330
|
```python
|
332
331
|
import pulumi
|
333
332
|
import pulumi_wavefront as wavefront
|
334
333
|
|
334
|
+
#Get the information about a derived metric.
|
335
335
|
example = wavefront.get_derived_metric(id="derived_metric_id")
|
336
336
|
```
|
337
|
-
<!--End PulumiCodeChooser -->
|
338
337
|
|
339
338
|
|
340
339
|
:param str id: The ID associated with the derived metric data to be fetched.
|
@@ -379,14 +378,13 @@ def get_derived_metric_output(id: Optional[pulumi.Input[str]] = None,
|
|
379
378
|
|
380
379
|
## Example Usage
|
381
380
|
|
382
|
-
<!--Start PulumiCodeChooser -->
|
383
381
|
```python
|
384
382
|
import pulumi
|
385
383
|
import pulumi_wavefront as wavefront
|
386
384
|
|
385
|
+
#Get the information about a derived metric.
|
387
386
|
example = wavefront.get_derived_metric(id="derived_metric_id")
|
388
387
|
```
|
389
|
-
<!--End PulumiCodeChooser -->
|
390
388
|
|
391
389
|
|
392
390
|
:param str id: The ID associated with the derived metric data to be fetched.
|
@@ -83,15 +83,14 @@ def get_derived_metrics(limit: Optional[int] = None,
|
|
83
83
|
|
84
84
|
## Example Usage
|
85
85
|
|
86
|
-
<!--Start PulumiCodeChooser -->
|
87
86
|
```python
|
88
87
|
import pulumi
|
89
88
|
import pulumi_wavefront as wavefront
|
90
89
|
|
90
|
+
# Get the information about all derived metrics.
|
91
91
|
example = wavefront.get_derived_metrics(limit=10,
|
92
92
|
offset=0)
|
93
93
|
```
|
94
|
-
<!--End PulumiCodeChooser -->
|
95
94
|
|
96
95
|
|
97
96
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -119,15 +118,14 @@ def get_derived_metrics_output(limit: Optional[pulumi.Input[Optional[int]]] = No
|
|
119
118
|
|
120
119
|
## Example Usage
|
121
120
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
121
|
```python
|
124
122
|
import pulumi
|
125
123
|
import pulumi_wavefront as wavefront
|
126
124
|
|
125
|
+
# Get the information about all derived metrics.
|
127
126
|
example = wavefront.get_derived_metrics(limit=10,
|
128
127
|
offset=0)
|
129
128
|
```
|
130
|
-
<!--End PulumiCodeChooser -->
|
131
129
|
|
132
130
|
|
133
131
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
pulumi_wavefront/get_event.py
CHANGED
@@ -156,14 +156,13 @@ def get_event(id: Optional[str] = None,
|
|
156
156
|
|
157
157
|
## Example Usage
|
158
158
|
|
159
|
-
<!--Start PulumiCodeChooser -->
|
160
159
|
```python
|
161
160
|
import pulumi
|
162
161
|
import pulumi_wavefront as wavefront
|
163
162
|
|
163
|
+
# Get the information about a Wavefront event by its ID.
|
164
164
|
example = wavefront.get_event(id="sample-event-id")
|
165
165
|
```
|
166
|
-
<!--End PulumiCodeChooser -->
|
167
166
|
|
168
167
|
|
169
168
|
:param str id: The ID associated with the event data to be fetched.
|
@@ -194,14 +193,13 @@ def get_event_output(id: Optional[pulumi.Input[str]] = None,
|
|
194
193
|
|
195
194
|
## Example Usage
|
196
195
|
|
197
|
-
<!--Start PulumiCodeChooser -->
|
198
196
|
```python
|
199
197
|
import pulumi
|
200
198
|
import pulumi_wavefront as wavefront
|
201
199
|
|
200
|
+
# Get the information about a Wavefront event by its ID.
|
202
201
|
example = wavefront.get_event(id="sample-event-id")
|
203
202
|
```
|
204
|
-
<!--End PulumiCodeChooser -->
|
205
203
|
|
206
204
|
|
207
205
|
:param str id: The ID associated with the event data to be fetched.
|
pulumi_wavefront/get_events.py
CHANGED
@@ -109,17 +109,16 @@ def get_events(earliest_start_time_epoch_millis: Optional[int] = None,
|
|
109
109
|
|
110
110
|
## Example Usage
|
111
111
|
|
112
|
-
<!--Start PulumiCodeChooser -->
|
113
112
|
```python
|
114
113
|
import pulumi
|
115
114
|
import pulumi_wavefront as wavefront
|
116
115
|
|
117
|
-
|
116
|
+
# Get the information about all events
|
117
|
+
example = wavefront.get_events(limit=10,
|
118
|
+
offset=0,
|
118
119
|
latest_start_time_epoch_millis=1665427195,
|
119
|
-
|
120
|
-
offset=0)
|
120
|
+
earliest_start_time_epoch_millis=1665427195)
|
121
121
|
```
|
122
|
-
<!--End PulumiCodeChooser -->
|
123
122
|
|
124
123
|
|
125
124
|
:param int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
|
@@ -155,17 +154,16 @@ def get_events_output(earliest_start_time_epoch_millis: Optional[pulumi.Input[in
|
|
155
154
|
|
156
155
|
## Example Usage
|
157
156
|
|
158
|
-
<!--Start PulumiCodeChooser -->
|
159
157
|
```python
|
160
158
|
import pulumi
|
161
159
|
import pulumi_wavefront as wavefront
|
162
160
|
|
163
|
-
|
161
|
+
# Get the information about all events
|
162
|
+
example = wavefront.get_events(limit=10,
|
163
|
+
offset=0,
|
164
164
|
latest_start_time_epoch_millis=1665427195,
|
165
|
-
|
166
|
-
offset=0)
|
165
|
+
earliest_start_time_epoch_millis=1665427195)
|
167
166
|
```
|
168
|
-
<!--End PulumiCodeChooser -->
|
169
167
|
|
170
168
|
|
171
169
|
:param int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
|
@@ -186,14 +186,13 @@ def get_external_link(id: Optional[str] = None,
|
|
186
186
|
|
187
187
|
## Example Usage
|
188
188
|
|
189
|
-
<!--Start PulumiCodeChooser -->
|
190
189
|
```python
|
191
190
|
import pulumi
|
192
191
|
import pulumi_wavefront as wavefront
|
193
192
|
|
193
|
+
# Get the information about a specific external links.
|
194
194
|
example = wavefront.get_external_link(id="sample-external-link-id")
|
195
195
|
```
|
196
|
-
<!--End PulumiCodeChooser -->
|
197
196
|
|
198
197
|
|
199
198
|
:param str id: The ID of the external link.
|
@@ -226,14 +225,13 @@ def get_external_link_output(id: Optional[pulumi.Input[str]] = None,
|
|
226
225
|
|
227
226
|
## Example Usage
|
228
227
|
|
229
|
-
<!--Start PulumiCodeChooser -->
|
230
228
|
```python
|
231
229
|
import pulumi
|
232
230
|
import pulumi_wavefront as wavefront
|
233
231
|
|
232
|
+
# Get the information about a specific external links.
|
234
233
|
example = wavefront.get_external_link(id="sample-external-link-id")
|
235
234
|
```
|
236
|
-
<!--End PulumiCodeChooser -->
|
237
235
|
|
238
236
|
|
239
237
|
:param str id: The ID of the external link.
|
@@ -83,15 +83,14 @@ def get_external_links(limit: Optional[int] = None,
|
|
83
83
|
|
84
84
|
## Example Usage
|
85
85
|
|
86
|
-
<!--Start PulumiCodeChooser -->
|
87
86
|
```python
|
88
87
|
import pulumi
|
89
88
|
import pulumi_wavefront as wavefront
|
90
89
|
|
90
|
+
# Get the information about all external links.
|
91
91
|
example = wavefront.get_external_links(limit=10,
|
92
92
|
offset=0)
|
93
93
|
```
|
94
|
-
<!--End PulumiCodeChooser -->
|
95
94
|
|
96
95
|
|
97
96
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -119,15 +118,14 @@ def get_external_links_output(limit: Optional[pulumi.Input[Optional[int]]] = Non
|
|
119
118
|
|
120
119
|
## Example Usage
|
121
120
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
121
|
```python
|
124
122
|
import pulumi
|
125
123
|
import pulumi_wavefront as wavefront
|
126
124
|
|
125
|
+
# Get the information about all external links.
|
127
126
|
example = wavefront.get_external_links(limit=10,
|
128
127
|
offset=0)
|
129
128
|
```
|
130
|
-
<!--End PulumiCodeChooser -->
|
131
129
|
|
132
130
|
|
133
131
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -261,14 +261,13 @@ def get_maintenance_window(id: Optional[str] = None,
|
|
261
261
|
|
262
262
|
## Example Usage
|
263
263
|
|
264
|
-
<!--Start PulumiCodeChooser -->
|
265
264
|
```python
|
266
265
|
import pulumi
|
267
266
|
import pulumi_wavefront as wavefront
|
268
267
|
|
268
|
+
# Get the information about specific maintenance window.
|
269
269
|
example = wavefront.get_maintenance_window(id="sample-maintenance-window-id")
|
270
270
|
```
|
271
|
-
<!--End PulumiCodeChooser -->
|
272
271
|
|
273
272
|
|
274
273
|
:param str id: The ID of the maintenance window.
|
@@ -307,14 +306,13 @@ def get_maintenance_window_output(id: Optional[pulumi.Input[str]] = None,
|
|
307
306
|
|
308
307
|
## Example Usage
|
309
308
|
|
310
|
-
<!--Start PulumiCodeChooser -->
|
311
309
|
```python
|
312
310
|
import pulumi
|
313
311
|
import pulumi_wavefront as wavefront
|
314
312
|
|
313
|
+
# Get the information about specific maintenance window.
|
315
314
|
example = wavefront.get_maintenance_window(id="sample-maintenance-window-id")
|
316
315
|
```
|
317
|
-
<!--End PulumiCodeChooser -->
|
318
316
|
|
319
317
|
|
320
318
|
:param str id: The ID of the maintenance window.
|
pulumi_wavefront/get_role.py
CHANGED
@@ -87,14 +87,13 @@ def get_role(id: Optional[str] = None,
|
|
87
87
|
|
88
88
|
## Example Usage
|
89
89
|
|
90
|
-
<!--Start PulumiCodeChooser -->
|
91
90
|
```python
|
92
91
|
import pulumi
|
93
92
|
import pulumi_wavefront as wavefront
|
94
93
|
|
94
|
+
# Get the information about the role.
|
95
95
|
example = wavefront.get_role(id="role-id")
|
96
96
|
```
|
97
|
-
<!--End PulumiCodeChooser -->
|
98
97
|
|
99
98
|
|
100
99
|
:param str id: The ID associated with the role data to be fetched.
|
@@ -119,14 +118,13 @@ def get_role_output(id: Optional[pulumi.Input[str]] = None,
|
|
119
118
|
|
120
119
|
## Example Usage
|
121
120
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
121
|
```python
|
124
122
|
import pulumi
|
125
123
|
import pulumi_wavefront as wavefront
|
126
124
|
|
125
|
+
# Get the information about the role.
|
127
126
|
example = wavefront.get_role(id="role-id")
|
128
127
|
```
|
129
|
-
<!--End PulumiCodeChooser -->
|
130
128
|
|
131
129
|
|
132
130
|
:param str id: The ID associated with the role data to be fetched.
|
pulumi_wavefront/get_roles.py
CHANGED
@@ -83,15 +83,14 @@ def get_roles(limit: Optional[int] = None,
|
|
83
83
|
|
84
84
|
## Example Usage
|
85
85
|
|
86
|
-
<!--Start PulumiCodeChooser -->
|
87
86
|
```python
|
88
87
|
import pulumi
|
89
88
|
import pulumi_wavefront as wavefront
|
90
89
|
|
90
|
+
# Get all Roles
|
91
91
|
roles = wavefront.get_roles(limit=10,
|
92
92
|
offset=0)
|
93
93
|
```
|
94
|
-
<!--End PulumiCodeChooser -->
|
95
94
|
|
96
95
|
|
97
96
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -119,15 +118,14 @@ def get_roles_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
119
118
|
|
120
119
|
## Example Usage
|
121
120
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
121
|
```python
|
124
122
|
import pulumi
|
125
123
|
import pulumi_wavefront as wavefront
|
126
124
|
|
125
|
+
# Get all Roles
|
127
126
|
roles = wavefront.get_roles(limit=10,
|
128
127
|
offset=0)
|
129
128
|
```
|
130
|
-
<!--End PulumiCodeChooser -->
|
131
129
|
|
132
130
|
|
133
131
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
pulumi_wavefront/get_user.py
CHANGED
@@ -108,14 +108,13 @@ def get_user(email: Optional[str] = None,
|
|
108
108
|
|
109
109
|
## Example Usage
|
110
110
|
|
111
|
-
<!--Start PulumiCodeChooser -->
|
112
111
|
```python
|
113
112
|
import pulumi
|
114
113
|
import pulumi_wavefront as wavefront
|
115
114
|
|
115
|
+
# Get the info for user "example.user@example.com"
|
116
116
|
example = wavefront.get_user(email="example.user@example.com")
|
117
117
|
```
|
118
|
-
<!--End PulumiCodeChooser -->
|
119
118
|
|
120
119
|
|
121
120
|
:param str email: The email associated with the user data to be fetched.
|
@@ -142,14 +141,13 @@ def get_user_output(email: Optional[pulumi.Input[str]] = None,
|
|
142
141
|
|
143
142
|
## Example Usage
|
144
143
|
|
145
|
-
<!--Start PulumiCodeChooser -->
|
146
144
|
```python
|
147
145
|
import pulumi
|
148
146
|
import pulumi_wavefront as wavefront
|
149
147
|
|
148
|
+
# Get the info for user "example.user@example.com"
|
150
149
|
example = wavefront.get_user(email="example.user@example.com")
|
151
150
|
```
|
152
|
-
<!--End PulumiCodeChooser -->
|
153
151
|
|
154
152
|
|
155
153
|
:param str email: The email associated with the user data to be fetched.
|
@@ -99,14 +99,13 @@ def get_user_group(id: Optional[str] = None,
|
|
99
99
|
|
100
100
|
## Example Usage
|
101
101
|
|
102
|
-
<!--Start PulumiCodeChooser -->
|
103
102
|
```python
|
104
103
|
import pulumi
|
105
104
|
import pulumi_wavefront as wavefront
|
106
105
|
|
106
|
+
# Get the information about the user group.
|
107
107
|
example = wavefront.get_user_group(id="user-group-id")
|
108
108
|
```
|
109
|
-
<!--End PulumiCodeChooser -->
|
110
109
|
|
111
110
|
|
112
111
|
:param str id: The ID associated with the user group data to be fetched.
|
@@ -132,14 +131,13 @@ def get_user_group_output(id: Optional[pulumi.Input[str]] = None,
|
|
132
131
|
|
133
132
|
## Example Usage
|
134
133
|
|
135
|
-
<!--Start PulumiCodeChooser -->
|
136
134
|
```python
|
137
135
|
import pulumi
|
138
136
|
import pulumi_wavefront as wavefront
|
139
137
|
|
138
|
+
# Get the information about the user group.
|
140
139
|
example = wavefront.get_user_group(id="user-group-id")
|
141
140
|
```
|
142
|
-
<!--End PulumiCodeChooser -->
|
143
141
|
|
144
142
|
|
145
143
|
:param str id: The ID associated with the user group data to be fetched.
|
@@ -83,15 +83,14 @@ def get_user_groups(limit: Optional[int] = None,
|
|
83
83
|
|
84
84
|
## Example Usage
|
85
85
|
|
86
|
-
<!--Start PulumiCodeChooser -->
|
87
86
|
```python
|
88
87
|
import pulumi
|
89
88
|
import pulumi_wavefront as wavefront
|
90
89
|
|
90
|
+
# Get all user groups
|
91
91
|
groups = wavefront.get_user_groups(limit=10,
|
92
92
|
offset=0)
|
93
93
|
```
|
94
|
-
<!--End PulumiCodeChooser -->
|
95
94
|
|
96
95
|
|
97
96
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
@@ -119,15 +118,14 @@ def get_user_groups_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
119
118
|
|
120
119
|
## Example Usage
|
121
120
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
121
|
```python
|
124
122
|
import pulumi
|
125
123
|
import pulumi_wavefront as wavefront
|
126
124
|
|
125
|
+
# Get all user groups
|
127
126
|
groups = wavefront.get_user_groups(limit=10,
|
128
127
|
offset=0)
|
129
128
|
```
|
130
|
-
<!--End PulumiCodeChooser -->
|
131
129
|
|
132
130
|
|
133
131
|
:param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
|
pulumi_wavefront/get_users.py
CHANGED
@@ -63,14 +63,13 @@ def get_users(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUsersR
|
|
63
63
|
|
64
64
|
## Example Usage
|
65
65
|
|
66
|
-
<!--Start PulumiCodeChooser -->
|
67
66
|
```python
|
68
67
|
import pulumi
|
69
68
|
import pulumi_wavefront as wavefront
|
70
69
|
|
70
|
+
# Get all users
|
71
71
|
users = wavefront.get_users()
|
72
72
|
```
|
73
|
-
<!--End PulumiCodeChooser -->
|
74
73
|
"""
|
75
74
|
__args__ = dict()
|
76
75
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -88,13 +87,12 @@ def get_users_output(opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Outp
|
|
88
87
|
|
89
88
|
## Example Usage
|
90
89
|
|
91
|
-
<!--Start PulumiCodeChooser -->
|
92
90
|
```python
|
93
91
|
import pulumi
|
94
92
|
import pulumi_wavefront as wavefront
|
95
93
|
|
94
|
+
# Get all users
|
96
95
|
users = wavefront.get_users()
|
97
96
|
```
|
98
|
-
<!--End PulumiCodeChooser -->
|
99
97
|
"""
|
100
98
|
...
|
@@ -254,14 +254,14 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
254
254
|
|
255
255
|
## Example Usage
|
256
256
|
|
257
|
-
<!--Start PulumiCodeChooser -->
|
258
257
|
```python
|
259
258
|
import pulumi
|
260
259
|
import pulumi_wavefront as wavefront
|
261
260
|
|
262
|
-
basic = wavefront.IngestionPolicy("basic",
|
261
|
+
basic = wavefront.IngestionPolicy("basic",
|
262
|
+
name="test_ingestion",
|
263
|
+
description="An ingestion policy for testing")
|
263
264
|
```
|
264
|
-
<!--End PulumiCodeChooser -->
|
265
265
|
|
266
266
|
## Import
|
267
267
|
|
@@ -287,14 +287,14 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
287
287
|
|
288
288
|
## Example Usage
|
289
289
|
|
290
|
-
<!--Start PulumiCodeChooser -->
|
291
290
|
```python
|
292
291
|
import pulumi
|
293
292
|
import pulumi_wavefront as wavefront
|
294
293
|
|
295
|
-
basic = wavefront.IngestionPolicy("basic",
|
294
|
+
basic = wavefront.IngestionPolicy("basic",
|
295
|
+
name="test_ingestion",
|
296
|
+
description="An ingestion policy for testing")
|
296
297
|
```
|
297
|
-
<!--End PulumiCodeChooser -->
|
298
298
|
|
299
299
|
## Import
|
300
300
|
|
@@ -375,22 +375,20 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
375
375
|
|
376
376
|
## Example Usage
|
377
377
|
|
378
|
-
<!--Start PulumiCodeChooser -->
|
379
378
|
```python
|
380
379
|
import pulumi
|
381
380
|
import pulumi_wavefront as wavefront
|
382
381
|
|
383
382
|
basic = wavefront.MaintenanceWindow("basic",
|
384
|
-
end_time_in_seconds=1601123456,
|
385
383
|
reason="Routine maintenance for 2020",
|
384
|
+
title="Routine maintenance",
|
385
|
+
start_time_in_seconds=1600123456,
|
386
|
+
end_time_in_seconds=1601123456,
|
386
387
|
relevant_host_names=[
|
387
388
|
"my_hostname",
|
388
389
|
"my_other_hostname",
|
389
|
-
]
|
390
|
-
start_time_in_seconds=1600123456,
|
391
|
-
title="Routine maintenance")
|
390
|
+
])
|
392
391
|
```
|
393
|
-
<!--End PulumiCodeChooser -->
|
394
392
|
|
395
393
|
## Import
|
396
394
|
|
@@ -434,22 +432,20 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
434
432
|
|
435
433
|
## Example Usage
|
436
434
|
|
437
|
-
<!--Start PulumiCodeChooser -->
|
438
435
|
```python
|
439
436
|
import pulumi
|
440
437
|
import pulumi_wavefront as wavefront
|
441
438
|
|
442
439
|
basic = wavefront.MaintenanceWindow("basic",
|
443
|
-
end_time_in_seconds=1601123456,
|
444
440
|
reason="Routine maintenance for 2020",
|
441
|
+
title="Routine maintenance",
|
442
|
+
start_time_in_seconds=1600123456,
|
443
|
+
end_time_in_seconds=1601123456,
|
445
444
|
relevant_host_names=[
|
446
445
|
"my_hostname",
|
447
446
|
"my_other_hostname",
|
448
|
-
]
|
449
|
-
start_time_in_seconds=1600123456,
|
450
|
-
title="Routine maintenance")
|
447
|
+
])
|
451
448
|
```
|
452
|
-
<!--End PulumiCodeChooser -->
|
453
449
|
|
454
450
|
## Import
|
455
451
|
|