pulumi-wavefront 3.1.0a1704219685__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 +10 -0
- pulumi_wavefront/_utilities.py +2 -2
- pulumi_wavefront/alert.py +6 -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 +4 -0
- 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 +30 -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.0a1704219685.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.0a1704219685.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.1.0a1704219685.dist-info → pulumi_wavefront-3.1.1.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.1.0a1704219685.dist-info → pulumi_wavefront-3.1.1.dist-info}/top_level.txt +0 -0
@@ -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.
|
@@ -120,6 +120,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
120
120
|
|
121
121
|
## Example Usage
|
122
122
|
|
123
|
+
<!--Start PulumiCodeChooser -->
|
123
124
|
```python
|
124
125
|
import pulumi
|
125
126
|
import pulumi_wavefront as wavefront
|
@@ -134,12 +135,15 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
134
135
|
user_group_ids=[everyone.group_id],
|
135
136
|
)])
|
136
137
|
```
|
138
|
+
<!--End PulumiCodeChooser -->
|
139
|
+
|
137
140
|
## Data Source
|
138
141
|
|
139
142
|
Provides a Wavefront Metrics Policy Data Source. This allows looking up the current policy and associated rules.
|
140
143
|
|
141
144
|
### Example
|
142
145
|
|
146
|
+
<!--Start PulumiCodeChooser -->
|
143
147
|
```python
|
144
148
|
import pulumi
|
145
149
|
import pulumi_wavefront as wavefront
|
@@ -147,13 +151,14 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
147
151
|
policy_metrics_policy = wavefront.get_metrics_policy()
|
148
152
|
pulumi.export("policy", policy_metrics_policy)
|
149
153
|
```
|
154
|
+
<!--End PulumiCodeChooser -->
|
150
155
|
|
151
156
|
## Import
|
152
157
|
|
153
158
|
Users can be imported by using the `updated_epoch_millis`, e.g.:
|
154
159
|
|
155
160
|
```sh
|
156
|
-
|
161
|
+
$ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
|
157
162
|
```
|
158
163
|
|
159
164
|
:param str resource_name: The name of the resource.
|
@@ -171,6 +176,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
171
176
|
|
172
177
|
## Example Usage
|
173
178
|
|
179
|
+
<!--Start PulumiCodeChooser -->
|
174
180
|
```python
|
175
181
|
import pulumi
|
176
182
|
import pulumi_wavefront as wavefront
|
@@ -185,12 +191,15 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
185
191
|
user_group_ids=[everyone.group_id],
|
186
192
|
)])
|
187
193
|
```
|
194
|
+
<!--End PulumiCodeChooser -->
|
195
|
+
|
188
196
|
## Data Source
|
189
197
|
|
190
198
|
Provides a Wavefront Metrics Policy Data Source. This allows looking up the current policy and associated rules.
|
191
199
|
|
192
200
|
### Example
|
193
201
|
|
202
|
+
<!--Start PulumiCodeChooser -->
|
194
203
|
```python
|
195
204
|
import pulumi
|
196
205
|
import pulumi_wavefront as wavefront
|
@@ -198,13 +207,14 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
198
207
|
policy_metrics_policy = wavefront.get_metrics_policy()
|
199
208
|
pulumi.export("policy", policy_metrics_policy)
|
200
209
|
```
|
210
|
+
<!--End PulumiCodeChooser -->
|
201
211
|
|
202
212
|
## Import
|
203
213
|
|
204
214
|
Users can be imported by using the `updated_epoch_millis`, e.g.:
|
205
215
|
|
206
216
|
```sh
|
207
|
-
|
217
|
+
$ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
|
208
218
|
```
|
209
219
|
|
210
220
|
:param str resource_name: The name of the resource.
|
pulumi_wavefront/outputs.py
CHANGED
@@ -80,6 +80,10 @@ class AlertAlertTriageDashboard(dict):
|
|
80
80
|
dashboard_id: str,
|
81
81
|
description: str,
|
82
82
|
parameters: Optional['outputs.AlertAlertTriageDashboardParameters'] = None):
|
83
|
+
"""
|
84
|
+
:param str dashboard_id: Dashboard ID
|
85
|
+
:param str description: Dashboard Description
|
86
|
+
"""
|
83
87
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
84
88
|
pulumi.set(__self__, "description", description)
|
85
89
|
if parameters is not None:
|
@@ -88,11 +92,17 @@ class AlertAlertTriageDashboard(dict):
|
|
88
92
|
@property
|
89
93
|
@pulumi.getter(name="dashboardId")
|
90
94
|
def dashboard_id(self) -> str:
|
95
|
+
"""
|
96
|
+
Dashboard ID
|
97
|
+
"""
|
91
98
|
return pulumi.get(self, "dashboard_id")
|
92
99
|
|
93
100
|
@property
|
94
101
|
@pulumi.getter
|
95
102
|
def description(self) -> str:
|
103
|
+
"""
|
104
|
+
Dashboard Description
|
105
|
+
"""
|
96
106
|
return pulumi.get(self, "description")
|
97
107
|
|
98
108
|
@property
|
@@ -1663,6 +1673,10 @@ class GetAlertAlertTriageDashboardResult(dict):
|
|
1663
1673
|
dashboard_id: str,
|
1664
1674
|
description: str,
|
1665
1675
|
parameters: Optional['outputs.GetAlertAlertTriageDashboardParametersResult'] = None):
|
1676
|
+
"""
|
1677
|
+
:param str dashboard_id: Dashboard ID
|
1678
|
+
:param str description: Dashboard Description
|
1679
|
+
"""
|
1666
1680
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
1667
1681
|
pulumi.set(__self__, "description", description)
|
1668
1682
|
if parameters is not None:
|
@@ -1671,11 +1685,17 @@ class GetAlertAlertTriageDashboardResult(dict):
|
|
1671
1685
|
@property
|
1672
1686
|
@pulumi.getter(name="dashboardId")
|
1673
1687
|
def dashboard_id(self) -> str:
|
1688
|
+
"""
|
1689
|
+
Dashboard ID
|
1690
|
+
"""
|
1674
1691
|
return pulumi.get(self, "dashboard_id")
|
1675
1692
|
|
1676
1693
|
@property
|
1677
1694
|
@pulumi.getter
|
1678
1695
|
def description(self) -> str:
|
1696
|
+
"""
|
1697
|
+
Dashboard Description
|
1698
|
+
"""
|
1679
1699
|
return pulumi.get(self, "description")
|
1680
1700
|
|
1681
1701
|
@property
|
@@ -2020,6 +2040,10 @@ class GetAlertsAlertAlertTriageDashboardResult(dict):
|
|
2020
2040
|
dashboard_id: str,
|
2021
2041
|
description: str,
|
2022
2042
|
parameters: Optional['outputs.GetAlertsAlertAlertTriageDashboardParametersResult'] = None):
|
2043
|
+
"""
|
2044
|
+
:param str dashboard_id: Dashboard ID
|
2045
|
+
:param str description: Dashboard Description
|
2046
|
+
"""
|
2023
2047
|
pulumi.set(__self__, "dashboard_id", dashboard_id)
|
2024
2048
|
pulumi.set(__self__, "description", description)
|
2025
2049
|
if parameters is not None:
|
@@ -2028,11 +2052,17 @@ class GetAlertsAlertAlertTriageDashboardResult(dict):
|
|
2028
2052
|
@property
|
2029
2053
|
@pulumi.getter(name="dashboardId")
|
2030
2054
|
def dashboard_id(self) -> str:
|
2055
|
+
"""
|
2056
|
+
Dashboard ID
|
2057
|
+
"""
|
2031
2058
|
return pulumi.get(self, "dashboard_id")
|
2032
2059
|
|
2033
2060
|
@property
|
2034
2061
|
@pulumi.getter
|
2035
2062
|
def description(self) -> str:
|
2063
|
+
"""
|
2064
|
+
Dashboard Description
|
2065
|
+
"""
|
2036
2066
|
return pulumi.get(self, "description")
|
2037
2067
|
|
2038
2068
|
@property
|
pulumi_wavefront/role.py
CHANGED
@@ -178,19 +178,21 @@ class Role(pulumi.CustomResource):
|
|
178
178
|
|
179
179
|
## Example Usage
|
180
180
|
|
181
|
+
<!--Start PulumiCodeChooser -->
|
181
182
|
```python
|
182
183
|
import pulumi
|
183
184
|
import pulumi_wavefront as wavefront
|
184
185
|
|
185
186
|
role = wavefront.Role("role")
|
186
187
|
```
|
188
|
+
<!--End PulumiCodeChooser -->
|
187
189
|
|
188
190
|
## Import
|
189
191
|
|
190
192
|
Roles can be imported by using the `id`, e.g.:
|
191
193
|
|
192
194
|
```sh
|
193
|
-
|
195
|
+
$ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
194
196
|
```
|
195
197
|
|
196
198
|
:param str resource_name: The name of the resource.
|
@@ -213,19 +215,21 @@ class Role(pulumi.CustomResource):
|
|
213
215
|
|
214
216
|
## Example Usage
|
215
217
|
|
218
|
+
<!--Start PulumiCodeChooser -->
|
216
219
|
```python
|
217
220
|
import pulumi
|
218
221
|
import pulumi_wavefront as wavefront
|
219
222
|
|
220
223
|
role = wavefront.Role("role")
|
221
224
|
```
|
225
|
+
<!--End PulumiCodeChooser -->
|
222
226
|
|
223
227
|
## Import
|
224
228
|
|
225
229
|
Roles can be imported by using the `id`, e.g.:
|
226
230
|
|
227
231
|
```sh
|
228
|
-
|
232
|
+
$ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
229
233
|
```
|
230
234
|
|
231
235
|
:param str resource_name: The name of the resource.
|
@@ -243,6 +243,7 @@ class ServiceAccount(pulumi.CustomResource):
|
|
243
243
|
|
244
244
|
## Example Usage
|
245
245
|
|
246
|
+
<!--Start PulumiCodeChooser -->
|
246
247
|
```python
|
247
248
|
import pulumi
|
248
249
|
import pulumi_wavefront as wavefront
|
@@ -251,13 +252,14 @@ class ServiceAccount(pulumi.CustomResource):
|
|
251
252
|
active=True,
|
252
253
|
identifier="sa::tftesting")
|
253
254
|
```
|
255
|
+
<!--End PulumiCodeChooser -->
|
254
256
|
|
255
257
|
## Import
|
256
258
|
|
257
259
|
Service accounts can be imported by using `identifier`, e.g.:
|
258
260
|
|
259
261
|
```sh
|
260
|
-
|
262
|
+
$ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
|
261
263
|
```
|
262
264
|
|
263
265
|
:param str resource_name: The name of the resource.
|
@@ -282,6 +284,7 @@ class ServiceAccount(pulumi.CustomResource):
|
|
282
284
|
|
283
285
|
## Example Usage
|
284
286
|
|
287
|
+
<!--Start PulumiCodeChooser -->
|
285
288
|
```python
|
286
289
|
import pulumi
|
287
290
|
import pulumi_wavefront as wavefront
|
@@ -290,13 +293,14 @@ class ServiceAccount(pulumi.CustomResource):
|
|
290
293
|
active=True,
|
291
294
|
identifier="sa::tftesting")
|
292
295
|
```
|
296
|
+
<!--End PulumiCodeChooser -->
|
293
297
|
|
294
298
|
## Import
|
295
299
|
|
296
300
|
Service accounts can be imported by using `identifier`, e.g.:
|
297
301
|
|
298
302
|
```sh
|
299
|
-
|
303
|
+
$ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
|
300
304
|
```
|
301
305
|
|
302
306
|
:param str resource_name: The name of the resource.
|
pulumi_wavefront/user.py
CHANGED
@@ -177,19 +177,21 @@ class User(pulumi.CustomResource):
|
|
177
177
|
|
178
178
|
## Example Usage
|
179
179
|
|
180
|
+
<!--Start PulumiCodeChooser -->
|
180
181
|
```python
|
181
182
|
import pulumi
|
182
183
|
import pulumi_wavefront as wavefront
|
183
184
|
|
184
185
|
basic = wavefront.User("basic", email="test+tftesting@example.com")
|
185
186
|
```
|
187
|
+
<!--End PulumiCodeChooser -->
|
186
188
|
|
187
189
|
## Import
|
188
190
|
|
189
191
|
Users can be imported by using the `id`, e.g.:
|
190
192
|
|
191
193
|
```sh
|
192
|
-
|
194
|
+
$ pulumi import wavefront:index/user:User some_user test@example.com
|
193
195
|
```
|
194
196
|
|
195
197
|
:param str resource_name: The name of the resource.
|
@@ -212,19 +214,21 @@ class User(pulumi.CustomResource):
|
|
212
214
|
|
213
215
|
## Example Usage
|
214
216
|
|
217
|
+
<!--Start PulumiCodeChooser -->
|
215
218
|
```python
|
216
219
|
import pulumi
|
217
220
|
import pulumi_wavefront as wavefront
|
218
221
|
|
219
222
|
basic = wavefront.User("basic", email="test+tftesting@example.com")
|
220
223
|
```
|
224
|
+
<!--End PulumiCodeChooser -->
|
221
225
|
|
222
226
|
## Import
|
223
227
|
|
224
228
|
Users can be imported by using the `id`, e.g.:
|
225
229
|
|
226
230
|
```sh
|
227
|
-
|
231
|
+
$ pulumi import wavefront:index/user:User some_user test@example.com
|
228
232
|
```
|
229
233
|
|
230
234
|
:param str resource_name: The name of the resource.
|
pulumi_wavefront/user_group.py
CHANGED
@@ -103,19 +103,21 @@ class UserGroup(pulumi.CustomResource):
|
|
103
103
|
|
104
104
|
## Example Usage
|
105
105
|
|
106
|
+
<!--Start PulumiCodeChooser -->
|
106
107
|
```python
|
107
108
|
import pulumi
|
108
109
|
import pulumi_wavefront as wavefront
|
109
110
|
|
110
111
|
basic = wavefront.UserGroup("basic", description="Basic User Group for Unit Tests")
|
111
112
|
```
|
113
|
+
<!--End PulumiCodeChooser -->
|
112
114
|
|
113
115
|
## Import
|
114
116
|
|
115
117
|
User Groups can be imported by using the `id`, e.g.:
|
116
118
|
|
117
119
|
```sh
|
118
|
-
|
120
|
+
$ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
119
121
|
```
|
120
122
|
|
121
123
|
:param str resource_name: The name of the resource.
|
@@ -134,19 +136,21 @@ class UserGroup(pulumi.CustomResource):
|
|
134
136
|
|
135
137
|
## Example Usage
|
136
138
|
|
139
|
+
<!--Start PulumiCodeChooser -->
|
137
140
|
```python
|
138
141
|
import pulumi
|
139
142
|
import pulumi_wavefront as wavefront
|
140
143
|
|
141
144
|
basic = wavefront.UserGroup("basic", description="Basic User Group for Unit Tests")
|
142
145
|
```
|
146
|
+
<!--End PulumiCodeChooser -->
|
143
147
|
|
144
148
|
## Import
|
145
149
|
|
146
150
|
User Groups can be imported by using the `id`, e.g.:
|
147
151
|
|
148
152
|
```sh
|
149
|
-
|
153
|
+
$ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
150
154
|
```
|
151
155
|
|
152
156
|
:param str resource_name: The name of the resource.
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_wavefront
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.1
|
4
4
|
Summary: A Pulumi package for creating and managing wavefront cloud resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-wavefront
|
8
8
|
Keywords: pulumi,wavefront
|
9
|
-
Requires-Python: >=3.
|
9
|
+
Requires-Python: >=3.8
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
Requires-Dist: parver >=0.2.1
|
12
12
|
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
@@ -0,0 +1,58 @@
|
|
1
|
+
pulumi_wavefront/__init__.py,sha256=GzcOZqBCXeYt4sDA_t2C2l5NHhs3DEqcURTuQYA73r4,6689
|
2
|
+
pulumi_wavefront/_inputs.py,sha256=NEbInNw68o-K4j0lF-KdJoi7-jIzLGrATYgxk2epxTA,81066
|
3
|
+
pulumi_wavefront/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
|
+
pulumi_wavefront/alert.py,sha256=ykOxGoWAI-CLnbaZbwAZ20MLS6mOOXcB9kELhikjPBY,55354
|
5
|
+
pulumi_wavefront/alert_target.py,sha256=zeItKsFSViizmi_0dVFSv_lMnZ4vPNpACOye-UT2YKE,33307
|
6
|
+
pulumi_wavefront/cloud_integration_app_dynamics.py,sha256=6mfZDUZ_rf4h-d9b7Hf6C7lUXTj26M5lXjr3peDSs0o,46961
|
7
|
+
pulumi_wavefront/cloud_integration_aws_external_id.py,sha256=SGBeGqWnk9v4dd67na7WpyadV0kwMxMFeWFH4v03V2Y,5032
|
8
|
+
pulumi_wavefront/cloud_integration_azure.py,sha256=UNTXOsDqbKHuZ5YNoVwtv36Fea6k65d_T4LLkAnIT8U,30771
|
9
|
+
pulumi_wavefront/cloud_integration_azure_activity_log.py,sha256=cGXflNKbAEOwf30c3cFJJJdbIASarTMIeu-CMEv2oeo,26210
|
10
|
+
pulumi_wavefront/cloud_integration_cloud_trail.py,sha256=0Zee8LnEWGsTI1b4HU8mH_MowDf31ttKGfEvjxlgfgY,28989
|
11
|
+
pulumi_wavefront/cloud_integration_cloud_watch.py,sha256=kfKzYuDxhkTOi-C5mUNQF7SN-mUzUqEdd47x5Xpw-K0,36755
|
12
|
+
pulumi_wavefront/cloud_integration_ec2.py,sha256=Vl24w5QmvmaJ8q2mNXGFvXes-ID8Hbo1_9ihMihakYM,24249
|
13
|
+
pulumi_wavefront/cloud_integration_gcp.py,sha256=Xwoq-h0IbMmgs3F4Myvo-O9vyIyVTt1hTWD6S5e_s_0,29433
|
14
|
+
pulumi_wavefront/cloud_integration_gcp_billing.py,sha256=QV-NJCPtL4h8u4x8m3qpcOVMESWFZnWDsYdfqNWJe8Q,23850
|
15
|
+
pulumi_wavefront/cloud_integration_new_relic.py,sha256=qyWJUX1P6diq0OX6IaUkMJ40G4FV1WPktsobVWWwKyo,26370
|
16
|
+
pulumi_wavefront/dashboard.py,sha256=JbpEDW3RGMpgzrfiJ2OGufYfFcsgpfSITHtcgRaDiOE,31524
|
17
|
+
pulumi_wavefront/dashboard_json.py,sha256=9Q3wmP3gJZ8N3ALrhuVhOgAtrka6pfOn8g-fB5izg4Q,17455
|
18
|
+
pulumi_wavefront/derived_metric.py,sha256=H9DG3IZ_jQl9WDlke4gbr8lUTm_BNtvRs-Hc5zDXXmo,15185
|
19
|
+
pulumi_wavefront/event.py,sha256=u56I16VE4JXo8mzgCDsDEh7-ILBMdTlzs4nrFrdoSKI,14353
|
20
|
+
pulumi_wavefront/external_link.py,sha256=gaRPXQtaiVfrVTTRCO7tGsJwdB9iwQfiTPLOcl-C_UI,25134
|
21
|
+
pulumi_wavefront/get_alert.py,sha256=OrnPNRVSl4pFaaUbes9V2zCDcLMS1OKmiKM1vSz-QgY,17832
|
22
|
+
pulumi_wavefront/get_alerts.py,sha256=wyNv6mG-K4-Nu2AuTNl2Nu0fO8tAIii0equPyh4_JQU,4318
|
23
|
+
pulumi_wavefront/get_dashboard.py,sha256=ldW3jzTncH40IH0t0xI1IR65c2Pdit3A7eT3c6b_oHk,19926
|
24
|
+
pulumi_wavefront/get_dashboards.py,sha256=OyzZUVUeL5R3at_IBLcU_t4oEnJUiiF7mI_NPOUmWf8,4483
|
25
|
+
pulumi_wavefront/get_default_user_group.py,sha256=Cy21TGAPAd3W7gCOEzUabIaJOZO_HwXkAyfh6bqHlG0,3117
|
26
|
+
pulumi_wavefront/get_derived_metric.py,sha256=HyhuMDkXKtkBDvOsckSjFC1dZKgAwru1fXWXMvGP6L0,16001
|
27
|
+
pulumi_wavefront/get_derived_metrics.py,sha256=kDp1XgVFed24PV2yEKLonSzxwuVnPdpUF_8NifwlAI8,4704
|
28
|
+
pulumi_wavefront/get_event.py,sha256=fWYsbV9EPaFFUAku4SiuK4cHMkvGofAcxIOxvUfuI8I,6745
|
29
|
+
pulumi_wavefront/get_events.py,sha256=BSQylOtxhigBYNNYQoKEdCdIcDYSNbdBAs1mQAFnNLI,6928
|
30
|
+
pulumi_wavefront/get_external_link.py,sha256=2kWYYtYYbi35jPaCVSmedtcIMtSKgG36VGgbzB58ZIA,9760
|
31
|
+
pulumi_wavefront/get_external_links.py,sha256=k9ssm4jktne1i-0ofmr3mS_zeW9XVmH9N1CpHh_TWH0,4661
|
32
|
+
pulumi_wavefront/get_maintenance_window.py,sha256=LXk7vT6_bOctpS9r50fhCA7yY_fr80r_VboksVZi_Y4,14006
|
33
|
+
pulumi_wavefront/get_maintenance_window_all.py,sha256=XXmoPqWeQhHdz2e0a9G688j8Wt-rZ-0jDyPWPOGSuMQ,3882
|
34
|
+
pulumi_wavefront/get_metrics_policy.py,sha256=hqriAV5ubAMWGOU-z1VDU_bim6ovBhwJ_t5PNAOulsY,3921
|
35
|
+
pulumi_wavefront/get_role.py,sha256=N8oF2VeNWXy2HAQJNdhoslYZjqLDlvEgw5k4Px1-2-U,3958
|
36
|
+
pulumi_wavefront/get_roles.py,sha256=PKxsVRJEEAt6YnvqICbnOf51zCfQIkF0y2PTFZet1Ro,4186
|
37
|
+
pulumi_wavefront/get_user.py,sha256=VNZQ0sqSZdAeagfubh-fYSntjbWAk4MecYmZQsRns98,5188
|
38
|
+
pulumi_wavefront/get_user_group.py,sha256=p_DSjtDHcDnA9A-Zfk-LnA_ZQAduH_Otwwsq0oohU74,4480
|
39
|
+
pulumi_wavefront/get_user_groups.py,sha256=myLgVyW6HMFQIJiRjA97ukPBsS9mrHAgTCAyqbm96vU,4428
|
40
|
+
pulumi_wavefront/get_users.py,sha256=46zE_aXbIi2uxYHWuqK6-Cr2BMkqrqe7MlE1MbAZRyM,2721
|
41
|
+
pulumi_wavefront/ingestion_policy.py,sha256=XcypVrzIsrXTA2zdIyqlXC6hzoWYwKrGM9Dv5UD1ZKw,17231
|
42
|
+
pulumi_wavefront/maintenance_window.py,sha256=hQn62tszb5gfXe9l5ramXT4wD1ia2kt-9yGQSPS-Ee8,34638
|
43
|
+
pulumi_wavefront/metrics_policy.py,sha256=H-uQIsx-Qi_h9VhEp60eQlvUtNtWEcXPNhmmS_YtCmE,13239
|
44
|
+
pulumi_wavefront/outputs.py,sha256=5GCzNAB5Mygso2jqdGP2Ik64DieHEs9T_PmMPH6E4ZM,217889
|
45
|
+
pulumi_wavefront/provider.py,sha256=McJomvmXAM64Cs_1TyQmUBDHnEOgJtmEXszmWqj6P3w,5652
|
46
|
+
pulumi_wavefront/pulumi-plugin.json,sha256=gT6Ds8KvTrlGY8HxD-gLJZYvOi2lo-g5bg74zWFCZxE,46
|
47
|
+
pulumi_wavefront/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
+
pulumi_wavefront/role.py,sha256=uqQKGT6VR3j7z9yU5fBR7p12l64-c6b3li_IGqCCSlo,14141
|
49
|
+
pulumi_wavefront/service_account.py,sha256=y8hgkDcoO9TgWm88Ld_uD-oRiFKwccWi-KKB8NW-KPk,19110
|
50
|
+
pulumi_wavefront/user.py,sha256=lsKg8qm_tdiV4z_B_AwHDWZHiLpKQuK5C-fcW3gYtHI,14549
|
51
|
+
pulumi_wavefront/user_group.py,sha256=MUeXQaB4FO0UeX2GyHZZzeIa8q_jM00O3APYyZkEkcI,8291
|
52
|
+
pulumi_wavefront/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
53
|
+
pulumi_wavefront/config/__init__.pyi,sha256=d2VUcPrbCK4iSf8oWPkl-TIq_T5OF3b5aQBtCM7CSjE,417
|
54
|
+
pulumi_wavefront/config/vars.py,sha256=FLpRg92qDNv_ERp4Re35vq8ik9UWlBjEXBaB1vTwfMQ,733
|
55
|
+
pulumi_wavefront-3.1.1.dist-info/METADATA,sha256=GPjXbC4F0kwJW0KU1Hs4xbYS1MfzMa9URvfgb2Ijwcw,2882
|
56
|
+
pulumi_wavefront-3.1.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
57
|
+
pulumi_wavefront-3.1.1.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
|
58
|
+
pulumi_wavefront-3.1.1.dist-info/RECORD,,
|
@@ -1,58 +0,0 @@
|
|
1
|
-
pulumi_wavefront/__init__.py,sha256=GzcOZqBCXeYt4sDA_t2C2l5NHhs3DEqcURTuQYA73r4,6689
|
2
|
-
pulumi_wavefront/_inputs.py,sha256=5yx5M7j6azihfVbcll_TdrtttL4SPaNFEiNrfBrQskM,80815
|
3
|
-
pulumi_wavefront/_utilities.py,sha256=nNKRJyG0bkCleVzIGnszB5TSQOVUqAHks2baneWhujg,9249
|
4
|
-
pulumi_wavefront/alert.py,sha256=GC2_eT7e-VMTh2VmB2fABj9-q89TUS3P4BMH4vWgiyc,55200
|
5
|
-
pulumi_wavefront/alert_target.py,sha256=LMDSEeG4sBgCx5Wp53kl1WnM_Z-Na4rtr4OHc6zzadw,33153
|
6
|
-
pulumi_wavefront/cloud_integration_app_dynamics.py,sha256=qZzuaWW0fjQ6Jp9MZeXbEu2Ne_nn9chRmUK2dlSNIDQ,46807
|
7
|
-
pulumi_wavefront/cloud_integration_aws_external_id.py,sha256=58SUHJwWGG-GPFsQVoMpe088C8L_ER71_vj6nBya7Xc,4878
|
8
|
-
pulumi_wavefront/cloud_integration_azure.py,sha256=llJyVs7V8GUCjyfHeZTXweVbXoWbKh-3Hhb9Qz6FxYw,30617
|
9
|
-
pulumi_wavefront/cloud_integration_azure_activity_log.py,sha256=tBqjiaVFR_pqgfH-NiLsBNMgXkZZq0rrxrBuXwLcn3E,26056
|
10
|
-
pulumi_wavefront/cloud_integration_cloud_trail.py,sha256=tukFush_lZ1GzHJNcEHO6P_g_MZnr5GJ71gRclIvuGs,28835
|
11
|
-
pulumi_wavefront/cloud_integration_cloud_watch.py,sha256=zFyEu-JyceKsHWbfIz9fTvvvuUtAK6pQ_uB6xws1res,36601
|
12
|
-
pulumi_wavefront/cloud_integration_ec2.py,sha256=pmwOKGAfEzw1HgINgBG_mjHnTDaMB_XUpV5SAX-2jsY,24095
|
13
|
-
pulumi_wavefront/cloud_integration_gcp.py,sha256=qhuQhDIkE367MfxXVMELuX9kwM8TKYNCzFLNeL-kpVg,29279
|
14
|
-
pulumi_wavefront/cloud_integration_gcp_billing.py,sha256=oE8OMcxjaFwTLdAX8SVV8XClgdX-X2ctXFkl-Gf4VkE,23696
|
15
|
-
pulumi_wavefront/cloud_integration_new_relic.py,sha256=J5FEE6LPKTUlTFrdfUWcZcQweMJNfn7h2dH2FmsSeSw,26216
|
16
|
-
pulumi_wavefront/dashboard.py,sha256=7ZxxAXxRRdJFGQzIyOLXydic4CRXh3iVOEqf7oPxVAs,31526
|
17
|
-
pulumi_wavefront/dashboard_json.py,sha256=1o8ha0z0snCNESTv-hem-Mkphmfqy5pU7o2dAPw5U58,17301
|
18
|
-
pulumi_wavefront/derived_metric.py,sha256=wgnWfo5OAsgtVaQRgHHbA1_SpqSlJjDwyjdSJFzcjjI,15031
|
19
|
-
pulumi_wavefront/event.py,sha256=hqfqn48DElnhP54nrU9EV3k6FG-CJjlFVyy6PvIJitg,14199
|
20
|
-
pulumi_wavefront/external_link.py,sha256=22Gx43pt-8s0hJdbYJYGNCr94lSHievCs1QCn87fk0s,24980
|
21
|
-
pulumi_wavefront/get_alert.py,sha256=ogKQD-MzUOZoP2p6HpbICF6ExCHPERKebAK4pIwvEYU,17692
|
22
|
-
pulumi_wavefront/get_alerts.py,sha256=aJJJOXYjGisjDTlDFS6KSzRyvWBueIZp3FWE42IyBcY,4178
|
23
|
-
pulumi_wavefront/get_dashboard.py,sha256=5gf1U4GY-SVkXxfGi-pteEKK5X20c79UyRfnVDKg99M,19786
|
24
|
-
pulumi_wavefront/get_dashboards.py,sha256=zXTTAeZtrx9apbSf1ivdK28CfeYgyxo4bXXhqd19Lbg,4343
|
25
|
-
pulumi_wavefront/get_default_user_group.py,sha256=BKPIHNlWE5QOjsTxtYfWJ6ybHi1YBK9iqS1o9xYDM7Y,2977
|
26
|
-
pulumi_wavefront/get_derived_metric.py,sha256=Gb7MCW8RH5sQCgTnCAKpm8DBzqsHCownC0lzv19J3vU,15861
|
27
|
-
pulumi_wavefront/get_derived_metrics.py,sha256=1Grl_xkyOIt0YAGNpa1Jfdlu84YKPxM0DPq0nVeEdVI,4564
|
28
|
-
pulumi_wavefront/get_event.py,sha256=rKGtDBb7z_6nm42xrYjde9ZXZXuST6sgBBudHj7N5Bk,6605
|
29
|
-
pulumi_wavefront/get_events.py,sha256=0s1z9t9ymmJqiswDTPpPOnwuIMbDe3ZD52MDzfjWYVE,6788
|
30
|
-
pulumi_wavefront/get_external_link.py,sha256=Yqwu7YPsbFeiS7cRlDGRK_KLTnRnEdLp2ZBeYkoGS34,9620
|
31
|
-
pulumi_wavefront/get_external_links.py,sha256=Sm74C-5wK-29-aSFe-vU2kfanCT9Kcb44ibu-MJP6fM,4521
|
32
|
-
pulumi_wavefront/get_maintenance_window.py,sha256=kk-Zf8OmhuWQviONylkw9Y80_eyNyyypyZo66GObz5E,13866
|
33
|
-
pulumi_wavefront/get_maintenance_window_all.py,sha256=XXmoPqWeQhHdz2e0a9G688j8Wt-rZ-0jDyPWPOGSuMQ,3882
|
34
|
-
pulumi_wavefront/get_metrics_policy.py,sha256=hqriAV5ubAMWGOU-z1VDU_bim6ovBhwJ_t5PNAOulsY,3921
|
35
|
-
pulumi_wavefront/get_role.py,sha256=mkayFkZ7UVmlgG8Ybi5xBxrC4Gcin9_YdpYbDRtQ_e0,3818
|
36
|
-
pulumi_wavefront/get_roles.py,sha256=EJOjRIwHz6l_NM3l_qRSCL2VDlpCzkT51gIEqyP1dbw,4046
|
37
|
-
pulumi_wavefront/get_user.py,sha256=5TRlSnk53cA4N0wTtrR5iNsMs8VMmMVW31JE1L00KbM,5048
|
38
|
-
pulumi_wavefront/get_user_group.py,sha256=pv3Ayx05nN0xIBlFUMUm64o2-eWwGIhXqtjLkIT1KAQ,4340
|
39
|
-
pulumi_wavefront/get_user_groups.py,sha256=dBRp3QKMsreACvktBhwTUF1tW8b2h8LOSZ-0hnldT3o,4288
|
40
|
-
pulumi_wavefront/get_users.py,sha256=r0mRLbGIDUmddgZPF62bcYdCgyNwrVDiLux672E97Fk,2581
|
41
|
-
pulumi_wavefront/ingestion_policy.py,sha256=cj952t3qZziSZc5U-7zpLIsaFuc-On4zFomXxfsY160,17077
|
42
|
-
pulumi_wavefront/maintenance_window.py,sha256=TRUsNBjJe5QDNcCS0Yx8IgGNnnQg_xpnRZ7F1d1XYl0,34484
|
43
|
-
pulumi_wavefront/metrics_policy.py,sha256=8Nr3XXhqR5o_pEUQZTC1K63m4UfnpIHS8vjqKsSaQTA,12927
|
44
|
-
pulumi_wavefront/outputs.py,sha256=aUlOYv9alxpOyrr8_FAIsu4t6atBri1EEfBO--NRS3o,217220
|
45
|
-
pulumi_wavefront/provider.py,sha256=McJomvmXAM64Cs_1TyQmUBDHnEOgJtmEXszmWqj6P3w,5652
|
46
|
-
pulumi_wavefront/pulumi-plugin.json,sha256=gT6Ds8KvTrlGY8HxD-gLJZYvOi2lo-g5bg74zWFCZxE,46
|
47
|
-
pulumi_wavefront/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
-
pulumi_wavefront/role.py,sha256=ouhg0ElM00wKfRYr1c0akJxJXk5O5e59j_rWJZWHWb8,13987
|
49
|
-
pulumi_wavefront/service_account.py,sha256=BE90ZFUQKX7NWh_uaO8fD5T2KE4eTS_s5v3OtED6dAA,18956
|
50
|
-
pulumi_wavefront/user.py,sha256=LVgcq_ALCmhqrg2o3Sm9w0PtSqLiNHGOSJ5GORYPd8c,14395
|
51
|
-
pulumi_wavefront/user_group.py,sha256=YEZ6HF7sRkHzOinvRfUUSG2Mm3BGA0DMaQy6A0wO9jo,8137
|
52
|
-
pulumi_wavefront/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
53
|
-
pulumi_wavefront/config/__init__.pyi,sha256=d2VUcPrbCK4iSf8oWPkl-TIq_T5OF3b5aQBtCM7CSjE,417
|
54
|
-
pulumi_wavefront/config/vars.py,sha256=FLpRg92qDNv_ERp4Re35vq8ik9UWlBjEXBaB1vTwfMQ,733
|
55
|
-
pulumi_wavefront-3.1.0a1704219685.dist-info/METADATA,sha256=jXHXTvBKaJ4_itL19b_uv_JirAuv45CESLFmWwaqRhQ,2893
|
56
|
-
pulumi_wavefront-3.1.0a1704219685.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
57
|
-
pulumi_wavefront-3.1.0a1704219685.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
|
58
|
-
pulumi_wavefront-3.1.0a1704219685.dist-info/RECORD,,
|
File without changes
|
{pulumi_wavefront-3.1.0a1704219685.dist-info → pulumi_wavefront-3.1.1.dist-info}/top_level.txt
RENAMED
File without changes
|