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
pulumi_signalfx/azure/outputs.py
CHANGED
|
@@ -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__ = [
|
|
@@ -20,8 +25,8 @@ class IntegrationCustomNamespacesPerService(dict):
|
|
|
20
25
|
namespaces: Sequence[str],
|
|
21
26
|
service: str):
|
|
22
27
|
"""
|
|
23
|
-
:param Sequence[str] namespaces: The namespaces
|
|
24
|
-
:param str service: The name of the service
|
|
28
|
+
:param Sequence[str] namespaces: The additional namespaces.
|
|
29
|
+
:param str service: The name of the service.
|
|
25
30
|
"""
|
|
26
31
|
pulumi.set(__self__, "namespaces", namespaces)
|
|
27
32
|
pulumi.set(__self__, "service", service)
|
|
@@ -30,7 +35,7 @@ class IntegrationCustomNamespacesPerService(dict):
|
|
|
30
35
|
@pulumi.getter
|
|
31
36
|
def namespaces(self) -> Sequence[str]:
|
|
32
37
|
"""
|
|
33
|
-
The namespaces
|
|
38
|
+
The additional namespaces.
|
|
34
39
|
"""
|
|
35
40
|
return pulumi.get(self, "namespaces")
|
|
36
41
|
|
|
@@ -38,7 +43,7 @@ class IntegrationCustomNamespacesPerService(dict):
|
|
|
38
43
|
@pulumi.getter
|
|
39
44
|
def service(self) -> str:
|
|
40
45
|
"""
|
|
41
|
-
The name of the service
|
|
46
|
+
The name of the service.
|
|
42
47
|
"""
|
|
43
48
|
return pulumi.get(self, "service")
|
|
44
49
|
|
|
@@ -64,11 +69,17 @@ class IntegrationResourceFilterRule(dict):
|
|
|
64
69
|
|
|
65
70
|
def __init__(__self__, *,
|
|
66
71
|
filter_source: str):
|
|
72
|
+
"""
|
|
73
|
+
:param str filter_source: Expression that selects the data that Splunk Observability Cloud should sync for the resource associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function. The source of each filter rule must be in the form filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are limited to tags and must start with the azure_tag_ prefix.
|
|
74
|
+
"""
|
|
67
75
|
pulumi.set(__self__, "filter_source", filter_source)
|
|
68
76
|
|
|
69
77
|
@property
|
|
70
78
|
@pulumi.getter(name="filterSource")
|
|
71
79
|
def filter_source(self) -> str:
|
|
80
|
+
"""
|
|
81
|
+
Expression that selects the data that Splunk Observability Cloud should sync for the resource associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function. The source of each filter rule must be in the form filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are limited to tags and must start with the azure_tag_ prefix.
|
|
82
|
+
"""
|
|
72
83
|
return pulumi.get(self, "filter_source")
|
|
73
84
|
|
|
74
85
|
|
|
@@ -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
|
apiUrl: Optional[str]
|
|
@@ -24,6 +29,23 @@ customAppUrl: Optional[str]
|
|
|
24
29
|
Application URL for your Splunk Observability Cloud org, often customized for organizations using SSO
|
|
25
30
|
"""
|
|
26
31
|
|
|
32
|
+
email: Optional[str]
|
|
33
|
+
"""
|
|
34
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
|
35
|
+
Password
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
organizationId: Optional[str]
|
|
39
|
+
"""
|
|
40
|
+
Required if the user is configured to be part of multiple organizations
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
password: Optional[str]
|
|
44
|
+
"""
|
|
45
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
|
46
|
+
Password
|
|
47
|
+
"""
|
|
48
|
+
|
|
27
49
|
retryMaxAttempts: Optional[int]
|
|
28
50
|
"""
|
|
29
51
|
Max retries for a single HTTP call. Defaults to 4
|
pulumi_signalfx/config/vars.py
CHANGED
|
@@ -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
|
import types
|
|
@@ -36,6 +41,29 @@ class _ExportableConfig(types.ModuleType):
|
|
|
36
41
|
"""
|
|
37
42
|
return __config__.get('customAppUrl')
|
|
38
43
|
|
|
44
|
+
@property
|
|
45
|
+
def email(self) -> Optional[str]:
|
|
46
|
+
"""
|
|
47
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
|
48
|
+
Password
|
|
49
|
+
"""
|
|
50
|
+
return __config__.get('email')
|
|
51
|
+
|
|
52
|
+
@property
|
|
53
|
+
def organization_id(self) -> Optional[str]:
|
|
54
|
+
"""
|
|
55
|
+
Required if the user is configured to be part of multiple organizations
|
|
56
|
+
"""
|
|
57
|
+
return __config__.get('organizationId')
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
def password(self) -> Optional[str]:
|
|
61
|
+
"""
|
|
62
|
+
Used to create a session token instead of an API token, it requires the account to be configured to login with Email and
|
|
63
|
+
Password
|
|
64
|
+
"""
|
|
65
|
+
return __config__.get('password')
|
|
66
|
+
|
|
39
67
|
@property
|
|
40
68
|
def retry_max_attempts(self) -> Optional[int]:
|
|
41
69
|
"""
|