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.
Files changed (54) hide show
  1. pulumi_signalfx/__init__.py +9 -0
  2. pulumi_signalfx/_inputs.py +1976 -339
  3. pulumi_signalfx/_utilities.py +41 -5
  4. pulumi_signalfx/alert_muting_rule.py +126 -72
  5. pulumi_signalfx/aws/_inputs.py +85 -16
  6. pulumi_signalfx/aws/external_integration.py +20 -43
  7. pulumi_signalfx/aws/integration.py +252 -321
  8. pulumi_signalfx/aws/outputs.py +21 -16
  9. pulumi_signalfx/aws/token_integration.py +76 -31
  10. pulumi_signalfx/azure/_inputs.py +41 -4
  11. pulumi_signalfx/azure/integration.py +170 -217
  12. pulumi_signalfx/azure/outputs.py +15 -4
  13. pulumi_signalfx/config/__init__.pyi +22 -0
  14. pulumi_signalfx/config/vars.py +28 -0
  15. pulumi_signalfx/dashboard.py +171 -186
  16. pulumi_signalfx/dashboard_group.py +191 -140
  17. pulumi_signalfx/data_link.py +102 -109
  18. pulumi_signalfx/detector.py +318 -383
  19. pulumi_signalfx/event_feed_chart.py +51 -86
  20. pulumi_signalfx/gcp/_inputs.py +51 -0
  21. pulumi_signalfx/gcp/integration.py +224 -148
  22. pulumi_signalfx/gcp/outputs.py +44 -0
  23. pulumi_signalfx/get_dimension_values.py +47 -8
  24. pulumi_signalfx/heatmap_chart.py +191 -174
  25. pulumi_signalfx/jira/integration.py +86 -103
  26. pulumi_signalfx/list_chart.py +243 -255
  27. pulumi_signalfx/log/_inputs.py +33 -2
  28. pulumi_signalfx/log/outputs.py +7 -2
  29. pulumi_signalfx/log/timeline.py +76 -87
  30. pulumi_signalfx/log/view.py +146 -113
  31. pulumi_signalfx/metric_ruleset.py +213 -70
  32. pulumi_signalfx/opsgenie/integration.py +51 -50
  33. pulumi_signalfx/org_token.py +111 -104
  34. pulumi_signalfx/outputs.py +661 -339
  35. pulumi_signalfx/pagerduty/get_integration.py +22 -25
  36. pulumi_signalfx/pagerduty/integration.py +42 -39
  37. pulumi_signalfx/provider.py +99 -0
  38. pulumi_signalfx/pulumi-plugin.json +2 -1
  39. pulumi_signalfx/servicenow/integration.py +68 -95
  40. pulumi_signalfx/single_value_chart.py +131 -162
  41. pulumi_signalfx/slack/integration.py +42 -41
  42. pulumi_signalfx/slo.py +97 -243
  43. pulumi_signalfx/slo_chart.py +197 -0
  44. pulumi_signalfx/table_chart.py +66 -65
  45. pulumi_signalfx/team.py +100 -107
  46. pulumi_signalfx/text_chart.py +72 -45
  47. pulumi_signalfx/time_chart.py +287 -352
  48. pulumi_signalfx/victorops/integration.py +42 -41
  49. pulumi_signalfx/webhook_integration.py +168 -61
  50. {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/METADATA +7 -6
  51. pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
  52. {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
  53. pulumi_signalfx-7.2.0a1710160099.dist-info/RECORD +0 -64
  54. {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__ = [
@@ -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 to sync
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 to sync
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
@@ -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
  """