pulumi-signalfx 7.15.0a1753338898__py3-none-any.whl → 7.15.0a1753511620__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 +1 -1
- pulumi_signalfx/_inputs.py +1508 -1509
- pulumi_signalfx/alert_muting_rule.py +82 -83
- pulumi_signalfx/automatedarchival/__init__.py +1 -1
- pulumi_signalfx/automatedarchival/_inputs.py +32 -33
- pulumi_signalfx/automatedarchival/exempt_metric.py +4 -5
- pulumi_signalfx/automatedarchival/outputs.py +21 -22
- pulumi_signalfx/automatedarchival/settings.py +114 -115
- pulumi_signalfx/aws/__init__.py +1 -1
- pulumi_signalfx/aws/_inputs.py +67 -68
- pulumi_signalfx/aws/external_integration.py +36 -37
- pulumi_signalfx/aws/integration.py +351 -352
- pulumi_signalfx/aws/outputs.py +45 -46
- pulumi_signalfx/aws/token_integration.py +36 -37
- pulumi_signalfx/azure/__init__.py +1 -1
- pulumi_signalfx/azure/_inputs.py +19 -20
- pulumi_signalfx/azure/integration.py +245 -246
- pulumi_signalfx/azure/outputs.py +13 -14
- pulumi_signalfx/config/__init__.py +1 -1
- pulumi_signalfx/config/__init__.pyi +1 -2
- pulumi_signalfx/config/vars.py +14 -15
- pulumi_signalfx/dashboard.py +230 -231
- pulumi_signalfx/dashboard_group.py +95 -96
- pulumi_signalfx/data_link.py +64 -65
- pulumi_signalfx/detector.py +331 -332
- pulumi_signalfx/event_feed_chart.py +129 -130
- pulumi_signalfx/gcp/__init__.py +1 -1
- pulumi_signalfx/gcp/_inputs.py +21 -22
- pulumi_signalfx/gcp/integration.py +194 -195
- pulumi_signalfx/gcp/outputs.py +13 -14
- pulumi_signalfx/get_dimension_values.py +21 -22
- pulumi_signalfx/heatmap_chart.py +237 -238
- pulumi_signalfx/jira/__init__.py +1 -1
- pulumi_signalfx/jira/integration.py +205 -206
- pulumi_signalfx/list_chart.py +325 -326
- pulumi_signalfx/log/__init__.py +1 -1
- pulumi_signalfx/log/_inputs.py +19 -20
- pulumi_signalfx/log/outputs.py +13 -14
- pulumi_signalfx/log/timeline.py +146 -147
- pulumi_signalfx/log/view.py +152 -153
- pulumi_signalfx/metric_ruleset.py +98 -99
- pulumi_signalfx/opsgenie/__init__.py +1 -1
- pulumi_signalfx/opsgenie/integration.py +69 -70
- pulumi_signalfx/org_token.py +101 -102
- pulumi_signalfx/organization_members.py +9 -10
- pulumi_signalfx/outputs.py +1014 -1015
- pulumi_signalfx/pagerduty/__init__.py +1 -1
- pulumi_signalfx/pagerduty/get_integration.py +11 -12
- pulumi_signalfx/pagerduty/integration.py +52 -53
- pulumi_signalfx/provider.py +118 -119
- pulumi_signalfx/pulumi-plugin.json +1 -1
- pulumi_signalfx/servicenow/__init__.py +1 -1
- pulumi_signalfx/servicenow/integration.py +137 -138
- pulumi_signalfx/single_value_chart.py +237 -238
- pulumi_signalfx/slack/__init__.py +1 -1
- pulumi_signalfx/slack/integration.py +52 -53
- pulumi_signalfx/slo.py +58 -59
- pulumi_signalfx/slo_chart.py +27 -28
- pulumi_signalfx/table_chart.py +217 -218
- pulumi_signalfx/team.py +163 -164
- pulumi_signalfx/text_chart.py +78 -79
- pulumi_signalfx/time_chart.py +385 -386
- pulumi_signalfx/victorops/__init__.py +1 -1
- pulumi_signalfx/victorops/integration.py +52 -53
- pulumi_signalfx/webhook_integration.py +102 -103
- {pulumi_signalfx-7.15.0a1753338898.dist-info → pulumi_signalfx-7.15.0a1753511620.dist-info}/METADATA +1 -1
- pulumi_signalfx-7.15.0a1753511620.dist-info/RECORD +71 -0
- pulumi_signalfx-7.15.0a1753338898.dist-info/RECORD +0 -71
- {pulumi_signalfx-7.15.0a1753338898.dist-info → pulumi_signalfx-7.15.0a1753511620.dist-info}/WHEEL +0 -0
- {pulumi_signalfx-7.15.0a1753338898.dist-info → pulumi_signalfx-7.15.0a1753511620.dist-info}/top_level.txt +0 -0
pulumi_signalfx/aws/outputs.py
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
6
|
-
import copy
|
5
|
+
import builtins as _builtins
|
7
6
|
import warnings
|
8
7
|
import sys
|
9
8
|
import pulumi
|
@@ -45,15 +44,15 @@ class IntegrationCustomNamespaceSyncRule(dict):
|
|
45
44
|
return super().get(key, default)
|
46
45
|
|
47
46
|
def __init__(__self__, *,
|
48
|
-
namespace:
|
49
|
-
default_action: Optional[
|
50
|
-
filter_action: Optional[
|
51
|
-
filter_source: Optional[
|
47
|
+
namespace: _builtins.str,
|
48
|
+
default_action: Optional[_builtins.str] = None,
|
49
|
+
filter_action: Optional[_builtins.str] = None,
|
50
|
+
filter_source: Optional[_builtins.str] = None):
|
52
51
|
"""
|
53
|
-
:param
|
54
|
-
:param
|
55
|
-
:param
|
56
|
-
:param
|
52
|
+
:param _builtins.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 _builtins.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 _builtins.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 _builtins.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.
|
57
56
|
"""
|
58
57
|
pulumi.set(__self__, "namespace", namespace)
|
59
58
|
if default_action is not None:
|
@@ -63,33 +62,33 @@ class IntegrationCustomNamespaceSyncRule(dict):
|
|
63
62
|
if filter_source is not None:
|
64
63
|
pulumi.set(__self__, "filter_source", filter_source)
|
65
64
|
|
66
|
-
@property
|
65
|
+
@_builtins.property
|
67
66
|
@pulumi.getter
|
68
|
-
def namespace(self) ->
|
67
|
+
def namespace(self) -> _builtins.str:
|
69
68
|
"""
|
70
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.
|
71
70
|
"""
|
72
71
|
return pulumi.get(self, "namespace")
|
73
72
|
|
74
|
-
@property
|
73
|
+
@_builtins.property
|
75
74
|
@pulumi.getter(name="defaultAction")
|
76
|
-
def default_action(self) -> Optional[
|
75
|
+
def default_action(self) -> Optional[_builtins.str]:
|
77
76
|
"""
|
78
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"`.
|
79
78
|
"""
|
80
79
|
return pulumi.get(self, "default_action")
|
81
80
|
|
82
|
-
@property
|
81
|
+
@_builtins.property
|
83
82
|
@pulumi.getter(name="filterAction")
|
84
|
-
def filter_action(self) -> Optional[
|
83
|
+
def filter_action(self) -> Optional[_builtins.str]:
|
85
84
|
"""
|
86
85
|
Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
|
87
86
|
"""
|
88
87
|
return pulumi.get(self, "filter_action")
|
89
88
|
|
90
|
-
@property
|
89
|
+
@_builtins.property
|
91
90
|
@pulumi.getter(name="filterSource")
|
92
|
-
def filter_source(self) -> Optional[
|
91
|
+
def filter_source(self) -> Optional[_builtins.str]:
|
93
92
|
"""
|
94
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.
|
95
94
|
"""
|
@@ -99,37 +98,37 @@ class IntegrationCustomNamespaceSyncRule(dict):
|
|
99
98
|
@pulumi.output_type
|
100
99
|
class IntegrationMetricStatsToSync(dict):
|
101
100
|
def __init__(__self__, *,
|
102
|
-
metric:
|
103
|
-
namespace:
|
104
|
-
stats: Sequence[
|
101
|
+
metric: _builtins.str,
|
102
|
+
namespace: _builtins.str,
|
103
|
+
stats: Sequence[_builtins.str]):
|
105
104
|
"""
|
106
|
-
:param
|
107
|
-
:param
|
108
|
-
:param Sequence[
|
105
|
+
:param _builtins.str metric: AWS metric that you want to pick statistics for
|
106
|
+
:param _builtins.str namespace: An AWS namespace having AWS metric that you want to pick statistics for
|
107
|
+
:param Sequence[_builtins.str] stats: AWS statistics you want to collect
|
109
108
|
"""
|
110
109
|
pulumi.set(__self__, "metric", metric)
|
111
110
|
pulumi.set(__self__, "namespace", namespace)
|
112
111
|
pulumi.set(__self__, "stats", stats)
|
113
112
|
|
114
|
-
@property
|
113
|
+
@_builtins.property
|
115
114
|
@pulumi.getter
|
116
|
-
def metric(self) ->
|
115
|
+
def metric(self) -> _builtins.str:
|
117
116
|
"""
|
118
117
|
AWS metric that you want to pick statistics for
|
119
118
|
"""
|
120
119
|
return pulumi.get(self, "metric")
|
121
120
|
|
122
|
-
@property
|
121
|
+
@_builtins.property
|
123
122
|
@pulumi.getter
|
124
|
-
def namespace(self) ->
|
123
|
+
def namespace(self) -> _builtins.str:
|
125
124
|
"""
|
126
125
|
An AWS namespace having AWS metric that you want to pick statistics for
|
127
126
|
"""
|
128
127
|
return pulumi.get(self, "namespace")
|
129
128
|
|
130
|
-
@property
|
129
|
+
@_builtins.property
|
131
130
|
@pulumi.getter
|
132
|
-
def stats(self) -> Sequence[
|
131
|
+
def stats(self) -> Sequence[_builtins.str]:
|
133
132
|
"""
|
134
133
|
AWS statistics you want to collect
|
135
134
|
"""
|
@@ -160,15 +159,15 @@ class IntegrationNamespaceSyncRule(dict):
|
|
160
159
|
return super().get(key, default)
|
161
160
|
|
162
161
|
def __init__(__self__, *,
|
163
|
-
namespace:
|
164
|
-
default_action: Optional[
|
165
|
-
filter_action: Optional[
|
166
|
-
filter_source: Optional[
|
162
|
+
namespace: _builtins.str,
|
163
|
+
default_action: Optional[_builtins.str] = None,
|
164
|
+
filter_action: Optional[_builtins.str] = None,
|
165
|
+
filter_source: Optional[_builtins.str] = None):
|
167
166
|
"""
|
168
|
-
:param
|
169
|
-
:param
|
170
|
-
:param
|
171
|
-
:param
|
167
|
+
:param _builtins.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 _builtins.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 _builtins.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 _builtins.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.
|
172
171
|
"""
|
173
172
|
pulumi.set(__self__, "namespace", namespace)
|
174
173
|
if default_action is not None:
|
@@ -178,33 +177,33 @@ class IntegrationNamespaceSyncRule(dict):
|
|
178
177
|
if filter_source is not None:
|
179
178
|
pulumi.set(__self__, "filter_source", filter_source)
|
180
179
|
|
181
|
-
@property
|
180
|
+
@_builtins.property
|
182
181
|
@pulumi.getter
|
183
|
-
def namespace(self) ->
|
182
|
+
def namespace(self) -> _builtins.str:
|
184
183
|
"""
|
185
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.
|
186
185
|
"""
|
187
186
|
return pulumi.get(self, "namespace")
|
188
187
|
|
189
|
-
@property
|
188
|
+
@_builtins.property
|
190
189
|
@pulumi.getter(name="defaultAction")
|
191
|
-
def default_action(self) -> Optional[
|
190
|
+
def default_action(self) -> Optional[_builtins.str]:
|
192
191
|
"""
|
193
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"`.
|
194
193
|
"""
|
195
194
|
return pulumi.get(self, "default_action")
|
196
195
|
|
197
|
-
@property
|
196
|
+
@_builtins.property
|
198
197
|
@pulumi.getter(name="filterAction")
|
199
|
-
def filter_action(self) -> Optional[
|
198
|
+
def filter_action(self) -> Optional[_builtins.str]:
|
200
199
|
"""
|
201
200
|
Controls how Splunk Observability Cloud processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
|
202
201
|
"""
|
203
202
|
return pulumi.get(self, "filter_action")
|
204
203
|
|
205
|
-
@property
|
204
|
+
@_builtins.property
|
206
205
|
@pulumi.getter(name="filterSource")
|
207
|
-
def filter_source(self) -> Optional[
|
206
|
+
def filter_source(self) -> Optional[_builtins.str]:
|
208
207
|
"""
|
209
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.
|
210
209
|
"""
|
@@ -2,8 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
6
|
-
import copy
|
5
|
+
import builtins as _builtins
|
7
6
|
import warnings
|
8
7
|
import sys
|
9
8
|
import pulumi
|
@@ -20,38 +19,38 @@ __all__ = ['TokenIntegrationArgs', 'TokenIntegration']
|
|
20
19
|
@pulumi.input_type
|
21
20
|
class TokenIntegrationArgs:
|
22
21
|
def __init__(__self__, *,
|
23
|
-
name: Optional[pulumi.Input[
|
22
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
24
23
|
"""
|
25
24
|
The set of arguments for constructing a TokenIntegration resource.
|
26
|
-
:param pulumi.Input[
|
25
|
+
:param pulumi.Input[_builtins.str] name: The name of this integration
|
27
26
|
"""
|
28
27
|
if name is not None:
|
29
28
|
pulumi.set(__self__, "name", name)
|
30
29
|
|
31
|
-
@property
|
30
|
+
@_builtins.property
|
32
31
|
@pulumi.getter
|
33
|
-
def name(self) -> Optional[pulumi.Input[
|
32
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
34
33
|
"""
|
35
34
|
The name of this integration
|
36
35
|
"""
|
37
36
|
return pulumi.get(self, "name")
|
38
37
|
|
39
38
|
@name.setter
|
40
|
-
def name(self, value: Optional[pulumi.Input[
|
39
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
41
40
|
pulumi.set(self, "name", value)
|
42
41
|
|
43
42
|
|
44
43
|
@pulumi.input_type
|
45
44
|
class _TokenIntegrationState:
|
46
45
|
def __init__(__self__, *,
|
47
|
-
name: Optional[pulumi.Input[
|
48
|
-
signalfx_aws_account: Optional[pulumi.Input[
|
49
|
-
token_id: Optional[pulumi.Input[
|
46
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
47
|
+
signalfx_aws_account: Optional[pulumi.Input[_builtins.str]] = None,
|
48
|
+
token_id: Optional[pulumi.Input[_builtins.str]] = None):
|
50
49
|
"""
|
51
50
|
Input properties used for looking up and filtering TokenIntegration resources.
|
52
|
-
:param pulumi.Input[
|
53
|
-
:param pulumi.Input[
|
54
|
-
:param pulumi.Input[
|
51
|
+
:param pulumi.Input[_builtins.str] name: The name of this integration
|
52
|
+
:param pulumi.Input[_builtins.str] signalfx_aws_account: The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
53
|
+
:param pulumi.Input[_builtins.str] token_id: The SignalFx-generated AWS token to use with an AWS integration.
|
55
54
|
"""
|
56
55
|
if name is not None:
|
57
56
|
pulumi.set(__self__, "name", name)
|
@@ -60,40 +59,40 @@ class _TokenIntegrationState:
|
|
60
59
|
if token_id is not None:
|
61
60
|
pulumi.set(__self__, "token_id", token_id)
|
62
61
|
|
63
|
-
@property
|
62
|
+
@_builtins.property
|
64
63
|
@pulumi.getter
|
65
|
-
def name(self) -> Optional[pulumi.Input[
|
64
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
66
65
|
"""
|
67
66
|
The name of this integration
|
68
67
|
"""
|
69
68
|
return pulumi.get(self, "name")
|
70
69
|
|
71
70
|
@name.setter
|
72
|
-
def name(self, value: Optional[pulumi.Input[
|
71
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
73
72
|
pulumi.set(self, "name", value)
|
74
73
|
|
75
|
-
@property
|
74
|
+
@_builtins.property
|
76
75
|
@pulumi.getter(name="signalfxAwsAccount")
|
77
|
-
def signalfx_aws_account(self) -> Optional[pulumi.Input[
|
76
|
+
def signalfx_aws_account(self) -> Optional[pulumi.Input[_builtins.str]]:
|
78
77
|
"""
|
79
78
|
The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
80
79
|
"""
|
81
80
|
return pulumi.get(self, "signalfx_aws_account")
|
82
81
|
|
83
82
|
@signalfx_aws_account.setter
|
84
|
-
def signalfx_aws_account(self, value: Optional[pulumi.Input[
|
83
|
+
def signalfx_aws_account(self, value: Optional[pulumi.Input[_builtins.str]]):
|
85
84
|
pulumi.set(self, "signalfx_aws_account", value)
|
86
85
|
|
87
|
-
@property
|
86
|
+
@_builtins.property
|
88
87
|
@pulumi.getter(name="tokenId")
|
89
|
-
def token_id(self) -> Optional[pulumi.Input[
|
88
|
+
def token_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
90
89
|
"""
|
91
90
|
The SignalFx-generated AWS token to use with an AWS integration.
|
92
91
|
"""
|
93
92
|
return pulumi.get(self, "token_id")
|
94
93
|
|
95
94
|
@token_id.setter
|
96
|
-
def token_id(self, value: Optional[pulumi.Input[
|
95
|
+
def token_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
97
96
|
pulumi.set(self, "token_id", value)
|
98
97
|
|
99
98
|
|
@@ -103,7 +102,7 @@ class TokenIntegration(pulumi.CustomResource):
|
|
103
102
|
def __init__(__self__,
|
104
103
|
resource_name: str,
|
105
104
|
opts: Optional[pulumi.ResourceOptions] = None,
|
106
|
-
name: Optional[pulumi.Input[
|
105
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
107
106
|
__props__=None):
|
108
107
|
"""
|
109
108
|
Splunk Observability AWS CloudWatch integrations using security tokens. For help with this integration see [Connect to AWS CloudWatch](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#connect-to-aws).
|
@@ -147,7 +146,7 @@ class TokenIntegration(pulumi.CustomResource):
|
|
147
146
|
|
148
147
|
:param str resource_name: The name of the resource.
|
149
148
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
150
|
-
:param pulumi.Input[
|
149
|
+
:param pulumi.Input[_builtins.str] name: The name of this integration
|
151
150
|
"""
|
152
151
|
...
|
153
152
|
@overload
|
@@ -210,7 +209,7 @@ class TokenIntegration(pulumi.CustomResource):
|
|
210
209
|
def _internal_init(__self__,
|
211
210
|
resource_name: str,
|
212
211
|
opts: Optional[pulumi.ResourceOptions] = None,
|
213
|
-
name: Optional[pulumi.Input[
|
212
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
214
213
|
__props__=None):
|
215
214
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
216
215
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -235,9 +234,9 @@ class TokenIntegration(pulumi.CustomResource):
|
|
235
234
|
def get(resource_name: str,
|
236
235
|
id: pulumi.Input[str],
|
237
236
|
opts: Optional[pulumi.ResourceOptions] = None,
|
238
|
-
name: Optional[pulumi.Input[
|
239
|
-
signalfx_aws_account: Optional[pulumi.Input[
|
240
|
-
token_id: Optional[pulumi.Input[
|
237
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
238
|
+
signalfx_aws_account: Optional[pulumi.Input[_builtins.str]] = None,
|
239
|
+
token_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'TokenIntegration':
|
241
240
|
"""
|
242
241
|
Get an existing TokenIntegration resource's state with the given name, id, and optional extra
|
243
242
|
properties used to qualify the lookup.
|
@@ -245,9 +244,9 @@ class TokenIntegration(pulumi.CustomResource):
|
|
245
244
|
:param str resource_name: The unique name of the resulting resource.
|
246
245
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
247
246
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
248
|
-
:param pulumi.Input[
|
249
|
-
:param pulumi.Input[
|
250
|
-
:param pulumi.Input[
|
247
|
+
:param pulumi.Input[_builtins.str] name: The name of this integration
|
248
|
+
:param pulumi.Input[_builtins.str] signalfx_aws_account: The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
249
|
+
:param pulumi.Input[_builtins.str] token_id: The SignalFx-generated AWS token to use with an AWS integration.
|
251
250
|
"""
|
252
251
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
253
252
|
|
@@ -258,25 +257,25 @@ class TokenIntegration(pulumi.CustomResource):
|
|
258
257
|
__props__.__dict__["token_id"] = token_id
|
259
258
|
return TokenIntegration(resource_name, opts=opts, __props__=__props__)
|
260
259
|
|
261
|
-
@property
|
260
|
+
@_builtins.property
|
262
261
|
@pulumi.getter
|
263
|
-
def name(self) -> pulumi.Output[
|
262
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
264
263
|
"""
|
265
264
|
The name of this integration
|
266
265
|
"""
|
267
266
|
return pulumi.get(self, "name")
|
268
267
|
|
269
|
-
@property
|
268
|
+
@_builtins.property
|
270
269
|
@pulumi.getter(name="signalfxAwsAccount")
|
271
|
-
def signalfx_aws_account(self) -> pulumi.Output[
|
270
|
+
def signalfx_aws_account(self) -> pulumi.Output[_builtins.str]:
|
272
271
|
"""
|
273
272
|
The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
274
273
|
"""
|
275
274
|
return pulumi.get(self, "signalfx_aws_account")
|
276
275
|
|
277
|
-
@property
|
276
|
+
@_builtins.property
|
278
277
|
@pulumi.getter(name="tokenId")
|
279
|
-
def token_id(self) -> pulumi.Output[
|
278
|
+
def token_id(self) -> pulumi.Output[_builtins.str]:
|
280
279
|
"""
|
281
280
|
The SignalFx-generated AWS token to use with an AWS integration.
|
282
281
|
"""
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
5
|
+
import builtins as _builtins
|
6
6
|
from .. import _utilities
|
7
7
|
import typing
|
8
8
|
# Export this package's modules as members:
|
pulumi_signalfx/azure/_inputs.py
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
6
|
-
import copy
|
5
|
+
import builtins as _builtins
|
7
6
|
import warnings
|
8
7
|
import sys
|
9
8
|
import pulumi
|
@@ -26,11 +25,11 @@ MYPY = False
|
|
26
25
|
|
27
26
|
if not MYPY:
|
28
27
|
class IntegrationCustomNamespacesPerServiceArgsDict(TypedDict):
|
29
|
-
namespaces: pulumi.Input[Sequence[pulumi.Input[
|
28
|
+
namespaces: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
30
29
|
"""
|
31
30
|
The additional namespaces.
|
32
31
|
"""
|
33
|
-
service: pulumi.Input[
|
32
|
+
service: pulumi.Input[_builtins.str]
|
34
33
|
"""
|
35
34
|
The name of the service.
|
36
35
|
"""
|
@@ -40,43 +39,43 @@ elif False:
|
|
40
39
|
@pulumi.input_type
|
41
40
|
class IntegrationCustomNamespacesPerServiceArgs:
|
42
41
|
def __init__(__self__, *,
|
43
|
-
namespaces: pulumi.Input[Sequence[pulumi.Input[
|
44
|
-
service: pulumi.Input[
|
42
|
+
namespaces: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
43
|
+
service: pulumi.Input[_builtins.str]):
|
45
44
|
"""
|
46
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
47
|
-
:param pulumi.Input[
|
45
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] namespaces: The additional namespaces.
|
46
|
+
:param pulumi.Input[_builtins.str] service: The name of the service.
|
48
47
|
"""
|
49
48
|
pulumi.set(__self__, "namespaces", namespaces)
|
50
49
|
pulumi.set(__self__, "service", service)
|
51
50
|
|
52
|
-
@property
|
51
|
+
@_builtins.property
|
53
52
|
@pulumi.getter
|
54
|
-
def namespaces(self) -> pulumi.Input[Sequence[pulumi.Input[
|
53
|
+
def namespaces(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
55
54
|
"""
|
56
55
|
The additional namespaces.
|
57
56
|
"""
|
58
57
|
return pulumi.get(self, "namespaces")
|
59
58
|
|
60
59
|
@namespaces.setter
|
61
|
-
def namespaces(self, value: pulumi.Input[Sequence[pulumi.Input[
|
60
|
+
def namespaces(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
62
61
|
pulumi.set(self, "namespaces", value)
|
63
62
|
|
64
|
-
@property
|
63
|
+
@_builtins.property
|
65
64
|
@pulumi.getter
|
66
|
-
def service(self) -> pulumi.Input[
|
65
|
+
def service(self) -> pulumi.Input[_builtins.str]:
|
67
66
|
"""
|
68
67
|
The name of the service.
|
69
68
|
"""
|
70
69
|
return pulumi.get(self, "service")
|
71
70
|
|
72
71
|
@service.setter
|
73
|
-
def service(self, value: pulumi.Input[
|
72
|
+
def service(self, value: pulumi.Input[_builtins.str]):
|
74
73
|
pulumi.set(self, "service", value)
|
75
74
|
|
76
75
|
|
77
76
|
if not MYPY:
|
78
77
|
class IntegrationResourceFilterRuleArgsDict(TypedDict):
|
79
|
-
filter_source: pulumi.Input[
|
78
|
+
filter_source: pulumi.Input[_builtins.str]
|
80
79
|
"""
|
81
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.
|
82
81
|
"""
|
@@ -86,22 +85,22 @@ elif False:
|
|
86
85
|
@pulumi.input_type
|
87
86
|
class IntegrationResourceFilterRuleArgs:
|
88
87
|
def __init__(__self__, *,
|
89
|
-
filter_source: pulumi.Input[
|
88
|
+
filter_source: pulumi.Input[_builtins.str]):
|
90
89
|
"""
|
91
|
-
:param pulumi.Input[
|
90
|
+
:param pulumi.Input[_builtins.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.
|
92
91
|
"""
|
93
92
|
pulumi.set(__self__, "filter_source", filter_source)
|
94
93
|
|
95
|
-
@property
|
94
|
+
@_builtins.property
|
96
95
|
@pulumi.getter(name="filterSource")
|
97
|
-
def filter_source(self) -> pulumi.Input[
|
96
|
+
def filter_source(self) -> pulumi.Input[_builtins.str]:
|
98
97
|
"""
|
99
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.
|
100
99
|
"""
|
101
100
|
return pulumi.get(self, "filter_source")
|
102
101
|
|
103
102
|
@filter_source.setter
|
104
|
-
def filter_source(self, value: pulumi.Input[
|
103
|
+
def filter_source(self, value: pulumi.Input[_builtins.str]):
|
105
104
|
pulumi.set(self, "filter_source", value)
|
106
105
|
|
107
106
|
|