pulumi-wavefront 3.1.8__py3-none-any.whl → 3.1.9__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/__init__.py +1 -0
- pulumi_wavefront/_inputs.py +501 -500
- pulumi_wavefront/alert.py +242 -238
- pulumi_wavefront/alert_target.py +151 -147
- pulumi_wavefront/cloud_integration_app_dynamics.py +242 -238
- pulumi_wavefront/cloud_integration_aws_external_id.py +4 -0
- pulumi_wavefront/cloud_integration_azure.py +158 -154
- pulumi_wavefront/cloud_integration_azure_activity_log.py +130 -126
- pulumi_wavefront/cloud_integration_cloud_trail.py +158 -154
- pulumi_wavefront/cloud_integration_cloud_watch.py +172 -168
- pulumi_wavefront/cloud_integration_ec2.py +116 -112
- pulumi_wavefront/cloud_integration_gcp.py +130 -126
- pulumi_wavefront/cloud_integration_gcp_billing.py +116 -112
- pulumi_wavefront/cloud_integration_new_relic.py +116 -112
- pulumi_wavefront/config/__init__.py +1 -0
- pulumi_wavefront/config/__init__.pyi +1 -0
- pulumi_wavefront/config/vars.py +1 -0
- pulumi_wavefront/dashboard.py +130 -126
- pulumi_wavefront/dashboard_json.py +18 -14
- pulumi_wavefront/derived_metric.py +74 -70
- pulumi_wavefront/event.py +70 -66
- pulumi_wavefront/external_link.py +102 -98
- pulumi_wavefront/get_alert.py +31 -30
- pulumi_wavefront/get_alerts.py +12 -11
- pulumi_wavefront/get_dashboard.py +38 -37
- pulumi_wavefront/get_dashboards.py +12 -11
- pulumi_wavefront/get_default_user_group.py +3 -2
- pulumi_wavefront/get_derived_metric.py +29 -28
- pulumi_wavefront/get_derived_metrics.py +12 -11
- pulumi_wavefront/get_event.py +15 -14
- pulumi_wavefront/get_events.py +22 -21
- pulumi_wavefront/get_external_link.py +17 -16
- pulumi_wavefront/get_external_links.py +12 -11
- pulumi_wavefront/get_maintenance_window.py +23 -22
- pulumi_wavefront/get_maintenance_window_all.py +8 -7
- pulumi_wavefront/get_metrics_policy.py +5 -4
- pulumi_wavefront/get_role.py +9 -8
- pulumi_wavefront/get_roles.py +12 -11
- pulumi_wavefront/get_user.py +11 -10
- pulumi_wavefront/get_user_group.py +10 -9
- pulumi_wavefront/get_user_groups.py +12 -11
- pulumi_wavefront/get_users.py +2 -1
- pulumi_wavefront/ingestion_policy.py +82 -78
- pulumi_wavefront/maintenance_window.py +130 -126
- pulumi_wavefront/metrics_policy.py +25 -21
- pulumi_wavefront/outputs.py +1205 -1204
- pulumi_wavefront/provider.py +22 -18
- pulumi_wavefront/pulumi-plugin.json +1 -1
- pulumi_wavefront/role.py +60 -56
- pulumi_wavefront/service_account.py +88 -84
- pulumi_wavefront/user.py +60 -56
- pulumi_wavefront/user_group.py +32 -28
- {pulumi_wavefront-3.1.8.dist-info → pulumi_wavefront-3.1.9.dist-info}/METADATA +2 -2
- pulumi_wavefront-3.1.9.dist-info/RECORD +58 -0
- {pulumi_wavefront-3.1.8.dist-info → pulumi_wavefront-3.1.9.dist-info}/WHEEL +1 -1
- pulumi_wavefront-3.1.8.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.1.8.dist-info → pulumi_wavefront-3.1.9.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -44,16 +45,16 @@ class MetricsPolicyArgs:
|
|
44
45
|
@pulumi.input_type
|
45
46
|
class _MetricsPolicyState:
|
46
47
|
def __init__(__self__, *,
|
47
|
-
customer: Optional[pulumi.Input[str]] = None,
|
48
|
+
customer: Optional[pulumi.Input[builtins.str]] = None,
|
48
49
|
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input['MetricsPolicyPolicyRuleArgs']]]] = None,
|
49
|
-
updated_epoch_millis: Optional[pulumi.Input[int]] = None,
|
50
|
-
updater_id: Optional[pulumi.Input[str]] = None):
|
50
|
+
updated_epoch_millis: Optional[pulumi.Input[builtins.int]] = None,
|
51
|
+
updater_id: Optional[pulumi.Input[builtins.str]] = None):
|
51
52
|
"""
|
52
53
|
Input properties used for looking up and filtering MetricsPolicy resources.
|
53
|
-
:param pulumi.Input[str] customer: The customer the user is associated with.
|
54
|
+
:param pulumi.Input[builtins.str] customer: The customer the user is associated with.
|
54
55
|
:param pulumi.Input[Sequence[pulumi.Input['MetricsPolicyPolicyRuleArgs']]] policy_rules: List of Metrics Policies, must have at least one entry.
|
55
|
-
:param pulumi.Input[int] updated_epoch_millis: When the policy was applied in epoch_millis.
|
56
|
-
:param pulumi.Input[str] updater_id: The account_id who applied the current policy.
|
56
|
+
:param pulumi.Input[builtins.int] updated_epoch_millis: When the policy was applied in epoch_millis.
|
57
|
+
:param pulumi.Input[builtins.str] updater_id: The account_id who applied the current policy.
|
57
58
|
"""
|
58
59
|
if customer is not None:
|
59
60
|
pulumi.set(__self__, "customer", customer)
|
@@ -66,14 +67,14 @@ class _MetricsPolicyState:
|
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter
|
69
|
-
def customer(self) -> Optional[pulumi.Input[str]]:
|
70
|
+
def customer(self) -> Optional[pulumi.Input[builtins.str]]:
|
70
71
|
"""
|
71
72
|
The customer the user is associated with.
|
72
73
|
"""
|
73
74
|
return pulumi.get(self, "customer")
|
74
75
|
|
75
76
|
@customer.setter
|
76
|
-
def customer(self, value: Optional[pulumi.Input[str]]):
|
77
|
+
def customer(self, value: Optional[pulumi.Input[builtins.str]]):
|
77
78
|
pulumi.set(self, "customer", value)
|
78
79
|
|
79
80
|
@property
|
@@ -90,30 +91,33 @@ class _MetricsPolicyState:
|
|
90
91
|
|
91
92
|
@property
|
92
93
|
@pulumi.getter(name="updatedEpochMillis")
|
93
|
-
def updated_epoch_millis(self) -> Optional[pulumi.Input[int]]:
|
94
|
+
def updated_epoch_millis(self) -> Optional[pulumi.Input[builtins.int]]:
|
94
95
|
"""
|
95
96
|
When the policy was applied in epoch_millis.
|
96
97
|
"""
|
97
98
|
return pulumi.get(self, "updated_epoch_millis")
|
98
99
|
|
99
100
|
@updated_epoch_millis.setter
|
100
|
-
def updated_epoch_millis(self, value: Optional[pulumi.Input[int]]):
|
101
|
+
def updated_epoch_millis(self, value: Optional[pulumi.Input[builtins.int]]):
|
101
102
|
pulumi.set(self, "updated_epoch_millis", value)
|
102
103
|
|
103
104
|
@property
|
104
105
|
@pulumi.getter(name="updaterId")
|
105
|
-
def updater_id(self) -> Optional[pulumi.Input[str]]:
|
106
|
+
def updater_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
106
107
|
"""
|
107
108
|
The account_id who applied the current policy.
|
108
109
|
"""
|
109
110
|
return pulumi.get(self, "updater_id")
|
110
111
|
|
111
112
|
@updater_id.setter
|
112
|
-
def updater_id(self, value: Optional[pulumi.Input[str]]):
|
113
|
+
def updater_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
113
114
|
pulumi.set(self, "updater_id", value)
|
114
115
|
|
115
116
|
|
116
117
|
class MetricsPolicy(pulumi.CustomResource):
|
118
|
+
|
119
|
+
pulumi_type = "wavefront:index/metricsPolicy:MetricsPolicy"
|
120
|
+
|
117
121
|
@overload
|
118
122
|
def __init__(__self__,
|
119
123
|
resource_name: str,
|
@@ -255,10 +259,10 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
255
259
|
def get(resource_name: str,
|
256
260
|
id: pulumi.Input[str],
|
257
261
|
opts: Optional[pulumi.ResourceOptions] = None,
|
258
|
-
customer: Optional[pulumi.Input[str]] = None,
|
262
|
+
customer: Optional[pulumi.Input[builtins.str]] = None,
|
259
263
|
policy_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MetricsPolicyPolicyRuleArgs', 'MetricsPolicyPolicyRuleArgsDict']]]]] = None,
|
260
|
-
updated_epoch_millis: Optional[pulumi.Input[int]] = None,
|
261
|
-
updater_id: Optional[pulumi.Input[str]] = None) -> 'MetricsPolicy':
|
264
|
+
updated_epoch_millis: Optional[pulumi.Input[builtins.int]] = None,
|
265
|
+
updater_id: Optional[pulumi.Input[builtins.str]] = None) -> 'MetricsPolicy':
|
262
266
|
"""
|
263
267
|
Get an existing MetricsPolicy resource's state with the given name, id, and optional extra
|
264
268
|
properties used to qualify the lookup.
|
@@ -266,10 +270,10 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
266
270
|
:param str resource_name: The unique name of the resulting resource.
|
267
271
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
268
272
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
269
|
-
:param pulumi.Input[str] customer: The customer the user is associated with.
|
273
|
+
:param pulumi.Input[builtins.str] customer: The customer the user is associated with.
|
270
274
|
:param pulumi.Input[Sequence[pulumi.Input[Union['MetricsPolicyPolicyRuleArgs', 'MetricsPolicyPolicyRuleArgsDict']]]] policy_rules: List of Metrics Policies, must have at least one entry.
|
271
|
-
:param pulumi.Input[int] updated_epoch_millis: When the policy was applied in epoch_millis.
|
272
|
-
:param pulumi.Input[str] updater_id: The account_id who applied the current policy.
|
275
|
+
:param pulumi.Input[builtins.int] updated_epoch_millis: When the policy was applied in epoch_millis.
|
276
|
+
:param pulumi.Input[builtins.str] updater_id: The account_id who applied the current policy.
|
273
277
|
"""
|
274
278
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
275
279
|
|
@@ -283,7 +287,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
283
287
|
|
284
288
|
@property
|
285
289
|
@pulumi.getter
|
286
|
-
def customer(self) -> pulumi.Output[str]:
|
290
|
+
def customer(self) -> pulumi.Output[builtins.str]:
|
287
291
|
"""
|
288
292
|
The customer the user is associated with.
|
289
293
|
"""
|
@@ -299,7 +303,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
299
303
|
|
300
304
|
@property
|
301
305
|
@pulumi.getter(name="updatedEpochMillis")
|
302
|
-
def updated_epoch_millis(self) -> pulumi.Output[int]:
|
306
|
+
def updated_epoch_millis(self) -> pulumi.Output[builtins.int]:
|
303
307
|
"""
|
304
308
|
When the policy was applied in epoch_millis.
|
305
309
|
"""
|
@@ -307,7 +311,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
307
311
|
|
308
312
|
@property
|
309
313
|
@pulumi.getter(name="updaterId")
|
310
|
-
def updater_id(self) -> pulumi.Output[str]:
|
314
|
+
def updater_id(self) -> pulumi.Output[builtins.str]:
|
311
315
|
"""
|
312
316
|
The account_id who applied the current policy.
|
313
317
|
"""
|