pulumi-signalfx 7.2.0a1710160099__py3-none-any.whl → 7.6.0a1736849687__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.0a1736849687.dist-info}/METADATA +7 -6
  51. pulumi_signalfx-7.6.0a1736849687.dist-info/RECORD +65 -0
  52. {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736849687.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.0a1736849687.dist-info}/top_level.txt +0 -0
@@ -4,17 +4,48 @@
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__ = [
13
18
  'IntegrationCustomNamespaceSyncRuleArgs',
19
+ 'IntegrationCustomNamespaceSyncRuleArgsDict',
14
20
  'IntegrationMetricStatsToSyncArgs',
21
+ 'IntegrationMetricStatsToSyncArgsDict',
15
22
  'IntegrationNamespaceSyncRuleArgs',
23
+ 'IntegrationNamespaceSyncRuleArgsDict',
16
24
  ]
17
25
 
26
+ MYPY = False
27
+
28
+ if not MYPY:
29
+ class IntegrationCustomNamespaceSyncRuleArgsDict(TypedDict):
30
+ namespace: pulumi.Input[str]
31
+ """
32
+ An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability Cloud. See the AWS documentation on publishing metrics for more information.
33
+ """
34
+ default_action: NotRequired[pulumi.Input[str]]
35
+ """
36
+ Controls the Splunk Observability Cloud default behavior for processing data from an AWS namespace. Splunk Observability Cloud ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability Cloud treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
37
+ """
38
+ filter_action: NotRequired[pulumi.Input[str]]
39
+ """
40
+ Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
41
+ """
42
+ filter_source: NotRequired[pulumi.Input[str]]
43
+ """
44
+ Expression that selects the data that Splunk Observability Cloud should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
45
+ """
46
+ elif False:
47
+ IntegrationCustomNamespaceSyncRuleArgsDict: TypeAlias = Mapping[str, Any]
48
+
18
49
  @pulumi.input_type
19
50
  class IntegrationCustomNamespaceSyncRuleArgs:
20
51
  def __init__(__self__, *,
@@ -23,10 +54,10 @@ class IntegrationCustomNamespaceSyncRuleArgs:
23
54
  filter_action: Optional[pulumi.Input[str]] = None,
24
55
  filter_source: Optional[pulumi.Input[str]] = None):
25
56
  """
26
- :param pulumi.Input[str] namespace: An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See the AWS documentation on publishing metrics for more information.
27
- :param pulumi.Input[str] default_action: Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of "Include" or "Exclude".
28
- :param pulumi.Input[str] filter_action: Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
29
- :param pulumi.Input[str] filter_source: Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
57
+ :param pulumi.Input[str] namespace: An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability Cloud. See the AWS documentation on publishing metrics for more information.
58
+ :param pulumi.Input[str] default_action: Controls the Splunk Observability Cloud default behavior for processing data from an AWS namespace. Splunk Observability Cloud ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability Cloud treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
59
+ :param pulumi.Input[str] filter_action: Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
60
+ :param pulumi.Input[str] filter_source: Expression that selects the data that Splunk Observability Cloud should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
30
61
  """
31
62
  pulumi.set(__self__, "namespace", namespace)
32
63
  if default_action is not None:
@@ -40,7 +71,7 @@ class IntegrationCustomNamespaceSyncRuleArgs:
40
71
  @pulumi.getter
41
72
  def namespace(self) -> pulumi.Input[str]:
42
73
  """
43
- An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See the AWS documentation on publishing metrics for more information.
74
+ An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability Cloud. See the AWS documentation on publishing metrics for more information.
44
75
  """
45
76
  return pulumi.get(self, "namespace")
46
77
 
@@ -52,7 +83,7 @@ class IntegrationCustomNamespaceSyncRuleArgs:
52
83
  @pulumi.getter(name="defaultAction")
53
84
  def default_action(self) -> Optional[pulumi.Input[str]]:
54
85
  """
55
- Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of "Include" or "Exclude".
86
+ Controls the Splunk Observability Cloud default behavior for processing data from an AWS namespace. Splunk Observability Cloud ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability Cloud treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
56
87
  """
57
88
  return pulumi.get(self, "default_action")
58
89
 
@@ -64,7 +95,7 @@ class IntegrationCustomNamespaceSyncRuleArgs:
64
95
  @pulumi.getter(name="filterAction")
