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.
Files changed (57) hide show
  1. pulumi_wavefront/__init__.py +1 -0
  2. pulumi_wavefront/_inputs.py +501 -500
  3. pulumi_wavefront/alert.py +239 -238
  4. pulumi_wavefront/alert_target.py +148 -147
  5. pulumi_wavefront/cloud_integration_app_dynamics.py +239 -238
  6. pulumi_wavefront/cloud_integration_aws_external_id.py +1 -0
  7. pulumi_wavefront/cloud_integration_azure.py +155 -154
  8. pulumi_wavefront/cloud_integration_azure_activity_log.py +127 -126
  9. pulumi_wavefront/cloud_integration_cloud_trail.py +155 -154
  10. pulumi_wavefront/cloud_integration_cloud_watch.py +169 -168
  11. pulumi_wavefront/cloud_integration_ec2.py +113 -112
  12. pulumi_wavefront/cloud_integration_gcp.py +127 -126
  13. pulumi_wavefront/cloud_integration_gcp_billing.py +113 -112
  14. pulumi_wavefront/cloud_integration_new_relic.py +113 -112
  15. pulumi_wavefront/config/__init__.py +1 -0
  16. pulumi_wavefront/config/__init__.pyi +1 -0
  17. pulumi_wavefront/config/vars.py +1 -0
  18. pulumi_wavefront/dashboard.py +127 -126
  19. pulumi_wavefront/dashboard_json.py +15 -14
  20. pulumi_wavefront/derived_metric.py +71 -70
  21. pulumi_wavefront/event.py +67 -66
  22. pulumi_wavefront/external_link.py +99 -98
  23. pulumi_wavefront/get_alert.py +31 -30
  24. pulumi_wavefront/get_alerts.py +12 -11
  25. pulumi_wavefront/get_dashboard.py +38 -37
  26. pulumi_wavefront/get_dashboards.py +12 -11
  27. pulumi_wavefront/get_default_user_group.py +3 -2
  28. pulumi_wavefront/get_derived_metric.py +29 -28
  29. pulumi_wavefront/get_derived_metrics.py +12 -11
  30. pulumi_wavefront/get_event.py +15 -14
  31. pulumi_wavefront/get_events.py +22 -21
  32. pulumi_wavefront/get_external_link.py +17 -16
  33. pulumi_wavefront/get_external_links.py +12 -11
  34. pulumi_wavefront/get_maintenance_window.py +23 -22
  35. pulumi_wavefront/get_maintenance_window_all.py +8 -7
  36. pulumi_wavefront/get_metrics_policy.py +5 -4
  37. pulumi_wavefront/get_role.py +9 -8
  38. pulumi_wavefront/get_roles.py +12 -11
  39. pulumi_wavefront/get_user.py +11 -10
  40. pulumi_wavefront/get_user_group.py +10 -9
  41. pulumi_wavefront/get_user_groups.py +12 -11
  42. pulumi_wavefront/get_users.py +2 -1
  43. pulumi_wavefront/ingestion_policy.py +79 -78
  44. pulumi_wavefront/maintenance_window.py +127 -126
  45. pulumi_wavefront/metrics_policy.py +22 -21
  46. pulumi_wavefront/outputs.py +1205 -1204
  47. pulumi_wavefront/provider.py +19 -18
  48. pulumi_wavefront/pulumi-plugin.json +1 -1
  49. pulumi_wavefront/role.py +57 -56
  50. pulumi_wavefront/service_account.py +85 -84
  51. pulumi_wavefront/user.py +57 -56
  52. pulumi_wavefront/user_group.py +29 -28
  53. {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/METADATA +1 -1
  54. pulumi_wavefront-3.2.0a1744183482.dist-info/RECORD +58 -0
  55. pulumi_wavefront-3.2.0a1743576067.dist-info/RECORD +0 -58
  56. {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/WHEEL +0 -0
  57. {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
@@ -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,31 +239,31 @@ 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
 
@@ -271,13 +272,13 @@ class ExternalLink(pulumi.CustomResource):
271
272
  def __init__(__self__,
272
273
  resource_name: str,
273
274
  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,
275
+ description: Optional[pulumi.Input[builtins.str]] = None,
276
+ is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
277
+ metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
278
+ name: Optional[pulumi.Input[builtins.str]] = None,
279
+ point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
280
+ source_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
281
+ template: Optional[pulumi.Input[builtins.str]] = None,
281
282
  __props__=None):
282
283
  """
283
284
  Provides a Wavefront External Link Resource. This allows external links to be created, updated, and deleted.
@@ -304,16 +305,16 @@ class ExternalLink(pulumi.CustomResource):
304
305
 
305
306
  :param str resource_name: The name of the resource.
306
307
  :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
308
+ :param pulumi.Input[builtins.str] description: Human-readable description for this link.
309
+ :param pulumi.Input[builtins.bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
310
+ :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.
311
+ :param pulumi.Input[builtins.str] name: The name of the external link.
312
+ :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
313
  series. This is a map from string to regular expression. The highlighted series must contain point tags whose
313
314
  keys are present in the keys of this map and whose values match the regular expressions associated with those
314
315
  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.
316
+ :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.
317
+ :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
318
  """
318
319
  ...
319
320
  @overload
@@ -359,13 +360,13 @@ class ExternalLink(pulumi.CustomResource):
359
360
  def _internal_init(__self__,
360
361
  resource_name: str,
361
362
  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,
363
+ description: Optional[pulumi.Input[builtins.str]] = None,
364
+ is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
365
+ metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
366
+ name: Optional[pulumi.Input[builtins.str]] = None,
367
+ point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
368
+ source_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
369
+ template: Optional[pulumi.Input[builtins.str]] = None,
369
370
  __props__=None):
370
371
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
371
372
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -396,13 +397,13 @@ class ExternalLink(pulumi.CustomResource):
396
397
  def get(resource_name: str,
397
398
  id: pulumi.Input[str],
398
399
  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':
400
+ description: Optional[pulumi.Input[builtins.str]] = None,
401
+ is_log_integration: Optional[pulumi.Input[builtins.bool]] = None,
402
+ metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
403
+ name: Optional[pulumi.Input[builtins.str]] = None,
404
+ point_tag_filter_regexes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
405
+ source_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
406
+ template: Optional[pulumi.Input[builtins.str]] = None) -> 'ExternalLink':
406
407
  """
407
408
  Get an existing ExternalLink resource's state with the given name, id, and optional extra
408
409
  properties used to qualify the lookup.
@@ -410,16 +411,16 @@ class ExternalLink(pulumi.CustomResource):
410
411
  :param str resource_name: The unique name of the resulting resource.
411
412
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
412
413
  :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
414
+ :param pulumi.Input[builtins.str] description: Human-readable description for this link.
415
+ :param pulumi.Input[builtins.bool] is_log_integration: Whether this is a "Log Integration" subType of external link.
416
+ :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.
417
+ :param pulumi.Input[builtins.str] name: The name of the external link.
418
+ :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
419
  series. This is a map from string to regular expression. The highlighted series must contain point tags whose
419
420
  keys are present in the keys of this map and whose values match the regular expressions associated with those
420
421
  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.
422
+ :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.
423
+ :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
424
  """
424
425
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
425
426
 
@@ -436,7 +437,7 @@ class ExternalLink(pulumi.CustomResource):
436
437
 
437
438
  @property
438
439
  @pulumi.getter
439
- def description(self) -> pulumi.Output[str]:
440
+ def description(self) -> pulumi.Output[builtins.str]:
440
441
  """
441
442
  Human-readable description for this link.
442
443
  """
@@ -444,7 +445,7 @@ class ExternalLink(pulumi.CustomResource):
444
445
 
445
446
  @property
446
447
  @pulumi.getter(name="isLogIntegration")
447
- def is_log_integration(self) -> pulumi.Output[Optional[bool]]:
448
+ def is_log_integration(self) -> pulumi.Output[Optional[builtins.bool]]:
448
449
  """
449
450
  Whether this is a "Log Integration" subType of external link.
450
451
  """
@@ -452,7 +453,7 @@ class ExternalLink(pulumi.CustomResource):
452
453
 
453
454
  @property
454
455
  @pulumi.getter(name="metricFilterRegex")
455
- def metric_filter_regex(self) -> pulumi.Output[Optional[str]]:
456
+ def metric_filter_regex(self) -> pulumi.Output[Optional[builtins.str]]:
456
457
  """
457
458
  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
459
  """
@@ -460,7 +461,7 @@ class ExternalLink(pulumi.CustomResource):
460
461
 
461
462
  @property
462
463
  @pulumi.getter
463
- def name(self) -> pulumi.Output[str]:
464
+ def name(self) -> pulumi.Output[builtins.str]:
464
465
  """
465
466
  The name of the external link.
466
467
  """
@@ -468,7 +469,7 @@ class ExternalLink(pulumi.CustomResource):
468
469
 
469
470
  @property
470
471
  @pulumi.getter(name="pointTagFilterRegexes")
471
- def point_tag_filter_regexes(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
472
+ def point_tag_filter_regexes(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
472
473
  """
473
474
  Controls whether a link is displayed in the context menu of a highlighted
474
475
  series. This is a map from string to regular expression. The highlighted series must contain point tags whose
@@ -479,7 +480,7 @@ class ExternalLink(pulumi.CustomResource):
479
480
 
480
481
  @property
481
482
  @pulumi.getter(name="sourceFilterRegex")
482
- def source_filter_regex(self) -> pulumi.Output[Optional[str]]:
483
+ def source_filter_regex(self) -> pulumi.Output[Optional[builtins.str]]:
483
484
  """
484
485
  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
486
  """
@@ -487,7 +488,7 @@ class ExternalLink(pulumi.CustomResource):
487
488
 
488
489
  @property
489
490
  @pulumi.getter
490
- def template(self) -> pulumi.Output[str]:
491
+ def template(self) -> pulumi.Output[builtins.str]:
491
492
  """
492
493
  The mustache template for this link. The template must expand to a full URL, including scheme, origin, etc.
493
494
  """