pulumi-wavefront 3.2.0a1747983547__py3-none-any.whl → 3.2.0a1748901825__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 -1
- pulumi_wavefront/_inputs.py +1 -1
- pulumi_wavefront/_utilities.py +1 -1
- pulumi_wavefront/alert.py +1 -1
- pulumi_wavefront/alert_target.py +1 -1
- pulumi_wavefront/cloud_integration_app_dynamics.py +17 -18
- pulumi_wavefront/cloud_integration_aws_external_id.py +1 -1
- pulumi_wavefront/cloud_integration_azure.py +17 -18
- pulumi_wavefront/cloud_integration_azure_activity_log.py +17 -18
- pulumi_wavefront/cloud_integration_cloud_trail.py +17 -18
- pulumi_wavefront/cloud_integration_cloud_watch.py +17 -18
- pulumi_wavefront/cloud_integration_ec2.py +17 -18
- pulumi_wavefront/cloud_integration_gcp.py +17 -18
- pulumi_wavefront/cloud_integration_gcp_billing.py +17 -18
- pulumi_wavefront/cloud_integration_new_relic.py +17 -18
- pulumi_wavefront/config/__init__.py +1 -1
- pulumi_wavefront/config/__init__.pyi +1 -1
- pulumi_wavefront/config/vars.py +1 -1
- pulumi_wavefront/dashboard.py +1 -1
- pulumi_wavefront/dashboard_json.py +1 -1
- pulumi_wavefront/derived_metric.py +1 -1
- pulumi_wavefront/event.py +1 -1
- pulumi_wavefront/external_link.py +1 -1
- pulumi_wavefront/get_alert.py +1 -1
- pulumi_wavefront/get_alerts.py +1 -1
- pulumi_wavefront/get_dashboard.py +1 -1
- pulumi_wavefront/get_dashboards.py +1 -1
- pulumi_wavefront/get_default_user_group.py +1 -1
- pulumi_wavefront/get_derived_metric.py +1 -1
- pulumi_wavefront/get_derived_metrics.py +1 -1
- pulumi_wavefront/get_event.py +1 -1
- pulumi_wavefront/get_events.py +1 -1
- pulumi_wavefront/get_external_link.py +1 -1
- pulumi_wavefront/get_external_links.py +1 -1
- pulumi_wavefront/get_maintenance_window.py +1 -1
- pulumi_wavefront/get_maintenance_window_all.py +1 -1
- pulumi_wavefront/get_metrics_policy.py +1 -1
- pulumi_wavefront/get_role.py +1 -1
- pulumi_wavefront/get_roles.py +1 -1
- pulumi_wavefront/get_user.py +1 -1
- pulumi_wavefront/get_user_group.py +1 -1
- pulumi_wavefront/get_user_groups.py +1 -1
- pulumi_wavefront/get_users.py +1 -1
- pulumi_wavefront/ingestion_policy.py +1 -1
- pulumi_wavefront/maintenance_window.py +1 -1
- pulumi_wavefront/metrics_policy.py +1 -1
- pulumi_wavefront/outputs.py +1 -1
- pulumi_wavefront/provider.py +22 -24
- pulumi_wavefront/pulumi-plugin.json +1 -1
- pulumi_wavefront/role.py +1 -1
- pulumi_wavefront/service_account.py +1 -1
- pulumi_wavefront/user.py +1 -1
- pulumi_wavefront/user_group.py +1 -1
- {pulumi_wavefront-3.2.0a1747983547.dist-info → pulumi_wavefront-3.2.0a1748901825.dist-info}/METADATA +1 -1
- pulumi_wavefront-3.2.0a1748901825.dist-info/RECORD +58 -0
- {pulumi_wavefront-3.2.0a1747983547.dist-info → pulumi_wavefront-3.2.0a1748901825.dist-info}/WHEEL +1 -1
- pulumi_wavefront-3.2.0a1747983547.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.2.0a1747983547.dist-info → pulumi_wavefront-3.2.0a1748901825.dist-info}/top_level.txt +0 -0
pulumi_wavefront/provider.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
5
|
import builtins
|
@@ -20,35 +20,28 @@ __all__ = ['ProviderArgs', 'Provider']
|
|
20
20
|
@pulumi.input_type
|
21
21
|
class ProviderArgs:
|
22
22
|
def __init__(__self__, *,
|
23
|
-
address: pulumi.Input[builtins.str],
|
24
|
-
|
25
|
-
|
23
|
+
address: Optional[pulumi.Input[builtins.str]] = None,
|
24
|
+
http_proxy: Optional[pulumi.Input[builtins.str]] = None,
|
25
|
+
token: Optional[pulumi.Input[builtins.str]] = None):
|
26
26
|
"""
|
27
27
|
The set of arguments for constructing a Provider resource.
|
28
28
|
"""
|
29
|
-
|
30
|
-
|
29
|
+
if address is not None:
|
30
|
+
pulumi.set(__self__, "address", address)
|
31
31
|
if http_proxy is not None:
|
32
32
|
pulumi.set(__self__, "http_proxy", http_proxy)
|
33
|
+
if token is not None:
|
34
|
+
pulumi.set(__self__, "token", token)
|
33
35
|
|
34
36
|
@property
|
35
37
|
@pulumi.getter
|
36
|
-
def address(self) -> pulumi.Input[builtins.str]:
|
38
|
+
def address(self) -> Optional[pulumi.Input[builtins.str]]:
|
37
39
|
return pulumi.get(self, "address")
|
38
40
|
|
39
41
|
@address.setter
|
40
|
-
def address(self, value: pulumi.Input[builtins.str]):
|
42
|
+
def address(self, value: Optional[pulumi.Input[builtins.str]]):
|
41
43
|
pulumi.set(self, "address", value)
|
42
44
|
|
43
|
-
@property
|
44
|
-
@pulumi.getter
|
45
|
-
def token(self) -> pulumi.Input[builtins.str]:
|
46
|
-
return pulumi.get(self, "token")
|
47
|
-
|
48
|
-
@token.setter
|
49
|
-
def token(self, value: pulumi.Input[builtins.str]):
|
50
|
-
pulumi.set(self, "token", value)
|
51
|
-
|
52
45
|
@property
|
53
46
|
@pulumi.getter(name="httpProxy")
|
54
47
|
def http_proxy(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -58,6 +51,15 @@ class ProviderArgs:
|
|
58
51
|
def http_proxy(self, value: Optional[pulumi.Input[builtins.str]]):
|
59
52
|
pulumi.set(self, "http_proxy", value)
|
60
53
|
|
54
|
+
@property
|
55
|
+
@pulumi.getter
|
56
|
+
def token(self) -> Optional[pulumi.Input[builtins.str]]:
|
57
|
+
return pulumi.get(self, "token")
|
58
|
+
|
59
|
+
@token.setter
|
60
|
+
def token(self, value: Optional[pulumi.Input[builtins.str]]):
|
61
|
+
pulumi.set(self, "token", value)
|
62
|
+
|
61
63
|
|
62
64
|
@pulumi.type_token("pulumi:providers:wavefront")
|
63
65
|
class Provider(pulumi.ProviderResource):
|
@@ -82,7 +84,7 @@ class Provider(pulumi.ProviderResource):
|
|
82
84
|
@overload
|
83
85
|
def __init__(__self__,
|
84
86
|
resource_name: str,
|
85
|
-
args: ProviderArgs,
|
87
|
+
args: Optional[ProviderArgs] = None,
|
86
88
|
opts: Optional[pulumi.ResourceOptions] = None):
|
87
89
|
"""
|
88
90
|
The provider type for the wavefront package. By default, resources use package-wide configuration
|
@@ -117,12 +119,8 @@ class Provider(pulumi.ProviderResource):
|
|
117
119
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
118
120
|
__props__ = ProviderArgs.__new__(ProviderArgs)
|
119
121
|
|
120
|
-
if address is None and not opts.urn:
|
121
|
-
raise TypeError("Missing required property 'address'")
|
122
122
|
__props__.__dict__["address"] = address
|
123
123
|
__props__.__dict__["http_proxy"] = http_proxy
|
124
|
-
if token is None and not opts.urn:
|
125
|
-
raise TypeError("Missing required property 'token'")
|
126
124
|
__props__.__dict__["token"] = token
|
127
125
|
super(Provider, __self__).__init__(
|
128
126
|
'wavefront',
|
@@ -132,7 +130,7 @@ class Provider(pulumi.ProviderResource):
|
|
132
130
|
|
133
131
|
@property
|
134
132
|
@pulumi.getter
|
135
|
-
def address(self) -> pulumi.Output[builtins.str]:
|
133
|
+
def address(self) -> pulumi.Output[Optional[builtins.str]]:
|
136
134
|
return pulumi.get(self, "address")
|
137
135
|
|
138
136
|
@property
|
@@ -142,7 +140,7 @@ class Provider(pulumi.ProviderResource):
|
|
142
140
|
|
143
141
|
@property
|
144
142
|
@pulumi.getter
|
145
|
-
def token(self) -> pulumi.Output[builtins.str]:
|
143
|
+
def token(self) -> pulumi.Output[Optional[builtins.str]]:
|
146
144
|
return pulumi.get(self, "token")
|
147
145
|
|
148
146
|
@pulumi.output_type
|
pulumi_wavefront/role.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
5
|
import builtins
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
5
|
import builtins
|
pulumi_wavefront/user.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
5
|
import builtins
|
pulumi_wavefront/user_group.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
5
|
import builtins
|
@@ -0,0 +1,58 @@
|
|
1
|
+
pulumi_wavefront/__init__.py,sha256=vcYvm_XCQDykG84-QIzFCmASkCNFIpgEt9SOd9pa4yQ,6687
|
2
|
+
pulumi_wavefront/_inputs.py,sha256=z47Cwt-IDv6U6a2zl_lV9bBVvqoirXcvtip71wFOd0k,107052
|
3
|
+
pulumi_wavefront/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
4
|
+
pulumi_wavefront/alert.py,sha256=hGhtpCpnaCzdgQesfsefkqtiDTtgni9hAdg3jBKKugE,57754
|
5
|
+
pulumi_wavefront/alert_target.py,sha256=_w1W86Mz0tK4AYf5C_hFK6L5Z_bksKLOewJm0wutyVo,34879
|
6
|
+
pulumi_wavefront/cloud_integration_app_dynamics.py,sha256=sGz_gDvnjH3WotKPU06P52MDG7rQ45Yh3FveT4VX6To,49242
|
7
|
+
pulumi_wavefront/cloud_integration_aws_external_id.py,sha256=tMtEtEK-rxZDCtZNrrHgSwDMDLoqre6hcZLAbmWo8QE,5148
|
8
|
+
pulumi_wavefront/cloud_integration_azure.py,sha256=J_QQUqyvHdIvHcP5202xebUahCqy6W38NnEtCkeh678,32286
|
9
|
+
pulumi_wavefront/cloud_integration_azure_activity_log.py,sha256=1kexJozTisakXTUYOhEeU4eiiDts4Dkiv2GfRWeiYT8,27495
|
10
|
+
pulumi_wavefront/cloud_integration_cloud_trail.py,sha256=QzmwfaIUKuOQVLpI5Iiaf4-UmECK2xW_nN-u3vZqAXc,30512
|
11
|
+
pulumi_wavefront/cloud_integration_cloud_watch.py,sha256=TU4EW1pT_ueWuO8vJRP1GndkfkGaNDPFpbFTHdM_5F8,38404
|
12
|
+
pulumi_wavefront/cloud_integration_ec2.py,sha256=Vyh71bqRShHHlNBdN519mGUnS2OzHmYVwQ4H12cMSPQ,25380
|
13
|
+
pulumi_wavefront/cloud_integration_gcp.py,sha256=yK-7rlcU14lIwirzsU9_3lo_QCH4tHILP3lCWV5ETNQ,30654
|
14
|
+
pulumi_wavefront/cloud_integration_gcp_billing.py,sha256=TSReYCU-iFTR5R19fXRA813eIZoAsXxu_fbTcxX6onU,24961
|
15
|
+
pulumi_wavefront/cloud_integration_new_relic.py,sha256=JtDpNiv8AJon3CEftssLIkeC1cDcqVV9TUIHXBszTiM,27718
|
16
|
+
pulumi_wavefront/dashboard.py,sha256=Upe5vM_XVF09mlH9L3fxdxf61AiLMPToSkKxr-XiWfA,33098
|
17
|
+
pulumi_wavefront/dashboard_json.py,sha256=4GWyz3sBslELEiJ0_8A5dl_LTZf1P-Net6obfEy4TEo,17189
|
18
|
+
pulumi_wavefront/derived_metric.py,sha256=pNXPFzx6zR3XI0T11LxuJDuFqxhSRV2GqhyvuKv7ZWk,15979
|
19
|
+
pulumi_wavefront/event.py,sha256=xMDvybXcXxnheiN5TDTgOchryWz-joYivI6XwU6XR4Q,15083
|
20
|
+
pulumi_wavefront/external_link.py,sha256=gs6b6A27_UEnb3BmOwp9hyjVYyiIqR2simxktejYrlk,26164
|
21
|
+
pulumi_wavefront/get_alert.py,sha256=8kJ10qt4duGM5BcWYTyrqb3Yxw6S3ePhentukK-2x1E,20263
|
22
|
+
pulumi_wavefront/get_alerts.py,sha256=2o_09FJm-eNoi59jy4nG6IhqzwzgydqUbIBaHgCC7ZM,5076
|
23
|
+
pulumi_wavefront/get_dashboard.py,sha256=LM0xzt3LSSM350388EI0ZTj4CzkFjksa3aToKYL-NUk,22984
|
24
|
+
pulumi_wavefront/get_dashboards.py,sha256=wv6t5HvYDW7xe8kMemgM7OfR-XbUojHjRDcX9cEgZZY,5269
|
25
|
+
pulumi_wavefront/get_default_user_group.py,sha256=ZNXRUVJ5_NK-nJlUiL3PuCnjxy8UZAd1yN_nmcU0qfk,3664
|
26
|
+
pulumi_wavefront/get_derived_metric.py,sha256=OJxNgJ9waMV--v1_10U2P-93ogyH3TFYpdrGZcyidzE,18306
|
27
|
+
pulumi_wavefront/get_derived_metrics.py,sha256=xUWl3HL0uciH_r4u2Pp9_qTHVUEreHOfpywF-7RFGsk,5521
|
28
|
+
pulumi_wavefront/get_event.py,sha256=cCzMZK3Zmm-G4RUv5GWdW6cJccBz9Vy_NNvsuOL5wzc,7865
|
29
|
+
pulumi_wavefront/get_events.py,sha256=TrCU4MszhIAfcv6meiUuoFpZfQwrHo4m17jZzX4wOWE,8132
|
30
|
+
pulumi_wavefront/get_external_link.py,sha256=Ti7hJ94-jQDFYv5SzMDuM0CQIj2t5ur8xBbkdSyqlSs,11176
|
31
|
+
pulumi_wavefront/get_external_links.py,sha256=Z86LWu9URHb4koBOHBO3HH3JyvrP98c-bUUZ855LdeY,5471
|
32
|
+
pulumi_wavefront/get_maintenance_window.py,sha256=d3toZR6hBeGjdNjfbXzmiodvso2DyuBIPHo07MCaHuQ,15951
|
33
|
+
pulumi_wavefront/get_maintenance_window_all.py,sha256=vw2jSQcKlO-I42nE70QwBcDerPlyH8PCQRwP1KjnEmI,4722
|
34
|
+
pulumi_wavefront/get_metrics_policy.py,sha256=QAGTpKEp0VEq8-hS4C0G46zCbHT7lJzX2TXFCeowWb0,4731
|
35
|
+
pulumi_wavefront/get_role.py,sha256=dJ0k1qIxdrTIvJiShaZqSJ3qjkDE5JljWQnrGzKfQCM,4659
|
36
|
+
pulumi_wavefront/get_roles.py,sha256=wZ1a74sO0tFL89fH1x3zAtP4b8GB1k2kpuUyQqI-kjM,4891
|
37
|
+
pulumi_wavefront/get_user.py,sha256=tX6ZxKWuVkCjBTvT_HgZ_lOWcl_5T0qSg89RGVPDOD0,6083
|
38
|
+
pulumi_wavefront/get_user_group.py,sha256=9hCtGheeuha7uGMPy00eGFFZYFxAqc2WNTGZADKI574,5253
|
39
|
+
pulumi_wavefront/get_user_groups.py,sha256=A7KmpPVKCXfI9UwWmfTszz0wOaafVzT_nGLwVvfvSz0,5171
|
40
|
+
pulumi_wavefront/get_users.py,sha256=wyIkSR9POJK4aXCqfgQLLKsob78UQa_vTH28LMaXd4U,3174
|
41
|
+
pulumi_wavefront/ingestion_policy.py,sha256=wp3GMc62LStW9hHT0kjqNL3BDGDXP1_3lnfl9eYhwx0,18170
|
42
|
+
pulumi_wavefront/maintenance_window.py,sha256=GSnuM2P16wY3ooz3fA5ueW5rZuDBXsxvDG5TKycPscs,35862
|
43
|
+
pulumi_wavefront/metrics_policy.py,sha256=dMXt1Qq5ZNfTm0tGkOaN3NgorJ4cE3uy88EnLH3av84,13376
|
44
|
+
pulumi_wavefront/outputs.py,sha256=B_J85EB4TGROUrnfD5Boi_Y-NYtq7GBqXyUon-SSyDg,228753
|
45
|
+
pulumi_wavefront/provider.py,sha256=rs18nwCPsKNR9PWZrD7pNpcGBG9cbOiHya4ut6dpY7I,6852
|
46
|
+
pulumi_wavefront/pulumi-plugin.json,sha256=i5AxSihpG7foiHFcMu9qW2l1kd3HO6g2r-33qhrpZwk,85
|
47
|
+
pulumi_wavefront/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
+
pulumi_wavefront/role.py,sha256=rJJAWiOR872T8Pg9ZTgfvoA56neSLYORUQyH3VoiFy4,14745
|
49
|
+
pulumi_wavefront/service_account.py,sha256=JFFOiC9DictL_tAoHcLq5mgzmECgmQX4ffOHSM8kCgY,19950
|
50
|
+
pulumi_wavefront/user.py,sha256=4AnKamg6fAvPKrczpT2jVSthF_TMD9YiT9eMNpZAFEg,15117
|
51
|
+
pulumi_wavefront/user_group.py,sha256=PumPSoZSxkJvb1KKI8s5bR_KQmTBBGba9NPIiioJ20I,8715
|
52
|
+
pulumi_wavefront/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
53
|
+
pulumi_wavefront/config/__init__.pyi,sha256=iz26XcXExweEnJfVzaBA4FNiT5Q9aArz2Bt4pARL86k,589
|
54
|
+
pulumi_wavefront/config/vars.py,sha256=4-cvLXmNsaxk3qCAZa0KXcG86_1yVzgMO-vASh745No,905
|
55
|
+
pulumi_wavefront-3.2.0a1748901825.dist-info/METADATA,sha256=b-CW4GhZwDlWmObMKZtl-m7KmiETTHJk4jsqai0EKmw,2959
|
56
|
+
pulumi_wavefront-3.2.0a1748901825.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
57
|
+
pulumi_wavefront-3.2.0a1748901825.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
|
58
|
+
pulumi_wavefront-3.2.0a1748901825.dist-info/RECORD,,
|
@@ -1,58 +0,0 @@
|
|
1
|
-
pulumi_wavefront/__init__.py,sha256=lJVgQ0M-vLqJo6O6crgxX4hIKX6fNVDgiHIMkLUv7Qg,6705
|
2
|
-
pulumi_wavefront/_inputs.py,sha256=0YpNunXUeMQ3xJ7FQ3WgWAZEXWzITERgH0INulDe-bQ,107070
|
3
|
-
pulumi_wavefront/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
4
|
-
pulumi_wavefront/alert.py,sha256=VM-sN4DlYD-h9i5vgon2ZYXj0dZvV4AHBwgidVcwQ7k,57772
|
5
|
-
pulumi_wavefront/alert_target.py,sha256=5gwl7GGdkxDpBYVxCsTBhAi2siEEKjSToRst9F7V9OU,34897
|
6
|
-
pulumi_wavefront/cloud_integration_app_dynamics.py,sha256=wFim0JpQ3ipq2Xxup8wWhfVNCjx6c2VV_gFkumviZQo,49307
|
7
|
-
pulumi_wavefront/cloud_integration_aws_external_id.py,sha256=19wDQTINniRe1Tnsf3b14JC6KazgOrId1dzjrFwyEcs,5166
|
8
|
-
pulumi_wavefront/cloud_integration_azure.py,sha256=RwgpLpjFsl5Un4NuPnZ7sJe4TbPVimIbr2XDeNdahDg,32351
|
9
|
-
pulumi_wavefront/cloud_integration_azure_activity_log.py,sha256=42TMdaNhOsE8R5KksA_elhracqiuhEDVjrAO2Jlpq7c,27560
|
10
|
-
pulumi_wavefront/cloud_integration_cloud_trail.py,sha256=OPzigY9bjXBqjXTv_rr2qgWGfLXjUCiy7cAvKyIklYU,30577
|
11
|
-
pulumi_wavefront/cloud_integration_cloud_watch.py,sha256=CJnvUhs_zjmiC8W3L6vf1OI7vAYJAN71ktO2clxJ7NA,38469
|
12
|
-
pulumi_wavefront/cloud_integration_ec2.py,sha256=RdwFah8-Wv3qP-Uss6yk21M_znlR1zs5ML6jI-p_Cjc,25445
|
13
|
-
pulumi_wavefront/cloud_integration_gcp.py,sha256=sdLASdu1PnaYokvqe3BNt0FaOpgs0GerxmCwXJMKLjY,30719
|
14
|
-
pulumi_wavefront/cloud_integration_gcp_billing.py,sha256=m6DGVuLdP9TGOYWaPtvSUxwpXQJUWT-_rxTvV64B-D8,25026
|
15
|
-
pulumi_wavefront/cloud_integration_new_relic.py,sha256=KuodWtzbY0bASozrvnHx7917lh_-Gu2ij402R_2V3fg,27783
|
16
|
-
pulumi_wavefront/dashboard.py,sha256=Sj9HJWNWNHXeym4uGykv2-eDtF7Q0to1QmB9hUOdThc,33116
|
17
|
-
pulumi_wavefront/dashboard_json.py,sha256=FYbEPKz5DQRkuxc-133wtzEHp503Z_eVLCuI9RwvcPs,17207
|
18
|
-
pulumi_wavefront/derived_metric.py,sha256=de0p7GH7Oy2T9vXLk0iDpEW2MuZe1SNrKPYYg-So0Aw,15997
|
19
|
-
pulumi_wavefront/event.py,sha256=7I_MWQkaOJC0xqnBXUbS72FAb-UYN8HVLj6O4Glu4sA,15101
|
20
|
-
pulumi_wavefront/external_link.py,sha256=B16RNvaXzn2HD3iuTTYPMqe46_peGKJv4-n1QN563es,26182
|
21
|
-
pulumi_wavefront/get_alert.py,sha256=cs4cVESl6HI71IOFGw1kl8HkeiXqfd6zXg1uqynJWrM,20281
|
22
|
-
pulumi_wavefront/get_alerts.py,sha256=vR864qDF7ND4z2nYI2cMRieJmG_ja_KGST-SvWiHvKA,5094
|
23
|
-
pulumi_wavefront/get_dashboard.py,sha256=kqCqZg-O0ARJ9stbmcnbSMXUb1cRSWGSz_GJgJTDExc,23002
|
24
|
-
pulumi_wavefront/get_dashboards.py,sha256=jlTgdW7cr76nbYjt4rkPJDIPOYSeSRt_6GfRBpL87i4,5287
|
25
|
-
pulumi_wavefront/get_default_user_group.py,sha256=O-KXs0VMtuc2BLRyYs5mXN6DQ-CYZHfNJGgXtluzGkM,3682
|
26
|
-
pulumi_wavefront/get_derived_metric.py,sha256=hVZgtpKr2X9X72lwWc2VtA8eu9aA_0Hovdtf1YNnrp4,18324
|
27
|
-
pulumi_wavefront/get_derived_metrics.py,sha256=X4hq-HPmVk6DX42tMjyTncU2Wh5xzkeWoFwOXlG7Erc,5539
|
28
|
-
pulumi_wavefront/get_event.py,sha256=6Ei_X4yAPQ4Lr_NFVdahM93zxjmlfOIw0yJOU-eGiD0,7883
|
29
|
-
pulumi_wavefront/get_events.py,sha256=AHo-MWc9KIJyJYpWeKX_XCEYkjbbNX4J9-CYD1CFDXE,8150
|
30
|
-
pulumi_wavefront/get_external_link.py,sha256=2yylZasZJjJePUKh164AcUyOPjZslvHR_xzhs7_RxFs,11194
|
31
|
-
pulumi_wavefront/get_external_links.py,sha256=45puwn51Xo-zuon-AdbhIrcDMlbwXfsNpdbUoWwHhYg,5489
|
32
|
-
pulumi_wavefront/get_maintenance_window.py,sha256=LJfu5MlDJVgvc2J_Xalerc1YIItb-RhocCiuKHLBqLA,15969
|
33
|
-
pulumi_wavefront/get_maintenance_window_all.py,sha256=EbTXOuXqiFDyy5OewtYMqDRJP7w6Vi2V5WHi30CMTqQ,4740
|
34
|
-
pulumi_wavefront/get_metrics_policy.py,sha256=d6s536Vr6Hn5I0zDbt9EF7ucP_a0k80RbBZTcE5_eDo,4749
|
35
|
-
pulumi_wavefront/get_role.py,sha256=mWFbDz1JOfeCvqg4VFC4MSPrBlU-uuCjK-ZuqoRvyuM,4677
|
36
|
-
pulumi_wavefront/get_roles.py,sha256=TlYqk1WjFrT0birRhK2Sw-axmxp1FOTMOYrJSwX0iy0,4909
|
37
|
-
pulumi_wavefront/get_user.py,sha256=XfHip6ojPzwDiGzGZhANs-fxNI-OIy3JDMBku4QzLKY,6101
|
38
|
-
pulumi_wavefront/get_user_group.py,sha256=XcbxjhKqYXBi5pJOptl0Ra3tcG7J299UwsqAYO2Ss_4,5271
|
39
|
-
pulumi_wavefront/get_user_groups.py,sha256=HF_qq09XzkVO3AdsmrDQ4k2q_pbv38LJsCWpLD-7L2w,5189
|
40
|
-
pulumi_wavefront/get_users.py,sha256=ZC3qZbSZ2ubGTwLjYqlI3h7DxZ6_iE29BBtnNAaImW0,3192
|
41
|
-
pulumi_wavefront/ingestion_policy.py,sha256=8bGOvgo4RiQvUSc3syS5l4ZRGKT8Z_8-_zEZW8XKXHs,18188
|
42
|
-
pulumi_wavefront/maintenance_window.py,sha256=a0Xl88f2phQkfX-TdkdcVqWN7nAnpG1iaCIvhOPAeuA,35880
|
43
|
-
pulumi_wavefront/metrics_policy.py,sha256=-VMW0W7inzBVHJrzQYCSEhH1RohIh1D5TfLcHOkuM0Q,13394
|
44
|
-
pulumi_wavefront/outputs.py,sha256=erFtI2AlFfm-h-jSZw2rn5Z6DHtc7LVjFYNVGSVqKfE,228771
|
45
|
-
pulumi_wavefront/provider.py,sha256=E783SHbusGN8JetLyBAsXr9RM6kfUNvB8DGo3LW3Plo,6925
|
46
|
-
pulumi_wavefront/pulumi-plugin.json,sha256=F6JMUii6IIAVwOP3HqivtU5wuW-TGhPCStkKvi2Ylsg,85
|
47
|
-
pulumi_wavefront/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
-
pulumi_wavefront/role.py,sha256=Rm09EX9Nmg2AxfqlqQPaTbntOVZLp_NRzKdQ3gzcRAE,14763
|
49
|
-
pulumi_wavefront/service_account.py,sha256=VPDA4rkJF0M5-t6DoC_HevrWDNhYXrDFwPdZXQPAU04,19968
|
50
|
-
pulumi_wavefront/user.py,sha256=XS4Osd78j_T-UeLxNHMpLPgVgd7ziNMBqoRdeAT-urI,15135
|
51
|
-
pulumi_wavefront/user_group.py,sha256=ysHodHLLQ3YtnDtkFwjVN8otdydx-gbwJDUGlfbKlK8,8733
|
52
|
-
pulumi_wavefront/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
53
|
-
pulumi_wavefront/config/__init__.pyi,sha256=JMDanbodpnfSnoQzseh5Q08m5ebgTWzPvqUexaezMeQ,607
|
54
|
-
pulumi_wavefront/config/vars.py,sha256=qydSBjExrbaU744Ypy0WOkiX0EUGp-ysAeSj9Q8kOcA,923
|
55
|
-
pulumi_wavefront-3.2.0a1747983547.dist-info/METADATA,sha256=phi6d7zYO6Uxe33cCai-yoYMnoKvg71zDjlnG-379I8,2959
|
56
|
-
pulumi_wavefront-3.2.0a1747983547.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
57
|
-
pulumi_wavefront-3.2.0a1747983547.dist-info/top_level.txt,sha256=fLT-9Ork4twhhON_den56-cfgFm6yOFEMvA18RQ3y8k,17
|
58
|
-
pulumi_wavefront-3.2.0a1747983547.dist-info/RECORD,,
|
File without changes
|