65
96
  def filter_action(self) -> Optional[pulumi.Input[str]]:
66
97
  """
67
- Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
98
+ Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
68
99
  """
69
100
  return pulumi.get(self, "filter_action")
70
101
 
@@ -76,7 +107,7 @@ class IntegrationCustomNamespaceSyncRuleArgs:
76
107
  @pulumi.getter(name="filterSource")
77
108
  def filter_source(self) -> Optional[pulumi.Input[str]]:
78
109
  """
79
- Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
110
+ Expression that selects the data that Splunk Observability Cloud should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
80
111
  """
81
112
  return pulumi.get(self, "filter_source")
82
113
 
@@ -85,6 +116,23 @@ class IntegrationCustomNamespaceSyncRuleArgs:
85
116
  pulumi.set(self, "filter_source", value)
86
117
 
87
118
 
119
+ if not MYPY:
120
+ class IntegrationMetricStatsToSyncArgsDict(TypedDict):
121
+ metric: pulumi.Input[str]
122
+ """
123
+ AWS metric that you want to pick statistics for
124
+ """
125
+ namespace: pulumi.Input[str]
126
+ """
127
+ An AWS namespace having AWS metric that you want to pick statistics for
128
+ """
129
+ stats: pulumi.Input[Sequence[pulumi.Input[str]]]
130
+ """
131
+ AWS statistics you want to collect
132
+ """
133
+ elif False:
134
+ IntegrationMetricStatsToSyncArgsDict: TypeAlias = Mapping[str, Any]
135
+
88
136
  @pulumi.input_type
89
137
  class IntegrationMetricStatsToSyncArgs:
90
138
  def __init__(__self__, *,
@@ -137,6 +185,27 @@ class IntegrationMetricStatsToSyncArgs:
137
185
  pulumi.set(self, "stats", value)
138
186
 
139
187
 
188
+ if not MYPY:
189
+ class IntegrationNamespaceSyncRuleArgsDict(TypedDict):
190
+ namespace: pulumi.Input[str]
191
+ """
192
+ An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability Cloud. See `services` field description below for additional information.
193
+ """
194
+ default_action: NotRequired[pulumi.Input[str]]
195
+ """
196
+ Controls the Splunk Observability Cloud default behavior for processing data from an AWS namespace. Splunk Observability Cloud ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability Cloud treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
197
+ """
198
+ filter_action: NotRequired[pulumi.Input[str]]
199
+ """
200
+ Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
201
+ """
202
+ filter_source: NotRequired[pulumi.Input[str]]
203
+ """
204
+ Expression that selects the data that Splunk Observability Cloud should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
205
+ """
206
+ elif False:
207
+ IntegrationNamespaceSyncRuleArgsDict: TypeAlias = Mapping[str, Any]
208
+
140
209
  @pulumi.input_type
141
210
  class IntegrationNamespaceSyncRuleArgs:
142
211
  def __init__(__self__, *,
@@ -145,10 +214,10 @@ class IntegrationNamespaceSyncRuleArgs:
145
214
  filter_action: Optional[pulumi.Input[str]] = None,
146
215
  filter_source: Optional[pulumi.Input[str]] = None):
147
216
  """
148
- :param pulumi.Input[str] namespace: An AWS namespace having custom AWS metrics that you want to sync with Splunk Observability. See the AWS documentation on publishing metrics for more information.
149
- :param pulumi.Input[str] default_action: Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of "Include" or "Exclude".
150
- :param pulumi.Input[str] filter_action: Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
151
- :param pulumi.Input[str] filter_source: Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
217
+ :param pulumi.Input[str] namespace: An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability Cloud. See `services` field description below for additional information.
218
+ :param pulumi.Input[str] default_action: Controls the Splunk Observability Cloud default behavior for processing data from an AWS namespace. Splunk Observability Cloud ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability Cloud treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
219
+ :param pulumi.Input[str] filter_action: Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
220
+ :param pulumi.Input[str] filter_source: Expression that selects the data that Splunk Observability Cloud should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
152
221
  """
153
222
  pulumi.set(__self__, "namespace", namespace)
154
223
  if default_action is not None:
@@ -162,7 +231,7 @@ class IntegrationNamespaceSyncRuleArgs:
162
231
  @pulumi.getter
163
232
  def namespace(self) -> pulumi.Input[str]:
164
233
  """
165
- An AWS namespace having custom AWS metrics that you want to sync with Splunk Observability. See the AWS documentation on publishing metrics for more information.
234
+ An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability Cloud. See `services` field description below for additional information.
166
235
  """
167
236
  return pulumi.get(self, "namespace")
168
237
 
@@ -174,7 +243,7 @@ class IntegrationNamespaceSyncRuleArgs:
174
243
  @pulumi.getter(name="defaultAction")
175
244
  def default_action(self) -> Optional[pulumi.Input[str]]:
176
245
  """
177
- Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of "Include" or "Exclude".
246
+ Controls the Splunk Observability Cloud default behavior for processing data from an AWS namespace. Splunk Observability Cloud ignores this property unless you specify the `filter_action` and `filter_source` properties. If you do specify them, use this property to control how Splunk Observability Cloud treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
178
247
  """
179
248
  return pulumi.get(self, "default_action")
180
249
 
@@ -186,7 +255,7 @@ class IntegrationNamespaceSyncRuleArgs:
186
255
  @pulumi.getter(name="filterAction")
187
256
  def filter_action(self) -> Optional[pulumi.Input[str]]:
188
257
  """
189
- Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
258
+ Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
190
259
  """
191
260
  return pulumi.get(self, "filter_action")
192
261
 
@@ -198,7 +267,7 @@ class IntegrationNamespaceSyncRuleArgs:
198
267
  @pulumi.getter(name="filterSource")
199
268
  def filter_source(self) -> Optional[pulumi.Input[str]]:
200
269
  """
201
- Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
270
+ Expression that selects the data that Splunk Observability Cloud should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
202
271
  """
203
272
  return pulumi.get(self, "filter_source")
204
273
 
@@ -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__ = ['ExternalIntegrationArgs', 'ExternalIntegration']
@@ -17,7 +22,7 @@ class ExternalIntegrationArgs:
17
22
  name: Optional[pulumi.Input[str]] = None):
