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.
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 +110 -86
  5. pulumi_signalfx/aws/_inputs.py +85 -16
  6. pulumi_signalfx/aws/external_integration.py +20 -275
  7. pulumi_signalfx/aws/integration.py +222 -367
  8. pulumi_signalfx/aws/outputs.py +21 -16
  9. pulumi_signalfx/aws/token_integration.py +46 -65
  10. pulumi_signalfx/azure/_inputs.py +41 -4
  11. pulumi_signalfx/azure/integration.py +144 -259
  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 +131 -198
  17. pulumi_signalfx/data_link.py +76 -141
  18. pulumi_signalfx/detector.py +264 -369
  19. pulumi_signalfx/event_feed_chart.py +51 -82
  20. pulumi_signalfx/gcp/_inputs.py +51 -0
  21. pulumi_signalfx/gcp/integration.py +224 -192
  22. pulumi_signalfx/gcp/outputs.py +44 -0
  23. pulumi_signalfx/get_dimension_values.py +47 -24
  24. pulumi_signalfx/heatmap_chart.py +165 -228
  25. pulumi_signalfx/jira/integration.py +70 -119
  26. pulumi_signalfx/list_chart.py +219 -315
  27. pulumi_signalfx/log/_inputs.py +33 -2
  28. pulumi_signalfx/log/outputs.py +7 -2
  29. pulumi_signalfx/log/timeline.py +64 -99
  30. pulumi_signalfx/log/view.py +134 -173
  31. pulumi_signalfx/metric_ruleset.py +217 -70
  32. pulumi_signalfx/opsgenie/integration.py +41 -60
  33. pulumi_signalfx/org_token.py +97 -128
  34. pulumi_signalfx/outputs.py +661 -339
  35. pulumi_signalfx/pagerduty/get_integration.py +22 -21
  36. pulumi_signalfx/pagerduty/integration.py +34 -49
  37. pulumi_signalfx/provider.py +99 -0
  38. pulumi_signalfx/pulumi-plugin.json +2 -1
  39. pulumi_signalfx/servicenow/integration.py +52 -107
  40. pulumi_signalfx/single_value_chart.py +113 -178
  41. pulumi_signalfx/slack/integration.py +30 -47
  42. pulumi_signalfx/slo.py +99 -197
  43. pulumi_signalfx/slo_chart.py +197 -0
  44. pulumi_signalfx/table_chart.py +50 -75
  45. pulumi_signalfx/team.py +74 -109
  46. pulumi_signalfx/text_chart.py +64 -89
  47. pulumi_signalfx/time_chart.py +271 -400
  48. pulumi_signalfx/victorops/integration.py +30 -47
  49. pulumi_signalfx/webhook_integration.py +154 -75
  50. {pulumi_signalfx-7.2.0a1709367777.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.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
  53. pulumi_signalfx-7.2.0a1709367777.dist-info/RECORD +0 -64
  54. {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']
@@ -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
 
@@ -141,28 +146,17 @@ class Integration(pulumi.CustomResource):
141
146
  import pulumi
142
147
  import pulumi_signalfx as signalfx
143
148
 
144
- slack_myteam = signalfx.slack.Integration("slackMyteam",
149
+ slack_myteam = signalfx.slack.Integration("slack_myteam",
150
+ name="Slack - My Team",
145
151
  enabled=True,
146
152
  webhook_url="http://example.com")
147
153
  ```
148
154
 
149
- ## Arguments
150
-
151
- * `name` - (Required) Name of the integration.
152
- * `enabled` - (Required) Whether the integration is enabled.
153
- * `webhook_url` - (Required) Slack incoming webhook URL.
154
-
155
- ## Attributes
156
-
157
- In a addition to all arguments above, the following attributes are exported:
158
-
159
- * `id` - The ID of the integration.
160
-
161
155
  :param str resource_name: The name of the resource.
162
156
  :param pulumi.ResourceOptions opts: Options for the resource.
163
- :param pulumi.Input[bool] enabled: Whether the integration is enabled or not
164
- :param pulumi.Input[str] name: Name of the integration
165
- :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.
166
160
  """
167
161
  ...
168
162
  @overload
@@ -181,23 +175,12 @@ class Integration(pulumi.CustomResource):
181
175
  import pulumi
182
176
  import pulumi_signalfx as signalfx
183
177
 
184
- slack_myteam = signalfx.slack.Integration("slackMyteam",
178
+ slack_myteam = signalfx.slack.Integration("slack_myteam",
179
+ name="Slack - My Team",
185
180
  enabled=True,
186
181
  webhook_url="http://example.com")
187
182
  ```
188
183
 
189
- ## Arguments
190
-
191
- * `name` - (Required) Name of the integration.
192
- * `enabled` - (Required) Whether the integration is enabled.
193
- * `webhook_url` - (Required) Slack incoming webhook URL.
194
-
195
- ## Attributes
196
-
197
- In a addition to all arguments above, the following attributes are exported:
198
-
199
- * `id` - The ID of the integration.
200
-
201
184
  :param str resource_name: The name of the resource.
202
185
  :param IntegrationArgs args: The arguments to use to populate this resource's properties.
203
186
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -254,9 +237,9 @@ class Integration(pulumi.CustomResource):
254
237
  :param str resource_name: The unique name of the resulting resource.
255
238
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
256
239
  :param pulumi.ResourceOptions opts: Options for the resource.
257
- :param pulumi.Input[bool] enabled: Whether the integration is enabled or not
258
- :param pulumi.Input[str] name: Name of the integration
259
- :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.
260
243
  """
261
244
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
262
245
 
@@ -271,7 +254,7 @@ class Integration(pulumi.CustomResource):
271
254
  @pulumi.getter
272
255
  def enabled(self) -> pulumi.Output[bool]:
273
256
  """
274
- Whether the integration is enabled or not
257
+ Whether the integration is enabled.
275
258
  """
276
259
  return pulumi.get(self, "enabled")
277
260
 
@@ -279,7 +262,7 @@ class Integration(pulumi.CustomResource):
279
262
  @pulumi.getter
280
263
  def name(self) -> pulumi.Output[str]:
281
264
  """
282
- Name of the integration
265
+ Name of the integration.
283
266
  """
284
267
  return pulumi.get(self, "name")
285
268
 
@@ -287,7 +270,7 @@ class Integration(pulumi.CustomResource):
287
270
  @pulumi.getter(name="webhookUrl")
288
271
  def webhook_url(self) -> pulumi.Output[str]:
289
272
  """
290
- Slack Webhook URL for integration
273
+ Slack incoming webhook URL.
291
274
  """
292
275
  return pulumi.get(self, "webhook_url")
293
276