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__ = ['IntegrationArgs', 'Integration']
@@ -19,9 +24,9 @@ class IntegrationArgs:
19
24
  name: Optional[pulumi.Input[str]] = None):
20
25
  """
21
26
  The set of arguments for constructing a Integration resource.
22
- :param pulumi.Input[bool] enabled: Whether the integration is enabled or not
23
- :param pulumi.Input[str] webhook_url: Slack Webhook URL for integration
24
- :param pulumi.Input[str] name: Name of the integration
27
+ :param pulumi.Input[bool] enabled: Whether the integration is enabled.
28
+ :param pulumi.Input[str] webhook_url: Slack incoming webhook URL.
29
+ :param pulumi.Input[str] name: Name of the integration.
25
30
  """
26
31
  pulumi.set(__self__, "enabled", enabled)
27
32
  pulumi.set(__self__, "webhook_url", webhook_url)
@@ -32,7 +37,7 @@ class IntegrationArgs:
32
37
  @pulumi.getter
33
38
  def enabled(self) -> pulumi.Input[bool]:
34
39
  """
35
- Whether the integration is enabled or not
40
+ Whether the integration is enabled.
36
41
  """
37
42
  return pulumi.get(self, "enabled")
38
43
 
@@ -44,7 +49,7 @@ class IntegrationArgs:
44
49
  @pulumi.getter(name="webhookUrl")
45
50
  def webhook_url(self) -> pulumi.Input[str]:
46
51
  """
47
- Slack Webhook URL for integration
52
+ Slack incoming webhook URL.
48
53
  """
49
54
  return pulumi.get(self, "webhook_url")
50
55
 
@@ -56,7 +61,7 @@ class IntegrationArgs:
56
61
  @pulumi.getter
57
62
  def name(self) -> Optional[pulumi.Input[str]]:
58
63
  """
59
- Name of the integration
64
+ Name of the integration.
60
65
  """
61
66
  return pulumi.get(self, "name")
62
67
 
@@ -73,9 +78,9 @@ class _IntegrationState:
73
78
  webhook_url: Optional[pulumi.Input[str]] = None):
74
79
  """
75
80
  Input properties used for looking up and filtering Integration resources.
76
- :param pulumi.Input[bool] enabled: Whether the integration is enabled or not
77
- :param pulumi.Input[str] name: Name of the integration
78
- :param pulumi.Input[str] webhook_url: Slack Webhook URL for integration
81
+ :param pulumi.Input[bool] enabled: Whether the integration is enabled.
82
+ :param pulumi.Input[str] name: Name of the integration.
83
+ :param pulumi.Input[str] webhook_url: Slack incoming webhook URL.
79
84
  """
80
85
  if enabled is not None:
81
86
  pulumi.set(__self__, "enabled", enabled)
@@ -88,7 +93,7 @@ class _IntegrationState:
88
93
  @pulumi.getter
89
94
  def enabled(self) -> Optional[pulumi.Input[bool]]:
90
95
  """
91
- Whether the integration is enabled or not
96
+ Whether the integration is enabled.
92
97
  """
93
98
  return pulumi.get(self, "enabled")
94
99
 
@@ -100,7 +105,7 @@ class _IntegrationState:
100
105
  @pulumi.getter
101
106
  def name(self) -> Optional[pulumi.Input[str]]:
102
107
  """
103
- Name of the integration
108
+ Name of the integration.
104
109
  """
105
110
  return pulumi.get(self, "name")
106
111
 
@@ -112,7 +117,7 @@ class _IntegrationState:
112
117
  @pulumi.getter(name="webhookUrl")
113
118
  def webhook_url(self) -> Optional[pulumi.Input[str]]:
114
119
  """
115
- Slack Webhook URL for integration
120
+ Slack incoming webhook URL.
116
121
  """
117
122
  return pulumi.get(self, "webhook_url")
118
123
 
@@ -137,23 +142,21 @@ class Integration(pulumi.CustomResource):
137
142
 
138
143
  ## Example
139
144
 
