pulumi-wavefront 3.2.0a1743576067__py3-none-any.whl → 3.2.0a1744183482__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 +239 -238
- pulumi_wavefront/alert_target.py +148 -147
- pulumi_wavefront/cloud_integration_app_dynamics.py +239 -238
- pulumi_wavefront/cloud_integration_aws_external_id.py +1 -0
- pulumi_wavefront/cloud_integration_azure.py +155 -154
- pulumi_wavefront/cloud_integration_azure_activity_log.py +127 -126
- pulumi_wavefront/cloud_integration_cloud_trail.py +155 -154
- pulumi_wavefront/cloud_integration_cloud_watch.py +169 -168
- pulumi_wavefront/cloud_integration_ec2.py +113 -112
- pulumi_wavefront/cloud_integration_gcp.py +127 -126
- pulumi_wavefront/cloud_integration_gcp_billing.py +113 -112
- pulumi_wavefront/cloud_integration_new_relic.py +113 -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 +127 -126
- pulumi_wavefront/dashboard_json.py +15 -14
- pulumi_wavefront/derived_metric.py +71 -70
- pulumi_wavefront/event.py +67 -66
- pulumi_wavefront/external_link.py +99 -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 +79 -78
- pulumi_wavefront/maintenance_window.py +127 -126
- pulumi_wavefront/metrics_policy.py +22 -21
- pulumi_wavefront/outputs.py +1205 -1204
- pulumi_wavefront/provider.py +19 -18
- pulumi_wavefront/pulumi-plugin.json +1 -1
- pulumi_wavefront/role.py +57 -56
- pulumi_wavefront/service_account.py +85 -84
- pulumi_wavefront/user.py +57 -56
- pulumi_wavefront/user_group.py +29 -28
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/METADATA +1 -1
- pulumi_wavefront-3.2.0a1744183482.dist-info/RECORD +58 -0
- pulumi_wavefront-3.2.0a1743576067.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.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,26 +91,26 @@ 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
|
|
@@ -255,10 +256,10 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
255
256
|
def get(resource_name: str,
|
256
257
|
id: pulumi.Input[str],
|
257
258
|
opts: Optional[pulumi.ResourceOptions] = None,
|
258
|
-
customer: Optional[pulumi.Input[str]] = None,
|
259
|
+
customer: Optional[pulumi.Input[builtins.str]] = None,
|
259
260
|
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':
|
261
|
+
updated_epoch_millis: Optional[pulumi.Input[builtins.int]] = None,
|
262
|
+
updater_id: Optional[pulumi.Input[builtins.str]] = None) -> 'MetricsPolicy':
|
262
263
|
"""
|
263
264
|
Get an existing MetricsPolicy resource's state with the given name, id, and optional extra
|
264
265
|
properties used to qualify the lookup.
|
@@ -266,10 +267,10 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
266
267
|
:param str resource_name: The unique name of the resulting resource.
|
267
268
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
268
269
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
269
|
-
:param pulumi.Input[str] customer: The customer the user is associated with.
|
270
|
+
:param pulumi.Input[builtins.str] customer: The customer the user is associated with.
|
270
271
|
: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.
|
272
|
+
:param pulumi.Input[builtins.int] updated_epoch_millis: When the policy was applied in epoch_millis.
|
273
|
+
:param pulumi.Input[builtins.str] updater_id: The account_id who applied the current policy.
|
273
274
|
"""
|
274
275
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
275
276
|
|
@@ -283,7 +284,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
283
284
|
|
284
285
|
@property
|
285
286
|
@pulumi.getter
|
286
|
-
def customer(self) -> pulumi.Output[str]:
|
287
|
+
def customer(self) -> pulumi.Output[builtins.str]:
|
287
288
|
"""
|
288
289
|
The customer the user is associated with.
|
289
290
|
"""
|
@@ -299,7 +300,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
299
300
|
|
300
301
|
@property
|
301
302
|
@pulumi.getter(name="updatedEpochMillis")
|
302
|
-
def updated_epoch_millis(self) -> pulumi.Output[int]:
|
303
|
+
def updated_epoch_millis(self) -> pulumi.Output[builtins.int]:
|
303
304
|
"""
|
304
305
|
When the policy was applied in epoch_millis.
|
305
306
|
"""
|
@@ -307,7 +308,7 @@ class MetricsPolicy(pulumi.CustomResource):
|
|
307
308
|
|
308
309
|
@property
|
309
310
|
@pulumi.getter(name="updaterId")
|
310
|
-
def updater_id(self) -> pulumi.Output[str]:
|
311
|
+
def updater_id(self) -> pulumi.Output[builtins.str]:
|
311
312
|
"""
|
312
313
|
The account_id who applied the current policy.
|
313
314
|
"""
|