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
|
@@ -26,6 +27,9 @@ class CloudIntegrationAwsExternalIdArgs:
|
|
26
27
|
|
27
28
|
|
28
29
|
class CloudIntegrationAwsExternalId(pulumi.CustomResource):
|
30
|
+
|
31
|
+
pulumi_type = "wavefront:index/cloudIntegrationAwsExternalId:CloudIntegrationAwsExternalId"
|
32
|
+
|
29
33
|
@overload
|
30
34
|
def __init__(__self__,
|
31
35
|
resource_name: str,
|