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.
- pulumi_wavefront/__init__.py +1 -0
- pulumi_wavefront/_inputs.py +501 -500
- pulumi_wavefront/alert.py +239 -238
- pulumi_wavefront/alert_target.py +148 -147
- pulumi_wavefront/cloud_integration_app_dynamics.py +239 -238
- pulumi_wavefront/cloud_integration_aws_external_id.py +1 -0
- pulumi_wavefront/cloud_integration_azure.py +155 -154
- pulumi_wavefront/cloud_integration_azure_activity_log.py +127 -126
- pulumi_wavefront/cloud_integration_cloud_trail.py +155 -154
- pulumi_wavefront/cloud_integration_cloud_watch.py +169 -168
- pulumi_wavefront/cloud_integration_ec2.py +113 -112
- pulumi_wavefront/cloud_integration_gcp.py +127 -126
- pulumi_wavefront/cloud_integration_gcp_billing.py +113 -112
- pulumi_wavefront/cloud_integration_new_relic.py +113 -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 +127 -126
- pulumi_wavefront/dashboard_json.py +15 -14
- pulumi_wavefront/derived_metric.py +71 -70
- pulumi_wavefront/event.py +67 -66
- pulumi_wavefront/external_link.py +99 -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 +79 -78
- pulumi_wavefront/maintenance_window.py +127 -126
- pulumi_wavefront/metrics_policy.py +22 -21
- pulumi_wavefront/outputs.py +1205 -1204
- pulumi_wavefront/provider.py +19 -18
- pulumi_wavefront/pulumi-plugin.json +1 -1
- pulumi_wavefront/role.py +57 -56
- pulumi_wavefront/service_account.py +85 -84
- pulumi_wavefront/user.py +57 -56
- pulumi_wavefront/user_group.py +29 -28
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/METADATA +1 -1
- pulumi_wavefront-3.2.0a1744183482.dist-info/RECORD +58 -0
- pulumi_wavefront-3.2.0a1743576067.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.dist-info}/WHEEL +0 -0
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744183482.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,26 +372,26 @@ 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
|
|
@@ -399,17 +400,17 @@ class Dashboard(pulumi.CustomResource):
|
|
399
400
|
def __init__(__self__,
|
400
401
|
resource_name: str,
|
401
402
|
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,
|
403
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
404
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
405
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
406
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
407
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
408
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
409
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
409
410
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]]] = None,
|
410
411
|
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,
|
412
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
413
|
+
url: Optional[pulumi.Input[builtins.str]] = None,
|
413
414
|
__props__=None):
|
414
415
|
"""
|
415
416
|
Provides a Wavefront Dashboard resource. This allows dashboards to be created, updated, and deleted.
|
@@ -424,20 +425,20 @@ class Dashboard(pulumi.CustomResource):
|
|
424
425
|
|
425
426
|
:param str resource_name: The name of the resource.
|
426
427
|
: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
|
428
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
429
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
430
|
+
:param pulumi.Input[builtins.str] description: Human-readable description of the dashboard.
|
431
|
+
:param pulumi.Input[builtins.bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
431
432
|
is shown.
|
432
|
-
:param pulumi.Input[bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
433
|
+
:param pulumi.Input[builtins.bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
433
434
|
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
|
435
|
+
:param pulumi.Input[builtins.str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
435
436
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
436
|
-
:param pulumi.Input[str] name: Name of the dashboard.
|
437
|
+
:param pulumi.Input[builtins.str] name: Name of the dashboard.
|
437
438
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]] parameter_details: The current JSON representation of dashboard parameters. See parameter details.
|
438
439
|
: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.
|
440
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A set of tags to assign to this resource.
|
441
|
+
:param pulumi.Input[builtins.str] url: Unique identifier, also a URL slug of the dashboard.
|
441
442
|
"""
|
442
443
|
...
|
443
444
|
@overload
|
@@ -471,17 +472,17 @@ class Dashboard(pulumi.CustomResource):
|
|
471
472
|
def _internal_init(__self__,
|
472
473
|
resource_name: str,
|
473
474
|
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,
|
475
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
476
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
477
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
478
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
479
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
480
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
481
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
481
482
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]]] = None,
|
482
483
|
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,
|
484
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
485
|
+
url: Optional[pulumi.Input[builtins.str]] = None,
|
485
486
|
__props__=None):
|
486
487
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
487
488
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -520,17 +521,17 @@ class Dashboard(pulumi.CustomResource):
|
|
520
521
|
def get(resource_name: str,
|
521
522
|
id: pulumi.Input[str],
|
522
523
|
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,
|
524
|
+
can_modifies: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
525
|
+
can_views: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
526
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
527
|
+
display_query_parameters: Optional[pulumi.Input[builtins.bool]] = None,
|
528
|
+
display_section_table_of_contents: Optional[pulumi.Input[builtins.bool]] = None,
|
529
|
+
event_filter_type: Optional[pulumi.Input[builtins.str]] = None,
|
530
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
530
531
|
parameter_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]]] = None,
|
531
532
|
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':
|
533
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
534
|
+
url: Optional[pulumi.Input[builtins.str]] = None) -> 'Dashboard':
|
534
535
|
"""
|
535
536
|
Get an existing Dashboard resource's state with the given name, id, and optional extra
|
536
537
|
properties used to qualify the lookup.
|
@@ -538,20 +539,20 @@ class Dashboard(pulumi.CustomResource):
|
|
538
539
|
:param str resource_name: The unique name of the resulting resource.
|
539
540
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
540
541
|
: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
|
542
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_modifies: A list of users/groups/roles that can modify the dashboard.
|
543
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] can_views: A list of users/groups/roles that can view the dashboard.
|
544
|
+
:param pulumi.Input[builtins.str] description: Human-readable description of the dashboard.
|
545
|
+
:param pulumi.Input[builtins.bool] display_query_parameters: Whether the dashboard parameters section is opened by default when the dashboard
|
545
546
|
is shown.
|
546
|
-
:param pulumi.Input[bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
547
|
+
:param pulumi.Input[builtins.bool] display_section_table_of_contents: Whether the "pills" quick-linked the sections of the dashboard are
|
547
548
|
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
|
549
|
+
:param pulumi.Input[builtins.str] event_filter_type: How charts belonging to this dashboard should display events. `BYCHART` is default if
|
549
550
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
550
|
-
:param pulumi.Input[str] name: Name of the dashboard.
|
551
|
+
:param pulumi.Input[builtins.str] name: Name of the dashboard.
|
551
552
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DashboardParameterDetailArgs', 'DashboardParameterDetailArgsDict']]]] parameter_details: The current JSON representation of dashboard parameters. See parameter details.
|
552
553
|
: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.
|
554
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A set of tags to assign to this resource.
|
555
|
+
:param pulumi.Input[builtins.str] url: Unique identifier, also a URL slug of the dashboard.
|
555
556
|
"""
|
556
557
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
557
558
|
|
@@ -572,7 +573,7 @@ class Dashboard(pulumi.CustomResource):
|
|
572
573
|
|
573
574
|
@property
|
574
575
|
@pulumi.getter(name="canModifies")
|
575
|
-
def can_modifies(self) -> pulumi.Output[Sequence[str]]:
|
576
|
+
def can_modifies(self) -> pulumi.Output[Sequence[builtins.str]]:
|
576
577
|
"""
|
577
578
|
A list of users/groups/roles that can modify the dashboard.
|
578
579
|
"""
|
@@ -580,7 +581,7 @@ class Dashboard(pulumi.CustomResource):
|
|
580
581
|
|
581
582
|
@property
|
582
583
|
@pulumi.getter(name="canViews")
|
583
|
-
def can_views(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
584
|
+
def can_views(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
|
584
585
|
"""
|
585
586
|
A list of users/groups/roles that can view the dashboard.
|
586
587
|
"""
|
@@ -588,7 +589,7 @@ class Dashboard(pulumi.CustomResource):
|
|
588
589
|
|
589
590
|
@property
|
590
591
|
@pulumi.getter
|
591
|
-
def description(self) -> pulumi.Output[str]:
|
592
|
+
def description(self) -> pulumi.Output[builtins.str]:
|
592
593
|
"""
|
593
594
|
Human-readable description of the dashboard.
|
594
595
|
"""
|
@@ -596,7 +597,7 @@ class Dashboard(pulumi.CustomResource):
|
|
596
597
|
|
597
598
|
@property
|
598
599
|
@pulumi.getter(name="displayQueryParameters")
|
599
|
-
def display_query_parameters(self) -> pulumi.Output[Optional[bool]]:
|
600
|
+
def display_query_parameters(self) -> pulumi.Output[Optional[builtins.bool]]:
|
600
601
|
"""
|
601
602
|
Whether the dashboard parameters section is opened by default when the dashboard
|
602
603
|
is shown.
|
@@ -605,7 +606,7 @@ class Dashboard(pulumi.CustomResource):
|
|
605
606
|
|
606
607
|
@property
|
607
608
|
@pulumi.getter(name="displaySectionTableOfContents")
|
608
|
-
def display_section_table_of_contents(self) -> pulumi.Output[Optional[bool]]:
|
609
|
+
def display_section_table_of_contents(self) -> pulumi.Output[Optional[builtins.bool]]:
|
609
610
|
"""
|
610
611
|
Whether the "pills" quick-linked the sections of the dashboard are
|
611
612
|
displayed by default when the dashboard is shown.
|
@@ -614,7 +615,7 @@ class Dashboard(pulumi.CustomResource):
|
|
614
615
|
|
615
616
|
@property
|
616
617
|
@pulumi.getter(name="eventFilterType")
|
617
|
-
def event_filter_type(self) -> pulumi.Output[Optional[str]]:
|
618
|
+
def event_filter_type(self) -> pulumi.Output[Optional[builtins.str]]:
|
618
619
|
"""
|
619
620
|
How charts belonging to this dashboard should display events. `BYCHART` is default if
|
620
621
|
unspecified. Valid options are: `BYCHART`, `AUTOMATIC`, `ALL`, `NONE`, `BYDASHBOARD`, and `BYCHARTANDDASHBOARD`.
|
@@ -623,7 +624,7 @@ class Dashboard(pulumi.CustomResource):
|
|
623
624
|
|
624
625
|
@property
|
625
626
|
@pulumi.getter
|
626
|
-
def name(self) -> pulumi.Output[str]:
|
627
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
627
628
|
"""
|
628
629
|
Name of the dashboard.
|
629
630
|
"""
|
@@ -647,7 +648,7 @@ class Dashboard(pulumi.CustomResource):
|
|
647
648
|
|
648
649
|
@property
|
649
650
|
@pulumi.getter
|
650
|
-
def tags(self) -> pulumi.Output[Sequence[str]]:
|
651
|
+
def tags(self) -> pulumi.Output[Sequence[builtins.str]]:
|
651
652
|
"""
|
652
653
|
A set of tags to assign to this resource.
|
653
654
|
"""
|
@@ -655,7 +656,7 @@ class Dashboard(pulumi.CustomResource):
|
|
655
656
|
|
656
657
|
@property
|
657
658
|
@pulumi.getter
|
658
|
-
def url(self) -> pulumi.Output[str]:
|
659
|
+
def url(self) -> pulumi.Output[builtins.str]:
|
659
660
|
"""
|
660
661
|
Unique identifier, also a URL slug of the dashboard.
|
661
662
|
"""
|