pulumi-signalfx 7.2.0a1710160099__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 +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.0a1736835428.dist-info}/METADATA +7 -6
- pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.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.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
|
|
|
@@ -438,41 +435,35 @@ class Integration(pulumi.CustomResource):
|
|
|
438
435
|
|
|
439
436
|
## Example
|
|
440
437
|
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
459
|
-
|
|
460
|
-
* `id` - The ID of the integration.
|
|
438
|
+
```python
|
|
439
|
+
import pulumi
|
|
440
|
+
import pulumi_signalfx as signalfx
|
|
441
|
+
|
|
442
|
+
jira_myteam_xx = signalfx.jira.Integration("jira_myteamXX",
|
|
443
|
+
name="JiraFoo",
|
|
444
|
+
enabled=False,
|
|
445
|
+
auth_method="UsernameAndPassword",
|
|
446
|
+
username="yoosername",
|
|
447
|
+
password="paasword",
|
|
448
|
+
assignee_name="testytesterson",
|
|
449
|
+
assignee_display_name="Testy Testerson",
|
|
450
|
+
base_url="https://www.example.com",
|
|
451
|
+
issue_type="Story",
|
|
452
|
+
project_key="TEST")
|
|
453
|
+
```
|
|
461
454
|
|
|
462
455
|
:param str resource_name: The name of the resource.
|
|
463
456
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
464
457
|
:param pulumi.Input[str] api_token: The API token for the user email
|
|
465
|
-
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee
|
|
466
|
-
:param pulumi.Input[str] assignee_name: Jira user name for the assignee
|
|
467
|
-
: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`).
|
|
468
461
|
:param pulumi.Input[str] base_url: Base URL of the Jira instance that's integrated with SignalFx.
|
|
469
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
470
|
-
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
471
|
-
|
|
472
|
-
: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.
|
|
473
465
|
:param pulumi.Input[str] password: Password used to authenticate the Jira integration.
|
|
474
|
-
: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
|
|
475
|
-
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.
|
|
476
467
|
:param pulumi.Input[str] user_email: Email address used to authenticate the Jira integration.
|
|
477
468
|
:param pulumi.Input[str] username: User name used to authenticate the Jira integration.
|
|
478
469
|
"""
|
|
@@ -489,26 +480,22 @@ class Integration(pulumi.CustomResource):
|
|
|
489
480
|
|
|
490
481
|
## Example
|
|
491
482
|
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
510
|
-
|
|
511
|
-
* `id` - The ID of the integration.
|
|
483
|
+
```python
|
|
484
|
+
import pulumi
|
|
485
|
+
import pulumi_signalfx as signalfx
|
|
486
|
+
|
|
487
|
+
jira_myteam_xx = signalfx.jira.Integration("jira_myteamXX",
|
|
488
|
+
name="JiraFoo",
|
|
489
|
+
enabled=False,
|
|
490
|
+
auth_method="UsernameAndPassword",
|
|
491
|
+
username="yoosername",
|
|
492
|
+
password="paasword",
|
|
493
|
+
assignee_name="testytesterson",
|
|
494
|
+
assignee_display_name="Testy Testerson",
|
|
495
|
+
base_url="https://www.example.com",
|
|
496
|
+
issue_type="Story",
|
|
497
|
+
project_key="TEST")
|
|
498
|
+
```
|
|
512
499
|
|
|
513
500
|
:param str resource_name: The name of the resource.
|
|
514
501
|
:param IntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -602,17 +589,15 @@ class Integration(pulumi.CustomResource):
|
|
|
602
589
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
603
590
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
604
591
|
:param pulumi.Input[str] api_token: The API token for the user email
|
|
605
|
-
:param pulumi.Input[str] assignee_display_name: Jira display name for the assignee
|
|
606
|
-
:param pulumi.Input[str] assignee_name: Jira user name for the assignee
|
|
607
|
-
: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`).
|
|
608
595
|
:param pulumi.Input[str] base_url: Base URL of the Jira instance that's integrated with SignalFx.
|
|
609
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
610
|
-
:param pulumi.Input[str] issue_type: Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
611
|
-
|
|
612
|
-
: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.
|
|
613
599
|
:param pulumi.Input[str] password: Password used to authenticate the Jira integration.
|
|
614
|
-
: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
|
|
615
|
-
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.
|
|
616
601
|
:param pulumi.Input[str] user_email: Email address used to authenticate the Jira integration.
|
|
617
602
|
:param pulumi.Input[str] username: User name used to authenticate the Jira integration.
|
|
618
603
|
"""
|
|
@@ -646,7 +631,7 @@ class Integration(pulumi.CustomResource):
|
|
|
646
631
|
@pulumi.getter(name="assigneeDisplayName")
|
|
647
632
|
def assignee_display_name(self) -> pulumi.Output[Optional[str]]:
|
|
648
633
|
"""
|
|
649
|
-
Jira display name for the assignee
|
|
634
|
+
Jira display name for the assignee.
|
|
650
635
|
"""
|
|
651
636
|
return pulumi.get(self, "assignee_display_name")
|
|
652
637
|
|
|
@@ -654,7 +639,7 @@ class Integration(pulumi.CustomResource):
|
|
|
654
639
|
@pulumi.getter(name="assigneeName")
|
|
655
640
|
def assignee_name(self) -> pulumi.Output[str]:
|
|
656
641
|
"""
|
|
657
|
-
Jira user name for the assignee
|
|
642
|
+
Jira user name for the assignee.
|
|
658
643
|
"""
|
|
659
644
|
return pulumi.get(self, "assignee_name")
|
|
660
645
|
|
|
@@ -662,7 +647,7 @@ class Integration(pulumi.CustomResource):
|
|
|
662
647
|
@pulumi.getter(name="authMethod")
|
|
663
648
|
def auth_method(self) -> pulumi.Output[str]:
|
|
664
649
|
"""
|
|
665
|
-
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`).
|
|
666
651
|
"""
|
|
667
652
|
return pulumi.get(self, "auth_method")
|
|
668
653
|
|
|
@@ -678,7 +663,7 @@ class Integration(pulumi.CustomResource):
|
|
|
678
663
|
@pulumi.getter
|
|
679
664
|
def enabled(self) -> pulumi.Output[bool]:
|
|
680
665
|
"""
|
|
681
|
-
Whether the integration is enabled
|
|
666
|
+
Whether the integration is enabled.
|
|
682
667
|
"""
|
|
683
668
|
return pulumi.get(self, "enabled")
|
|
684
669
|
|
|
@@ -686,8 +671,7 @@ class Integration(pulumi.CustomResource):
|
|
|
686
671
|
@pulumi.getter(name="issueType")
|
|
687
672
|
def issue_type(self) -> pulumi.Output[str]:
|
|
688
673
|
"""
|
|
689
|
-
Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud
|
|
690
|
-
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`.
|
|
691
675
|
"""
|
|
692
676
|
return pulumi.get(self, "issue_type")
|
|
693
677
|
|
|
@@ -695,7 +679,7 @@ class Integration(pulumi.CustomResource):
|
|
|
695
679
|
@pulumi.getter
|
|
696
680
|
def name(self) -> pulumi.Output[str]:
|
|
697
681
|
"""
|
|
698
|
-
Name of the integration
|
|
682
|
+
Name of the integration.
|
|
699
683
|
"""
|
|
700
684
|
return pulumi.get(self, "name")
|
|
701
685
|
|
|
@@ -711,8 +695,7 @@ class Integration(pulumi.CustomResource):
|
|
|
711
695
|
@pulumi.getter(name="projectKey")
|
|
712
696
|
def project_key(self) -> pulumi.Output[str]:
|
|
713
697
|
"""
|
|
714
|
-
Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to
|
|
715
|
-
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.
|
|
716
699
|
"""
|
|
717
700
|
return pulumi.get(self, "project_key")
|
|
718
701
|
|