pulumi-wavefront 3.1.8a1741099290__py3-none-any.whl → 3.1.9a1745952368__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.8a1741099290.dist-info → pulumi_wavefront-3.1.9a1745952368.dist-info}/METADATA +2 -2
- pulumi_wavefront-3.1.9a1745952368.dist-info/RECORD +58 -0
- {pulumi_wavefront-3.1.8a1741099290.dist-info → pulumi_wavefront-3.1.9a1745952368.dist-info}/WHEEL +1 -1
- pulumi_wavefront-3.1.8a1741099290.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.1.8a1741099290.dist-info → pulumi_wavefront-3.1.9a1745952368.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
|
@@ -19,25 +20,25 @@ __all__ = ['ExternalLinkArgs', 'ExternalLink']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class ExternalLinkArgs:
|
21
22
|
def __init__(__self__, *,
|
22
|
-
description: pulumi.Input[str],
|
23
|
-
template: pulumi.Input[str],
|
24
|
-
is_log_integration: Optional[pulumi.Input[bool]] = None,
|
25
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
26
|
-
name: Optional[pulumi.Input[str]] = None,
|
27
|
-
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
|
-
source_filter_regex: Optional[pulumi.Input[str]] = None):
|
23
|
+
description: pulumi.Input[builtins.str],
|
24
|
+
template: pulumi.Input[builtins.str],
|
25
|
+
is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
|
26
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
27
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
29
|
+
source_filter_regex: Optional[pulumi.Input[builtins.str]] = None):
|
29
30
|
"""
|
30
31
|
The set of arguments for constructing a ExternalLink resource.
|
31
|
-
:param pulumi.Input[str] description: Human-readable description for this link.
|
32
|
-
:param pulumi.Input[str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
33
|
-
:param pulumi.Input[bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
34
|
-
:param pulumi.Input[str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
35
|
-
:param pulumi.Input[str] name: The name of the external link.
|
36
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
32
|
+
:param pulumi.Input[builtins.str] description: Human-readable description for this link.
|
33
|
+
:param pulumi.Input[builtins.str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
34
|
+
:param pulumi.Input[builtins.bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
35
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
36
|
+
:param pulumi.Input[builtins.str] name: The name of the external link.
|
37
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
37
38
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
38
39
|
keys are present in the keys of this map and whose values match the regular expressions associated with those
|
39
40
|
keys in order for the link to be displayed.
|
40
|
-
:param pulumi.Input[str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
41
|
+
:param pulumi.Input[builtins.str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
41
42
|
"""
|
42
43
|
pulumi.set(__self__, "description", description)
|
43
44
|
pulumi.set(__self__, "template", template)
|
@@ -54,67 +55,67 @@ class ExternalLinkArgs:
|
|
54
55
|
|
55
56
|
@property
|
56
57
|
@pulumi.getter
|
57
|
-
def description(self) -> pulumi.Input[str]:
|
58
|
+
def description(self) -> pulumi.Input[builtins.str]:
|
58
59
|
"""
|
59
60
|
Human-readable description for this link.
|
60
61
|
"""
|
61
62
|
return pulumi.get(self, "description")
|
62
63
|
|
63
64
|
@description.setter
|
64
|
-
def description(self, value: pulumi.Input[str]):
|
65
|
+
def description(self, value: pulumi.Input[builtins.str]):
|
65
66
|
pulumi.set(self, "description", value)
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter
|
69
|
-
def template(self) -> pulumi.Input[str]:
|
70
|
+
def template(self) -> pulumi.Input[builtins.str]:
|
70
71
|
"""
|
71
72
|
The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
72
73
|
"""
|
73
74
|
return pulumi.get(self, "template")
|
74
75
|
|
75
76
|
@template.setter
|
76
|
-
def template(self, value: pulumi.Input[str]):
|
77
|
+
def template(self, value: pulumi.Input[builtins.str]):
|
77
78
|
pulumi.set(self, "template", value)
|
78
79
|
|
79
80
|
@property
|
80
81
|
@pulumi.getter(name="isLogIntegration")
|
81
|
-
def is_log_integration(self) -> Optional[pulumi.Input[bool]]:
|
82
|
+
def is_log_integration(self) -> Optional[pulumi.Input[builtins.bool]]:
|
82
83
|
"""
|
83
84
|
Whether this is a "Log Integration" subType of external link.
|
84
85
|
"""
|
85
86
|
return pulumi.get(self, "is_log_integration")
|
86
87
|
|
87
88
|
@is_log_integration.setter
|
88
|
-
def is_log_integration(self, value: Optional[pulumi.Input[bool]]):
|
89
|
+
def is_log_integration(self, value: Optional[pulumi.Input[builtins.bool]]):
|
89
90
|
pulumi.set(self, "is_log_integration", value)
|
90
91
|
|
91
92
|
@property
|
92
93
|
@pulumi.getter(name="metricFilterRegex")
|
93
|
-
def metric_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
94
|
+
def metric_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
94
95
|
"""
|
95
96
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
96
97
|
"""
|
97
98
|
return pulumi.get(self, "metric_filter_regex")
|
98
99
|
|
99
100
|
@metric_filter_regex.setter
|
100
|
-
def metric_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
101
|
+
def metric_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
101
102
|
pulumi.set(self, "metric_filter_regex", value)
|
102
103
|
|
103
104
|
@property
|
104
105
|
@pulumi.getter
|
105
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
106
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
106
107
|
"""
|
107
108
|
The name of the external link.
|
108
109
|
"""
|
109
110
|
return pulumi.get(self, "name")
|
110
111
|
|
111
112
|
@name.setter
|
112
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
113
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
113
114
|
pulumi.set(self, "name", value)
|
114
115
|
|
115
116
|
@property
|
116
117
|
@pulumi.getter(name="pointTagFilterRegexes")
|
117
|
-
def point_tag_filter_regexes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
118
|
+
def point_tag_filter_regexes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
118
119
|
"""
|
119
120
|
Controls whether a link is displayed in the context menu of a highlighted
|
120
121
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
@@ -124,44 +125,44 @@ class ExternalLinkArgs:
|
|
124
125
|
return pulumi.get(self, "point_tag_filter_regexes")
|
125
126
|
|
126
127
|
@point_tag_filter_regexes.setter
|
127
|
-
def point_tag_filter_regexes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
128
|
+
def point_tag_filter_regexes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
128
129
|
pulumi.set(self, "point_tag_filter_regexes", value)
|
129
130
|
|
130
131
|
@property
|
131
132
|
@pulumi.getter(name="sourceFilterRegex")
|
132
|
-
def source_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
133
|
+
def source_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
133
134
|
"""
|
134
135
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
135
136
|
"""
|
136
137
|
return pulumi.get(self, "source_filter_regex")
|
137
138
|
|
138
139
|
@source_filter_regex.setter
|
139
|
-
def source_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
140
|
+
def source_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
140
141
|
pulumi.set(self, "source_filter_regex", value)
|
141
142
|
|
142
143
|
|
143
144
|
@pulumi.input_type
|
144
145
|
class _ExternalLinkState:
|
145
146
|
def __init__(__self__, *,
|
146
|
-
description: Optional[pulumi.Input[str]] = None,
|
147
|
-
is_log_integration: Optional[pulumi.Input[bool]] = None,
|
148
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
149
|
-
name: Optional[pulumi.Input[str]] = None,
|
150
|
-
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
151
|
-
source_filter_regex: Optional[pulumi.Input[str]] = None,
|
152
|
-
template: Optional[pulumi.Input[str]] = None):
|
147
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
148
|
+
is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
|
149
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
150
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
151
|
+
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
152
|
+
source_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
153
|
+
template: Optional[pulumi.Input[builtins.str]] = None):
|
153
154
|
"""
|
154
155
|
Input properties used for looking up and filtering ExternalLink resources.
|
155
|
-
:param pulumi.Input[str] description: Human-readable description for this link.
|
156
|
-
:param pulumi.Input[bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
157
|
-
:param pulumi.Input[str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
158
|
-
:param pulumi.Input[str] name: The name of the external link.
|
159
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
156
|
+
:param pulumi.Input[builtins.str] description: Human-readable description for this link.
|
157
|
+
:param pulumi.Input[builtins.bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
158
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
159
|
+
:param pulumi.Input[builtins.str] name: The name of the external link.
|
160
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
160
161
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
161
162
|
keys are present in the keys of this map and whose values match the regular expressions associated with those
|
162
163
|
keys in order for the link to be displayed.
|
163
|
-
:param pulumi.Input[str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
164
|
-
:param pulumi.Input[str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
164
|
+
:param pulumi.Input[builtins.str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
165
|
+
:param pulumi.Input[builtins.str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
165
166
|
"""
|
166
167
|
if description is not None:
|
167
168
|
pulumi.set(__self__, "description", description)
|
@@ -180,55 +181,55 @@ class _ExternalLinkState:
|
|
180
181
|
|
181
182
|
@property
|
182
183
|
@pulumi.getter
|
183
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
184
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
184
185
|
"""
|
185
186
|
Human-readable description for this link.
|
186
187
|
"""
|
187
188
|
return pulumi.get(self, "description")
|
188
189
|
|
189
190
|
@description.setter
|
190
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
191
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
191
192
|
pulumi.set(self, "description", value)
|
192
193
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter(name="isLogIntegration")
|
195
|
-
def is_log_integration(self) -> Optional[pulumi.Input[bool]]:
|
196
|
+
def is_log_integration(self) -> Optional[pulumi.Input[builtins.bool]]:
|
196
197
|
"""
|
197
198
|
Whether this is a "Log Integration" subType of external link.
|
198
199
|
"""
|
199
200
|
return pulumi.get(self, "is_log_integration")
|
200
201
|
|
201
202
|
@is_log_integration.setter
|
202
|
-
def is_log_integration(self, value: Optional[pulumi.Input[bool]]):
|
203
|
+
def is_log_integration(self, value: Optional[pulumi.Input[builtins.bool]]):
|
203
204
|
pulumi.set(self, "is_log_integration", value)
|
204
205
|
|
205
206
|
@property
|
206
207
|
@pulumi.getter(name="metricFilterRegex")
|
207
|
-
def metric_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
208
|
+
def metric_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
208
209
|
"""
|
209
210
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
210
211
|
"""
|
211
212
|
return pulumi.get(self, "metric_filter_regex")
|
212
213
|
|
213
214
|
@metric_filter_regex.setter
|
214
|
-
def metric_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
215
|
+
def metric_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
215
216
|
pulumi.set(self, "metric_filter_regex", value)
|
216
217
|
|
217
218
|
@property
|
218
219
|
@pulumi.getter
|
219
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
220
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
220
221
|
"""
|
221
222
|
The name of the external link.
|
222
223
|
"""
|
223
224
|
return pulumi.get(self, "name")
|
224
225
|
|
225
226
|
@name.setter
|
226
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
227
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
227
228
|
pulumi.set(self, "name", value)
|
228
229
|
|
229
230
|
@property
|
230
231
|
@pulumi.getter(name="pointTagFilterRegexes")
|
231
|
-
def point_tag_filter_regexes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
232
|
+
def point_tag_filter_regexes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
232
233
|
"""
|
233
234
|
Controls whether a link is displayed in the context menu of a highlighted
|
234
235
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
@@ -238,46 +239,49 @@ class _ExternalLinkState:
|
|
238
239
|
return pulumi.get(self, "point_tag_filter_regexes")
|
239
240
|
|
240
241
|
@point_tag_filter_regexes.setter
|
241
|
-
def point_tag_filter_regexes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
242
|
+
def point_tag_filter_regexes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
242
243
|
pulumi.set(self, "point_tag_filter_regexes", value)
|
243
244
|
|
244
245
|
@property
|
245
246
|
@pulumi.getter(name="sourceFilterRegex")
|
246
|
-
def source_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
247
|
+
def source_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
247
248
|
"""
|
248
249
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
249
250
|
"""
|
250
251
|
return pulumi.get(self, "source_filter_regex")
|
251
252
|
|
252
253
|
@source_filter_regex.setter
|
253
|
-
def source_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
254
|
+
def source_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
254
255
|
pulumi.set(self, "source_filter_regex", value)
|
255
256
|
|
256
257
|
@property
|
257
258
|
@pulumi.getter
|
258
|
-
def template(self) -> Optional[pulumi.Input[str]]:
|
259
|
+
def template(self) -> Optional[pulumi.Input[builtins.str]]:
|
259
260
|
"""
|
260
261
|
The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
261
262
|
"""
|
262
263
|
return pulumi.get(self, "template")
|
263
264
|
|
264
265
|
@template.setter
|
265
|
-
def template(self, value: Optional[pulumi.Input[str]]):
|
266
|
+
def template(self, value: Optional[pulumi.Input[builtins.str]]):
|
266
267
|
pulumi.set(self, "template", value)
|
267
268
|
|
268
269
|
|
269
270
|
class ExternalLink(pulumi.CustomResource):
|
271
|
+
|
272
|
+
pulumi_type = "wavefront:index/externalLink:ExternalLink"
|
273
|
+
|
270
274
|
@overload
|
271
275
|
def __init__(__self__,
|
272
276
|
resource_name: str,
|
273
277
|
opts: Optional[pulumi.ResourceOptions] = None,
|
274
|
-
description: Optional[pulumi.Input[str]] = None,
|
275
|
-
is_log_integration: Optional[pulumi.Input[bool]] = None,
|
276
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
277
|
-
name: Optional[pulumi.Input[str]] = None,
|
278
|
-
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
279
|
-
source_filter_regex: Optional[pulumi.Input[str]] = None,
|
280
|
-
template: Optional[pulumi.Input[str]] = None,
|
278
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
279
|
+
is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
|
280
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
281
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
282
|
+
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
283
|
+
source_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
284
|
+
template: Optional[pulumi.Input[builtins.str]] = None,
|
281
285
|
__props__=None):
|
282
286
|
"""
|
283
287
|
Provides a Wavefront External Link Resource. This allows external links to be created, updated, and deleted.
|
@@ -304,16 +308,16 @@ class ExternalLink(pulumi.CustomResource):
|
|
304
308
|
|
305
309
|
:param str resource_name: The name of the resource.
|
306
310
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
307
|
-
:param pulumi.Input[str] description: Human-readable description for this link.
|
308
|
-
:param pulumi.Input[bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
309
|
-
:param pulumi.Input[str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
310
|
-
:param pulumi.Input[str] name: The name of the external link.
|
311
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
311
|
+
:param pulumi.Input[builtins.str] description: Human-readable description for this link.
|
312
|
+
:param pulumi.Input[builtins.bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
313
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
314
|
+
:param pulumi.Input[builtins.str] name: The name of the external link.
|
315
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
312
316
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
313
317
|
keys are present in the keys of this map and whose values match the regular expressions associated with those
|
314
318
|
keys in order for the link to be displayed.
|
315
|
-
:param pulumi.Input[str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
316
|
-
:param pulumi.Input[str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
319
|
+
:param pulumi.Input[builtins.str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
320
|
+
:param pulumi.Input[builtins.str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
317
321
|
"""
|
318
322
|
...
|
319
323
|
@overload
|
@@ -359,13 +363,13 @@ class ExternalLink(pulumi.CustomResource):
|
|
359
363
|
def _internal_init(__self__,
|
360
364
|
resource_name: str,
|
361
365
|
opts: Optional[pulumi.ResourceOptions] = None,
|
362
|
-
description: Optional[pulumi.Input[str]] = None,
|
363
|
-
is_log_integration: Optional[pulumi.Input[bool]] = None,
|
364
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
365
|
-
name: Optional[pulumi.Input[str]] = None,
|
366
|
-
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
367
|
-
source_filter_regex: Optional[pulumi.Input[str]] = None,
|
368
|
-
template: Optional[pulumi.Input[str]] = None,
|
366
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
367
|
+
is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
|
368
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
369
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
370
|
+
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
371
|
+
source_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
372
|
+
template: Optional[pulumi.Input[builtins.str]] = None,
|
369
373
|
__props__=None):
|
370
374
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
371
375
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -396,13 +400,13 @@ class ExternalLink(pulumi.CustomResource):
|
|
396
400
|
def get(resource_name: str,
|
397
401
|
id: pulumi.Input[str],
|
398
402
|
opts: Optional[pulumi.ResourceOptions] = None,
|
399
|
-
description: Optional[pulumi.Input[str]] = None,
|
400
|
-
is_log_integration: Optional[pulumi.Input[bool]] = None,
|
401
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
402
|
-
name: Optional[pulumi.Input[str]] = None,
|
403
|
-
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
404
|
-
source_filter_regex: Optional[pulumi.Input[str]] = None,
|
405
|
-
template: Optional[pulumi.Input[str]] = None) -> 'ExternalLink':
|
403
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
404
|
+
is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
|
405
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
406
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
407
|
+
point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
408
|
+
source_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
409
|
+
template: Optional[pulumi.Input[builtins.str]] = None) -> 'ExternalLink':
|
406
410
|
"""
|
407
411
|
Get an existing ExternalLink resource's state with the given name, id, and optional extra
|
408
412
|
properties used to qualify the lookup.
|
@@ -410,16 +414,16 @@ class ExternalLink(pulumi.CustomResource):
|
|
410
414
|
:param str resource_name: The unique name of the resulting resource.
|
411
415
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
412
416
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
413
|
-
:param pulumi.Input[str] description: Human-readable description for this link.
|
414
|
-
:param pulumi.Input[bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
415
|
-
:param pulumi.Input[str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
416
|
-
:param pulumi.Input[str] name: The name of the external link.
|
417
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
417
|
+
:param pulumi.Input[builtins.str] description: Human-readable description for this link.
|
418
|
+
:param pulumi.Input[builtins.bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
|
419
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
420
|
+
:param pulumi.Input[builtins.str] name: The name of the external link.
|
421
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] point_tag_filter_regexes: Controls whether a link is displayed in the context menu of a highlighted
|
418
422
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
419
423
|
keys are present in the keys of this map and whose values match the regular expressions associated with those
|
420
424
|
keys in order for the link to be displayed.
|
421
|
-
:param pulumi.Input[str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
422
|
-
:param pulumi.Input[str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
425
|
+
:param pulumi.Input[builtins.str] source_filter_regex: Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
426
|
+
:param pulumi.Input[builtins.str] template: The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
423
427
|
"""
|
424
428
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
425
429
|
|
@@ -436,7 +440,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
436
440
|
|
437
441
|
@property
|
438
442
|
@pulumi.getter
|
439
|
-
def description(self) -> pulumi.Output[str]:
|
443
|
+
def description(self) -> pulumi.Output[builtins.str]:
|
440
444
|
"""
|
441
445
|
Human-readable description for this link.
|
442
446
|
"""
|
@@ -444,7 +448,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
444
448
|
|
445
449
|
@property
|
446
450
|
@pulumi.getter(name="isLogIntegration")
|
447
|
-
def is_log_integration(self) -> pulumi.Output[Optional[bool]]:
|
451
|
+
def is_log_integration(self) -> pulumi.Output[Optional[builtins.bool]]:
|
448
452
|
"""
|
449
453
|
Whether this is a "Log Integration" subType of external link.
|
450
454
|
"""
|
@@ -452,7 +456,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
452
456
|
|
453
457
|
@property
|
454
458
|
@pulumi.getter(name="metricFilterRegex")
|
455
|
-
def metric_filter_regex(self) -> pulumi.Output[Optional[str]]:
|
459
|
+
def metric_filter_regex(self) -> pulumi.Output[Optional[builtins.str]]:
|
456
460
|
"""
|
457
461
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
458
462
|
"""
|
@@ -460,7 +464,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
460
464
|
|
461
465
|
@property
|
462
466
|
@pulumi.getter
|
463
|
-
def name(self) -> pulumi.Output[str]:
|
467
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
464
468
|
"""
|
465
469
|
The name of the external link.
|
466
470
|
"""
|
@@ -468,7 +472,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
468
472
|
|
469
473
|
@property
|
470
474
|
@pulumi.getter(name="pointTagFilterRegexes")
|
471
|
-
def point_tag_filter_regexes(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
475
|
+
def point_tag_filter_regexes(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
472
476
|
"""
|
473
477
|
Controls whether a link is displayed in the context menu of a highlighted
|
474
478
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
@@ -479,7 +483,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
479
483
|
|
480
484
|
@property
|
481
485
|
@pulumi.getter(name="sourceFilterRegex")
|
482
|
-
def source_filter_regex(self) -> pulumi.Output[Optional[str]]:
|
486
|
+
def source_filter_regex(self) -> pulumi.Output[Optional[builtins.str]]:
|
483
487
|
"""
|
484
488
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
485
489
|
"""
|
@@ -487,7 +491,7 @@ class ExternalLink(pulumi.CustomResource):
|
|
487
491
|
|
488
492
|
@property
|
489
493
|
@pulumi.getter
|
490
|
-
def template(self) -> pulumi.Output[str]:
|
494
|
+
def template(self) -> pulumi.Output[builtins.str]:
|
491
495
|
"""
|
492
496
|
The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
|
493
497
|
"""
|