18
23
  """
19
24
  The set of arguments for constructing a ExternalIntegration resource.
20
- :param pulumi.Input[str] name: Name of the integration
25
+ :param pulumi.Input[str] name: The name of this integration
21
26
  """
22
27
  if name is not None:
23
28
  pulumi.set(__self__, "name", name)
@@ -26,7 +31,7 @@ class ExternalIntegrationArgs:
26
31
  @pulumi.getter
27
32
  def name(self) -> Optional[pulumi.Input[str]]:
28
33
  """
29
- Name of the integration
34
+ The name of this integration
30
35
  """
31
36
  return pulumi.get(self, "name")
32
37
 
@@ -43,9 +48,9 @@ class _ExternalIntegrationState:
43
48
  signalfx_aws_account: Optional[pulumi.Input[str]] = None):
44
49
  """
45
50
  Input properties used for looking up and filtering ExternalIntegration resources.
46
- :param pulumi.Input[str] external_id: The AWS external ID generated by Splunk Observability to use with an AWS integration.
47
- :param pulumi.Input[str] name: Name of the integration
48
- :param pulumi.Input[str] signalfx_aws_account: The Splunk Observability AWS account ID to use with an AWS role.
51
+ :param pulumi.Input[str] external_id: The external ID to use with your IAM role and with `aws.Integration`.
52
+ :param pulumi.Input[str] name: The name of this integration
53
+ :param pulumi.Input[str] signalfx_aws_account: The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
49
54
  """
50
55
  if external_id is not None:
51
56
  pulumi.set(__self__, "external_id", external_id)
@@ -58,7 +63,7 @@ class _ExternalIntegrationState:
58
63
  @pulumi.getter(name="externalId")
59
64
  def external_id(self) -> Optional[pulumi.Input[str]]:
60
65
  """
61
- The AWS external ID generated by Splunk Observability to use with an AWS integration.
66
+ The external ID to use with your IAM role and with `aws.Integration`.
62
67
  """
63
68
  return pulumi.get(self, "external_id")
64
69
 
@@ -70,7 +75,7 @@ class _ExternalIntegrationState:
70
75
  @pulumi.getter
71
76
  def name(self) -> Optional[pulumi.Input[str]]:
72
77
  """
73
- Name of the integration
78
+ The name of this integration
74
79
  """
75
80
  return pulumi.get(self, "name")
76
81
 
@@ -82,7 +87,7 @@ class _ExternalIntegrationState:
82
87
  @pulumi.getter(name="signalfxAwsAccount")
