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
pulumi_wavefront/dashboard.py
CHANGED
@@ -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
|
@@ -21,32 +22,32 @@ __all__ = ['DashboardArgs', 'Dashboard']
|
|
21
22
|
@pulumi.input_type
|
22
23
|
class DashboardArgs:
|
23
24
|
def __init__(__self__, *,
|
24
|
-
description: pulumi.Input[str],
|
25
|
+
description: pulumi.Input[builtins.str],
|
25
26
|
sections: pulumi.Input[Sequence[pulumi.Input['DashboardSectionArgs']]],
|
26
|
-
tags: pulumi.Input[Sequence[pulumi.Input[str]]],
|
27
|
-
url: pulumi.Input[str],
|
28
|
-
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
29
|
-
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
30
|
-
display_query_parameters: Optional[pulumi.Input[bool]] = None,
|
31
|
-
display_section_table_of_contents: Optional[pulumi.Input[bool]] = None,
|
32
|
-
event_filter_type: Optional[pulumi.Input[str]] = None,
|
33
|
-
name: Optional[pulumi.Input[str]] = None,
|
27
|
+
tags: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
|
28
|
+
url: pulumi.Input[builtins.str],
|
29
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
30
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
31
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
32
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
33
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
34
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
34
35
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input['DashboardParameterDetailArgs']]]] = None):
|
35
36
|
"""
|
36
37
|
The set of arguments for constructing a Dashboard resource.
|
37
|
-
:param pulumi.Input[str] description: Human-readable description of the dashboard.
|
38
|
+
:param pulumi.Input[builtins.str] description: Human-readable description of the dashboard.
|
38
39
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardSectionArgs']]] sections: Dashboard chart sections. See dashboard sections.
|
39
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A set of tags to assign to this resource.
|
40
|
-
:param pulumi.Input[str] url: Unique identifier, also a URL slug of the dashboard.
|
41
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
42
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
43
|
-
:param pulumi.Input[bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
40
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A set of tags to assign to this resource.
|
41
|
+
:param pulumi.Input[builtins.str] url: Unique identifier, also a URL slug of the dashboard.
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
43
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
44
|
+
:param pulumi.Input[builtins.bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
44
45
|
is shown.
|
45
|
-
:param pulumi.Input[bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
46
|
+
:param pulumi.Input[builtins.bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
46
47
|
displayed by default when the dashboard is shown.
|
47
|
-
:param pulumi.Input[str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
48
|
+
:param pulumi.Input[builtins.str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
48
49
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
49
|
-
:param pulumi.Input[str] name: Name of the dashboard.
|
50
|
+
:param pulumi.Input[builtins.str] name: Name of the dashboard.
|
50
51
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardParameterDetailArgs']]] parameter_details: The current JSON representation of dashboard parameters. See parameter details.
|
51
52
|
"""
|
52
53
|
pulumi.set(__self__, "description", description)
|
@@ -70,14 +71,14 @@ class DashboardArgs:
|
|
70
71
|
|
71
72
|
@property
|
72
73
|
@pulumi.getter
|
73
|
-
def description(self) -> pulumi.Input[str]:
|
74
|
+
def description(self) -> pulumi.Input[builtins.str]:
|
74
75
|
"""
|
75
76
|
Human-readable description of the dashboard.
|
76
77
|
"""
|
77
78
|
return pulumi.get(self, "description")
|
78
79
|
|
79
80
|
@description.setter
|
80
|
-
def description(self, value: pulumi.Input[str]):
|
81
|
+
def description(self, value: pulumi.Input[builtins.str]):
|
81
82
|
pulumi.set(self, "description", value)
|
82
83
|
|
83
84
|
@property
|
@@ -94,55 +95,55 @@ class DashboardArgs:
|
|
94
95
|
|
95
96
|
@property
|
96
97
|
@pulumi.getter
|
97
|
-
def tags(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
98
|
+
def tags(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
|
98
99
|
"""
|
99
100
|
A set of tags to assign to this resource.
|
100
101
|
"""
|
101
102
|
return pulumi.get(self, "tags")
|
102
103
|
|
103
104
|
@tags.setter
|
104
|
-
def tags(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
105
|
+
def tags(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
|
105
106
|
pulumi.set(self, "tags", value)
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter
|
109
|
-
def url(self) -> pulumi.Input[str]:
|
110
|
+
def url(self) -> pulumi.Input[builtins.str]:
|
110
111
|
"""
|
111
112
|
Unique identifier, also a URL slug of the dashboard.
|
112
113
|
"""
|
113
114
|
return pulumi.get(self, "url")
|
114
115
|
|
115
116
|
@url.setter
|
116
|
-
def url(self, value: pulumi.Input[str]):
|
117
|
+
def url(self, value: pulumi.Input[builtins.str]):
|
117
118
|
pulumi.set(self, "url", value)
|
118
119
|
|
119
120
|
@property
|
120
121
|
@pulumi.getter(name="canModifies")
|
121
|
-
def can_modifies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
122
|
+
def can_modifies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
122
123
|
"""
|
123
124
|
A list of users/groups/roles that can modify the dashboard.
|
124
125
|
"""
|
125
126
|
return pulumi.get(self, "can_modifies")
|
126
127
|
|
127
128
|
@can_modifies.setter
|
128
|
-
def can_modifies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
129
|
+
def can_modifies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
129
130
|
pulumi.set(self, "can_modifies", value)
|
130
131
|
|
131
132
|
@property
|
132
133
|
@pulumi.getter(name="canViews")
|
133
|
-
def can_views(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
134
|
+
def can_views(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
134
135
|
"""
|
135
136
|
A list of users/groups/roles that can view the dashboard.
|
136
137
|
"""
|
137
138
|
return pulumi.get(self, "can_views")
|
138
139
|
|
139
140
|
@can_views.setter
|
140
|
-
def can_views(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
141
|
+
def can_views(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
141
142
|
pulumi.set(self, "can_views", value)
|
142
143
|
|
143
144
|
@property
|
144
145
|
@pulumi.getter(name="displayQueryParameters")
|
145
|
-
def display_query_parameters(self) -> Optional[pulumi.Input[bool]]:
|
146
|
+
def display_query_parameters(self) -> Optional[pulumi.Input[builtins.bool]]:
|
146
147
|
"""
|
147
148
|
Whether the dashboard parameters section is opened by default when the dashboard
|
148
149
|
is shown.
|
@@ -150,12 +151,12 @@ class DashboardArgs:
|
|
150
151
|
return pulumi.get(self, "display_query_parameters")
|
151
152
|
|
152
153
|
@display_query_parameters.setter
|
153
|
-
def display_query_parameters(self, value: Optional[pulumi.Input[bool]]):
|
154
|
+
def display_query_parameters(self, value: Optional[pulumi.Input[builtins.bool]]):
|
154
155
|
pulumi.set(self, "display_query_parameters", value)
|
155
156
|
|
156
157
|
@property
|
157
158
|
@pulumi.getter(name="displaySectionTableOfContents")
|
158
|
-
def display_section_table_of_contents(self) -> Optional[pulumi.Input[bool]]:
|
159
|
+
def display_section_table_of_contents(self) -> Optional[pulumi.Input[builtins.bool]]:
|
159
160
|
"""
|
160
161
|
Whether the "pills" quick-linked the sections of the dashboard are
|
161
162
|
displayed by default when the dashboard is shown.
|
@@ -163,12 +164,12 @@ class DashboardArgs:
|
|
163
164
|
return pulumi.get(self, "display_section_table_of_contents")
|
164
165
|
|
165
166
|
@display_section_table_of_contents.setter
|
166
|
-
def display_section_table_of_contents(self, value: Optional[pulumi.Input[bool]]):
|
167
|
+
def display_section_table_of_contents(self, value: Optional[pulumi.Input[builtins.bool]]):
|
167
168
|
pulumi.set(self, "display_section_table_of_contents", value)
|
168
169
|
|
169
170
|
@property
|
170
171
|
@pulumi.getter(name="eventFilterType")
|
171
|
-
def event_filter_type(self) -> Optional[pulumi.Input[str]]:
|
172
|
+
def event_filter_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
172
173
|
"""
|
173
174
|
How charts belonging to this dashboard should display events. `BYCHART` is default if
|
174
175
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
@@ -176,19 +177,19 @@ class DashboardArgs:
|
|
176
177
|
return pulumi.get(self, "event_filter_type")
|
177
178
|
|
178
179
|
@event_filter_type.setter
|
179
|
-
def event_filter_type(self, value: Optional[pulumi.Input[str]]):
|
180
|
+
def event_filter_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
180
181
|
pulumi.set(self, "event_filter_type", value)
|
181
182
|
|
182
183
|
@property
|
183
184
|
@pulumi.getter
|
184
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
185
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
185
186
|
"""
|
186
187
|
Name of the dashboard.
|
187
188
|
"""
|
188
189
|
return pulumi.get(self, "name")
|
189
190
|
|
190
191
|
@name.setter
|
191
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
192
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
192
193
|
pulumi.set(self, "name", value)
|
193
194
|
|
194
195
|
@property
|
@@ -207,33 +208,33 @@ class DashboardArgs:
|
|
207
208
|
@pulumi.input_type
|
208
209
|
class _DashboardState:
|
209
210
|
def __init__(__self__, *,
|
210
|
-
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
211
|
-
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
212
|
-
description: Optional[pulumi.Input[str]] = None,
|
213
|
-
display_query_parameters: Optional[pulumi.Input[bool]] = None,
|
214
|
-
display_section_table_of_contents: Optional[pulumi.Input[bool]] = None,
|
215
|
-
event_filter_type: Optional[pulumi.Input[str]] = None,
|
216
|
-
name: Optional[pulumi.Input[str]] = None,
|
211
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
212
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
213
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
214
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
215
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
216
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
217
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
217
218
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input['DashboardParameterDetailArgs']]]] = None,
|
218
219
|
sections: Optional[pulumi.Input[Sequence[pulumi.Input['DashboardSectionArgs']]]] = None,
|
219
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
220
|
-
url: Optional[pulumi.Input[str]] = None):
|
220
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
221
|
+
url: Optional[pulumi.Input[builtins.str]] = None):
|
221
222
|
"""
|
222
223
|
Input properties used for looking up and filtering Dashboard resources.
|
223
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
224
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
225
|
-
:param pulumi.Input[str] description: Human-readable description of the dashboard.
|
226
|
-
:param pulumi.Input[bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
224
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
225
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
226
|
+
:param pulumi.Input[builtins.str] description: Human-readable description of the dashboard.
|
227
|
+
:param pulumi.Input[builtins.bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
227
228
|
is shown.
|
228
|
-
:param pulumi.Input[bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
229
|
+
:param pulumi.Input[builtins.bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
229
230
|
displayed by default when the dashboard is shown.
|
230
|
-
:param pulumi.Input[str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
231
|
+
:param pulumi.Input[builtins.str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
231
232
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
232
|
-
:param pulumi.Input[str] name: Name of the dashboard.
|
233
|
+
:param pulumi.Input[builtins.str] name: Name of the dashboard.
|
233
234
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardParameterDetailArgs']]] parameter_details: The current JSON representation of dashboard parameters. See parameter details.
|
234
235
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardSectionArgs']]] sections: Dashboard chart sections. See dashboard sections.
|
235
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A set of tags to assign to this resource.
|
236
|
-
:param pulumi.Input[str] url: Unique identifier, also a URL slug of the dashboard.
|
236
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A set of tags to assign to this resource.
|
237
|
+
:param pulumi.Input[builtins.str] url: Unique identifier, also a URL slug of the dashboard.
|
237
238
|
"""
|
238
239
|
if can_modifies is not None:
|
239
240
|
pulumi.set(__self__, "can_modifies", can_modifies)
|
@@ -260,43 +261,43 @@ class _DashboardState:
|
|
260
261
|
|
261
262
|
@property
|
262
263
|
@pulumi.getter(name="canModifies")
|
263
|
-
def can_modifies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
264
|
+
def can_modifies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
264
265
|
"""
|
265
266
|
A list of users/groups/roles that can modify the dashboard.
|
266
267
|
"""
|
267
268
|
return pulumi.get(self, "can_modifies")
|
268
269
|
|
269
270
|
@can_modifies.setter
|
270
|
-
def can_modifies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
271
|
+
def can_modifies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
271
272
|
pulumi.set(self, "can_modifies", value)
|
272
273
|
|
273
274
|
@property
|
274
275
|
@pulumi.getter(name="canViews")
|
275
|
-
def can_views(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
276
|
+
def can_views(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
276
277
|
"""
|
277
278
|
A list of users/groups/roles that can view the dashboard.
|
278
279
|
"""
|
279
280
|
return pulumi.get(self, "can_views")
|
280
281
|
|
281
282
|
@can_views.setter
|
282
|
-
def can_views(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
283
|
+
def can_views(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
283
284
|
pulumi.set(self, "can_views", value)
|
284
285
|
|
285
286
|
@property
|
286
287
|
@pulumi.getter
|
287
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
288
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
288
289
|
"""
|
289
290
|
Human-readable description of the dashboard.
|
290
291
|
"""
|
291
292
|
return pulumi.get(self, "description")
|
292
293
|
|
293
294
|
@description.setter
|
294
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
295
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
295
296
|
pulumi.set(self, "description", value)
|
296
297
|
|
297
298
|
@property
|
298
299
|
@pulumi.getter(name="displayQueryParameters")
|
299
|
-
def display_query_parameters(self) -> Optional[pulumi.Input[bool]]:
|
300
|
+
def display_query_parameters(self) -> Optional[pulumi.Input[builtins.bool]]:
|
300
301
|
"""
|
301
302
|
Whether the dashboard parameters section is opened by default when the dashboard
|
302
303
|
is shown.
|
@@ -304,12 +305,12 @@ class _DashboardState:
|
|
304
305
|
return pulumi.get(self, "display_query_parameters")
|
305
306
|
|
306
307
|
@display_query_parameters.setter
|
307
|
-
def display_query_parameters(self, value: Optional[pulumi.Input[bool]]):
|
308
|
+
def display_query_parameters(self, value: Optional[pulumi.Input[builtins.bool]]):
|
308
309
|
pulumi.set(self, "display_query_parameters", value)
|
309
310
|
|
310
311
|
@property
|
311
312
|
@pulumi.getter(name="displaySectionTableOfContents")
|
312
|
-
def display_section_table_of_contents(self) -> Optional[pulumi.Input[bool]]:
|
313
|
+
def display_section_table_of_contents(self) -> Optional[pulumi.Input[builtins.bool]]:
|
313
314
|
"""
|
314
315
|
Whether the "pills" quick-linked the sections of the dashboard are
|
315
316
|
displayed by default when the dashboard is shown.
|
@@ -317,12 +318,12 @@ class _DashboardState:
|
|
317
318
|
return pulumi.get(self, "display_section_table_of_contents")
|
318
319
|
|
319
320
|
@display_section_table_of_contents.setter
|
320
|
-
def display_section_table_of_contents(self, value: Optional[pulumi.Input[bool]]):
|
321
|
+
def display_section_table_of_contents(self, value: Optional[pulumi.Input[builtins.bool]]):
|
321
322
|
pulumi.set(self, "display_section_table_of_contents", value)
|
322
323
|
|
323
324
|
@property
|
324
325
|
@pulumi.getter(name="eventFilterType")
|
325
|
-
def event_filter_type(self) -> Optional[pulumi.Input[str]]:
|
326
|
+
def event_filter_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
326
327
|
"""
|
327
328
|
How charts belonging to this dashboard should display events. `BYCHART` is default if
|
328
329
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
@@ -330,19 +331,19 @@ class _DashboardState:
|
|
330
331
|
return pulumi.get(self, "event_filter_type")
|
331
332
|
|
332
333
|
@event_filter_type.setter
|
333
|
-
def event_filter_type(self, value: Optional[pulumi.Input[str]]):
|
334
|
+
def event_filter_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
334
335
|
pulumi.set(self, "event_filter_type", value)
|
335
336
|
|
336
337
|
@property
|
337
338
|
@pulumi.getter
|
338
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
339
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
339
340
|
"""
|
340
341
|
Name of the dashboard.
|
341
342
|
"""
|
342
343
|
return pulumi.get(self, "name")
|
343
344
|
|
344
345
|
@name.setter
|
345
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
346
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
346
347
|
pulumi.set(self, "name", value)
|
347
348
|
|
348
349
|
@property
|
@@ -371,45 +372,48 @@ class _DashboardState:
|
|
371
372
|
|
372
373
|
@property
|
373
374
|
@pulumi.getter
|
374
|
-
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
375
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
375
376
|
"""
|
376
377
|
A set of tags to assign to this resource.
|
377
378
|
"""
|
378
379
|
return pulumi.get(self, "tags")
|
379
380
|
|
380
381
|
@tags.setter
|
381
|
-
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
382
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
382
383
|
pulumi.set(self, "tags", value)
|
383
384
|
|
384
385
|
@property
|
385
386
|
@pulumi.getter
|
386
|
-
def url(self) -> Optional[pulumi.Input[str]]:
|
387
|
+
def url(self) -> Optional[pulumi.Input[builtins.str]]:
|
387
388
|
"""
|
388
389
|
Unique identifier, also a URL slug of the dashboard.
|
389
390
|
"""
|
390
391
|
return pulumi.get(self, "url")
|
391
392
|
|
392
393
|
@url.setter
|
393
|
-
def url(self, value: Optional[pulumi.Input[str]]):
|
394
|
+
def url(self, value: Optional[pulumi.Input[builtins.str]]):
|
394
395
|
pulumi.set(self, "url", value)
|
395
396
|
|
396
397
|
|
397
398
|
class Dashboard(pulumi.CustomResource):
|
399
|
+
|
400
|
+
pulumi_type = "wavefront:index/dashboard:Dashboard"
|
401
|
+
|
398
402
|
@overload
|
399
403
|
def __init__(__self__,
|
400
404
|
resource_name: str,
|
401
405
|
opts: Optional[pulumi.ResourceOptions] = None,
|
402
|
-
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
403
|
-
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
404
|
-
description: Optional[pulumi.Input[str]] = None,
|
405
|
-
display_query_parameters: Optional[pulumi.Input[bool]] = None,
|
406
|
-
display_section_table_of_contents: Optional[pulumi.Input[bool]] = None,
|
407
|
-
event_filter_type: Optional[pulumi.Input[str]] = None,
|
408
|
-
name: Optional[pulumi.Input[str]] = None,
|
406
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
407
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
408
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
409
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
410
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
411
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
412
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
409
413
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]]] = None,
|
410
414
|
sections: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardSectionArgs', 'DashboardSectionArgsDict']]]]] = None,
|
411
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
412
|
-
url: Optional[pulumi.Input[str]] = None,
|
415
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
416
|
+
url: Optional[pulumi.Input[builtins.str]] = None,
|
413
417
|
__props__=None):
|
414
418
|
"""
|
415
419
|
Provides a Wavefront Dashboard resource. This allows dashboards to be created, updated, and deleted.
|
@@ -424,20 +428,20 @@ class Dashboard(pulumi.CustomResource):
|
|
424
428
|
|
425
429
|
:param str resource_name: The name of the resource.
|
426
430
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
427
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
428
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
429
|
-
:param pulumi.Input[str] description: Human-readable description of the dashboard.
|
430
|
-
:param pulumi.Input[bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
431
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
432
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
433
|
+
:param pulumi.Input[builtins.str] description: Human-readable description of the dashboard.
|
434
|
+
:param pulumi.Input[builtins.bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
431
435
|
is shown.
|
432
|
-
:param pulumi.Input[bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
436
|
+
:param pulumi.Input[builtins.bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
433
437
|
displayed by default when the dashboard is shown.
|
434
|
-
:param pulumi.Input[str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
438
|
+
:param pulumi.Input[builtins.str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
435
439
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
436
|
-
:param pulumi.Input[str] name: Name of the dashboard.
|
440
|
+
:param pulumi.Input[builtins.str] name: Name of the dashboard.
|
437
441
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]] parameter_details: The current JSON representation of dashboard parameters. See parameter details.
|
438
442
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DashboardSectionArgs', 'DashboardSectionArgsDict']]]] sections: Dashboard chart sections. See dashboard sections.
|
439
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A set of tags to assign to this resource.
|
440
|
-
:param pulumi.Input[str] url: Unique identifier, also a URL slug of the dashboard.
|
443
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A set of tags to assign to this resource.
|
444
|
+
:param pulumi.Input[builtins.str] url: Unique identifier, also a URL slug of the dashboard.
|
441
445
|
"""
|
442
446
|
...
|
443
447
|
@overload
|
@@ -471,17 +475,17 @@ class Dashboard(pulumi.CustomResource):
|
|
471
475
|
def _internal_init(__self__,
|
472
476
|
resource_name: str,
|
473
477
|
opts: Optional[pulumi.ResourceOptions] = None,
|
474
|
-
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
475
|
-
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
476
|
-
description: Optional[pulumi.Input[str]] = None,
|
477
|
-
display_query_parameters: Optional[pulumi.Input[bool]] = None,
|
478
|
-
display_section_table_of_contents: Optional[pulumi.Input[bool]] = None,
|
479
|
-
event_filter_type: Optional[pulumi.Input[str]] = None,
|
480
|
-
name: Optional[pulumi.Input[str]] = None,
|
478
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
479
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
480
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
481
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
482
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
483
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
484
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
481
485
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]]] = None,
|
482
486
|
sections: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardSectionArgs', 'DashboardSectionArgsDict']]]]] = None,
|
483
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
484
|
-
url: Optional[pulumi.Input[str]] = None,
|
487
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
488
|
+
url: Optional[pulumi.Input[builtins.str]] = None,
|
485
489
|
__props__=None):
|
486
490
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
487
491
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -520,17 +524,17 @@ class Dashboard(pulumi.CustomResource):
|
|
520
524
|
def get(resource_name: str,
|
521
525
|
id: pulumi.Input[str],
|
522
526
|
opts: Optional[pulumi.ResourceOptions] = None,
|
523
|
-
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
524
|
-
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
525
|
-
description: Optional[pulumi.Input[str]] = None,
|
526
|
-
display_query_parameters: Optional[pulumi.Input[bool]] = None,
|
527
|
-
display_section_table_of_contents: Optional[pulumi.Input[bool]] = None,
|
528
|
-
event_filter_type: Optional[pulumi.Input[str]] = None,
|
529
|
-
name: Optional[pulumi.Input[str]] = None,
|
527
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
528
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
529
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
530
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
531
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
532
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
533
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
530
534
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]]] = None,
|
531
535
|
sections: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardSectionArgs', 'DashboardSectionArgsDict']]]]] = None,
|
532
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
533
|
-
url: Optional[pulumi.Input[str]] = None) -> 'Dashboard':
|
536
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
537
|
+
url: Optional[pulumi.Input[builtins.str]] = None) -> 'Dashboard':
|
534
538
|
"""
|
535
539
|
Get an existing Dashboard resource's state with the given name, id, and optional extra
|
536
540
|
properties used to qualify the lookup.
|
@@ -538,20 +542,20 @@ class Dashboard(pulumi.CustomResource):
|
|
538
542
|
:param str resource_name: The unique name of the resulting resource.
|
539
543
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
540
544
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
541
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
542
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
543
|
-
:param pulumi.Input[str] description: Human-readable description of the dashboard.
|
544
|
-
:param pulumi.Input[bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
545
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
546
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
547
|
+
:param pulumi.Input[builtins.str] description: Human-readable description of the dashboard.
|
548
|
+
:param pulumi.Input[builtins.bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
545
549
|
is shown.
|
546
|
-
:param pulumi.Input[bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
550
|
+
:param pulumi.Input[builtins.bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
547
551
|
displayed by default when the dashboard is shown.
|
548
|
-
:param pulumi.Input[str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
552
|
+
:param pulumi.Input[builtins.str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
549
553
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
550
|
-
:param pulumi.Input[str] name: Name of the dashboard.
|
554
|
+
:param pulumi.Input[builtins.str] name: Name of the dashboard.
|
551
555
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]] parameter_details: The current JSON representation of dashboard parameters. See parameter details.
|
552
556
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DashboardSectionArgs', 'DashboardSectionArgsDict']]]] sections: Dashboard chart sections. See dashboard sections.
|
553
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A set of tags to assign to this resource.
|
554
|
-
:param pulumi.Input[str] url: Unique identifier, also a URL slug of the dashboard.
|
557
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A set of tags to assign to this resource.
|
558
|
+
:param pulumi.Input[builtins.str] url: Unique identifier, also a URL slug of the dashboard.
|
555
559
|
"""
|
556
560
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
557
561
|
|
@@ -572,7 +576,7 @@ class Dashboard(pulumi.CustomResource):
|
|
572
576
|
|
573
577
|
@property
|
574
578
|
@pulumi.getter(name="canModifies")
|
575
|
-
def can_modifies(self) -> pulumi.Output[Sequence[str]]:
|
579
|
+
def can_modifies(self) -> pulumi.Output[Sequence[builtins.str]]:
|
576
580
|
"""
|
577
581
|
A list of users/groups/roles that can modify the dashboard.
|
578
582
|
"""
|
@@ -580,7 +584,7 @@ class Dashboard(pulumi.CustomResource):
|
|
580
584
|
|
581
585
|
@property
|
582
586
|
@pulumi.getter(name="canViews")
|
583
|
-
def can_views(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
587
|
+
def can_views(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
|
584
588
|
"""
|
585
589
|
A list of users/groups/roles that can view the dashboard.
|
586
590
|
"""
|
@@ -588,7 +592,7 @@ class Dashboard(pulumi.CustomResource):
|
|
588
592
|
|
589
593
|
@property
|
590
594
|
@pulumi.getter
|
591
|
-
def description(self) -> pulumi.Output[str]:
|
595
|
+
def description(self) -> pulumi.Output[builtins.str]:
|
592
596
|
"""
|
593
597
|
Human-readable description of the dashboard.
|
594
598
|
"""
|
@@ -596,7 +600,7 @@ class Dashboard(pulumi.CustomResource):
|
|
596
600
|
|
597
601
|
@property
|
598
602
|
@pulumi.getter(name="displayQueryParameters")
|
599
|
-
def display_query_parameters(self) -> pulumi.Output[Optional[bool]]:
|
603
|
+
def display_query_parameters(self) -> pulumi.Output[Optional[builtins.bool]]:
|
600
604
|
"""
|
601
605
|
Whether the dashboard parameters section is opened by default when the dashboard
|
602
606
|
is shown.
|
@@ -605,7 +609,7 @@ class Dashboard(pulumi.CustomResource):
|
|
605
609
|
|
606
610
|
@property
|
607
611
|
@pulumi.getter(name="displaySectionTableOfContents")
|
608
|
-
def display_section_table_of_contents(self) -> pulumi.Output[Optional[bool]]:
|
612
|
+
def display_section_table_of_contents(self) -> pulumi.Output[Optional[builtins.bool]]:
|
609
613
|
"""
|
610
614
|
Whether the "pills" quick-linked the sections of the dashboard are
|
611
615
|
displayed by default when the dashboard is shown.
|
@@ -614,7 +618,7 @@ class Dashboard(pulumi.CustomResource):
|
|
614
618
|
|
615
619
|
@property
|
616
620
|
@pulumi.getter(name="eventFilterType")
|
617
|
-
def event_filter_type(self) -> pulumi.Output[Optional[str]]:
|
621
|
+
def event_filter_type(self) -> pulumi.Output[Optional[builtins.str]]:
|
618
622
|
"""
|
619
623
|
How charts belonging to this dashboard should display events. `BYCHART` is default if
|
620
624
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
@@ -623,7 +627,7 @@ class Dashboard(pulumi.CustomResource):
|
|
623
627
|
|
624
628
|
@property
|
625
629
|
@pulumi.getter
|
626
|
-
def name(self) -> pulumi.Output[str]:
|
630
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
627
631
|
"""
|
628
632
|
Name of the dashboard.
|
629
633
|
"""
|
@@ -647,7 +651,7 @@ class Dashboard(pulumi.CustomResource):
|
|
647
651
|
|
648
652
|
@property
|
649
653
|
@pulumi.getter
|
650
|
-
def tags(self) -> pulumi.Output[Sequence[str]]:
|
654
|
+
def tags(self) -> pulumi.Output[Sequence[builtins.str]]:
|
651
655
|
"""
|
652
656
|
A set of tags to assign to this resource.
|
653
657
|
"""
|
@@ -655,7 +659,7 @@ class Dashboard(pulumi.CustomResource):
|
|
655
659
|
|
656
660
|
@property
|
657
661
|
@pulumi.getter
|
658
|
-
def url(self) -> pulumi.Output[str]:
|
662
|
+
def url(self) -> pulumi.Output[builtins.str]:
|
659
663
|
"""
|
660
664
|
Unique identifier, also a URL slug of the dashboard.
|
661
665
|
"""
|