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__ = [
@@ -44,10 +49,10 @@ class IntegrationCustomNamespaceSyncRule(dict):
44
49
  filter_action: Optional[str] = None,
45
50
  filter_source: Optional[str] = None):
46
51
  """
47
- :param 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.
48
- :param 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".
49
- :param str filter_action: Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
50
- :param 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.
52
+ :param 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.
53
+ :param 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"`.
54
+ :param str filter_action: Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
55
+ :param 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.
51
56
  """
52
57
  pulumi.set(__self__, "namespace", namespace)
53
58
  if default_action is not None:
@@ -61,7 +66,7 @@ class IntegrationCustomNamespaceSyncRule(dict):
61
66
  @pulumi.getter
62
67
  def namespace(self) -> str:
63
68
  """
64
- 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.
69
+ 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.
65
70
  """
66
71
  return pulumi.get(self, "namespace")
67
72
 
@@ -69,7 +74,7 @@ class IntegrationCustomNamespaceSyncRule(dict):
69
74
  @pulumi.getter(name="defaultAction")
70
75
  def default_action(self) -> Optional[str]:
71
76
  """
72
- 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".
77
+ 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"`.
73
78
  """
74
79
  return pulumi.get(self, "default_action")
75
80
 
@@ -77,7 +82,7 @@ class IntegrationCustomNamespaceSyncRule(dict):
77
82
  @pulumi.getter(name="filterAction")
78
83
  def filter_action(self) -> Optional[str]:
79
84
  """
80
- Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
85
+ Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
81
86
  """
82
87
  return pulumi.get(self, "filter_action")
83
88
 
@@ -85,7 +90,7 @@ class IntegrationCustomNamespaceSyncRule(dict):
85
90
  @pulumi.getter(name="filterSource")
86
91
  def filter_source(self) -> Optional[str]:
87
92
  """
88
- 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.
93
+ 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.
89
94
  """
90
95
  return pulumi.get(self, "filter_source")
91
96
 
@@ -159,10 +164,10 @@ class IntegrationNamespaceSyncRule(dict):
159
164
  filter_action: Optional[str] = None,
160
165
  filter_source: Optional[str] = None):
161
166
  """
162
- :param 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.
163
- :param 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".
164
- :param str filter_action: Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
165
- :param 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.
167
+ :param 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.
168
+ :param 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"`.
169
+ :param str filter_action: Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
170
+ :param 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.
166
171
  """
167
172
  pulumi.set(__self__, "namespace", namespace)
168
173
  if default_action is not None:
@@ -176,7 +181,7 @@ class IntegrationNamespaceSyncRule(dict):
176
181
  @pulumi.getter
177
182
  def namespace(self) -> str:
178
183
  """
179
- 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.
184
+ 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.
180
185
  """
181
186
  return pulumi.get(self, "namespace")
182
187
 
@@ -184,7 +189,7 @@ class IntegrationNamespaceSyncRule(dict):
184
189
  @pulumi.getter(name="defaultAction")
185
190
  def default_action(self) -> Optional[str]:
186
191
  """
187
- 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".
192
+ 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"`.
188
193
  """
189
194
  return pulumi.get(self, "default_action")
190
195
 
@@ -192,7 +197,7 @@ class IntegrationNamespaceSyncRule(dict):
192
197
  @pulumi.getter(name="filterAction")
193
198
  def filter_action(self) -> Optional[str]:
194
199
  """
195
- Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of "Include" or "Exclude".
200
+ Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
196
201
  """
197
202
  return pulumi.get(self, "filter_action")
198
203
 
@@ -200,7 +205,7 @@ class IntegrationNamespaceSyncRule(dict):
200
205
  @pulumi.getter(name="filterSource")
201
206
  def filter_source(self) -> Optional[str]:
202
207
  """
203
- 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.
208
+ 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.
204
209
  """
205
210
  return pulumi.get(self, "filter_source")
206
211
 
@@ -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__ = ['TokenIntegrationArgs', 'TokenIntegration']
@@ -17,7 +22,7 @@ class TokenIntegrationArgs:
17
22
  name: Optional[pulumi.Input[str]] = None):
18
23
  """
19
24
  The set of arguments for constructing a TokenIntegration 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 TokenIntegrationArgs:
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,8 +48,8 @@ class _TokenIntegrationState:
43
48
  token_id: Optional[pulumi.Input[str]] = None):
44
49
  """
45
50
  Input properties used for looking up and filtering TokenIntegration resources.
46
- :param pulumi.Input[str] name: Name of the integration
47
- :param pulumi.Input[str] signalfx_aws_account: The Splunk Observability AWS account ID to use with an AWS role.
51
+ :param pulumi.Input[str] name: The name of this integration
52
+ :param pulumi.Input[str] signalfx_aws_account: The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
48
53
  :param pulumi.Input[str] token_id: The SignalFx-generated AWS token to use with an AWS integration.