140
- ## Arguments
145
+ ```python
146
+ import pulumi
147
+ import pulumi_signalfx as signalfx
141
148
 
142
- * `name` - (Required) Name of the integration.
143
- * `enabled` - (Required) Whether the integration is enabled.
144
- * `webhook_url` - (Required) Slack incoming webhook URL.
145
-
146
- ## Attributes
147
-
148
- In a addition to all arguments above, the following attributes are exported:
149
-
150
- * `id` - The ID of the integration.
149
+ slack_myteam = signalfx.slack.Integration("slack_myteam",
150
+ name="Slack - My Team",
151
+ enabled=True,
152
+ webhook_url="http://example.com")
153
+ ```
151
154
 
152
155
  :param str resource_name: The name of the resource.
153
156
  :param pulumi.ResourceOptions opts: Options for the resource.
154
- :param pulumi.Input[bool] enabled: Whether the integration is enabled or not
155
- :param pulumi.Input[str] name: Name of the integration
156
- :param pulumi.Input[str] webhook_url: Slack Webhook URL for integration
157
+ :param pulumi.Input[bool] enabled: Whether the integration is enabled.
158
+ :param pulumi.Input[str] name: Name of the integration.
159
+ :param pulumi.Input[str] webhook_url: Slack incoming webhook URL.
157
160
  """
158
161
  ...
159
162
  @overload
@@ -168,17 +171,15 @@ class Integration(pulumi.CustomResource):
168
171
 
169
172
  ## Example
170
173
 
171
- ## Arguments
172
-
173
- * `name` - (Required) Name of the integration.
174
- * `enabled` - (Required) Whether the integration is enabled.
175
- * `webhook_url` - (Required) Slack incoming webhook URL.
176
-
177
- ## Attributes
178
-
179
- In a addition to all arguments above, the following attributes are exported:
174
+ ```python
175
+ import pulumi
176
+ import pulumi_signalfx as signalfx
180
177
 
181
- * `id` - The ID of the integration.
178
+ slack_myteam = signalfx.slack.Integration("slack_myteam",
179
+ name="Slack - My Team",
180
+ enabled=True,
181
+ webhook_url="http://example.com")
182
+ ```
182
183
 
183
184
  :param str resource_name: The name of the resource.
184
185
  :param IntegrationArgs args: The arguments to use to populate this resource's properties.
@@ -236,9 +237,9 @@ class Integration(pulumi.CustomResource):
236
237
  :param str resource_name: The unique name of the resulting resource.
237
238
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
238
239
  :param pulumi.ResourceOptions opts: Options for the resource.
239
- :param pulumi.Input[bool] enabled: Whether the integration is enabled or not
240
- :param pulumi.Input[str] name: Name of the integration
241
- :param pulumi.Input[str] webhook_url: Slack Webhook URL for integration
240
+ :param pulumi.Input[bool] enabled: Whether the integration is enabled.
241
+ :param pulumi.Input[str] name: Name of the integration.
242
+ :param pulumi.Input[str] webhook_url: Slack incoming webhook URL.
242
243
  """
243
244
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
244
245
 
@@ -253,7 +254,7 @@ class Integration(pulumi.CustomResource):
253
254
  @pulumi.getter
254
255
  def enabled(self) -> pulumi.Output[bool]:
255
256
  """
256
- Whether the integration is enabled or not
257
+ Whether the integration is enabled.
257
258
  """
258
259
  return pulumi.get(self, "enabled")
259
260
 
@@ -261,7 +262,7 @@ class Integration(pulumi.CustomResource):
261
262
  @pulumi.getter
262
263
  def name(self) -> pulumi.Output[str]:
263
264
  """
264
- Name of the integration
265
+ Name of the integration.
265
266
  """
266
267
  return pulumi.get(self, "name")
267
268
 
@@ -269,7 +270,7 @@ class Integration(pulumi.CustomResource):
269
270
  @pulumi.getter(name="webhookUrl")
270
271
  def webhook_url(self) -> pulumi.Output[str]:
271
272
  """
272
- Slack Webhook URL for integration
273
+ Slack incoming webhook URL.
273
274
  """
274
275
  return pulumi.get(self, "webhook_url")
275
276