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']
|
|
@@ -24,18 +29,14 @@ class IntegrationArgs:
|
|
|
24
29
|
name: Optional[pulumi.Input[str]] = None):
|
|
25
30
|
"""
|
|
26
31
|
The set of arguments for constructing a Integration resource.
|
|
27
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
28
|
-
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `
|
|
32
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
33
|
+
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
29
34
|
:param pulumi.Input[str] issue_type: The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
30
35
|
:param pulumi.Input[str] password: Password used to authenticate the ServiceNow integration.
|
|
31
36
|
:param pulumi.Input[str] username: User name used to authenticate the ServiceNow integration.
|
|
32
|
-
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
:param pulumi.Input[str] alert_triggered_payload_template: A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification
|
|
36
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
37
|
-
ServiceNow. See API reference for details.
|
|
38
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
37
|
+
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
38
|
+
:param pulumi.Input[str] alert_triggered_payload_template: A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
39
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
39
40
|
"""
|
|
40
41
|
pulumi.set(__self__, "enabled", enabled)
|
|
41
42
|
pulumi.set(__self__, "instance_name", instance_name)
|
|
@@ -53,7 +54,7 @@ class IntegrationArgs:
|
|
|
53
54
|
@pulumi.getter
|
|
54
55
|
def enabled(self) -> pulumi.Input[bool]:
|
|
55
56
|
"""
|
|
56
|
-
Whether the integration is enabled
|
|
57
|
+
Whether the integration is enabled.
|
|
57
58
|
"""
|
|
58
59
|
return pulumi.get(self, "enabled")
|
|
59
60
|
|
|
@@ -65,7 +66,7 @@ class IntegrationArgs:
|
|
|
65
66
|
@pulumi.getter(name="instanceName")
|
|
66
67
|
def instance_name(self) -> pulumi.Input[str]:
|
|
67
68
|
"""
|
|
68
|
-
Name of the ServiceNow instance, for example `
|
|
69
|
+
Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
69
70
|
"""
|
|
70
71
|
return pulumi.get(self, "instance_name")
|
|
71
72
|
|
|
@@ -113,9 +114,7 @@ class IntegrationArgs:
|
|
|
113
114
|
@pulumi.getter(name="alertResolvedPayloadTemplate")
|
|
114
115
|
def alert_resolved_payload_template(self) -> Optional[pulumi.Input[str]]:
|
|
115
116
|
"""
|
|
116
|
-
A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
117
|
-
ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
118
|
-
ServiceNow. See API reference for details.
|
|
117
|
+
A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
119
118
|
"""
|
|
120
119
|
return pulumi.get(self, "alert_resolved_payload_template")
|
|
121
120
|
|
|
@@ -127,9 +126,7 @@ class IntegrationArgs:
|
|
|
127
126
|
@pulumi.getter(name="alertTriggeredPayloadTemplate")
|
|
128
127
|
def alert_triggered_payload_template(self) -> Optional[pulumi.Input[str]]:
|
|
129
128
|
"""
|
|
130
|
-
A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification
|
|
131
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
132
|
-
ServiceNow. See API reference for details.
|
|
129
|
+
A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
133
130
|
"""
|
|
134
131
|
return pulumi.get(self, "alert_triggered_payload_template")
|
|
135
132
|
|
|
@@ -141,7 +138,7 @@ class IntegrationArgs:
|
|
|
141
138
|
@pulumi.getter
|
|
142
139
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
143
140
|
"""
|
|
144
|
-
Name of the integration
|
|
141
|
+
Name of the integration.
|
|
145
142
|
"""
|
|
146
143
|
return pulumi.get(self, "name")
|
|
147
144
|
|
|
@@ -163,16 +160,12 @@ class _IntegrationState:
|
|
|
163
160
|
username: Optional[pulumi.Input[str]] = None):
|
|
164
161
|
"""
|
|
165
162
|
Input properties used for looking up and filtering Integration resources.
|
|
166
|
-
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
:param pulumi.Input[str]
|
|
170
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
171
|
-
ServiceNow. See API reference for details.
|
|
172
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
173
|
-
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `myInstances.service-now.com`.
|
|
163
|
+
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
164
|
+
:param pulumi.Input[str] alert_triggered_payload_template: A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
165
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
166
|
+
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
174
167
|
:param pulumi.Input[str] issue_type: The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
175
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
168
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
176
169
|
:param pulumi.Input[str] password: Password used to authenticate the ServiceNow integration.
|
|
177
170
|
:param pulumi.Input[str] username: User name used to authenticate the ServiceNow integration.
|
|
178
171
|
"""
|
|
@@ -197,9 +190,7 @@ class _IntegrationState:
|
|
|
197
190
|
@pulumi.getter(name="alertResolvedPayloadTemplate")
|
|
198
191
|
def alert_resolved_payload_template(self) -> Optional[pulumi.Input[str]]:
|
|
199
192
|
"""
|
|
200
|
-
A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
201
|
-
ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
202
|
-
ServiceNow. See API reference for details.
|
|
193
|
+
A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
203
194
|
"""
|
|
204
195
|
return pulumi.get(self, "alert_resolved_payload_template")
|
|
205
196
|
|
|
@@ -211,9 +202,7 @@ class _IntegrationState:
|
|
|
211
202
|
@pulumi.getter(name="alertTriggeredPayloadTemplate")
|
|
212
203
|
def alert_triggered_payload_template(self) -> Optional[pulumi.Input[str]]:
|
|
213
204
|
"""
|
|
214
|
-
A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification
|
|
215
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
216
|
-
ServiceNow. See API reference for details.
|
|
205
|
+
A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
217
206
|
"""
|
|
218
207
|
return pulumi.get(self, "alert_triggered_payload_template")
|
|
219
208
|
|
|
@@ -225,7 +214,7 @@ class _IntegrationState:
|
|
|
225
214
|
@pulumi.getter
|
|
226
215
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
227
216
|
"""
|
|
228
|
-
Whether the integration is enabled
|
|
217
|
+
Whether the integration is enabled.
|
|
229
218
|
"""
|
|
230
219
|
return pulumi.get(self, "enabled")
|
|
231
220
|
|
|
@@ -237,7 +226,7 @@ class _IntegrationState:
|
|
|
237
226
|
@pulumi.getter(name="instanceName")
|
|
238
227
|
def instance_name(self) -> Optional[pulumi.Input[str]]:
|
|
239
228
|
"""
|
|
240
|
-
Name of the ServiceNow instance, for example `
|
|
229
|
+
Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
241
230
|
"""
|
|
242
231
|
return pulumi.get(self, "instance_name")
|
|
243
232
|
|
|
@@ -261,7 +250,7 @@ class _IntegrationState:
|
|
|
261
250
|
@pulumi.getter
|
|
262
251
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
263
252
|
"""
|
|
264
|
-
Name of the integration
|
|
253
|
+
Name of the integration.
|
|
265
254
|
"""
|
|
266
255
|
return pulumi.get(self, "name")
|
|
267
256
|
|
|
@@ -319,45 +308,25 @@ class Integration(pulumi.CustomResource):
|
|
|
319
308
|
import pulumi
|
|
320
309
|
import pulumi_signalfx as signalfx
|
|
321
310
|
|
|
322
|
-
service_now_myteam = signalfx.servicenow.Integration("
|
|
323
|
-
|
|
324
|
-
alert_triggered_payload_template="{\\"short_description\\": \\"{{{messageTitle}}} (customized)\\"}",
|
|
311
|
+
service_now_myteam = signalfx.servicenow.Integration("service_now_myteam",
|
|
312
|
+
name="ServiceNow - My Team",
|
|
325
313
|
enabled=False,
|
|
314
|
+
username="thisis_me",
|
|
315
|
+
password="youd0ntsee1t",
|
|
326
316
|
instance_name="myinst.service-now.com",
|
|
327
317
|
issue_type="Incident",
|
|
328
|
-
|
|
329
|
-
|
|
318
|
+
alert_triggered_payload_template="{\\"short_description\\": \\"{{{messageTitle}}} (customized)\\"}",
|
|
319
|
+
alert_resolved_payload_template="{\\"close_notes\\": \\"{{{messageTitle}}} (customized close msg)\\"}")
|
|
330
320
|
```
|
|
331
321
|
|
|
332
|
-
## Arguments
|
|
333
|
-
|
|
334
|
-
* `name` - (Required) Name of the integration.
|
|
335
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
336
|
-
* `username` - (Required) User name used to authenticate the ServiceNow integration.
|
|
337
|
-
* `password` - (Required) Password used to authenticate the ServiceNow integration.
|
|
338
|
-
* `instance_name` - (Required) Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
339
|
-
* `issue_type` - (Required) The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
340
|
-
* `alert_triggered_payload_template` - (Optional) A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
341
|
-
* `alert_resolved_payload_template` - (Optional) A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
342
|
-
|
|
343
|
-
## Attributes
|
|
344
|
-
|
|
345
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
346
|
-
|
|
347
|
-
* `id` - The ID of the integration.
|
|
348
|
-
|
|
349
322
|
:param str resource_name: The name of the resource.
|
|
350
323
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
351
|
-
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
:param pulumi.Input[str]
|
|
355
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
356
|
-
ServiceNow. See API reference for details.
|
|
357
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
358
|
-
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `myInstances.service-now.com`.
|
|
324
|
+
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
325
|
+
:param pulumi.Input[str] alert_triggered_payload_template: A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
326
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
327
|
+
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
359
328
|
:param pulumi.Input[str] issue_type: The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
360
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
329
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
361
330
|
:param pulumi.Input[str] password: Password used to authenticate the ServiceNow integration.
|
|
362
331
|
:param pulumi.Input[str] username: User name used to authenticate the ServiceNow integration.
|
|
363
332
|
"""
|
|
@@ -378,33 +347,17 @@ class Integration(pulumi.CustomResource):
|
|
|
378
347
|
import pulumi
|
|
379
348
|
import pulumi_signalfx as signalfx
|
|
380
349
|
|
|
381
|
-
service_now_myteam = signalfx.servicenow.Integration("
|
|
382
|
-
|
|
383
|
-
alert_triggered_payload_template="{\\"short_description\\": \\"{{{messageTitle}}} (customized)\\"}",
|
|
350
|
+
service_now_myteam = signalfx.servicenow.Integration("service_now_myteam",
|
|
351
|
+
name="ServiceNow - My Team",
|
|
384
352
|
enabled=False,
|
|
353
|
+
username="thisis_me",
|
|
354
|
+
password="youd0ntsee1t",
|
|
385
355
|
instance_name="myinst.service-now.com",
|
|
386
356
|
issue_type="Incident",
|
|
387
|
-
|
|
388
|
-
|
|
357
|
+
alert_triggered_payload_template="{\\"short_description\\": \\"{{{messageTitle}}} (customized)\\"}",
|
|
358
|
+
alert_resolved_payload_template="{\\"close_notes\\": \\"{{{messageTitle}}} (customized close msg)\\"}")
|
|
389
359
|
```
|
|
390
360
|
|
|
391
|
-
## Arguments
|
|
392
|
-
|
|
393
|
-
* `name` - (Required) Name of the integration.
|
|
394
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
395
|
-
* `username` - (Required) User name used to authenticate the ServiceNow integration.
|
|
396
|
-
* `password` - (Required) Password used to authenticate the ServiceNow integration.
|
|
397
|
-
* `instance_name` - (Required) Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
398
|
-
* `issue_type` - (Required) The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
399
|
-
* `alert_triggered_payload_template` - (Optional) A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
400
|
-
* `alert_resolved_payload_template` - (Optional) A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
401
|
-
|
|
402
|
-
## Attributes
|
|
403
|
-
|
|
404
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
405
|
-
|
|
406
|
-
* `id` - The ID of the integration.
|
|
407
|
-
|
|
408
361
|
:param str resource_name: The name of the resource.
|
|
409
362
|
:param IntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
410
363
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -482,16 +435,12 @@ class Integration(pulumi.CustomResource):
|
|
|
482
435
|
:param str resource_name: The unique name of the resulting resource.
|
|
483
436
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
484
437
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
485
|
-
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
:param pulumi.Input[str]
|
|
489
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
490
|
-
ServiceNow. See API reference for details.
|
|
491
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
492
|
-
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `myInstances.service-now.com`.
|
|
438
|
+
:param pulumi.Input[str] alert_resolved_payload_template: A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
439
|
+
:param pulumi.Input[str] alert_triggered_payload_template: A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
440
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
441
|
+
:param pulumi.Input[str] instance_name: Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
493
442
|
:param pulumi.Input[str] issue_type: The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
494
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
443
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
495
444
|
:param pulumi.Input[str] password: Password used to authenticate the ServiceNow integration.
|
|
496
445
|
:param pulumi.Input[str] username: User name used to authenticate the ServiceNow integration.
|
|
497
446
|
"""
|
|
@@ -513,9 +462,7 @@ class Integration(pulumi.CustomResource):
|
|
|
513
462
|
@pulumi.getter(name="alertResolvedPayloadTemplate")
|
|
514
463
|
def alert_resolved_payload_template(self) -> pulumi.Output[Optional[str]]:
|
|
515
464
|
"""
|
|
516
|
-
A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
517
|
-
ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
518
|
-
ServiceNow. See API reference for details.
|
|
465
|
+
A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
519
466
|
"""
|
|
520
467
|
return pulumi.get(self, "alert_resolved_payload_template")
|
|
521
468
|
|
|
@@ -523,9 +470,7 @@ class Integration(pulumi.CustomResource):
|
|
|
523
470
|
@pulumi.getter(name="alertTriggeredPayloadTemplate")
|
|
524
471
|
def alert_triggered_payload_template(self) -> pulumi.Output[Optional[str]]:
|
|
525
472
|
"""
|
|
526
|
-
A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification
|
|
527
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
528
|
-
ServiceNow. See API reference for details.
|
|
473
|
+
A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in ServiceNow. See [API reference](https://dev.splunk.com/observability/reference/api/integrations/latest) for details.
|
|
529
474
|
"""
|
|
530
475
|
return pulumi.get(self, "alert_triggered_payload_template")
|
|
531
476
|
|
|
@@ -533,7 +478,7 @@ class Integration(pulumi.CustomResource):
|
|
|
533
478
|
@pulumi.getter
|
|
534
479
|
def enabled(self) -> pulumi.Output[bool]:
|
|
535
480
|
"""
|
|
536
|
-
Whether the integration is enabled
|
|
481
|
+
Whether the integration is enabled.
|
|
537
482
|
"""
|
|
538
483
|
return pulumi.get(self, "enabled")
|
|
539
484
|
|
|
@@ -541,7 +486,7 @@ class Integration(pulumi.CustomResource):
|
|
|
541
486
|
@pulumi.getter(name="instanceName")
|
|
542
487
|
def instance_name(self) -> pulumi.Output[str]:
|
|
543
488
|
"""
|
|
544
|
-
Name of the ServiceNow instance, for example `
|
|
489
|
+
Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
545
490
|
"""
|
|
546
491
|
return pulumi.get(self, "instance_name")
|
|
547
492
|
|
|
@@ -557,7 +502,7 @@ class Integration(pulumi.CustomResource):
|
|
|
557
502
|
@pulumi.getter
|
|
558
503
|
def name(self) -> pulumi.Output[str]:
|
|
559
504
|
"""
|
|
560
|
-
Name of the integration
|
|
505
|
+
Name of the integration.
|
|
561
506
|
"""
|
|
562
507
|
return pulumi.get(self, "name")
|
|
563
508
|
|