49
54
  """
50
55
  if name is not None:
@@ -58,7 +63,7 @@ class _TokenIntegrationState:
58
63
  @pulumi.getter
59
64
  def name(self) -> Optional[pulumi.Input[str]]:
60
65
  """
61
- Name of the integration
66
+ The name of this integration
62
67
  """
63
68
  return pulumi.get(self, "name")
64
69
 
@@ -70,7 +75,7 @@ class _TokenIntegrationState:
70
75
  @pulumi.getter(name="signalfxAwsAccount")
71
76
  def signalfx_aws_account(self) -> Optional[pulumi.Input[str]]:
72
77
  """
73
- The Splunk Observability AWS account ID to use with an AWS role.
78
+ The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
74
79
  """
75
80
  return pulumi.get(self, "signalfx_aws_account")
76
81
 
@@ -107,20 +112,40 @@ class TokenIntegration(pulumi.CustomResource):
107
112
 
108
113
  ## Example
109
114
 
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 the integration to use with `aws.Integration`
119
- * `signalfx_aws_account` - The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
115
+ ```python
116
+ import pulumi
117
+ import pulumi_aws as aws
118
+ import pulumi_signalfx as signalfx
119
+
120
+ aws_myteam_token = signalfx.aws.TokenIntegration("aws_myteam_token", name="My AWS integration")
121
+ # Make yourself an AWS IAM role here
122
+ aws_sfx_role = aws.index.IamRole("aws_sfx_role")
123
+ aws_myteam = signalfx.aws.Integration("aws_myteam",
124
+ enabled=True,
125
+ integration_id=aws_myteam_token.id,
126
+ token="put_your_token_here",
127
+ key="put_your_key_here",
128
+ regions=["us-east-1"],
129
+ poll_rate=300,
130
+ import_cloud_watch=True,
131
+ enable_aws_usage=True,
132
+ custom_namespace_sync_rules=[{
133
+ "default_action": "Exclude",
134
+ "filter_action": "Include",
135
+ "filter_source": "filter('code', '200')",
136
+ "namespace": "my-custom-namespace",
137
+ }],
138
+ namespace_sync_rules=[{
139
+ "default_action": "Exclude",
140
+ "filter_action": "Include",
141
+ "filter_source": "filter('code', '200')",
142
+ "namespace": "AWS/EC2",
143
+ }])
144
+ ```
120
145
 
121
146
  :param str resource_name: The name of the resource.
122
147
  :param pulumi.ResourceOptions opts: Options for the resource.
123
- :param pulumi.Input[str] name: Name of the integration
148
+ :param pulumi.Input[str] name: The name of this integration
124
149
  """
125
150
  ...
126
151
  @overload
@@ -137,16 +162,36 @@ class TokenIntegration(pulumi.CustomResource):
137
162
 
138
163
  ## Example
139
164
 
140
- ## Arguments
141
-
142
- * `name` - (Required) The name of this integration
143
-
144
- ## Attributes
145
-
146
- In addition to all arguments above, the following attributes are exported:
147
-
148
- * `id` - The ID of the integration to use with `aws.Integration`
149
- * `signalfx_aws_account` - The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
165
+ ```python
166
+ import pulumi
167
+ import pulumi_aws as aws
168
+ import pulumi_signalfx as signalfx
169
+
170
+ aws_myteam_token = signalfx.aws.TokenIntegration("aws_myteam_token", name="My AWS integration")
171
+ # Make yourself an AWS IAM role here
172
+ aws_sfx_role = aws.index.IamRole("aws_sfx_role")
173
+ aws_myteam = signalfx.aws.Integration("aws_myteam",
174
+ enabled=True,
175
+ integration_id=aws_myteam_token.id,
176
+ token="put_your_token_here",
177
+ key="put_your_key_here",
178
+ regions=["us-east-1"],
179
+ poll_rate=300,
180
+ import_cloud_watch=True,
181
+ enable_aws_usage=True,
182
+ custom_namespace_sync_rules=[{
183
+ "default_action": "Exclude",
184
+ "filter_action": "Include",
185
+ "filter_source": "filter('code', '200')",
186
+ "namespace": "my-custom-namespace",
187
+ }],
188
+ namespace_sync_rules=[{
189
+ "default_action": "Exclude",
190
+ "filter_action": "Include",
191
+ "filter_source": "filter('code', '200')",
192
+ "namespace": "AWS/EC2",
193
+ }])
194
+ ```
150
195
 
151
196
  :param str resource_name: The name of the resource.
152
197
  :param TokenIntegrationArgs args: The arguments to use to populate this resource's properties.
@@ -198,8 +243,8 @@ class TokenIntegration(pulumi.CustomResource):
198
243
  :param str resource_name: The unique name of the resulting resource.
