pulumi-signalfx 7.2.0a1709367777__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 +110 -86
- pulumi_signalfx/aws/_inputs.py +85 -16
- pulumi_signalfx/aws/external_integration.py +20 -275
- pulumi_signalfx/aws/integration.py +222 -367
- pulumi_signalfx/aws/outputs.py +21 -16
- pulumi_signalfx/aws/token_integration.py +46 -65
- pulumi_signalfx/azure/_inputs.py +41 -4
- pulumi_signalfx/azure/integration.py +144 -259
- 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 +131 -198
- pulumi_signalfx/data_link.py +76 -141
- pulumi_signalfx/detector.py +264 -369
- pulumi_signalfx/event_feed_chart.py +51 -82
- pulumi_signalfx/gcp/_inputs.py +51 -0
- pulumi_signalfx/gcp/integration.py +224 -192
- pulumi_signalfx/gcp/outputs.py +44 -0
- pulumi_signalfx/get_dimension_values.py +47 -24
- pulumi_signalfx/heatmap_chart.py +165 -228
- pulumi_signalfx/jira/integration.py +70 -119
- pulumi_signalfx/list_chart.py +219 -315
- pulumi_signalfx/log/_inputs.py +33 -2
- pulumi_signalfx/log/outputs.py +7 -2
- pulumi_signalfx/log/timeline.py +64 -99
- pulumi_signalfx/log/view.py +134 -173
- pulumi_signalfx/metric_ruleset.py +217 -70
- pulumi_signalfx/opsgenie/integration.py +41 -60
- pulumi_signalfx/org_token.py +97 -128
- pulumi_signalfx/outputs.py +661 -339
- pulumi_signalfx/pagerduty/get_integration.py +22 -21
- pulumi_signalfx/pagerduty/integration.py +34 -49
- pulumi_signalfx/provider.py +99 -0
- pulumi_signalfx/pulumi-plugin.json +2 -1
- pulumi_signalfx/servicenow/integration.py +52 -107
- pulumi_signalfx/single_value_chart.py +113 -178
- pulumi_signalfx/slack/integration.py +30 -47
- pulumi_signalfx/slo.py +99 -197
- pulumi_signalfx/slo_chart.py +197 -0
- pulumi_signalfx/table_chart.py +50 -75
- pulumi_signalfx/team.py +74 -109
- pulumi_signalfx/text_chart.py +64 -89
- pulumi_signalfx/time_chart.py +271 -400
- pulumi_signalfx/victorops/integration.py +30 -47
- pulumi_signalfx/webhook_integration.py +154 -75
- {pulumi_signalfx-7.2.0a1709367777.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.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
- pulumi_signalfx-7.2.0a1709367777.dist-info/RECORD +0 -64
- {pulumi_signalfx-7.2.0a1709367777.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,32 +254,14 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
249
254
|
"""
|
|
250
255
|
Displays a listing of events as a widget in a dashboard.
|
|
251
256
|
|
|
252
|
-
## Arguments
|
|
253
|
-
|
|
254
|
-
The following arguments are supported in the resource block:
|
|
255
|
-
|
|
256
|
-
* `name` - (Required) Name of the text note.
|
|
257
|
-
* `program_text` - (Required) Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
258
|
-
* `description` - (Optional) Description of the text note.
|
|
259
|
-
* `time_range` - (Optional) From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
260
|
-
* `start_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
261
|
-
* `end_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
262
|
-
|
|
263
|
-
## Attributes
|
|
264
|
-
|
|
265
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
266
|
-
|
|
267
|
-
* `id` - The ID of the chart.
|
|
268
|
-
* `url` - The URL of the chart.
|
|
269
|
-
|
|
270
257
|
:param str resource_name: The name of the resource.
|
|
271
258
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
272
|
-
:param pulumi.Input[str] description: Description of the
|
|
273
|
-
:param pulumi.Input[int] end_time: Seconds since epoch
|
|
274
|
-
:param pulumi.Input[str] name: Name of the
|
|
275
|
-
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info
|
|
276
|
-
:param pulumi.Input[int] start_time: Seconds since epoch
|
|
277
|
-
: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`.
|
|
278
265
|
"""
|
|
279
266
|
...
|
|
280
267
|
@overload
|
|
@@ -285,24 +272,6 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
285
272
|
"""
|
|
286
273
|
Displays a listing of events as a widget in a dashboard.
|
|
287
274
|
|
|
288
|
-
## Arguments
|
|
289
|
-
|
|
290
|
-
The following arguments are supported in the resource block:
|
|
291
|
-
|
|
292
|
-
* `name` - (Required) Name of the text note.
|
|
293
|
-
* `program_text` - (Required) Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://dev.splunk.com/observability/docs/signalflow/).
|
|
294
|
-
* `description` - (Optional) Description of the text note.
|
|
295
|
-
* `time_range` - (Optional) From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
296
|
-
* `start_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
297
|
-
* `end_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
298
|
-
|
|
299
|
-
## Attributes
|
|
300
|
-
|
|
301
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
302
|
-
|
|
303
|
-
* `id` - The ID of the chart.
|
|
304
|
-
* `url` - The URL of the chart.
|
|
305
|
-
|
|
306
275
|
:param str resource_name: The name of the resource.
|
|
307
276
|
:param EventFeedChartArgs args: The arguments to use to populate this resource's properties.
|
|
308
277
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -366,13 +335,13 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
366
335
|
:param str resource_name: The unique name of the resulting resource.
|
|
367
336
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
368
337
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
369
|
-
:param pulumi.Input[str] description: Description of the
|
|
370
|
-
:param pulumi.Input[int] end_time: Seconds since epoch
|
|
371
|
-
:param pulumi.Input[str] name: Name of the
|
|
372
|
-
:param pulumi.Input[str] program_text: Signalflow program text for the chart. More info
|
|
373
|
-
:param pulumi.Input[int] start_time: Seconds since epoch
|
|
374
|
-
:param pulumi.Input[int] time_range:
|
|
375
|
-
: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.
|
|
376
345
|
"""
|
|
377
346
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
378
347
|
|
|
@@ -391,7 +360,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
391
360
|
@pulumi.getter
|
|
392
361
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
393
362
|
"""
|
|
394
|
-
Description of the
|
|
363
|
+
Description of the text note.
|
|
395
364
|
"""
|
|
396
365
|
return pulumi.get(self, "description")
|
|
397
366
|
|
|
@@ -399,7 +368,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
399
368
|
@pulumi.getter(name="endTime")
|
|
400
369
|
def end_time(self) -> pulumi.Output[Optional[int]]:
|
|
401
370
|
"""
|
|
402
|
-
Seconds since epoch
|
|
371
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
403
372
|
"""
|
|
404
373
|
return pulumi.get(self, "end_time")
|
|
405
374
|
|
|
@@ -407,7 +376,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
407
376
|
@pulumi.getter
|
|
408
377
|
def name(self) -> pulumi.Output[str]:
|
|
409
378
|
"""
|
|
410
|
-
Name of the
|
|
379
|
+
Name of the text note.
|
|
411
380
|
"""
|
|
412
381
|
return pulumi.get(self, "name")
|
|
413
382
|
|
|
@@ -415,7 +384,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
415
384
|
@pulumi.getter(name="programText")
|
|
416
385
|
def program_text(self) -> pulumi.Output[str]:
|
|
417
386
|
"""
|
|
418
|
-
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/).
|
|
419
388
|
"""
|
|
420
389
|
return pulumi.get(self, "program_text")
|
|
421
390
|
|
|
@@ -423,7 +392,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
423
392
|
@pulumi.getter(name="startTime")
|
|
424
393
|
def start_time(self) -> pulumi.Output[Optional[int]]:
|
|
425
394
|
"""
|
|
426
|
-
Seconds since epoch
|
|
395
|
+
Seconds since epoch. Used for visualization. Conflicts with `time_range`.
|
|
427
396
|
"""
|
|
428
397
|
return pulumi.get(self, "start_time")
|
|
429
398
|
|
|
@@ -431,7 +400,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
431
400
|
@pulumi.getter(name="timeRange")
|
|
432
401
|
def time_range(self) -> pulumi.Output[Optional[int]]:
|
|
433
402
|
"""
|
|
434
|
-
|
|
403
|
+
From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
|
|
435
404
|
"""
|
|
436
405
|
return pulumi.get(self, "time_range")
|
|
437
406
|
|
|
@@ -439,7 +408,7 @@ class EventFeedChart(pulumi.CustomResource):
|
|
|
439
408
|
@pulumi.getter
|
|
440
409
|
def url(self) -> pulumi.Output[str]:
|
|
441
410
|
"""
|
|
442
|
-
URL of the chart
|
|
411
|
+
The URL of the chart.
|
|
443
412
|
"""
|
|
444
413
|
return pulumi.get(self, "url")
|
|
445
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
|
+
|