83
88
  def signalfx_aws_account(self) -> Optional[pulumi.Input[str]]:
84
89
  """
85
- The Splunk Observability AWS account ID to use with an AWS role.
90
+ The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
86
91
  """
87
92
  return pulumi.get(self, "signalfx_aws_account")
88
93
 
@@ -105,23 +110,9 @@ class ExternalIntegration(pulumi.CustomResource):
105
110
 
106
111
  > **WARNING** This resource implements part of a workflow. Use it with `aws.Integration`. Check with Splunk support for your realm's AWS account id.
107
112
 
108
- ## Example
109
-
110
- ## Arguments
111
-
112
- * `name` - (Required) The name of this integration
113
-
114
- ## Attributes
115
-
116
- In addition to all arguments above, the following attributes are exported:
117
-
118
- * `id` - The ID of this integration, used with `aws.Integration`
119
- * `external_id` - The external ID to use with your IAM role and with `aws.Integration`.
120
- * `signalfx_aws_account` - The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
121
-
122
113
  :param str resource_name: The name of the resource.
123
114
  :param pulumi.ResourceOptions opts: Options for the resource.
124
- :param pulumi.Input[str] name: Name of the integration
115
+ :param pulumi.Input[str] name: The name of this integration
125
116
  """
126
117
  ...
127
118
  @overload
@@ -136,20 +127,6 @@ class ExternalIntegration(pulumi.CustomResource):
136
127
 
137
128
  > **WARNING** This resource implements part of a workflow. Use it with `aws.Integration`. Check with Splunk support for your realm's AWS account id.
138
129
 
139
- ## Example
140
-
141
- ## Arguments
142
-
143
- * `name` - (Required) The name of this integration
144
-
145
- ## Attributes
146
-
147
- In addition to all arguments above, the following attributes are exported:
148
-
149
- * `id` - The ID of this integration, used with `aws.Integration`
150
- * `external_id` - The external ID to use with your IAM role and with `aws.Integration`.
151
- * `signalfx_aws_account` - The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
152
-
153
130
  :param str resource_name: The name of the resource.
154
131
  :param ExternalIntegrationArgs args: The arguments to use to populate this resource's properties.
155
132
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -200,9 +177,9 @@ class ExternalIntegration(pulumi.CustomResource):
200
177
  :param str resource_name: The unique name of the resulting resource.
201
178
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
202
179
  :param pulumi.ResourceOptions opts: Options for the resource.
203
- :param pulumi.Input[str] external_id: The AWS external ID generated by Splunk Observability to use with an AWS integration.
204
- :param pulumi.Input[str] name: Name of the integration
205
- :param pulumi.Input[str] signalfx_aws_account: The Splunk Observability AWS account ID to use with an AWS role.
180
+ :param pulumi.Input[str] external_id: The external ID to use with your IAM role and with `aws.Integration`.
181
+ :param pulumi.Input[str] name: The name of this integration
182
+ :param pulumi.Input[str] signalfx_aws_account: The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
206
183
  """
207
184
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
208
185
 
@@ -217,7 +194,7 @@ class ExternalIntegration(pulumi.CustomResource):
217
194
  @pulumi.getter(name="externalId")
218
195
  def external_id(self) -> pulumi.Output[str]:
219
196
  """
220
- The AWS external ID generated by Splunk Observability to use with an AWS integration.
197
+ The external ID to use with your IAM role and with `aws.Integration`.
221
198
  """
222
199
  return pulumi.get(self, "external_id")
223
200
 
@@ -225,7 +202,7 @@ class ExternalIntegration(pulumi.CustomResource):
225
202
  @pulumi.getter
226
203
  def name(self) -> pulumi.Output[str]:
227
204
  """
228
- Name of the integration
205
+ The name of this integration
229
206
  """
230
207
  return pulumi.get(self, "name")
231
208
 
@@ -233,7 +210,7 @@ class ExternalIntegration(pulumi.CustomResource):
233
210
  @pulumi.getter(name="signalfxAwsAccount")
234
211
  def signalfx_aws_account(self) -> pulumi.Output[str]:
235
212
  """
236
- The Splunk Observability AWS account ID to use with an AWS role.
213
+ The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
237
214
  """
238
215
  return pulumi.get(self, "signalfx_aws_account")
239
216