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.
- pulumi_signalfx/__init__.py +9 -0
- pulumi_signalfx/_inputs.py +1976 -339
- pulumi_signalfx/_utilities.py +41 -5
- pulumi_signalfx/alert_muting_rule.py +110 -86
- pulumi_signalfx/aws/_inputs.py +85 -16
- pulumi_signalfx/aws/external_integration.py +20 -275
- pulumi_signalfx/aws/integration.py +222 -367
- pulumi_signalfx/aws/outputs.py +21 -16
- pulumi_signalfx/aws/token_integration.py +46 -65
- pulumi_signalfx/azure/_inputs.py +41 -4
- pulumi_signalfx/azure/integration.py +144 -259
- pulumi_signalfx/azure/outputs.py +15 -4
- pulumi_signalfx/config/__init__.pyi +22 -0
- pulumi_signalfx/config/vars.py +28 -0
- pulumi_signalfx/dashboard.py +171 -186
- pulumi_signalfx/dashboard_group.py +131 -198
- pulumi_signalfx/data_link.py +76 -141
- pulumi_signalfx/detector.py +264 -369
- pulumi_signalfx/event_feed_chart.py +51 -82
- pulumi_signalfx/gcp/_inputs.py +51 -0
- pulumi_signalfx/gcp/integration.py +224 -192
- pulumi_signalfx/gcp/outputs.py +44 -0
- pulumi_signalfx/get_dimension_values.py +47 -24
- pulumi_signalfx/heatmap_chart.py +165 -228
- pulumi_signalfx/jira/integration.py +70 -119
- pulumi_signalfx/list_chart.py +219 -315
- pulumi_signalfx/log/_inputs.py +33 -2
- pulumi_signalfx/log/outputs.py +7 -2
- pulumi_signalfx/log/timeline.py +64 -99
- pulumi_signalfx/log/view.py +134 -173
- pulumi_signalfx/metric_ruleset.py +217 -70
- pulumi_signalfx/opsgenie/integration.py +41 -60
- pulumi_signalfx/org_token.py +97 -128
- pulumi_signalfx/outputs.py +661 -339
- pulumi_signalfx/pagerduty/get_integration.py +22 -21
- pulumi_signalfx/pagerduty/integration.py +34 -49
- pulumi_signalfx/provider.py +99 -0
- pulumi_signalfx/pulumi-plugin.json +2 -1
- pulumi_signalfx/servicenow/integration.py +52 -107
- pulumi_signalfx/single_value_chart.py +113 -178
- pulumi_signalfx/slack/integration.py +30 -47
- pulumi_signalfx/slo.py +99 -197
- pulumi_signalfx/slo_chart.py +197 -0
- pulumi_signalfx/table_chart.py +50 -75
- pulumi_signalfx/team.py +74 -109
- pulumi_signalfx/text_chart.py +64 -89
- pulumi_signalfx/time_chart.py +271 -400
- pulumi_signalfx/victorops/integration.py +30 -47
- pulumi_signalfx/webhook_integration.py +154 -75
- {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/METADATA +7 -6
- pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
- {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
- pulumi_signalfx-7.2.0a1709367777.dist-info/RECORD +0 -64
- {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/top_level.txt +0 -0
pulumi_signalfx/aws/outputs.py
CHANGED
|
@@ -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
|
|
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
|
|
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:
|
|
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
|
-
|
|
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:
|
|
47
|
-
:param pulumi.Input[str] signalfx_aws_account: The
|
|
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
|
-
|
|
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
|
|
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
|
|
|
@@ -112,11 +117,10 @@ class TokenIntegration(pulumi.CustomResource):
|
|
|
112
117
|
import pulumi_aws as aws
|
|
113
118
|
import pulumi_signalfx as signalfx
|
|
114
119
|
|
|
115
|
-
aws_myteam_token = signalfx.aws.TokenIntegration("
|
|
120
|
+
aws_myteam_token = signalfx.aws.TokenIntegration("aws_myteam_token", name="My AWS integration")
|
|
116
121
|
# Make yourself an AWS IAM role here
|
|
117
|
-
aws_sfx_role = aws.
|
|
118
|
-
|
|
119
|
-
aws_myteam = signalfx.aws.Integration("awsMyteam",
|
|
122
|
+
aws_sfx_role = aws.index.IamRole("aws_sfx_role")
|
|
123
|
+
aws_myteam = signalfx.aws.Integration("aws_myteam",
|
|
120
124
|
enabled=True,
|
|
121
125
|
integration_id=aws_myteam_token.id,
|
|
122
126
|
token="put_your_token_here",
|
|
@@ -125,34 +129,23 @@ class TokenIntegration(pulumi.CustomResource):
|
|
|
125
129
|
poll_rate=300,
|
|
126
130
|
import_cloud_watch=True,
|
|
127
131
|
enable_aws_usage=True,
|
|
128
|
-
custom_namespace_sync_rules=[
|
|
129
|
-
default_action
|
|
130
|
-
filter_action
|
|
131
|
-
filter_source
|
|
132
|
-
namespace
|
|
133
|
-
|
|
134
|
-
namespace_sync_rules=[
|
|
135
|
-
default_action
|
|
136
|
-
filter_action
|
|
137
|
-
filter_source
|
|
138
|
-
namespace
|
|
139
|
-
|
|
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
|
+
}])
|
|
140
144
|
```
|
|
141
145
|
|
|
142
|
-
## Arguments
|
|
143
|
-
|
|
144
|
-
* `name` - (Required) The name of this integration
|
|
145
|
-
|
|
146
|
-
## Attributes
|
|
147
|
-
|
|
148
|
-
In addition to all arguments above, the following attributes are exported:
|
|
149
|
-
|
|
150
|
-
* `id` - The ID of the integration to use with `aws.Integration`
|
|
151
|
-
* `signalfx_aws_account` - The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
|
152
|
-
|
|
153
146
|
:param str resource_name: The name of the resource.
|
|
154
147
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
155
|
-
:param pulumi.Input[str] name:
|
|
148
|
+
:param pulumi.Input[str] name: The name of this integration
|
|
156
149
|
"""
|
|
157
150
|
...
|
|
158
151
|
@overload
|
|
@@ -174,11 +167,10 @@ class TokenIntegration(pulumi.CustomResource):
|
|
|
174
167
|
import pulumi_aws as aws
|
|
175
168
|
import pulumi_signalfx as signalfx
|
|
176
169
|
|
|
177
|
-
aws_myteam_token = signalfx.aws.TokenIntegration("
|
|
170
|
+
aws_myteam_token = signalfx.aws.TokenIntegration("aws_myteam_token", name="My AWS integration")
|
|
178
171
|
# Make yourself an AWS IAM role here
|
|
179
|
-
aws_sfx_role = aws.
|
|
180
|
-
|
|
181
|
-
aws_myteam = signalfx.aws.Integration("awsMyteam",
|
|
172
|
+
aws_sfx_role = aws.index.IamRole("aws_sfx_role")
|
|
173
|
+
aws_myteam = signalfx.aws.Integration("aws_myteam",
|
|
182
174
|
enabled=True,
|
|
183
175
|
integration_id=aws_myteam_token.id,
|
|
184
176
|
token="put_your_token_here",
|
|
@@ -187,31 +179,20 @@ class TokenIntegration(pulumi.CustomResource):
|
|
|
187
179
|
poll_rate=300,
|
|
188
180
|
import_cloud_watch=True,
|
|
189
181
|
enable_aws_usage=True,
|
|
190
|
-
custom_namespace_sync_rules=[
|
|
191
|
-
default_action
|
|
192
|
-
filter_action
|
|
193
|
-
filter_source
|
|
194
|
-
namespace
|
|
195
|
-
|
|
196
|
-
namespace_sync_rules=[
|
|
197
|
-
default_action
|
|
198
|
-
filter_action
|
|
199
|
-
filter_source
|
|
200
|
-
namespace
|
|
201
|
-
|
|
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
|
+
}])
|
|
202
194
|
```
|
|
203
195
|
|
|
204
|
-
## Arguments
|
|
205
|
-
|
|
206
|
-
* `name` - (Required) The name of this integration
|
|
207
|
-
|
|
208
|
-
## Attributes
|
|
209
|
-
|
|
210
|
-
In addition to all arguments above, the following attributes are exported:
|
|
211
|
-
|
|
212
|
-
* `id` - The ID of the integration to use with `aws.Integration`
|
|
213
|
-
* `signalfx_aws_account` - The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
|
214
|
-
|
|
215
196
|
:param str resource_name: The name of the resource.
|
|
216
197
|
:param TokenIntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
217
198
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -262,8 +243,8 @@ class TokenIntegration(pulumi.CustomResource):
|
|
|
262
243
|
:param str resource_name: The unique name of the resulting resource.
|
|
263
244
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
264
245
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
265
|
-
:param pulumi.Input[str] name:
|
|
266
|
-
:param pulumi.Input[str] signalfx_aws_account: The
|
|
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.
|
|
267
248
|
:param pulumi.Input[str] token_id: The SignalFx-generated AWS token to use with an AWS integration.
|
|
268
249
|
"""
|
|
269
250
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -279,7 +260,7 @@ class TokenIntegration(pulumi.CustomResource):
|
|
|
279
260
|
@pulumi.getter
|
|
280
261
|
def name(self) -> pulumi.Output[str]:
|
|
281
262
|
"""
|
|
282
|
-
|
|
263
|
+
The name of this integration
|
|
283
264
|
"""
|
|
284
265
|
return pulumi.get(self, "name")
|
|
285
266
|
|
|
@@ -287,7 +268,7 @@ class TokenIntegration(pulumi.CustomResource):
|
|
|
287
268
|
@pulumi.getter(name="signalfxAwsAccount")
|
|
288
269
|
def signalfx_aws_account(self) -> pulumi.Output[str]:
|
|
289
270
|
"""
|
|
290
|
-
The
|
|
271
|
+
The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
|
291
272
|
"""
|
|
292
273
|
return pulumi.get(self, "signalfx_aws_account")
|
|
293
274
|
|
pulumi_signalfx/azure/_inputs.py
CHANGED
|
@@ -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
|
|
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
|
|
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
|