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
@@ -120,7 +120,6 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
120
120
|
|
121
121
|
## Example Usage
|
122
122
|
|
123
|
-
<!--Start PulumiCodeChooser -->
|
124
123
|
```python
|
125
124
|
import pulumi
|
126
125
|
import pulumi_wavefront as wavefront
|
@@ -135,7 +134,6 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
135
134
|
user_group_ids=[everyone.group_id],
|
136
135
|
)])
|
137
136
|
```
|
138
|
-
<!--End PulumiCodeChooser -->
|
139
137
|
|
140
138
|
## Data Source
|
141
139
|
|
@@ -143,15 +141,13 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
143
141
|
|
144
142
|
### Example
|
145
143
|
|
146
|
-
<!--Start PulumiCodeChooser -->
|
147
144
|
```python
|
148
145
|
import pulumi
|
149
146
|
import pulumi_wavefront as wavefront
|
150
147
|
|
151
|
-
|
152
|
-
pulumi.export("policy",
|
148
|
+
policy = wavefront.get_metrics_policy()
|
149
|
+
pulumi.export("policy", policy)
|
153
150
|
```
|
154
|
-
<!--End PulumiCodeChooser -->
|
155
151
|
|
156
152
|
## Import
|
157
153
|
|
@@ -176,7 +172,6 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
176
172
|
|
177
173
|
## Example Usage
|
178
174
|
|
179
|
-
<!--Start PulumiCodeChooser -->
|
180
175
|
```python
|
181
176
|
import pulumi
|
182
177
|
import pulumi_wavefront as wavefront
|
@@ -191,7 +186,6 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
191
186
|
user_group_ids=[everyone.group_id],
|
192
187
|
)])
|
193
188
|
```
|
194
|
-
<!--End PulumiCodeChooser -->
|
195
189
|
|
196
190
|
## Data Source
|
197
191
|
|
@@ -199,15 +193,13 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
199
193
|
|
200
194
|
### Example
|
201
195
|
|
202
|
-
<!--Start PulumiCodeChooser -->
|
203
196
|
```python
|
204
197
|
import pulumi
|
205
198
|
import pulumi_wavefront as wavefront
|
206
199
|
|
207
|
-
|
208
|
-
pulumi.export("policy",
|
200
|
+
policy = wavefront.get_metrics_policy()
|
201
|
+
pulumi.export("policy", policy)
|
209
202
|
```
|
210
|
-
<!--End PulumiCodeChooser -->
|
211
203
|
|
212
204
|
## Import
|
213
205
|
|
pulumi_wavefront/outputs.py
CHANGED
@@ -1643,27 +1643,17 @@ class MetricsPolicyPolicyRuleTag(dict):
|
|
1643
1643
|
def __init__(__self__, *,
|
1644
1644
|
key: str,
|
1645
1645
|
value: str):
|
1646
|
-
"""
|
1647
|
-
:param str key: The tag's key.
|
1648
|
-
:param str value: The tag's value.
|
1649
|
-
"""
|
1650
1646
|
pulumi.set(__self__, "key", key)
|
1651
1647
|
pulumi.set(__self__, "value", value)
|
1652
1648
|
|
1653
1649
|
@property
|
1654
1650
|
@pulumi.getter
|
1655
1651
|
def key(self) -> str:
|
1656
|
-
"""
|
1657
|
-
The tag's key.
|
1658
|
-
"""
|
1659
1652
|
return pulumi.get(self, "key")
|
1660
1653
|
|
1661
1654
|
@property
|
1662
1655
|
@pulumi.getter
|
1663
1656
|
def value(self) -> str:
|
1664
|
-
"""
|
1665
|
-
The tag's value.
|
1666
|
-
"""
|
1667
1657
|
return pulumi.get(self, "value")
|
1668
1658
|
|
1669
1659
|
|
pulumi_wavefront/role.py
CHANGED
@@ -178,14 +178,12 @@ class Role(pulumi.CustomResource):
|
|
178
178
|
|
179
179
|
## Example Usage
|
180
180
|
|
181
|
-
<!--Start PulumiCodeChooser -->
|
182
181
|
```python
|
183
182
|
import pulumi
|
184
183
|
import pulumi_wavefront as wavefront
|
185
184
|
|
186
|
-
role = wavefront.Role("role")
|
185
|
+
role = wavefront.Role("role", name="Test Role")
|
187
186
|
```
|
188
|
-
<!--End PulumiCodeChooser -->
|
189
187
|
|
190
188
|
## Import
|
191
189
|
|
@@ -215,14 +213,12 @@ class Role(pulumi.CustomResource):
|
|
215
213
|
|
216
214
|
## Example Usage
|
217
215
|
|
218
|
-
<!--Start PulumiCodeChooser -->
|
219
216
|
```python
|
220
217
|
import pulumi
|
221
218
|
import pulumi_wavefront as wavefront
|
222
219
|
|
223
|
-
role = wavefront.Role("role")
|
220
|
+
role = wavefront.Role("role", name="Test Role")
|
224
221
|
```
|
225
|
-
<!--End PulumiCodeChooser -->
|
226
222
|
|
227
223
|
## Import
|
228
224
|
|
@@ -243,16 +243,14 @@ class ServiceAccount(pulumi.CustomResource):
|
|
243
243
|
|
244
244
|
## Example Usage
|
245
245
|
|
246
|
-
<!--Start PulumiCodeChooser -->
|
247
246
|
```python
|
248
247
|
import pulumi
|
249
248
|
import pulumi_wavefront as wavefront
|
250
249
|
|
251
250
|
basic = wavefront.ServiceAccount("basic",
|
252
|
-
|
253
|
-
|
251
|
+
identifier="sa::tftesting",
|
252
|
+
active=True)
|
254
253
|
```
|
255
|
-
<!--End PulumiCodeChooser -->
|
256
254
|
|
257
255
|
## Import
|
258
256
|
|
@@ -284,16 +282,14 @@ class ServiceAccount(pulumi.CustomResource):
|
|
284
282
|
|
285
283
|
## Example Usage
|
286
284
|
|
287
|
-
<!--Start PulumiCodeChooser -->
|
288
285
|
```python
|
289
286
|
import pulumi
|
290
287
|
import pulumi_wavefront as wavefront
|
291
288
|
|
292
289
|
basic = wavefront.ServiceAccount("basic",
|
293
|
-
|
294
|
-
|
290
|
+
identifier="sa::tftesting",
|
291
|
+
active=True)
|
295
292
|
```
|
296
|
-
<!--End PulumiCodeChooser -->
|
297
293
|
|
298
294
|
## Import
|
299
295
|
|
pulumi_wavefront/user.py
CHANGED
@@ -177,14 +177,12 @@ class User(pulumi.CustomResource):
|
|
177
177
|
|
178
178
|
## Example Usage
|
179
179
|
|
180
|
-
<!--Start PulumiCodeChooser -->
|
181
180
|
```python
|
182
181
|
import pulumi
|
183
182
|
import pulumi_wavefront as wavefront
|
184
183
|
|
185
184
|
basic = wavefront.User("basic", email="test+tftesting@example.com")
|
186
185
|
```
|
187
|
-
<!--End PulumiCodeChooser -->
|
188
186
|
|
189
187
|
## Import
|
190
188
|
|
@@ -214,14 +212,12 @@ class User(pulumi.CustomResource):
|
|
214
212
|
|
215
213
|
## Example Usage
|
216
214
|
|
217
|
-
<!--Start PulumiCodeChooser -->
|
218
215
|
```python
|
219
216
|
import pulumi
|
220
217
|
import pulumi_wavefront as wavefront
|
221
218
|
|
222
219
|
basic = wavefront.User("basic", email="test+tftesting@example.com")
|
223
220
|
```
|
224
|
-
<!--End PulumiCodeChooser -->
|
225
221
|
|
226
222
|
## Import
|
227
223
|
|
pulumi_wavefront/user_group.py
CHANGED
@@ -103,14 +103,14 @@ class UserGroup(pulumi.CustomResource):
|
|
103
103
|
|
104
104
|
## Example Usage
|
105
105
|
|
106
|
-
<!--Start PulumiCodeChooser -->
|
107
106
|
```python
|
108
107
|
import pulumi
|
109
108
|
import pulumi_wavefront as wavefront
|
110
109
|
|
111
|
-
basic = wavefront.UserGroup("basic",
|
110
|
+
basic = wavefront.UserGroup("basic",
|
111
|
+
name="Basic User Group",
|
112
|
+
description="Basic User Group for Unit Tests")
|
112
113
|
```
|
113
|
-
<!--End PulumiCodeChooser -->
|
114
114
|
|
115
115
|
## Import
|
116
116
|
|
@@ -136,14 +136,14 @@ class UserGroup(pulumi.CustomResource):
|
|
136
136
|
|
137
137
|
## Example Usage
|
138
138
|
|
139
|
-
<!--Start PulumiCodeChooser -->
|
140
139
|
```python
|
141
140
|
import pulumi
|
142
141
|
import pulumi_wavefront as wavefront
|
143
142
|
|
144
|
-
basic = wavefront.UserGroup("basic",
|
143
|
+
basic = wavefront.UserGroup("basic",
|
144
|
+
name="Basic User Group",
|
145
|
+
description="Basic User Group for Unit Tests")
|
145
146
|
```
|
146
|
-
<!--End PulumiCodeChooser -->
|
147
147
|
|
148
148
|
## Import
|
149
149
|
|
@@ -0,0 +1,58 @@
|
|
1
|
+
pulumi_wavefront/__init__.py,sha256=GzcOZqBCXeYt4sDA_t2C2l5NHhs3DEqcURTuQYA73r4,6689
|
2
|
+
pulumi_wavefront/_inputs.py,sha256=CfokVg09SpJDboQuZYn3hwTDmswNlD7YRXD0zoCqMpU,80836
|
3
|
+
pulumi_wavefront/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
|
+
pulumi_wavefront/alert.py,sha256=oNiT0TCLVecc4Sstz0NhVy7xYtOYR3lDVLNTWTs_jdY,55260
|
5
|
+
pulumi_wavefront/alert_target.py,sha256=rDLUITQevhF3Vx_CF_V4jNwJuJm2XMBU91UjNG0uI1E,33237
|
6
|
+
pulumi_wavefront/cloud_integration_app_dynamics.py,sha256=Upl5F0mWF166TAUddGMaVVTt6SHSWG5BCch-dwwuums,46881
|
7
|
+
pulumi_wavefront/cloud_integration_aws_external_id.py,sha256=bjkeJPvMDw_rlwoW6rhy2RuvTW7yMNaBm1xs2XoVXKM,4878
|
8
|
+
pulumi_wavefront/cloud_integration_azure.py,sha256=TzkA_YoIYTVciWFOWVXNzSsQ4rZYGCA-gh520ZfyEZA,30693
|
9
|
+
pulumi_wavefront/cloud_integration_azure_activity_log.py,sha256=3PPc-cxaSgq8h2Iki2CoYIMHw1JqwU3U7oT5HK2JbHc,26132
|
10
|
+
pulumi_wavefront/cloud_integration_cloud_trail.py,sha256=adfgBpMF4xMkIlRsJelDMpsDNxgCJAQOiHe_SizfBHA,28909
|
11
|
+
pulumi_wavefront/cloud_integration_cloud_watch.py,sha256=yuMnX3fVtC9nxOb8H2lnRjPF82GBoDI2JW_vKnH3PAM,36675
|
12
|
+
pulumi_wavefront/cloud_integration_ec2.py,sha256=McV7-wyiAC_6ziWDITBC8XrNMNT9uVyTwalNnUN7nGU,24169
|
13
|
+
pulumi_wavefront/cloud_integration_gcp.py,sha256=2A-gOnPYWmEWq4h5mVMqH0rpzwGgYo0A4TJf_cKjROY,29317
|
14
|
+
pulumi_wavefront/cloud_integration_gcp_billing.py,sha256=hVMKLYzpjQDXCmWlmJAbXUznmWFhglB4I7zZsTIbn6Y,23736
|
15
|
+
pulumi_wavefront/cloud_integration_new_relic.py,sha256=vWSJdYeFxE4U1tsDiDXCebjz0Jz_fZFz9DKZrWulOCQ,26312
|
16
|
+
pulumi_wavefront/dashboard.py,sha256=JbpEDW3RGMpgzrfiJ2OGufYfFcsgpfSITHtcgRaDiOE,31524
|
17
|
+
pulumi_wavefront/dashboard_json.py,sha256=GMqW-q-orqM_QBju7Shh9TUhFGhrTLcMse-fO6Xkhm0,16825
|
18
|
+
pulumi_wavefront/derived_metric.py,sha256=hAEccMqhs8GQr2KuCDyohp-HnMVMwLIYL0j69m1lHUU,15111
|
19
|
+
pulumi_wavefront/event.py,sha256=2OG-v2Cf6ZJcPNr_TzWcjS4_SZqaU3ZpIhoc7Exv9EY,14267
|
20
|
+
pulumi_wavefront/external_link.py,sha256=EUpkaCSwH9X6BfTW9agpW0FCFYHHgcJOx0Z5Frp2MO4,25046
|
21
|
+
pulumi_wavefront/get_alert.py,sha256=1nKmBKeaGqqIKsAY4av4R5YdiXSBa4SeRJyrfb8GEQM,17778
|
22
|
+
pulumi_wavefront/get_alerts.py,sha256=U7wRksPwi6iROGHnCAXp_aEnD100AVxz-mXwtluxVF4,4266
|
23
|
+
pulumi_wavefront/get_dashboard.py,sha256=K9dhagjgyVkJ3J2iqfVMySAnSWkCMUvScMZx4A8dTbI,19876
|
24
|
+
pulumi_wavefront/get_dashboards.py,sha256=EV6ly2yUz5Rc2r5nl5Zwfw5HaeUdHAXSejCSgH-XSYI,4439
|
25
|
+
pulumi_wavefront/get_default_user_group.py,sha256=JlB_r_2qXnpT4SqrZyqEaGq9P6P7y7glZNMqbcZ2DAE,3065
|
26
|
+
pulumi_wavefront/get_derived_metric.py,sha256=b_wNKF2cQUURDtx9xE94U_Ow1TdwY7IPBbcYVSpKQUc,15959
|
27
|
+
pulumi_wavefront/get_derived_metrics.py,sha256=GjaPuxuJzh5L2Ts-rW9mJzpfjlvacTDX2DL88PJqIrs,4670
|
28
|
+
pulumi_wavefront/get_event.py,sha256=LbUFFNYLkdzXav0RW9wJAu9PPghwraYJ-SRaT3yRFZ4,6727
|
29
|
+
pulumi_wavefront/get_events.py,sha256=cik7L1tbozHSYa9mLlRZM-oq7TuFlLaXYMlSDnhYNhU,6874
|
30
|
+
pulumi_wavefront/get_external_link.py,sha256=p8DS6A8fK6YieaHbD8SDQDUbX74eXQ_74dO0OrtWS18,9738
|
31
|
+
pulumi_wavefront/get_external_links.py,sha256=vH_rT8iMy9hmAzGeGeP25eU6I-Rb3EVljaf1XT8MH9M,4625
|
32
|
+
pulumi_wavefront/get_maintenance_window.py,sha256=TNN-TO-zYJl37Pa-o4X8ibU7PYRkOxlQuOKjbSa9m-I,13988
|
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=TtarGKr9yA54WGzevgZXBpAmJ880ATvY1lZyzOBBd-c,3902
|
36
|
+
pulumi_wavefront/get_roles.py,sha256=pnSk4K951UJuYIngzyg0mgFhgu9mj9p77afgiqlikv8,4086
|
37
|
+
pulumi_wavefront/get_user.py,sha256=j5MdFccs-yaI_Kt7VZmCY5tIGce1mFIYqkbY5tDQr9U,5158
|
38
|
+
pulumi_wavefront/get_user_group.py,sha256=tMcqGcOhxAL-XPWNn8emFz7bzQYhSjom0ot4S3wlsdg,4436
|
39
|
+
pulumi_wavefront/get_user_groups.py,sha256=l_4eglfZkkII9HBQLNdejI4fDj-cj8awSd4CBXyqX9U,4340
|
40
|
+
pulumi_wavefront/get_users.py,sha256=q5SoIap5-ObAiskmW4WlrdfwbloS1ZnPuvJVOGYpnDQ,2621
|
41
|
+
pulumi_wavefront/ingestion_policy.py,sha256=ko3G_suLkBlwCPwpBahVBJ2lMtJfdy8DgUO0BQhf_V4,17169
|
42
|
+
pulumi_wavefront/maintenance_window.py,sha256=rkCvNO0_xnlRIJ6RVOUyeU_IiiwpjZXBOu_cjxBKj38,34482
|
43
|
+
pulumi_wavefront/metrics_policy.py,sha256=YGB9Gyus2ZJqh9kbeQttrWMnHKkJBBhLNKcHG-svFiU,12867
|
44
|
+
pulumi_wavefront/outputs.py,sha256=8Ood-G_nujVdLOoIW2qtmNqRh_ObLTrNRUlGXZE5CX4,217687
|
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=tgsV-kDNC3Mn4b5zonskg43PFf5ejwH2jaFqoGirXdM,14021
|
49
|
+
pulumi_wavefront/service_account.py,sha256=46CAwl6_PVzZOj-jezK4wWNPVcITEA-Oo5ptSFCyin0,18954
|
50
|
+
pulumi_wavefront/user.py,sha256=Oa3WDk71miO9onnk8Bqs-RcW9XzspR4ll40J3YU9E_0,14393
|
51
|
+
pulumi_wavefront/user_group.py,sha256=NeFdwzFBb2exfTksWCc6YRAAPD2VHI-PPsyyjl4j92A,8233
|
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.2.0a1713905403.dist-info/METADATA,sha256=CgjdFv2RbJtDuIJInWZZqhjfMtUYQRjAJlvYW259Poc,2893
|
56
|
+
pulumi_wavefront-3.2.0a1713905403.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
57
|
+
pulumi_wavefront-3.2.0a1713905403.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
|
58
|
+
pulumi_wavefront-3.2.0a1713905403.dist-info/RECORD,,
|
@@ -1,58 +0,0 @@
|
|
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.2.0a1713340678.dist-info/METADATA,sha256=SrEH3Atemex4HJ9pHW10CcvHkHFeOc1dgrt5iKdSK5c,2893
|
56
|
-
pulumi_wavefront-3.2.0a1713340678.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
57
|
-
pulumi_wavefront-3.2.0a1713340678.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
|
58
|
-
pulumi_wavefront-3.2.0a1713340678.dist-info/RECORD,,
|
{pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713905403.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|