pulumi-wavefront 3.2.0a1709368803__py3-none-any.whl → 3.2.0a1736836107__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 +528 -3
- pulumi_wavefront/_utilities.py +41 -5
- pulumi_wavefront/alert.py +18 -11
- pulumi_wavefront/alert_target.py +22 -15
- pulumi_wavefront/cloud_integration_app_dynamics.py +15 -8
- pulumi_wavefront/cloud_integration_aws_external_id.py +9 -4
- pulumi_wavefront/cloud_integration_azure.py +11 -4
- pulumi_wavefront/cloud_integration_azure_activity_log.py +11 -4
- pulumi_wavefront/cloud_integration_cloud_trail.py +11 -4
- pulumi_wavefront/cloud_integration_cloud_watch.py +11 -4
- pulumi_wavefront/cloud_integration_ec2.py +11 -4
- pulumi_wavefront/cloud_integration_gcp.py +13 -10
- pulumi_wavefront/cloud_integration_gcp_billing.py +15 -12
- pulumi_wavefront/cloud_integration_new_relic.py +18 -9
- pulumi_wavefront/config/__init__.pyi +5 -0
- pulumi_wavefront/config/vars.py +5 -0
- pulumi_wavefront/dashboard.py +17 -12
- pulumi_wavefront/dashboard_json.py +235 -232
- pulumi_wavefront/derived_metric.py +9 -2
- pulumi_wavefront/event.py +11 -4
- pulumi_wavefront/external_link.py +9 -2
- pulumi_wavefront/get_alert.py +39 -5
- pulumi_wavefront/get_alerts.py +18 -5
- pulumi_wavefront/get_dashboard.py +49 -6
- pulumi_wavefront/get_dashboards.py +18 -5
- pulumi_wavefront/get_default_user_group.py +14 -5
- pulumi_wavefront/get_derived_metric.py +37 -5
- pulumi_wavefront/get_derived_metrics.py +18 -5
- pulumi_wavefront/get_event.py +23 -5
- pulumi_wavefront/get_events.py +28 -11
- pulumi_wavefront/get_external_link.py +25 -5
- pulumi_wavefront/get_external_links.py +18 -5
- pulumi_wavefront/get_maintenance_window.py +31 -5
- pulumi_wavefront/get_maintenance_window_all.py +16 -5
- pulumi_wavefront/get_metrics_policy.py +15 -5
- pulumi_wavefront/get_role.py +17 -5
- pulumi_wavefront/get_roles.py +18 -5
- pulumi_wavefront/get_user.py +19 -5
- pulumi_wavefront/get_user_group.py +18 -5
- pulumi_wavefront/get_user_groups.py +18 -5
- pulumi_wavefront/get_users.py +14 -5
- pulumi_wavefront/ingestion_policy.py +16 -7
- pulumi_wavefront/maintenance_window.py +15 -10
- pulumi_wavefront/metrics_policy.py +34 -27
- pulumi_wavefront/outputs.py +13 -8
- pulumi_wavefront/provider.py +5 -0
- pulumi_wavefront/pulumi-plugin.json +2 -1
- pulumi_wavefront/role.py +9 -4
- pulumi_wavefront/service_account.py +11 -6
- pulumi_wavefront/user.py +7 -2
- pulumi_wavefront/user_group.py +13 -4
- {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1736836107.dist-info}/METADATA +7 -6
- pulumi_wavefront-3.2.0a1736836107.dist-info/RECORD +58 -0
- {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1736836107.dist-info}/WHEEL +1 -1
- pulumi_wavefront-3.2.0a1709368803.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1736836107.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -247,7 +252,7 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
247
252
|
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
248
253
|
scope: Optional[pulumi.Input[str]] = None,
|
249
254
|
sources: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
250
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
255
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IngestionPolicyTagArgs', 'IngestionPolicyTagArgsDict']]]]] = None,
|
251
256
|
__props__=None):
|
252
257
|
"""
|
253
258
|
Provides a Wavefront Ingestion Policy Resource. This allows ingestion policies to be created, updated, and deleted.
|
@@ -258,7 +263,9 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
258
263
|
import pulumi
|
259
264
|
import pulumi_wavefront as wavefront
|
260
265
|
|
261
|
-
basic = wavefront.IngestionPolicy("basic",
|
266
|
+
basic = wavefront.IngestionPolicy("basic",
|
267
|
+
name="test_ingestion",
|
268
|
+
description="An ingestion policy for testing")
|
262
269
|
```
|
263
270
|
|
264
271
|
## Import
|
@@ -266,7 +273,7 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
266
273
|
ingestion policies can be imported by using the `id`, e.g.:
|
267
274
|
|
268
275
|
```sh
|
269
|
-
|
276
|
+
$ pulumi import wavefront:index/ingestionPolicy:IngestionPolicy basic test_ingestion-1611946841064
|
270
277
|
```
|
271
278
|
|
272
279
|
:param str resource_name: The name of the resource.
|
@@ -289,7 +296,9 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
289
296
|
import pulumi
|
290
297
|
import pulumi_wavefront as wavefront
|
291
298
|
|
292
|
-
basic = wavefront.IngestionPolicy("basic",
|
299
|
+
basic = wavefront.IngestionPolicy("basic",
|
300
|
+
name="test_ingestion",
|
301
|
+
description="An ingestion policy for testing")
|
293
302
|
```
|
294
303
|
|
295
304
|
## Import
|
@@ -297,7 +306,7 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
297
306
|
ingestion policies can be imported by using the `id`, e.g.:
|
298
307
|
|
299
308
|
```sh
|
300
|
-
|
309
|
+
$ pulumi import wavefront:index/ingestionPolicy:IngestionPolicy basic test_ingestion-1611946841064
|
301
310
|
```
|
302
311
|
|
303
312
|
:param str resource_name: The name of the resource.
|
@@ -322,7 +331,7 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
322
331
|
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
323
332
|
scope: Optional[pulumi.Input[str]] = None,
|
324
333
|
sources: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
325
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
334
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IngestionPolicyTagArgs', 'IngestionPolicyTagArgsDict']]]]] = None,
|
326
335
|
__props__=None):
|
327
336
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
328
337
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -361,7 +370,7 @@ class IngestionPolicy(pulumi.CustomResource):
|
|
361
370
|
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
362
371
|
scope: Optional[pulumi.Input[str]] = None,
|
363
372
|
sources: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
364
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
373
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IngestionPolicyTagArgs', 'IngestionPolicyTagArgsDict']]]]] = None) -> 'IngestionPolicy':
|
365
374
|
"""
|
366
375
|
Get an existing IngestionPolicy resource's state with the given name, id, and optional extra
|
367
376
|
properties used to qualify the lookup.
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['MaintenanceWindowArgs', 'MaintenanceWindow']
|
@@ -380,14 +385,14 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
380
385
|
import pulumi_wavefront as wavefront
|
381
386
|
|
382
387
|
basic = wavefront.MaintenanceWindow("basic",
|
383
|
-
end_time_in_seconds=1601123456,
|
384
388
|
reason="Routine maintenance for 2020",
|
389
|
+
title="Routine maintenance",
|
390
|
+
start_time_in_seconds=1600123456,
|
391
|
+
end_time_in_seconds=1601123456,
|
385
392
|
relevant_host_names=[
|
386
393
|
"my_hostname",
|
387
394
|
"my_other_hostname",
|
388
|
-
]
|
389
|
-
start_time_in_seconds=1600123456,
|
390
|
-
title="Routine maintenance")
|
395
|
+
])
|
391
396
|
```
|
392
397
|
|
393
398
|
## Import
|
@@ -395,7 +400,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
395
400
|
Maintenance windows can be imported using the `id`, e.g.
|
396
401
|
|
397
402
|
```sh
|
398
|
-
|
403
|
+
$ pulumi import wavefront:index/maintenanceWindow:MaintenanceWindow basic 1600383357095
|
399
404
|
```
|
400
405
|
|
401
406
|
:param str resource_name: The name of the resource.
|
@@ -437,14 +442,14 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
437
442
|
import pulumi_wavefront as wavefront
|
438
443
|
|
439
444
|
basic = wavefront.MaintenanceWindow("basic",
|
440
|
-
end_time_in_seconds=1601123456,
|
441
445
|
reason="Routine maintenance for 2020",
|
446
|
+
title="Routine maintenance",
|
447
|
+
start_time_in_seconds=1600123456,
|
448
|
+
end_time_in_seconds=1601123456,
|
442
449
|
relevant_host_names=[
|
443
450
|
"my_hostname",
|
444
451
|
"my_other_hostname",
|
445
|
-
]
|
446
|
-
start_time_in_seconds=1600123456,
|
447
|
-
title="Routine maintenance")
|
452
|
+
])
|
448
453
|
```
|
449
454
|
|
450
455
|
## Import
|
@@ -452,7 +457,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
452
457
|
Maintenance windows can be imported using the `id`, e.g.
|
453
458
|
|
454
459
|
```sh
|
455
|
-
|
460
|
+
$ pulumi import wavefront:index/maintenanceWindow:MaintenanceWindow basic 1600383357095
|
456
461
|
```
|
457
462
|
|
458
463
|
:param str resource_name: The name of the resource.
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -113,7 +118,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
113
118
|
def __init__(__self__,
|
114
119
|
resource_name: str,
|
115
120
|
opts: Optional[pulumi.ResourceOptions] = None,
|
116
|
-
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
121
|
+
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MetricsPolicyPolicyRuleArgs', 'MetricsPolicyPolicyRuleArgsDict']]]]] = None,
|
117
122
|
__props__=None):
|
118
123
|
"""
|
119
124
|
Provides a Wavefront Metrics Policy Resource. This allows management of Metrics Policy to control access to time series, histograms, and delta counters
|
@@ -125,15 +130,16 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
125
130
|
import pulumi_wavefront as wavefront
|
126
131
|
|
127
132
|
everyone = wavefront.get_default_user_group()
|
128
|
-
main = wavefront.MetricsPolicy("main", policy_rules=[
|
129
|
-
name
|
130
|
-
description
|
131
|
-
prefixes
|
132
|
-
tags_anded
|
133
|
-
access_type
|
134
|
-
user_group_ids
|
135
|
-
|
133
|
+
main = wavefront.MetricsPolicy("main", policy_rules=[{
|
134
|
+
"name": "Allow All Metrics",
|
135
|
+
"description": "Predefined policy rule. Allows access to all metrics (timeseries, histograms, and counters) for all accounts. If this rule is removed, all accounts can access all metrics if there are no matching blocking rules.",
|
136
|
+
"prefixes": ["*"],
|
137
|
+
"tags_anded": False,
|
138
|
+
"access_type": "ALLOW",
|
139
|
+
"user_group_ids": [everyone.group_id],
|
140
|
+
}])
|
136
141
|
```
|
142
|
+
|
137
143
|
## Data Source
|
138
144
|
|
139
145
|
Provides a Wavefront Metrics Policy Data Source. This allows looking up the current policy and associated rules.
|
@@ -144,8 +150,8 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
144
150
|
import pulumi
|
145
151
|
import pulumi_wavefront as wavefront
|
146
152
|
|
147
|
-
|
148
|
-
pulumi.export("policy",
|
153
|
+
policy = wavefront.get_metrics_policy()
|
154
|
+
pulumi.export("policy", policy)
|
149
155
|
```
|
150
156
|
|
151
157
|
## Import
|
@@ -153,12 +159,12 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
153
159
|
Users can be imported by using the `updated_epoch_millis`, e.g.:
|
154
160
|
|
155
161
|
```sh
|
156
|
-
|
162
|
+
$ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
|
157
163
|
```
|
158
164
|
|
159
165
|
:param str resource_name: The name of the resource.
|
160
166
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
161
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
167
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['MetricsPolicyPolicyRuleArgs', 'MetricsPolicyPolicyRuleArgsDict']]]] policy_rules: List of Metrics Policies, must have at least one entry.
|
162
168
|
"""
|
163
169
|
...
|
164
170
|
@overload
|
@@ -176,15 +182,16 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
176
182
|
import pulumi_wavefront as wavefront
|
177
183
|
|
178
184
|
everyone = wavefront.get_default_user_group()
|
179
|
-
main = wavefront.MetricsPolicy("main", policy_rules=[
|
180
|
-
name
|
181
|
-
description
|
182
|
-
prefixes
|
183
|
-
tags_anded
|
184
|
-
access_type
|
185
|
-
user_group_ids
|
186
|
-
|
185
|
+
main = wavefront.MetricsPolicy("main", policy_rules=[{
|
186
|
+
"name": "Allow All Metrics",
|
187
|
+
"description": "Predefined policy rule. Allows access to all metrics (timeseries, histograms, and counters) for all accounts. If this rule is removed, all accounts can access all metrics if there are no matching blocking rules.",
|
188
|
+
"prefixes": ["*"],
|
189
|
+
"tags_anded": False,
|
190
|
+
"access_type": "ALLOW",
|
191
|
+
"user_group_ids": [everyone.group_id],
|
192
|
+
}])
|
187
193
|
```
|
194
|
+
|
188
195
|
## Data Source
|
189
196
|
|
190
197
|
Provides a Wavefront Metrics Policy Data Source. This allows looking up the current policy and associated rules.
|
@@ -195,8 +202,8 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
195
202
|
import pulumi
|
196
203
|
import pulumi_wavefront as wavefront
|
197
204
|
|
198
|
-
|
199
|
-
pulumi.export("policy",
|
205
|
+
policy = wavefront.get_metrics_policy()
|
206
|
+
pulumi.export("policy", policy)
|
200
207
|
```
|
201
208
|
|
202
209
|
## Import
|
@@ -204,7 +211,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
204
211
|
Users can be imported by using the `updated_epoch_millis`, e.g.:
|
205
212
|
|
206
213
|
```sh
|
207
|
-
|
214
|
+
$ pulumi import wavefront:index/metricsPolicy:MetricsPolicy some_metrics_policy 1651846476678
|
208
215
|
```
|
209
216
|
|
210
217
|
:param str resource_name: The name of the resource.
|
@@ -222,7 +229,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
222
229
|
def _internal_init(__self__,
|
223
230
|
resource_name: str,
|
224
231
|
opts: Optional[pulumi.ResourceOptions] = None,
|
225
|
-
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
232
|
+
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MetricsPolicyPolicyRuleArgs', 'MetricsPolicyPolicyRuleArgsDict']]]]] = None,
|
226
233
|
__props__=None):
|
227
234
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
228
235
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -249,7 +256,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
249
256
|
id: pulumi.Input[str],
|
250
257
|
opts: Optional[pulumi.ResourceOptions] = None,
|
251
258
|
customer: Optional[pulumi.Input[str]] = None,
|
252
|
-
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
259
|
+
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MetricsPolicyPolicyRuleArgs', 'MetricsPolicyPolicyRuleArgsDict']]]]] = None,
|
253
260
|
updated_epoch_millis: Optional[pulumi.Input[int]] = None,
|
254
261
|
updater_id: Optional[pulumi.Input[str]] = None) -> 'MetricsPolicy':
|
255
262
|
"""
|
@@ -260,7 +267,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
260
267
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
261
268
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
262
269
|
:param pulumi.Input[str] customer: The customer the user is associated with.
|
263
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
270
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['MetricsPolicyPolicyRuleArgs', 'MetricsPolicyPolicyRuleArgsDict']]]] policy_rules: List of Metrics Policies, must have at least one entry.
|
264
271
|
:param pulumi.Input[int] updated_epoch_millis: When the policy was applied in epoch_millis.
|
265
272
|
:param pulumi.Input[str] updater_id: The account_id who applied the current policy.
|
266
273
|
"""
|
pulumi_wavefront/outputs.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -114,13 +119,13 @@ class AlertAlertTriageDashboard(dict):
|
|
114
119
|
@pulumi.output_type
|
115
120
|
class AlertAlertTriageDashboardParameters(dict):
|
116
121
|
def __init__(__self__, *,
|
117
|
-
constants: Optional[Mapping[str,
|
122
|
+
constants: Optional[Mapping[str, str]] = None):
|
118
123
|
if constants is not None:
|
119
124
|
pulumi.set(__self__, "constants", constants)
|
120
125
|
|
121
126
|
@property
|
122
127
|
@pulumi.getter
|
123
|
-
def constants(self) -> Optional[Mapping[str,
|
128
|
+
def constants(self) -> Optional[Mapping[str, str]]:
|
124
129
|
return pulumi.get(self, "constants")
|
125
130
|
|
126
131
|
|
@@ -1707,13 +1712,13 @@ class GetAlertAlertTriageDashboardResult(dict):
|
|
1707
1712
|
@pulumi.output_type
|
1708
1713
|
class GetAlertAlertTriageDashboardParametersResult(dict):
|
1709
1714
|
def __init__(__self__, *,
|
1710
|
-
constants: Optional[Mapping[str,
|
1715
|
+
constants: Optional[Mapping[str, str]] = None):
|
1711
1716
|
if constants is not None:
|
1712
1717
|
pulumi.set(__self__, "constants", constants)
|
1713
1718
|
|
1714
1719
|
@property
|
1715
1720
|
@pulumi.getter
|
1716
|
-
def constants(self) -> Optional[Mapping[str,
|
1721
|
+
def constants(self) -> Optional[Mapping[str, str]]:
|
1717
1722
|
return pulumi.get(self, "constants")
|
1718
1723
|
|
1719
1724
|
|
@@ -2074,13 +2079,13 @@ class GetAlertsAlertAlertTriageDashboardResult(dict):
|
|
2074
2079
|
@pulumi.output_type
|
2075
2080
|
class GetAlertsAlertAlertTriageDashboardParametersResult(dict):
|
2076
2081
|
def __init__(__self__, *,
|
2077
|
-
constants: Optional[Mapping[str,
|
2082
|
+
constants: Optional[Mapping[str, str]] = None):
|
2078
2083
|
if constants is not None:
|
2079
2084
|
pulumi.set(__self__, "constants", constants)
|
2080
2085
|
|
2081
2086
|
@property
|
2082
2087
|
@pulumi.getter
|
2083
|
-
def constants(self) -> Optional[Mapping[str,
|
2088
|
+
def constants(self) -> Optional[Mapping[str, str]]:
|
2084
2089
|
return pulumi.get(self, "constants")
|
2085
2090
|
|
2086
2091
|
|
@@ -3113,7 +3118,7 @@ class GetDashboardsDashboardResult(dict):
|
|
3113
3118
|
num_charts: int,
|
3114
3119
|
num_favorites: int,
|
3115
3120
|
parameter_details: Sequence['outputs.GetDashboardsDashboardParameterDetailResult'],
|
3116
|
-
parameters: Mapping[str,
|
3121
|
+
parameters: Mapping[str, str],
|
3117
3122
|
sections: Sequence['outputs.GetDashboardsDashboardSectionResult'],
|
3118
3123
|
system_owned: bool,
|
3119
3124
|
tags: Sequence[str],
|
@@ -3324,7 +3329,7 @@ class GetDashboardsDashboardResult(dict):
|
|
3324
3329
|
|
3325
3330
|
@property
|
3326
3331
|
@pulumi.getter
|
3327
|
-
def parameters(self) -> Mapping[str,
|
3332
|
+
def parameters(self) -> Mapping[str, str]:
|
3328
3333
|
return pulumi.get(self, "parameters")
|
3329
3334
|
|
3330
3335
|
@property
|
pulumi_wavefront/provider.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['ProviderArgs', 'Provider']
|
pulumi_wavefront/role.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['RoleArgs', 'Role']
|
@@ -182,7 +187,7 @@ class Role(pulumi.CustomResource):
|
|
182
187
|
import pulumi
|
183
188
|
import pulumi_wavefront as wavefront
|
184
189
|
|
185
|
-
role = wavefront.Role("role")
|
190
|
+
role = wavefront.Role("role", name="Test Role")
|
186
191
|
```
|
187
192
|
|
188
193
|
## Import
|
@@ -190,7 +195,7 @@ class Role(pulumi.CustomResource):
|
|
190
195
|
Roles can be imported by using the `id`, e.g.:
|
191
196
|
|
192
197
|
```sh
|
193
|
-
|
198
|
+
$ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
194
199
|
```
|
195
200
|
|
196
201
|
:param str resource_name: The name of the resource.
|
@@ -217,7 +222,7 @@ class Role(pulumi.CustomResource):
|
|
217
222
|
import pulumi
|
218
223
|
import pulumi_wavefront as wavefront
|
219
224
|
|
220
|
-
role = wavefront.Role("role")
|
225
|
+
role = wavefront.Role("role", name="Test Role")
|
221
226
|
```
|
222
227
|
|
223
228
|
## Import
|
@@ -225,7 +230,7 @@ class Role(pulumi.CustomResource):
|
|
225
230
|
Roles can be imported by using the `id`, e.g.:
|
226
231
|
|
227
232
|
```sh
|
228
|
-
|
233
|
+
$ pulumi import wavefront:index/role:Role some_role a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
229
234
|
```
|
230
235
|
|
231
236
|
:param str resource_name: The name of the resource.
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['ServiceAccountArgs', 'ServiceAccount']
|
@@ -248,8 +253,8 @@ class ServiceAccount(pulumi.CustomResource):
|
|
248
253
|
import pulumi_wavefront as wavefront
|
249
254
|
|
250
255
|
basic = wavefront.ServiceAccount("basic",
|
251
|
-
|
252
|
-
|
256
|
+
identifier="sa::tftesting",
|
257
|
+
active=True)
|
253
258
|
```
|
254
259
|
|
255
260
|
## Import
|
@@ -257,7 +262,7 @@ class ServiceAccount(pulumi.CustomResource):
|
|
257
262
|
Service accounts can be imported by using `identifier`, e.g.:
|
258
263
|
|
259
264
|
```sh
|
260
|
-
|
265
|
+
$ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
|
261
266
|
```
|
262
267
|
|
263
268
|
:param str resource_name: The name of the resource.
|
@@ -287,8 +292,8 @@ class ServiceAccount(pulumi.CustomResource):
|
|
287
292
|
import pulumi_wavefront as wavefront
|
288
293
|
|
289
294
|
basic = wavefront.ServiceAccount("basic",
|
290
|
-
|
291
|
-
|
295
|
+
identifier="sa::tftesting",
|
296
|
+
active=True)
|
292
297
|
```
|
293
298
|
|
294
299
|
## Import
|
@@ -296,7 +301,7 @@ class ServiceAccount(pulumi.CustomResource):
|
|
296
301
|
Service accounts can be imported by using `identifier`, e.g.:
|
297
302
|
|
298
303
|
```sh
|
299
|
-
|
304
|
+
$ pulumi import wavefront:index/serviceAccount:ServiceAccount basic sa::tftesting
|
300
305
|
```
|
301
306
|
|
302
307
|
:param str resource_name: The name of the resource.
|
pulumi_wavefront/user.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['UserArgs', 'User']
|
@@ -189,7 +194,7 @@ class User(pulumi.CustomResource):
|
|
189
194
|
Users can be imported by using the `id`, e.g.:
|
190
195
|
|
191
196
|
```sh
|
192
|
-
|
197
|
+
$ pulumi import wavefront:index/user:User some_user test@example.com
|
193
198
|
```
|
194
199
|
|
195
200
|
:param str resource_name: The name of the resource.
|
@@ -224,7 +229,7 @@ class User(pulumi.CustomResource):
|
|
224
229
|
Users can be imported by using the `id`, e.g.:
|
225
230
|
|
226
231
|
```sh
|
227
|
-
|
232
|
+
$ pulumi import wavefront:index/user:User some_user test@example.com
|
228
233
|
```
|
229
234
|
|
230
235
|
:param str resource_name: The name of the resource.
|
pulumi_wavefront/user_group.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['UserGroupArgs', 'UserGroup']
|
@@ -107,7 +112,9 @@ class UserGroup(pulumi.CustomResource):
|
|
107
112
|
import pulumi
|
108
113
|
import pulumi_wavefront as wavefront
|
109
114
|
|
110
|
-
basic = wavefront.UserGroup("basic",
|
115
|
+
basic = wavefront.UserGroup("basic",
|
116
|
+
name="Basic User Group",
|
117
|
+
description="Basic User Group for Unit Tests")
|
111
118
|
```
|
112
119
|
|
113
120
|
## Import
|
@@ -115,7 +122,7 @@ class UserGroup(pulumi.CustomResource):
|
|
115
122
|
User Groups can be imported by using the `id`, e.g.:
|
116
123
|
|
117
124
|
```sh
|
118
|
-
|
125
|
+
$ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
119
126
|
```
|
120
127
|
|
121
128
|
:param str resource_name: The name of the resource.
|
@@ -138,7 +145,9 @@ class UserGroup(pulumi.CustomResource):
|
|
138
145
|
import pulumi
|
139
146
|
import pulumi_wavefront as wavefront
|
140
147
|
|
141
|
-
basic = wavefront.UserGroup("basic",
|
148
|
+
basic = wavefront.UserGroup("basic",
|
149
|
+
name="Basic User Group",
|
150
|
+
description="Basic User Group for Unit Tests")
|
142
151
|
```
|
143
152
|
|
144
153
|
## Import
|
@@ -146,7 +155,7 @@ class UserGroup(pulumi.CustomResource):
|
|
146
155
|
User Groups can be imported by using the `id`, e.g.:
|
147
156
|
|
148
157
|
```sh
|
149
|
-
|
158
|
+
$ pulumi import wavefront:index/userGroup:UserGroup some_group a411c16b-3cf7-4f03-bf11-8ca05aab898d
|
150
159
|
```
|
151
160
|
|
152
161
|
:param str resource_name: The name of the resource.
|
{pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1736836107.dist-info}/METADATA
RENAMED
@@ -1,16 +1,17 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: pulumi_wavefront
|
3
|
-
Version: 3.2.
|
3
|
+
Version: 3.2.0a1736836107
|
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.9
|
10
10
|
Description-Content-Type: text/markdown
|
11
|
-
Requires-Dist: parver
|
12
|
-
Requires-Dist: pulumi
|
13
|
-
Requires-Dist: semver
|
11
|
+
Requires-Dist: parver>=0.2.1
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.142.0
|
13
|
+
Requires-Dist: semver>=2.8.1
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
14
15
|
|
15
16
|
[](https://github.com/pulumi/pulumi-wavefront/actions)
|
16
17
|
[](https://slack.pulumi.com)
|