199
244
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
200
245
  :param pulumi.ResourceOptions opts: Options for the resource.
201
- :param pulumi.Input[str] name: Name of the integration
202
- :param pulumi.Input[str] signalfx_aws_account: The Splunk Observability AWS account ID to use with an AWS role.
246
+ :param pulumi.Input[str] name: The name of this integration
247
+ :param pulumi.Input[str] signalfx_aws_account: The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
203
248
  :param pulumi.Input[str] token_id: The SignalFx-generated AWS token to use with an AWS integration.
204
249
  """
205
250
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -215,7 +260,7 @@ class TokenIntegration(pulumi.CustomResource):
215
260
  @pulumi.getter
216
261
  def name(self) -> pulumi.Output[str]:
217
262
  """
218
- Name of the integration
263
+ The name of this integration
219
264
  """
220
265
  return pulumi.get(self, "name")
221
266
 
@@ -223,7 +268,7 @@ class TokenIntegration(pulumi.CustomResource):
223
268
  @pulumi.getter(name="signalfxAwsAccount")
224
269
  def signalfx_aws_account(self) -> pulumi.Output[str]:
225
270
  """
226
- The Splunk Observability AWS account ID to use with an AWS role.
271
+ The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
227
272
  """
228
273
  return pulumi.get(self, "signalfx_aws_account")
229
274
 
@@ -4,24 +4,46 @@
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
  'IntegrationCustomNamespacesPerServiceArgs',
19
+ 'IntegrationCustomNamespacesPerServiceArgsDict',
14
20
  'IntegrationResourceFilterRuleArgs',
21
+ 'IntegrationResourceFilterRuleArgsDict',
15
22
  ]
16
23
 
24
+ MYPY = False
25
+
26
+ if not MYPY:
27
+ class IntegrationCustomNamespacesPerServiceArgsDict(TypedDict):
28
+ namespaces: pulumi.Input[Sequence[pulumi.Input[str]]]
29
+ """
30
+ The additional namespaces.
31
+ """
32
+ service: pulumi.Input[str]
33
+ """
34
+ The name of the service.
35
+ """
36
+ elif False:
37
+ IntegrationCustomNamespacesPerServiceArgsDict: TypeAlias = Mapping[str, Any]
38
+
17
39
  @pulumi.input_type
18
40
  class IntegrationCustomNamespacesPerServiceArgs:
19
41
  def __init__(__self__, *,
20
42
  namespaces: pulumi.Input[Sequence[pulumi.Input[str]]],
21
43
  service: pulumi.Input[str]):
22
44
  """
23
- :param pulumi.Input[Sequence[pulumi.Input[str]]] namespaces: The namespaces to sync
24
- :param pulumi.Input[str] service: The name of the service
45
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] namespaces: The additional namespaces.
46
+ :param pulumi.Input[str] service: The name of the service.
25
47
  """
26
48
  pulumi.set(__self__, "namespaces", namespaces)
27
49
  pulumi.set(__self__, "service", service)
@@ -30,7 +52,7 @@ class IntegrationCustomNamespacesPerServiceArgs:
30
52
  @pulumi.getter
31
53
  def namespaces(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
32
54
  """
33
- The namespaces to sync
55
+ The additional namespaces.
34
56
  """
35
57
  return pulumi.get(self, "namespaces")
36
58
 
@@ -42,7 +64,7 @@ class IntegrationCustomNamespacesPerServiceArgs:
42
64
  @pulumi.getter
43
65
  def service(self) -> pulumi.Input[str]:
44
66
  """
45
- The name of the service
67
+ The name of the service.
46
68
  """
47
69
  return pulumi.get(self, "service")
48
70
 
@@ -51,15 +73,30 @@ class IntegrationCustomNamespacesPerServiceArgs:
51
73
  pulumi.set(self, "service", value)
52
74
 
53
75
 
76
+ if not MYPY:
77
+ class IntegrationResourceFilterRuleArgsDict(TypedDict):
78
+ filter_source: pulumi.Input[str]
79
+ """
80
+ 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.
81
+ """
82
+ elif False:
83
+ IntegrationResourceFilterRuleArgsDict: TypeAlias = Mapping[str, Any]
84
+
54
85
  @pulumi.input_type
55
86
  class IntegrationResourceFilterRuleArgs:
56
87
  def __init__(__self__, *,
57
88
  filter_source: pulumi.Input[str]):
89
+ """
90
+ :param pulumi.Input[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.
91
+ """
58
92
  pulumi.set(__self__, "filter_source", filter_source)
59
93
 
60
94
  @property
61
95
  @pulumi.getter(name="filterSource")
62
96
  def filter_source(self) -> pulumi.Input[str]:
97
+ """
98
+ 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.
99
+ """
63
100
  return pulumi.get(self, "filter_source")
64
101
 
65
102
  @filter_source.setter