pulumi-signalfx 7.2.0a1710160099__py3-none-any.whl → 7.6.0a1736835428__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_signalfx/__init__.py +9 -0
- pulumi_signalfx/_inputs.py +1976 -339
- pulumi_signalfx/_utilities.py +41 -5
- pulumi_signalfx/alert_muting_rule.py +126 -72
- pulumi_signalfx/aws/_inputs.py +85 -16
- pulumi_signalfx/aws/external_integration.py +20 -43
- pulumi_signalfx/aws/integration.py +252 -321
- pulumi_signalfx/aws/outputs.py +21 -16
- pulumi_signalfx/aws/token_integration.py +76 -31
- pulumi_signalfx/azure/_inputs.py +41 -4
- pulumi_signalfx/azure/integration.py +170 -217
- pulumi_signalfx/azure/outputs.py +15 -4
- pulumi_signalfx/config/__init__.pyi +22 -0
- pulumi_signalfx/config/vars.py +28 -0
- pulumi_signalfx/dashboard.py +171 -186
- pulumi_signalfx/dashboard_group.py +191 -140
- pulumi_signalfx/data_link.py +102 -109
- pulumi_signalfx/detector.py +318 -383
- pulumi_signalfx/event_feed_chart.py +51 -86
- pulumi_signalfx/gcp/_inputs.py +51 -0
- pulumi_signalfx/gcp/integration.py +224 -148
- pulumi_signalfx/gcp/outputs.py +44 -0
- pulumi_signalfx/get_dimension_values.py +47 -8
- pulumi_signalfx/heatmap_chart.py +191 -174
- pulumi_signalfx/jira/integration.py +86 -103
- pulumi_signalfx/list_chart.py +243 -255
- pulumi_signalfx/log/_inputs.py +33 -2
- pulumi_signalfx/log/outputs.py +7 -2
- pulumi_signalfx/log/timeline.py +76 -87
- pulumi_signalfx/log/view.py +146 -113
- pulumi_signalfx/metric_ruleset.py +213 -70
- pulumi_signalfx/opsgenie/integration.py +51 -50
- pulumi_signalfx/org_token.py +111 -104
- pulumi_signalfx/outputs.py +661 -339
- pulumi_signalfx/pagerduty/get_integration.py +22 -25
- pulumi_signalfx/pagerduty/integration.py +42 -39
- pulumi_signalfx/provider.py +99 -0
- pulumi_signalfx/pulumi-plugin.json +2 -1
- pulumi_signalfx/servicenow/integration.py +68 -95
- pulumi_signalfx/single_value_chart.py +131 -162
- pulumi_signalfx/slack/integration.py +42 -41
- pulumi_signalfx/slo.py +97 -243
- pulumi_signalfx/slo_chart.py +197 -0
- pulumi_signalfx/table_chart.py +66 -65
- pulumi_signalfx/team.py +100 -107
- pulumi_signalfx/text_chart.py +72 -45
- pulumi_signalfx/time_chart.py +287 -352
- pulumi_signalfx/victorops/integration.py +42 -41
- pulumi_signalfx/webhook_integration.py +168 -61
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/METADATA +7 -6
- pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
- pulumi_signalfx-7.2.0a1710160099.dist-info/RECORD +0 -64
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['EventFeedChartArgs', 'EventFeedChart']
|
|
@@ -22,12 +27,12 @@ class EventFeedChartArgs:
|
|
|
22
27
|
time_range: Optional[pulumi.Input[int]] = None):
|
|
23
28
|
"""
|
|
24
29
|
The set of arguments for constructing a EventFeedChart resource.
|
|
25
|
-
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info
|
|
26
|
-
:param pulumi.Input[str] description: Description of the
|
|
27
|
-
:param pulumi.Input[int] end_time: Seconds since epoch
|
|
28
|
-
:param pulumi.Input[str] name: Name of the
|
|
29
|
-
:param pulumi.Input[int] start_time: Seconds since epoch
|
|
30
|
-
:param pulumi.Input[int] time_range:
|
|
30
|
+
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
31
|
+
:param pulumi.Input[str] description: Description of the text note.
|
|
32
|
+
:param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
33
|
+
:param pulumi.Input[str] name: Name of the text note.
|
|
34
|
+
:param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
35
|
+
:param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
31
36
|
"""
|
|
32
37
|
pulumi.set(__self__, "program_text", program_text)
|
|
33
38
|
if description is not None:
|
|
@@ -45,7 +50,7 @@ class EventFeedChartArgs:
|
|
|
45
50
|
@pulumi.getter(name="programText")
|
|
46
51
|
def program_text(self) -> pulumi.Input[str]:
|
|
47
52
|
"""
|
|
48
|
-
Signalflow program text for the chart. More info
|
|
53
|
+
Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
49
54
|
"""
|
|
50
55
|
return pulumi.get(self, "program_text")
|
|
51
56
|
|
|
@@ -57,7 +62,7 @@ class EventFeedChartArgs:
|
|
|
57
62
|
@pulumi.getter
|
|
58
63
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
59
64
|
"""
|
|
60
|
-
Description of the
|
|
65
|
+
Description of the text note.
|
|
61
66
|
"""
|
|
62
67
|
return pulumi.get(self, "description")
|
|
63
68
|
|
|
@@ -69,7 +74,7 @@ class EventFeedChartArgs:
|
|
|
69
74
|
@pulumi.getter(name="endTime")
|
|
70
75
|
def end_time(self) -> Optional[pulumi.Input[int]]:
|
|
71
76
|
"""
|
|
72
|
-
Seconds since epoch
|
|
77
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
73
78
|
"""
|
|
74
79
|
return pulumi.get(self, "end_time")
|
|
75
80
|
|
|
@@ -81,7 +86,7 @@ class EventFeedChartArgs:
|
|
|
81
86
|
@pulumi.getter
|
|
82
87
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
83
88
|
"""
|
|
84
|
-
Name of the
|
|
89
|
+
Name of the text note.
|
|
85
90
|
"""
|
|
86
91
|
return pulumi.get(self, "name")
|
|
87
92
|
|
|
@@ -93,7 +98,7 @@ class EventFeedChartArgs:
|
|
|
93
98
|
@pulumi.getter(name="startTime")
|
|
94
99
|
def start_time(self) -> Optional[pulumi.Input[int]]:
|
|
95
100
|
"""
|
|
96
|
-
Seconds since epoch
|
|
101
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
97
102
|
"""
|
|
98
103
|
return pulumi.get(self, "start_time")
|
|
99
104
|
|
|
@@ -105,7 +110,7 @@ class EventFeedChartArgs:
|
|
|
105
110
|
@pulumi.getter(name="timeRange")
|
|
106
111
|
def time_range(self) -> Optional[pulumi.Input[int]]:
|
|
107
112
|
"""
|
|
108
|
-
|
|
113
|
+
From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
109
114
|
"""
|
|
110
115
|
return pulumi.get(self, "time_range")
|
|
111
116
|
|
|
@@ -126,13 +131,13 @@ class _EventFeedChartState:
|
|
|
126
131
|
url: Optional[pulumi.Input[str]] = None):
|
|
127
132
|
"""
|
|
128
133
|
Input properties used for looking up and filtering EventFeedChart resources.
|
|
129
|
-
:param pulumi.Input[str] description: Description of the
|
|
130
|
-
:param pulumi.Input[int] end_time: Seconds since epoch
|
|
131
|
-
:param pulumi.Input[str] name: Name of the
|
|
132
|
-
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info
|
|
133
|
-
:param pulumi.Input[int] start_time: Seconds since epoch
|
|
134
|
-
:param pulumi.Input[int] time_range:
|
|
135
|
-
:param pulumi.Input[str] url: URL of the chart
|
|
134
|
+
:param pulumi.Input[str] description: Description of the text note.
|
|
135
|
+
:param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
136
|
+
:param pulumi.Input[str] name: Name of the text note.
|
|
137
|
+
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
138
|
+
:param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
139
|
+
:param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
140
|
+
:param pulumi.Input[str] url: The URL of the chart.
|
|
136
141
|
"""
|
|
137
142
|
if description is not None:
|
|
138
143
|
pulumi.set(__self__, "description", description)
|
|
@@ -153,7 +158,7 @@ class _EventFeedChartState:
|
|
|
153
158
|
@pulumi.getter
|
|
154
159
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
155
160
|
"""
|
|
156
|
-
Description of the
|
|
161
|
+
Description of the text note.
|
|
157
162
|
"""
|
|
158
163
|
return pulumi.get(self, "description")
|
|
159
164
|
|
|
@@ -165,7 +170,7 @@ class _EventFeedChartState:
|
|
|
165
170
|
@pulumi.getter(name="endTime")
|
|
166
171
|
def end_time(self) -> Optional[pulumi.Input[int]]:
|
|
167
172
|
"""
|
|
168
|
-
Seconds since epoch
|
|
173
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
169
174
|
"""
|
|
170
175
|
return pulumi.get(self, "end_time")
|
|
171
176
|
|
|
@@ -177,7 +182,7 @@ class _EventFeedChartState:
|
|
|
177
182
|
@pulumi.getter
|
|
178
183
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
179
184
|
"""
|
|
180
|
-
Name of the
|
|
185
|
+
Name of the text note.
|
|
181
186
|
"""
|
|
182
187
|
return pulumi.get(self, "name")
|
|
183
188
|
|
|
@@ -189,7 +194,7 @@ class _EventFeedChartState:
|
|
|
189
194
|
@pulumi.getter(name="programText")
|
|
190
195
|
def program_text(self) -> Optional[pulumi.Input[str]]:
|
|
191
196
|
"""
|
|
192
|
-
Signalflow program text for the chart. More info
|
|
197
|
+
Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
193
198
|
"""
|
|
194
199
|
return pulumi.get(self, "program_text")
|
|
195
200
|
|
|
@@ -201,7 +206,7 @@ class _EventFeedChartState:
|
|
|
201
206
|
@pulumi.getter(name="startTime")
|
|
202
207
|
def start_time(self) -> Optional[pulumi.Input[int]]:
|
|
203
208
|
"""
|
|
204
|
-
Seconds since epoch
|
|
209
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
205
210
|
"""
|
|
206
211
|
return pulumi.get(self, "start_time")
|
|
207
212
|
|
|
@@ -213,7 +218,7 @@ class _EventFeedChartState:
|
|
|
213
218
|
@pulumi.getter(name="timeRange")
|
|
214
219
|
def time_range(self) -> Optional[pulumi.Input[int]]:
|
|
215
220
|
"""
|
|
216
|
-
|
|
221
|
+
From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
217
222
|
"""
|
|
218
223
|
return pulumi.get(self, "time_range")
|
|
219
224
|
|
|
@@ -225,7 +230,7 @@ class _EventFeedChartState:
|
|
|
225
230
|
@pulumi.getter
|
|
226
231
|
def url(self) -> Optional[pulumi.Input[str]]:
|
|
227
232
|
"""
|
|
228
|
-
URL of the chart
|
|
233
|
+
The URL of the chart.
|
|
229
234
|
"""
|
|
230
235
|
return pulumi.get(self, "url")
|
|
231
236
|
|
|
@@ -249,34 +254,14 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
249
254
|
"""
|
|
250
255
|
Displays a listing of events as a widget in a dashboard.
|
|
251
256
|
|
|
252
|
-
## Example
|
|
253
|
-
|
|
254
|
-
## Arguments
|
|
255
|
-
|
|
256
|
-
The following arguments are supported in the resource block:
|
|
257
|
-
|
|
258
|
-
* `name` - (Required) Name of the text note.
|
|
259
|
-
* `program_text` - (Required) Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
260
|
-
* `description` - (Optional) Description of the text note.
|
|
261
|
-
* `time_range` - (Optional) From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
262
|
-
* `start_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
263
|
-
* `end_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
264
|
-
|
|
265
|
-
## Attributes
|
|
266
|
-
|
|
267
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
268
|
-
|
|
269
|
-
* `id` - The ID of the chart.
|
|
270
|
-
* `url` - The URL of the chart.
|
|
271
|
-
|
|
272
257
|
:param str resource_name: The name of the resource.
|
|
273
258
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
274
|
-
:param pulumi.Input[str] description: Description of the
|
|
275
|
-
:param pulumi.Input[int] end_time: Seconds since epoch
|
|
276
|
-
:param pulumi.Input[str] name: Name of the
|
|
277
|
-
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info
|
|
278
|
-
:param pulumi.Input[int] start_time: Seconds since epoch
|
|
279
|
-
:param pulumi.Input[int] time_range:
|
|
259
|
+
:param pulumi.Input[str] description: Description of the text note.
|
|
260
|
+
:param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
261
|
+
:param pulumi.Input[str] name: Name of the text note.
|
|
262
|
+
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
263
|
+
:param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
264
|
+
:param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
280
265
|
"""
|
|
281
266
|
...
|
|
282
267
|
@overload
|
|
@@ -287,26 +272,6 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
287
272
|
"""
|
|
288
273
|
Displays a listing of events as a widget in a dashboard.
|
|
289
274
|
|
|
290
|
-
## Example
|
|
291
|
-
|
|
292
|
-
## Arguments
|
|
293
|
-
|
|
294
|
-
The following arguments are supported in the resource block:
|
|
295
|
-
|
|
296
|
-
* `name` - (Required) Name of the text note.
|
|
297
|
-
* `program_text` - (Required) Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
298
|
-
* `description` - (Optional) Description of the text note.
|
|
299
|
-
* `time_range` - (Optional) From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
300
|
-
* `start_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
301
|
-
* `end_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
302
|
-
|
|
303
|
-
## Attributes
|
|
304
|
-
|
|
305
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
306
|
-
|
|
307
|
-
* `id` - The ID of the chart.
|
|
308
|
-
* `url` - The URL of the chart.
|
|
309
|
-
|
|
310
275
|
:param str resource_name: The name of the resource.
|
|
311
276
|
:param EventFeedChartArgs args: The arguments to use to populate this resource's properties.
|
|
312
277
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -370,13 +335,13 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
370
335
|
:param str resource_name: The unique name of the resulting resource.
|
|
371
336
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
372
337
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
373
|
-
:param pulumi.Input[str] description: Description of the
|
|
374
|
-
:param pulumi.Input[int] end_time: Seconds since epoch
|
|
375
|
-
:param pulumi.Input[str] name: Name of the
|
|
376
|
-
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info
|
|
377
|
-
:param pulumi.Input[int] start_time: Seconds since epoch
|
|
378
|
-
:param pulumi.Input[int] time_range:
|
|
379
|
-
:param pulumi.Input[str] url: URL of the chart
|
|
338
|
+
:param pulumi.Input[str] description: Description of the text note.
|
|
339
|
+
:param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
340
|
+
:param pulumi.Input[str] name: Name of the text note.
|
|
341
|
+
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
342
|
+
:param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
343
|
+
:param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
344
|
+
:param pulumi.Input[str] url: The URL of the chart.
|
|
380
345
|
"""
|
|
381
346
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
382
347
|
|
|
@@ -395,7 +360,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
395
360
|
@pulumi.getter
|
|
396
361
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
397
362
|
"""
|
|
398
|
-
Description of the
|
|
363
|
+
Description of the text note.
|
|
399
364
|
"""
|
|
400
365
|
return pulumi.get(self, "description")
|
|
401
366
|
|
|
@@ -403,7 +368,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
403
368
|
@pulumi.getter(name="endTime")
|
|
404
369
|
def end_time(self) -> pulumi.Output[Optional[int]]:
|
|
405
370
|
"""
|
|
406
|
-
Seconds since epoch
|
|
371
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
407
372
|
"""
|
|
408
373
|
return pulumi.get(self, "end_time")
|
|
409
374
|
|
|
@@ -411,7 +376,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
411
376
|
@pulumi.getter
|
|
412
377
|
def name(self) -> pulumi.Output[str]:
|
|
413
378
|
"""
|
|
414
|
-
Name of the
|
|
379
|
+
Name of the text note.
|
|
415
380
|
"""
|
|
416
381
|
return pulumi.get(self, "name")
|
|
417
382
|
|
|
@@ -419,7 +384,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
419
384
|
@pulumi.getter(name="programText")
|
|
420
385
|
def program_text(self) -> pulumi.Output[str]:
|
|
421
386
|
"""
|
|
422
|
-
Signalflow program text for the chart. More info
|
|
387
|
+
Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
423
388
|
"""
|
|
424
389
|
return pulumi.get(self, "program_text")
|
|
425
390
|
|
|
@@ -427,7 +392,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
427
392
|
@pulumi.getter(name="startTime")
|
|
428
393
|
def start_time(self) -> pulumi.Output[Optional[int]]:
|
|
429
394
|
"""
|
|
430
|
-
Seconds since epoch
|
|
395
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
431
396
|
"""
|
|
432
397
|
return pulumi.get(self, "start_time")
|
|
433
398
|
|
|
@@ -435,7 +400,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
435
400
|
@pulumi.getter(name="timeRange")
|
|
436
401
|
def time_range(self) -> pulumi.Output[Optional[int]]:
|
|
437
402
|
"""
|
|
438
|
-
|
|
403
|
+
From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
439
404
|
"""
|
|
440
405
|
return pulumi.get(self, "time_range")
|
|
441
406
|
|
|
@@ -443,7 +408,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
443
408
|
@pulumi.getter
|
|
444
409
|
def url(self) -> pulumi.Output[str]:
|
|
445
410
|
"""
|
|
446
|
-
URL of the chart
|
|
411
|
+
The URL of the chart.
|
|
447
412
|
"""
|
|
448
413
|
return pulumi.get(self, "url")
|
|
449
414
|
|
pulumi_signalfx/gcp/_inputs.py
CHANGED
|
@@ -4,15 +4,32 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from .. import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
13
18
|
'IntegrationProjectServiceKeyArgs',
|
|
19
|
+
'IntegrationProjectServiceKeyArgsDict',
|
|
20
|
+
'IntegrationProjectWifConfigArgs',
|
|
21
|
+
'IntegrationProjectWifConfigArgsDict',
|
|
14
22
|
]
|
|
15
23
|
|
|
24
|
+
MYPY = False
|
|
25
|
+
|
|
26
|
+
if not MYPY:
|
|
27
|
+
class IntegrationProjectServiceKeyArgsDict(TypedDict):
|
|
28
|
+
project_id: pulumi.Input[str]
|
|
29
|
+
project_key: pulumi.Input[str]
|
|
30
|
+
elif False:
|
|
31
|
+
IntegrationProjectServiceKeyArgsDict: TypeAlias = Mapping[str, Any]
|
|
32
|
+
|
|
16
33
|
@pulumi.input_type
|
|
17
34
|
class IntegrationProjectServiceKeyArgs:
|
|
18
35
|
def __init__(__self__, *,
|
|
@@ -40,3 +57,37 @@ class IntegrationProjectServiceKeyArgs:
|
|
|
40
57
|
pulumi.set(self, "project_key", value)
|
|
41
58
|
|
|
42
59
|
|
|
60
|
+
if not MYPY:
|
|
61
|
+
class IntegrationProjectWifConfigArgsDict(TypedDict):
|
|
62
|
+
project_id: pulumi.Input[str]
|
|
63
|
+
wif_config: pulumi.Input[str]
|
|
64
|
+
elif False:
|
|
65
|
+
IntegrationProjectWifConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
66
|
+
|
|
67
|
+
@pulumi.input_type
|
|
68
|
+
class IntegrationProjectWifConfigArgs:
|
|
69
|
+
def __init__(__self__, *,
|
|
70
|
+
project_id: pulumi.Input[str],
|
|
71
|
+
wif_config: pulumi.Input[str]):
|
|
72
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
73
|
+
pulumi.set(__self__, "wif_config", wif_config)
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="projectId")
|
|
77
|
+
def project_id(self) -> pulumi.Input[str]:
|
|
78
|
+
return pulumi.get(self, "project_id")
|
|
79
|
+
|
|
80
|
+
@project_id.setter
|
|
81
|
+
def project_id(self, value: pulumi.Input[str]):
|
|
82
|
+
pulumi.set(self, "project_id", value)
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter(name="wifConfig")
|
|
86
|
+
def wif_config(self) -> pulumi.Input[str]:
|
|
87
|
+
return pulumi.get(self, "wif_config")
|
|
88
|
+
|
|
89
|
+
@wif_config.setter
|
|
90
|
+
def wif_config(self, value: pulumi.Input[str]):
|
|
91
|
+
pulumi.set(self, "wif_config", value)
|
|
92
|
+
|
|
93
|
+
|