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']
|
|
@@ -28,17 +33,15 @@ class IntegrationArgs:
|
|
|
28
33
|
username: Optional[pulumi.Input[str]] = None):
|
|
29
34
|
"""
|
|
30
35
|
The set of arguments for constructing a Integration resource.
|
|
31
|
-
:param pulumi.Input[str] assignee_name: Jira user name for the assignee
|
|
32
|
-
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` or `UsernameAndPassword`
|
|
36
|
+
:param pulumi.Input[str] assignee_name: Jira user name for the assignee.
|
|
37
|
+
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
33
38
|
:param pulumi.Input[str] base_url: Base URL of the Jira instance that's integrated with SignalFx.
|
|
34
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
35
|
-
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
36
|
-
|
|
37
|
-
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
38
|
-
this project.
|
|
39
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
40
|
+
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
41
|
+
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
39
42
|
:param pulumi.Input[str] api_token: The API token for the user email
|
|
40
|
-
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee
|
|
41
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
43
|
+
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee.
|
|
44
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
42
45
|
:param pulumi.Input[str] password: Password used to authenticate the Jira integration.
|
|
43
46
|
:param pulumi.Input[str] user_email: Email address used to authenticate the Jira integration.
|
|
44
47
|
:param pulumi.Input[str] username: User name used to authenticate the Jira integration.
|
|
@@ -66,7 +69,7 @@ class IntegrationArgs:
|
|
|
66
69
|
@pulumi.getter(name="assigneeName")
|
|
67
70
|
def assignee_name(self) -> pulumi.Input[str]:
|
|
68
71
|
"""
|
|
69
|
-
Jira user name for the assignee
|
|
72
|
+
Jira user name for the assignee.
|
|
70
73
|
"""
|
|
71
74
|
return pulumi.get(self, "assignee_name")
|
|
72
75
|
|
|
@@ -78,7 +81,7 @@ class IntegrationArgs:
|
|
|
78
81
|
@pulumi.getter(name="authMethod")
|
|
79
82
|
def auth_method(self) -> pulumi.Input[str]:
|
|
80
83
|
"""
|
|
81
|
-
Authentication method used when creating the Jira integration. One of `EmailAndToken` or `UsernameAndPassword`
|
|
84
|
+
Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
82
85
|
"""
|
|
83
86
|
return pulumi.get(self, "auth_method")
|
|
84
87
|
|
|
@@ -102,7 +105,7 @@ class IntegrationArgs:
|
|
|
102
105
|
@pulumi.getter
|
|
103
106
|
def enabled(self) -> pulumi.Input[bool]:
|
|
104
107
|
"""
|
|
105
|
-
Whether the integration is enabled
|
|
108
|
+
Whether the integration is enabled.
|
|
106
109
|
"""
|
|
107
110
|
return pulumi.get(self, "enabled")
|
|
108
111
|
|
|
@@ -114,8 +117,7 @@ class IntegrationArgs:
|
|
|
114
117
|
@pulumi.getter(name="issueType")
|
|
115
118
|
def issue_type(self) -> pulumi.Input[str]:
|
|
116
119
|
"""
|
|
117
|
-
Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
118
|
-
validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
120
|
+
Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
119
121
|
"""
|
|
120
122
|
return pulumi.get(self, "issue_type")
|
|
121
123
|
|
|
@@ -127,8 +129,7 @@ class IntegrationArgs:
|
|
|
127
129
|
@pulumi.getter(name="projectKey")
|
|
128
130
|
def project_key(self) -> pulumi.Input[str]:
|
|
129
131
|
"""
|
|
130
|
-
Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
131
|
-
this project.
|
|
132
|
+
Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
132
133
|
"""
|
|
133
134
|
return pulumi.get(self, "project_key")
|
|
134
135
|
|
|
@@ -152,7 +153,7 @@ class IntegrationArgs:
|
|
|
152
153
|
@pulumi.getter(name="assigneeDisplayName")
|
|
153
154
|
def assignee_display_name(self) -> Optional[pulumi.Input[str]]:
|
|
154
155
|
"""
|
|
155
|
-
Jira display name for the assignee
|
|
156
|
+
Jira display name for the assignee.
|
|
156
157
|
"""
|
|
157
158
|
return pulumi.get(self, "assignee_display_name")
|
|
158
159
|
|
|
@@ -164,7 +165,7 @@ class IntegrationArgs:
|
|
|
164
165
|
@pulumi.getter
|
|
165
166
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
166
167
|
"""
|
|
167
|
-
Name of the integration
|
|
168
|
+
Name of the integration.
|
|
168
169
|
"""
|
|
169
170
|
return pulumi.get(self, "name")
|
|
170
171
|
|
|
@@ -227,17 +228,15 @@ class _IntegrationState:
|
|
|
227
228
|
"""
|
|
228
229
|
Input properties used for looking up and filtering Integration resources.
|
|
229
230
|
:param pulumi.Input[str] api_token: The API token for the user email
|
|
230
|
-
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee
|
|
231
|
-
:param pulumi.Input[str] assignee_name: Jira user name for the assignee
|
|
232
|
-
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` or `UsernameAndPassword`
|
|
231
|
+
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee.
|
|
232
|
+
:param pulumi.Input[str] assignee_name: Jira user name for the assignee.
|
|
233
|
+
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
233
234
|
:param pulumi.Input[str] base_url: Base URL of the Jira instance that's integrated with SignalFx.
|
|
234
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
235
|
-
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
236
|
-
|
|
237
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
235
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
236
|
+
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
237
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
238
238
|
:param pulumi.Input[str] password: Password used to authenticate the Jira integration.
|
|
239
|
-
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
240
|
-
this project.
|
|
239
|
+
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
241
240
|
:param pulumi.Input[str] user_email: Email address used to authenticate the Jira integration.
|
|
242
241
|
:param pulumi.Input[str] username: User name used to authenticate the Jira integration.
|
|
243
242
|
"""
|
|
@@ -282,7 +281,7 @@ class _IntegrationState:
|
|
|
282
281
|
@pulumi.getter(name="assigneeDisplayName")
|
|
283
282
|
def assignee_display_name(self) -> Optional[pulumi.Input[str]]:
|
|
284
283
|
"""
|
|
285
|
-
Jira display name for the assignee
|
|
284
|
+
Jira display name for the assignee.
|
|
286
285
|
"""
|
|
287
286
|
return pulumi.get(self, "assignee_display_name")
|
|
288
287
|
|
|
@@ -294,7 +293,7 @@ class _IntegrationState:
|
|
|
294
293
|
@pulumi.getter(name="assigneeName")
|
|
295
294
|
def assignee_name(self) -> Optional[pulumi.Input[str]]:
|
|
296
295
|
"""
|
|
297
|
-
Jira user name for the assignee
|
|
296
|
+
Jira user name for the assignee.
|
|
298
297
|
"""
|
|
299
298
|
return pulumi.get(self, "assignee_name")
|
|
300
299
|
|
|
@@ -306,7 +305,7 @@ class _IntegrationState:
|
|
|
306
305
|
@pulumi.getter(name="authMethod")
|
|
307
306
|
def auth_method(self) -> Optional[pulumi.Input[str]]:
|
|
308
307
|
"""
|
|
309
|
-
Authentication method used when creating the Jira integration. One of `EmailAndToken` or `UsernameAndPassword`
|
|
308
|
+
Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
310
309
|
"""
|
|
311
310
|
return pulumi.get(self, "auth_method")
|
|
312
311
|
|
|
@@ -330,7 +329,7 @@ class _IntegrationState:
|
|
|
330
329
|
@pulumi.getter
|
|
331
330
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
332
331
|
"""
|
|
333
|
-
Whether the integration is enabled
|
|
332
|
+
Whether the integration is enabled.
|
|
334
333
|
"""
|
|
335
334
|
return pulumi.get(self, "enabled")
|
|
336
335
|
|
|
@@ -342,8 +341,7 @@ class _IntegrationState:
|
|
|
342
341
|
@pulumi.getter(name="issueType")
|
|
343
342
|
def issue_type(self) -> Optional[pulumi.Input[str]]:
|
|
344
343
|
"""
|
|
345
|
-
Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
346
|
-
validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
344
|
+
Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
347
345
|
"""
|
|
348
346
|
return pulumi.get(self, "issue_type")
|
|
349
347
|
|
|
@@ -355,7 +353,7 @@ class _IntegrationState:
|
|
|
355
353
|
@pulumi.getter
|
|
356
354
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
357
355
|
"""
|
|
358
|
-
Name of the integration
|
|
356
|
+
Name of the integration.
|
|
359
357
|
"""
|
|
360
358
|
return pulumi.get(self, "name")
|
|
361
359
|
|
|
@@ -379,8 +377,7 @@ class _IntegrationState:
|
|
|
379
377
|
@pulumi.getter(name="projectKey")
|
|
380
378
|
def project_key(self) -> Optional[pulumi.Input[str]]:
|
|
381
379
|
"""
|
|
382
|
-
Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
383
|
-
this project.
|
|
380
|
+
Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
384
381
|
"""
|
|
385
382
|
return pulumi.get(self, "project_key")
|
|
386
383
|
|
|
@@ -442,53 +439,31 @@ class Integration(pulumi.CustomResource):
|
|
|
442
439
|
import pulumi
|
|
443
440
|
import pulumi_signalfx as signalfx
|
|
444
441
|
|
|
445
|
-
jira_myteam_xx = signalfx.jira.Integration("
|
|
446
|
-
|
|
447
|
-
|
|
442
|
+
jira_myteam_xx = signalfx.jira.Integration("jira_myteamXX",
|
|
443
|
+
name="JiraFoo",
|
|
444
|
+
enabled=False,
|
|
448
445
|
auth_method="UsernameAndPassword",
|
|
446
|
+
username="yoosername",
|
|
447
|
+
password="paasword",
|
|
448
|
+
assignee_name="testytesterson",
|
|
449
|
+
assignee_display_name="Testy Testerson",
|
|
449
450
|
base_url="https://www.example.com",
|
|
450
|
-
enabled=False,
|
|
451
451
|
issue_type="Story",
|
|
452
|
-
|
|
453
|
-
project_key="TEST",
|
|
454
|
-
username="yoosername")
|
|
452
|
+
project_key="TEST")
|
|
455
453
|
```
|
|
456
454
|
|
|
457
|
-
## Arguments
|
|
458
|
-
|
|
459
|
-
* `name` - (Required) Name of the integration.
|
|
460
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
461
|
-
* `auth_method` - (Required) Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
462
|
-
* `api_token` - (Required if `auth_method` is `EmailAndToken`) The API token for the user email
|
|
463
|
-
* `user_email` - (Required if `auth_method` is `EmailAndToken`) Email address used to authenticate the Jira integration.
|
|
464
|
-
* `username` - (Required if `auth_method` is `UsernameAndPassword`) User name used to authenticate the Jira integration.
|
|
465
|
-
* `password` - (Required if `auth_method` is `UsernameAndPassword`) Password used to authenticate the Jira integration.
|
|
466
|
-
* `base_url` - (Required) Base URL of the Jira instance that's integrated with SignalFx.
|
|
467
|
-
* `issue_type` - (Required) Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
468
|
-
* `project_key` - (Required) Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
469
|
-
* `assignee_name` - (Required) Jira user name for the assignee.
|
|
470
|
-
* `assignee_display_name` - (Optional) Jira display name for the assignee.
|
|
471
|
-
|
|
472
|
-
## Attributes
|
|
473
|
-
|
|
474
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
475
|
-
|
|
476
|
-
* `id` - The ID of the integration.
|
|
477
|
-
|
|
478
455
|
:param str resource_name: The name of the resource.
|
|
479
456
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
480
457
|
:param pulumi.Input[str] api_token: The API token for the user email
|
|
481
|
-
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee
|
|
482
|
-
:param pulumi.Input[str] assignee_name: Jira user name for the assignee
|
|
483
|
-
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` or `UsernameAndPassword`
|
|
458
|
+
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee.
|
|
459
|
+
:param pulumi.Input[str] assignee_name: Jira user name for the assignee.
|
|
460
|
+
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
484
461
|
:param pulumi.Input[str] base_url: Base URL of the Jira instance that's integrated with SignalFx.
|
|
485
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
486
|
-
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
487
|
-
|
|
488
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
462
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
463
|
+
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
464
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
489
465
|
:param pulumi.Input[str] password: Password used to authenticate the Jira integration.
|
|
490
|
-
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
491
|
-
this project.
|
|
466
|
+
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
492
467
|
:param pulumi.Input[str] user_email: Email address used to authenticate the Jira integration.
|
|
493
468
|
:param pulumi.Input[str] username: User name used to authenticate the Jira integration.
|
|
494
469
|
"""
|
|
@@ -509,39 +484,19 @@ class Integration(pulumi.CustomResource):
|
|
|
509
484
|
import pulumi
|
|
510
485
|
import pulumi_signalfx as signalfx
|
|
511
486
|
|
|
512
|
-
jira_myteam_xx = signalfx.jira.Integration("
|
|
513
|
-
|
|
514
|
-
|
|
487
|
+
jira_myteam_xx = signalfx.jira.Integration("jira_myteamXX",
|
|
488
|
+
name="JiraFoo",
|
|
489
|
+
enabled=False,
|
|
515
490
|
auth_method="UsernameAndPassword",
|
|
491
|
+
username="yoosername",
|
|
492
|
+
password="paasword",
|
|
493
|
+
assignee_name="testytesterson",
|
|
494
|
+
assignee_display_name="Testy Testerson",
|
|
516
495
|
base_url="https://www.example.com",
|
|
517
|
-
enabled=False,
|
|
518
496
|
issue_type="Story",
|
|
519
|
-
|
|
520
|
-
project_key="TEST",
|
|
521
|
-
username="yoosername")
|
|
497
|
+
project_key="TEST")
|
|
522
498
|
```
|
|
523
499
|
|
|
524
|
-
## Arguments
|
|
525
|
-
|
|
526
|
-
* `name` - (Required) Name of the integration.
|
|
527
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
528
|
-
* `auth_method` - (Required) Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
529
|
-
* `api_token` - (Required if `auth_method` is `EmailAndToken`) The API token for the user email
|
|
530
|
-
* `user_email` - (Required if `auth_method` is `EmailAndToken`) Email address used to authenticate the Jira integration.
|
|
531
|
-
* `username` - (Required if `auth_method` is `UsernameAndPassword`) User name used to authenticate the Jira integration.
|
|
532
|
-
* `password` - (Required if `auth_method` is `UsernameAndPassword`) Password used to authenticate the Jira integration.
|
|
533
|
-
* `base_url` - (Required) Base URL of the Jira instance that's integrated with SignalFx.
|
|
534
|
-
* `issue_type` - (Required) Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
535
|
-
* `project_key` - (Required) Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
536
|
-
* `assignee_name` - (Required) Jira user name for the assignee.
|
|
537
|
-
* `assignee_display_name` - (Optional) Jira display name for the assignee.
|
|
538
|
-
|
|
539
|
-
## Attributes
|
|
540
|
-
|
|
541
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
542
|
-
|
|
543
|
-
* `id` - The ID of the integration.
|
|
544
|
-
|
|
545
500
|
:param str resource_name: The name of the resource.
|
|
546
501
|
:param IntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
547
502
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -634,17 +589,15 @@ class Integration(pulumi.CustomResource):
|
|
|
634
589
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
635
590
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
636
591
|
:param pulumi.Input[str] api_token: The API token for the user email
|
|
637
|
-
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee
|
|
638
|
-
:param pulumi.Input[str] assignee_name: Jira user name for the assignee
|
|
639
|
-
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` or `UsernameAndPassword`
|
|
592
|
+
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee.
|
|
593
|
+
:param pulumi.Input[str] assignee_name: Jira user name for the assignee.
|
|
594
|
+
:param pulumi.Input[str] auth_method: Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
640
595
|
:param pulumi.Input[str] base_url: Base URL of the Jira instance that's integrated with SignalFx.
|
|
641
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
642
|
-
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
643
|
-
|
|
644
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
596
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
597
|
+
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
598
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
645
599
|
:param pulumi.Input[str] password: Password used to authenticate the Jira integration.
|
|
646
|
-
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
647
|
-
this project.
|
|
600
|
+
:param pulumi.Input[str] project_key: Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
648
601
|
:param pulumi.Input[str] user_email: Email address used to authenticate the Jira integration.
|
|
649
602
|
:param pulumi.Input[str] username: User name used to authenticate the Jira integration.
|
|
650
603
|
"""
|
|
@@ -678,7 +631,7 @@ class Integration(pulumi.CustomResource):
|
|
|
678
631
|
@pulumi.getter(name="assigneeDisplayName")
|
|
679
632
|
def assignee_display_name(self) -> pulumi.Output[Optional[str]]:
|
|
680
633
|
"""
|
|
681
|
-
Jira display name for the assignee
|
|
634
|
+
Jira display name for the assignee.
|
|
682
635
|
"""
|
|
683
636
|
return pulumi.get(self, "assignee_display_name")
|
|
684
637
|
|
|
@@ -686,7 +639,7 @@ class Integration(pulumi.CustomResource):
|
|
|
686
639
|
@pulumi.getter(name="assigneeName")
|
|
687
640
|
def assignee_name(self) -> pulumi.Output[str]:
|
|
688
641
|
"""
|
|
689
|
-
Jira user name for the assignee
|
|
642
|
+
Jira user name for the assignee.
|
|
690
643
|
"""
|
|
691
644
|
return pulumi.get(self, "assignee_name")
|
|
692
645
|
|
|
@@ -694,7 +647,7 @@ class Integration(pulumi.CustomResource):
|
|
|
694
647
|
@pulumi.getter(name="authMethod")
|
|
695
648
|
def auth_method(self) -> pulumi.Output[str]:
|
|
696
649
|
"""
|
|
697
|
-
Authentication method used when creating the Jira integration. One of `EmailAndToken` or `UsernameAndPassword`
|
|
650
|
+
Authentication method used when creating the Jira integration. One of `EmailAndToken` (using `user_email` and `api_token`) or `UsernameAndPassword` (using `username` and `password`).
|
|
698
651
|
"""
|
|
699
652
|
return pulumi.get(self, "auth_method")
|
|
700
653
|
|
|
@@ -710,7 +663,7 @@ class Integration(pulumi.CustomResource):
|
|
|
710
663
|
@pulumi.getter
|
|
711
664
|
def enabled(self) -> pulumi.Output[bool]:
|
|
712
665
|
"""
|
|
713
|
-
Whether the integration is enabled
|
|
666
|
+
Whether the integration is enabled.
|
|
714
667
|
"""
|
|
715
668
|
return pulumi.get(self, "enabled")
|
|
716
669
|
|
|
@@ -718,8 +671,7 @@ class Integration(pulumi.CustomResource):
|
|
|
718
671
|
@pulumi.getter(name="issueType")
|
|
719
672
|
def issue_type(self) -> pulumi.Output[str]:
|
|
720
673
|
"""
|
|
721
|
-
Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
722
|
-
validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
674
|
+
Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in `projectKey`.
|
|
723
675
|
"""
|
|
724
676
|
return pulumi.get(self, "issue_type")
|
|
725
677
|
|
|
@@ -727,7 +679,7 @@ class Integration(pulumi.CustomResource):
|
|
|
727
679
|
@pulumi.getter
|
|
728
680
|
def name(self) -> pulumi.Output[str]:
|
|
729
681
|
"""
|
|
730
|
-
Name of the integration
|
|
682
|
+
Name of the integration.
|
|
731
683
|
"""
|
|
732
684
|
return pulumi.get(self, "name")
|
|
733
685
|
|
|
@@ -743,8 +695,7 @@ class Integration(pulumi.CustomResource):
|
|
|
743
695
|
@pulumi.getter(name="projectKey")
|
|
744
696
|
def project_key(self) -> pulumi.Output[str]:
|
|
745
697
|
"""
|
|
746
|
-
Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
747
|
-
this project.
|
|
698
|
+
Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
|
|
748
699
|
"""
|
|
749
700
|
return pulumi.get(self, "project_key")
|
|
750
701
|
|