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__ = ['IntegrationArgs', 'Integration']
|
|
@@ -20,10 +25,10 @@ class IntegrationArgs:
|
|
|
20
25
|
name: Optional[pulumi.Input[str]] = None):
|
|
21
26
|
"""
|
|
22
27
|
The set of arguments for constructing a Integration resource.
|
|
23
|
-
:param pulumi.Input[str] api_key:
|
|
24
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
25
|
-
:param pulumi.Input[str] api_url: Opsgenie API URL
|
|
26
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
28
|
+
:param pulumi.Input[str] api_key: The API key
|
|
29
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
30
|
+
:param pulumi.Input[str] api_url: Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
31
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
27
32
|
"""
|
|
28
33
|
pulumi.set(__self__, "api_key", api_key)
|
|
29
34
|
pulumi.set(__self__, "enabled", enabled)
|
|
@@ -36,7 +41,7 @@ class IntegrationArgs:
|
|
|
36
41
|
@pulumi.getter(name="apiKey")
|
|
37
42
|
def api_key(self) -> pulumi.Input[str]:
|
|
38
43
|
"""
|
|
39
|
-
|
|
44
|
+
The API key
|
|
40
45
|
"""
|
|
41
46
|
return pulumi.get(self, "api_key")
|
|
42
47
|
|
|
@@ -48,7 +53,7 @@ class IntegrationArgs:
|
|
|
48
53
|
@pulumi.getter
|
|
49
54
|
def enabled(self) -> pulumi.Input[bool]:
|
|
50
55
|
"""
|
|
51
|
-
Whether the integration is enabled
|
|
56
|
+
Whether the integration is enabled.
|
|
52
57
|
"""
|
|
53
58
|
return pulumi.get(self, "enabled")
|
|
54
59
|
|
|
@@ -60,7 +65,7 @@ class IntegrationArgs:
|
|
|
60
65
|
@pulumi.getter(name="apiUrl")
|
|
61
66
|
def api_url(self) -> Optional[pulumi.Input[str]]:
|
|
62
67
|
"""
|
|
63
|
-
Opsgenie API URL
|
|
68
|
+
Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
64
69
|
"""
|
|
65
70
|
return pulumi.get(self, "api_url")
|
|
66
71
|
|
|
@@ -72,7 +77,7 @@ class IntegrationArgs:
|
|
|
72
77
|
@pulumi.getter
|
|
73
78
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
74
79
|
"""
|
|
75
|
-
Name of the integration
|
|
80
|
+
Name of the integration.
|
|
76
81
|
"""
|
|
77
82
|
return pulumi.get(self, "name")
|
|
78
83
|
|
|
@@ -90,10 +95,10 @@ class _IntegrationState:
|
|
|
90
95
|
name: Optional[pulumi.Input[str]] = None):
|
|
91
96
|
"""
|
|
92
97
|
Input properties used for looking up and filtering Integration resources.
|
|
93
|
-
:param pulumi.Input[str] api_key:
|
|
94
|
-
:param pulumi.Input[str] api_url: Opsgenie API URL
|
|
95
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
96
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
98
|
+
:param pulumi.Input[str] api_key: The API key
|
|
99
|
+
:param pulumi.Input[str] api_url: Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
100
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
101
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
97
102
|
"""
|
|
98
103
|
if api_key is not None:
|
|
99
104
|
pulumi.set(__self__, "api_key", api_key)
|
|
@@ -108,7 +113,7 @@ class _IntegrationState:
|
|
|
108
113
|
@pulumi.getter(name="apiKey")
|
|
109
114
|
def api_key(self) -> Optional[pulumi.Input[str]]:
|
|
110
115
|
"""
|
|
111
|
-
|
|
116
|
+
The API key
|
|
112
117
|
"""
|
|
113
118
|
return pulumi.get(self, "api_key")
|
|
114
119
|
|
|
@@ -120,7 +125,7 @@ class _IntegrationState:
|
|
|
120
125
|
@pulumi.getter(name="apiUrl")
|
|
121
126
|
def api_url(self) -> Optional[pulumi.Input[str]]:
|
|
122
127
|
"""
|
|
123
|
-
Opsgenie API URL
|
|
128
|
+
Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
124
129
|
"""
|
|
125
130
|
return pulumi.get(self, "api_url")
|
|
126
131
|
|
|
@@ -132,7 +137,7 @@ class _IntegrationState:
|
|
|
132
137
|
@pulumi.getter
|
|
133
138
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
134
139
|
"""
|
|
135
|
-
Whether the integration is enabled
|
|
140
|
+
Whether the integration is enabled.
|
|
136
141
|
"""
|
|
137
142
|
return pulumi.get(self, "enabled")
|
|
138
143
|
|
|
@@ -144,7 +149,7 @@ class _IntegrationState:
|
|
|
144
149
|
@pulumi.getter
|
|
145
150
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
146
151
|
"""
|
|
147
|
-
Name of the integration
|
|
152
|
+
Name of the integration.
|
|
148
153
|
"""
|
|
149
154
|
return pulumi.get(self, "name")
|
|
150
155
|
|
|
@@ -174,31 +179,19 @@ class Integration(pulumi.CustomResource):
|
|
|
174
179
|
import pulumi
|
|
175
180
|
import pulumi_signalfx as signalfx
|
|
176
181
|
|
|
177
|
-
opgenie_myteam = signalfx.opsgenie.Integration("
|
|
182
|
+
opgenie_myteam = signalfx.opsgenie.Integration("opgenie_myteam",
|
|
183
|
+
name="Opsgenie - My Team",
|
|
184
|
+
enabled=True,
|
|
178
185
|
api_key="my-key",
|
|
179
|
-
api_url="https://api.opsgenie.com"
|
|
180
|
-
enabled=True)
|
|
186
|
+
api_url="https://api.opsgenie.com")
|
|
181
187
|
```
|
|
182
188
|
|
|
183
|
-
## Arguments
|
|
184
|
-
|
|
185
|
-
* `name` - (Required) Name of the integration.
|
|
186
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
187
|
-
* `api_key` - (Required) The API key
|
|
188
|
-
* `api_url` - (Optional) Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
189
|
-
|
|
190
|
-
## Attributes
|
|
191
|
-
|
|
192
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
193
|
-
|
|
194
|
-
* `id` - The ID of the integration.
|
|
195
|
-
|
|
196
189
|
:param str resource_name: The name of the resource.
|
|
197
190
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
198
|
-
:param pulumi.Input[str] api_key:
|
|
199
|
-
:param pulumi.Input[str] api_url: Opsgenie API URL
|
|
200
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
201
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
191
|
+
:param pulumi.Input[str] api_key: The API key
|
|
192
|
+
:param pulumi.Input[str] api_url: Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
193
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
194
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
202
195
|
"""
|
|
203
196
|
...
|
|
204
197
|
@overload
|
|
@@ -217,25 +210,13 @@ class Integration(pulumi.CustomResource):
|
|
|
217
210
|
import pulumi
|
|
218
211
|
import pulumi_signalfx as signalfx
|
|
219
212
|
|
|
220
|
-
opgenie_myteam = signalfx.opsgenie.Integration("
|
|
213
|
+
opgenie_myteam = signalfx.opsgenie.Integration("opgenie_myteam",
|
|
214
|
+
name="Opsgenie - My Team",
|
|
215
|
+
enabled=True,
|
|
221
216
|
api_key="my-key",
|
|
222
|
-
api_url="https://api.opsgenie.com"
|
|
223
|
-
enabled=True)
|
|
217
|
+
api_url="https://api.opsgenie.com")
|
|
224
218
|
```
|
|
225
219
|
|
|
226
|
-
## Arguments
|
|
227
|
-
|
|
228
|
-
* `name` - (Required) Name of the integration.
|
|
229
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
230
|
-
* `api_key` - (Required) The API key
|
|
231
|
-
* `api_url` - (Optional) Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
232
|
-
|
|
233
|
-
## Attributes
|
|
234
|
-
|
|
235
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
236
|
-
|
|
237
|
-
* `id` - The ID of the integration.
|
|
238
|
-
|
|
239
220
|
:param str resource_name: The name of the resource.
|
|
240
221
|
:param IntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
241
222
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -295,10 +276,10 @@ class Integration(pulumi.CustomResource):
|
|
|
295
276
|
:param str resource_name: The unique name of the resulting resource.
|
|
296
277
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
297
278
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
298
|
-
:param pulumi.Input[str] api_key:
|
|
299
|
-
:param pulumi.Input[str] api_url: Opsgenie API URL
|
|
300
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
301
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
279
|
+
:param pulumi.Input[str] api_key: The API key
|
|
280
|
+
:param pulumi.Input[str] api_url: Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
281
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
282
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
302
283
|
"""
|
|
303
284
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
304
285
|
|
|
@@ -314,7 +295,7 @@ class Integration(pulumi.CustomResource):
|
|
|
314
295
|
@pulumi.getter(name="apiKey")
|
|
315
296
|
def api_key(self) -> pulumi.Output[str]:
|
|
316
297
|
"""
|
|
317
|
-
|
|
298
|
+
The API key
|
|
318
299
|
"""
|
|
319
300
|
return pulumi.get(self, "api_key")
|
|
320
301
|
|
|
@@ -322,7 +303,7 @@ class Integration(pulumi.CustomResource):
|
|
|
322
303
|
@pulumi.getter(name="apiUrl")
|
|
323
304
|
def api_url(self) -> pulumi.Output[Optional[str]]:
|
|
324
305
|
"""
|
|
325
|
-
Opsgenie API URL
|
|
306
|
+
Opsgenie API URL. Will default to `https://api.opsgenie.com`. You might also want `https://api.eu.opsgenie.com`.
|
|
326
307
|
"""
|
|
327
308
|
return pulumi.get(self, "api_url")
|
|
328
309
|
|
|
@@ -330,7 +311,7 @@ class Integration(pulumi.CustomResource):
|
|
|
330
311
|
@pulumi.getter
|
|
331
312
|
def enabled(self) -> pulumi.Output[bool]:
|
|
332
313
|
"""
|
|
333
|
-
Whether the integration is enabled
|
|
314
|
+
Whether the integration is enabled.
|
|
334
315
|
"""
|
|
335
316
|
return pulumi.get(self, "enabled")
|
|
336
317
|
|
|
@@ -338,7 +319,7 @@ class Integration(pulumi.CustomResource):
|
|
|
338
319
|
@pulumi.getter
|
|
339
320
|
def name(self) -> pulumi.Output[str]:
|
|
340
321
|
"""
|
|
341
|
-
Name of the integration
|
|
322
|
+
Name of the integration.
|
|
342
323
|
"""
|
|
343
324
|
return pulumi.get(self, "name")
|
|
344
325
|
|