pulumi-signalfx 7.2.0a1710160099__py3-none-any.whl → 7.6.0a1736849687__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.0a1736849687.dist-info}/METADATA +7 -6
- pulumi_signalfx-7.6.0a1736849687.dist-info/RECORD +65 -0
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736849687.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.0a1736849687.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
|
|
|
@@ -315,35 +304,29 @@ class Integration(pulumi.CustomResource):
|
|
|
315
304
|
|
|
316
305
|
## Example
|
|
317
306
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
* `id` - The ID of the integration.
|
|
307
|
+
```python
|
|
308
|
+
import pulumi
|
|
309
|
+
import pulumi_signalfx as signalfx
|
|
310
|
+
|
|
311
|
+
service_now_myteam = signalfx.servicenow.Integration("service_now_myteam",
|
|
312
|
+
name="ServiceNow - My Team",
|
|
313
|
+
enabled=False,
|
|
314
|
+
username="thisis_me",
|
|
315
|
+
password="youd0ntsee1t",
|
|
316
|
+
instance_name="myinst.service-now.com",
|
|
317
|
+
issue_type="Incident",
|
|
318
|
+
alert_triggered_payload_template="{\\"short_description\\": \\"{{{messageTitle}}} (customized)\\"}",
|
|
319
|
+
alert_resolved_payload_template="{\\"close_notes\\": \\"{{{messageTitle}}} (customized close msg)\\"}")
|
|
320
|
+
```
|
|
334
321
|
|
|
335
322
|
:param str resource_name: The name of the resource.
|
|
336
323
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
337
|
-
: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
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
:param pulumi.Input[str]
|
|
341
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
342
|
-
ServiceNow. See API reference for details.
|
|
343
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
344
|
-
: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`.
|
|
345
328
|
:param pulumi.Input[str] issue_type: The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
346
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
329
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
347
330
|
:param pulumi.Input[str] password: Password used to authenticate the ServiceNow integration.
|
|
348
331
|
:param pulumi.Input[str] username: User name used to authenticate the ServiceNow integration.
|
|
349
332
|
"""
|
|
@@ -360,22 +343,20 @@ class Integration(pulumi.CustomResource):
|
|
|
360
343
|
|
|
361
344
|
## Example
|
|
362
345
|
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
* `id` - The ID of the integration.
|
|
346
|
+
```python
|
|
347
|
+
import pulumi
|
|
348
|
+
import pulumi_signalfx as signalfx
|
|
349
|
+
|
|
350
|
+
service_now_myteam = signalfx.servicenow.Integration("service_now_myteam",
|
|
351
|
+
name="ServiceNow - My Team",
|
|
352
|
+
enabled=False,
|
|
353
|
+
username="thisis_me",
|
|
354
|
+
password="youd0ntsee1t",
|
|
355
|
+
instance_name="myinst.service-now.com",
|
|
356
|
+
issue_type="Incident",
|
|
357
|
+
alert_triggered_payload_template="{\\"short_description\\": \\"{{{messageTitle}}} (customized)\\"}",
|
|
358
|
+
alert_resolved_payload_template="{\\"close_notes\\": \\"{{{messageTitle}}} (customized close msg)\\"}")
|
|
359
|
+
```
|
|
379
360
|
|
|
380
361
|
:param str resource_name: The name of the resource.
|
|
381
362
|
:param IntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -454,16 +435,12 @@ class Integration(pulumi.CustomResource):
|
|
|
454
435
|
:param str resource_name: The unique name of the resulting resource.
|
|
455
436
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
456
437
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
457
|
-
: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
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
:param pulumi.Input[str]
|
|
461
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
462
|
-
ServiceNow. See API reference for details.
|
|
463
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
464
|
-
: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`.
|
|
465
442
|
:param pulumi.Input[str] issue_type: The type of issue in standard ITIL terminology. The allowed values are `Incident` and `Problem`.
|
|
466
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
443
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
467
444
|
:param pulumi.Input[str] password: Password used to authenticate the ServiceNow integration.
|
|
468
445
|
:param pulumi.Input[str] username: User name used to authenticate the ServiceNow integration.
|
|
469
446
|
"""
|
|
@@ -485,9 +462,7 @@ class Integration(pulumi.CustomResource):
|
|
|
485
462
|
@pulumi.getter(name="alertResolvedPayloadTemplate")
|
|
486
463
|
def alert_resolved_payload_template(self) -> pulumi.Output[Optional[str]]:
|
|
487
464
|
"""
|
|
488
|
-
A template that Observability Cloud uses to create the ServiceNow PUT JSON payloads when an alert is cleared in
|
|
489
|
-
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.
|
|
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.
|
|
491
466
|
"""
|
|
492
467
|
return pulumi.get(self, "alert_resolved_payload_template")
|
|
493
468
|
|
|
@@ -495,9 +470,7 @@ class Integration(pulumi.CustomResource):
|
|
|
495
470
|
@pulumi.getter(name="alertTriggeredPayloadTemplate")
|
|
496
471
|
def alert_triggered_payload_template(self) -> pulumi.Output[Optional[str]]:
|
|
497
472
|
"""
|
|
498
|
-
A template that Observability Cloud uses to create the ServiceNow POST JSON payloads when an alert sends a notification
|
|
499
|
-
to ServiceNow. Use this optional field to send the values of Observability Cloud alert properties to specific fields in
|
|
500
|
-
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.
|
|
501
474
|
"""
|
|
502
475
|
return pulumi.get(self, "alert_triggered_payload_template")
|
|
503
476
|
|
|
@@ -505,7 +478,7 @@ class Integration(pulumi.CustomResource):
|
|
|
505
478
|
@pulumi.getter
|
|
506
479
|
def enabled(self) -> pulumi.Output[bool]:
|
|
507
480
|
"""
|
|
508
|
-
Whether the integration is enabled
|
|
481
|
+
Whether the integration is enabled.
|
|
509
482
|
"""
|
|
510
483
|
return pulumi.get(self, "enabled")
|
|
511
484
|
|
|
@@ -513,7 +486,7 @@ class Integration(pulumi.CustomResource):
|
|
|
513
486
|
@pulumi.getter(name="instanceName")
|
|
514
487
|
def instance_name(self) -> pulumi.Output[str]:
|
|
515
488
|
"""
|
|
516
|
-
Name of the ServiceNow instance, for example `
|
|
489
|
+
Name of the ServiceNow instance, for example `myinst.service-now.com`.
|
|
517
490
|
"""
|
|
518
491
|
return pulumi.get(self, "instance_name")
|
|
519
492
|
|
|
@@ -529,7 +502,7 @@ class Integration(pulumi.CustomResource):
|
|
|
529
502
|
@pulumi.getter
|
|
530
503
|
def name(self) -> pulumi.Output[str]:
|
|
531
504
|
"""
|
|
532
|
-
Name of the integration
|
|
505
|
+
Name of the integration.
|
|
533
506
|
"""
|
|
534
507
|
return pulumi.get(self, "name")
|
|
535
508
|
|