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.
- pulumi_signalfx/__init__.py +9 -0
- pulumi_signalfx/_inputs.py +1976 -339
- pulumi_signalfx/_utilities.py +41 -5
- pulumi_signalfx/alert_muting_rule.py +126 -72
- pulumi_signalfx/aws/_inputs.py +85 -16
- pulumi_signalfx/aws/external_integration.py +20 -43
- pulumi_signalfx/aws/integration.py +252 -321
- pulumi_signalfx/aws/outputs.py +21 -16
- pulumi_signalfx/aws/token_integration.py +76 -31
- pulumi_signalfx/azure/_inputs.py +41 -4
- pulumi_signalfx/azure/integration.py +170 -217
- 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 +191 -140
- pulumi_signalfx/data_link.py +102 -109
- pulumi_signalfx/detector.py +318 -383
- pulumi_signalfx/event_feed_chart.py +51 -86
- pulumi_signalfx/gcp/_inputs.py +51 -0
- pulumi_signalfx/gcp/integration.py +224 -148
- pulumi_signalfx/gcp/outputs.py +44 -0
- pulumi_signalfx/get_dimension_values.py +47 -8
- pulumi_signalfx/heatmap_chart.py +191 -174
- pulumi_signalfx/jira/integration.py +86 -103
- pulumi_signalfx/list_chart.py +243 -255
- pulumi_signalfx/log/_inputs.py +33 -2
- pulumi_signalfx/log/outputs.py +7 -2
- pulumi_signalfx/log/timeline.py +76 -87
- pulumi_signalfx/log/view.py +146 -113
- pulumi_signalfx/metric_ruleset.py +213 -70
- pulumi_signalfx/opsgenie/integration.py +51 -50
- pulumi_signalfx/org_token.py +111 -104
- pulumi_signalfx/outputs.py +661 -339
- pulumi_signalfx/pagerduty/get_integration.py +22 -25
- pulumi_signalfx/pagerduty/integration.py +42 -39
- pulumi_signalfx/provider.py +99 -0
- pulumi_signalfx/pulumi-plugin.json +2 -1
- pulumi_signalfx/servicenow/integration.py +68 -95
- pulumi_signalfx/single_value_chart.py +131 -162
- pulumi_signalfx/slack/integration.py +42 -41
- pulumi_signalfx/slo.py +97 -243
- pulumi_signalfx/slo_chart.py +197 -0
- pulumi_signalfx/table_chart.py +66 -65
- pulumi_signalfx/team.py +100 -107
- pulumi_signalfx/text_chart.py +72 -45
- pulumi_signalfx/time_chart.py +287 -352
- pulumi_signalfx/victorops/integration.py +42 -41
- pulumi_signalfx/webhook_integration.py +168 -61
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736849687.dist-info}/METADATA +7 -6
- pulumi_signalfx-7.6.0a1736849687.dist-info/RECORD +65 -0
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736849687.dist-info}/WHEEL +1 -1
- pulumi_signalfx-7.2.0a1710160099.dist-info/RECORD +0 -64
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736849687.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
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -33,31 +38,21 @@ class IntegrationArgs:
|
|
|
33
38
|
sync_guest_os_namespaces: Optional[pulumi.Input[bool]] = None):
|
|
34
39
|
"""
|
|
35
40
|
The set of arguments for constructing a Integration resource.
|
|
36
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
37
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
38
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
39
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
40
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
41
|
+
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
42
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
43
|
+
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
44
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
41
45
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
42
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
46
|
+
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
43
47
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
44
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
:param pulumi.Input[str]
|
|
49
|
-
|
|
50
|
-
:param pulumi.Input[
|
|
51
|
-
|
|
52
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
53
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
54
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
55
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
56
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
57
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
58
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
59
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
60
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
48
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
49
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
50
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
51
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
52
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
53
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
54
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
55
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
61
56
|
"""
|
|
62
57
|
pulumi.set(__self__, "app_id", app_id)
|
|
63
58
|
pulumi.set(__self__, "enabled", enabled)
|
|
@@ -88,7 +83,7 @@ class IntegrationArgs:
|
|
|
88
83
|
@pulumi.getter(name="appId")
|
|
89
84
|
def app_id(self) -> pulumi.Input[str]:
|
|
90
85
|
"""
|
|
91
|
-
Azure application ID for the Splunk Observability Cloud app.
|
|
86
|
+
Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
92
87
|
"""
|
|
93
88
|
return pulumi.get(self, "app_id")
|
|
94
89
|
|
|
@@ -100,7 +95,7 @@ class IntegrationArgs:
|
|
|
100
95
|
@pulumi.getter
|
|
101
96
|
def enabled(self) -> pulumi.Input[bool]:
|
|
102
97
|
"""
|
|
103
|
-
Whether the integration is enabled
|
|
98
|
+
Whether the integration is enabled.
|
|
104
99
|
"""
|
|
105
100
|
return pulumi.get(self, "enabled")
|
|
106
101
|
|
|
@@ -112,7 +107,7 @@ class IntegrationArgs:
|
|
|
112
107
|
@pulumi.getter(name="secretKey")
|
|
113
108
|
def secret_key(self) -> pulumi.Input[str]:
|
|
114
109
|
"""
|
|
115
|
-
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
110
|
+
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
116
111
|
"""
|
|
117
112
|
return pulumi.get(self, "secret_key")
|
|
118
113
|
|
|
@@ -124,8 +119,7 @@ class IntegrationArgs:
|
|
|
124
119
|
@pulumi.getter
|
|
125
120
|
def services(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
126
121
|
"""
|
|
127
|
-
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
128
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
122
|
+
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
129
123
|
"""
|
|
130
124
|
return pulumi.get(self, "services")
|
|
131
125
|
|
|
@@ -149,7 +143,7 @@ class IntegrationArgs:
|
|
|
149
143
|
@pulumi.getter(name="tenantId")
|
|
150
144
|
def tenant_id(self) -> pulumi.Input[str]:
|
|
151
145
|
"""
|
|
152
|
-
Azure ID of the Azure tenant.
|
|
146
|
+
Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
153
147
|
"""
|
|
154
148
|
return pulumi.get(self, "tenant_id")
|
|
155
149
|
|
|
@@ -173,10 +167,7 @@ class IntegrationArgs:
|
|
|
173
167
|
@pulumi.getter(name="customNamespacesPerServices")
|
|
174
168
|
def custom_namespaces_per_services(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]]]:
|
|
175
169
|
"""
|
|
176
|
-
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
177
|
-
`sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
178
|
-
so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
179
|
-
addition to the default namespaces.
|
|
170
|
+
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
180
171
|
"""
|
|
181
172
|
return pulumi.get(self, "custom_namespaces_per_services")
|
|
182
173
|
|
|
@@ -188,8 +179,7 @@ class IntegrationArgs:
|
|
|
188
179
|
@pulumi.getter
|
|
189
180
|
def environment(self) -> Optional[pulumi.Input[str]]:
|
|
190
181
|
"""
|
|
191
|
-
|
|
192
|
-
`"azure"`
|
|
182
|
+
What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
193
183
|
"""
|
|
194
184
|
return pulumi.get(self, "environment")
|
|
195
185
|
|
|
@@ -201,8 +191,7 @@ class IntegrationArgs:
|
|
|
201
191
|
@pulumi.getter(name="importAzureMonitor")
|
|
202
192
|
def import_azure_monitor(self) -> Optional[pulumi.Input[bool]]:
|
|
203
193
|
"""
|
|
204
|
-
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
205
|
-
import only metadata. Defaults to true.
|
|
194
|
+
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
206
195
|
"""
|
|
207
196
|
return pulumi.get(self, "import_azure_monitor")
|
|
208
197
|
|
|
@@ -214,7 +203,7 @@ class IntegrationArgs:
|
|
|
214
203
|
@pulumi.getter
|
|
215
204
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
216
205
|
"""
|
|
217
|
-
Name of the integration
|
|
206
|
+
Name of the integration.
|
|
218
207
|
"""
|
|
219
208
|
return pulumi.get(self, "name")
|
|
220
209
|
|
|
@@ -226,7 +215,7 @@ class IntegrationArgs:
|
|
|
226
215
|
@pulumi.getter(name="namedToken")
|
|
227
216
|
def named_token(self) -> Optional[pulumi.Input[str]]:
|
|
228
217
|
"""
|
|
229
|
-
|
|
218
|
+
Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
230
219
|
"""
|
|
231
220
|
return pulumi.get(self, "named_token")
|
|
232
221
|
|
|
@@ -238,7 +227,7 @@ class IntegrationArgs:
|
|
|
238
227
|
@pulumi.getter(name="pollRate")
|
|
239
228
|
def poll_rate(self) -> Optional[pulumi.Input[int]]:
|
|
240
229
|
"""
|
|
241
|
-
Azure poll rate (in seconds).
|
|
230
|
+
Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
242
231
|
"""
|
|
243
232
|
return pulumi.get(self, "poll_rate")
|
|
244
233
|
|
|
@@ -250,9 +239,7 @@ class IntegrationArgs:
|
|
|
250
239
|
@pulumi.getter(name="resourceFilterRules")
|
|
251
240
|
def resource_filter_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]]]:
|
|
252
241
|
"""
|
|
253
|
-
List of rules for filtering Azure resources by their tags.
|
|
254
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
255
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
242
|
+
List of rules for filtering Azure resources by their tags.
|
|
256
243
|
"""
|
|
257
244
|
return pulumi.get(self, "resource_filter_rules")
|
|
258
245
|
|
|
@@ -264,9 +251,7 @@ class IntegrationArgs:
|
|
|
264
251
|
@pulumi.getter(name="syncGuestOsNamespaces")
|
|
265
252
|
def sync_guest_os_namespaces(self) -> Optional[pulumi.Input[bool]]:
|
|
266
253
|
"""
|
|
267
|
-
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
268
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
269
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
254
|
+
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
270
255
|
"""
|
|
271
256
|
return pulumi.get(self, "sync_guest_os_namespaces")
|
|
272
257
|
|
|
@@ -296,30 +281,20 @@ class _IntegrationState:
|
|
|
296
281
|
"""
|
|
297
282
|
Input properties used for looking up and filtering Integration resources.
|
|
298
283
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
299
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
300
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
:param pulumi.Input[
|
|
305
|
-
:param pulumi.Input[str]
|
|
306
|
-
|
|
307
|
-
:param pulumi.Input[
|
|
308
|
-
|
|
309
|
-
:param pulumi.Input[str]
|
|
310
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
311
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
312
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
313
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
314
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
315
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
316
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
317
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
284
|
+
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
285
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
286
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
287
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
288
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
289
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
290
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
291
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
292
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
293
|
+
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
294
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
318
295
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
319
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
320
|
-
|
|
321
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
322
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
296
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
297
|
+
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
323
298
|
"""
|
|
324
299
|
if additional_services is not None:
|
|
325
300
|
pulumi.set(__self__, "additional_services", additional_services)
|
|
@@ -368,7 +343,7 @@ class _IntegrationState:
|
|
|
368
343
|
@pulumi.getter(name="appId")
|
|
369
344
|
def app_id(self) -> Optional[pulumi.Input[str]]:
|
|
370
345
|
"""
|
|
371
|
-
Azure application ID for the Splunk Observability Cloud app.
|
|
346
|
+
Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
372
347
|
"""
|
|
373
348
|
return pulumi.get(self, "app_id")
|
|
374
349
|
|
|
@@ -380,10 +355,7 @@ class _IntegrationState:
|
|
|
380
355
|
@pulumi.getter(name="customNamespacesPerServices")
|
|
381
356
|
def custom_namespaces_per_services(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]]]:
|
|
382
357
|
"""
|
|
383
|
-
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
384
|
-
`sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
385
|
-
so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
386
|
-
addition to the default namespaces.
|
|
358
|
+
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
387
359
|
"""
|
|
388
360
|
return pulumi.get(self, "custom_namespaces_per_services")
|
|
389
361
|
|
|
@@ -395,7 +367,7 @@ class _IntegrationState:
|
|
|
395
367
|
@pulumi.getter
|
|
396
368
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
397
369
|
"""
|
|
398
|
-
Whether the integration is enabled
|
|
370
|
+
Whether the integration is enabled.
|
|
399
371
|
"""
|
|
400
372
|
return pulumi.get(self, "enabled")
|
|
401
373
|
|
|
@@ -407,8 +379,7 @@ class _IntegrationState:
|
|
|
407
379
|
@pulumi.getter
|
|
408
380
|
def environment(self) -> Optional[pulumi.Input[str]]:
|
|
409
381
|
"""
|
|
410
|
-
|
|
411
|
-
`"azure"`
|
|
382
|
+
What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
412
383
|
"""
|
|
413
384
|
return pulumi.get(self, "environment")
|
|
414
385
|
|
|
@@ -420,8 +391,7 @@ class _IntegrationState:
|
|
|
420
391
|
@pulumi.getter(name="importAzureMonitor")
|
|
421
392
|
def import_azure_monitor(self) -> Optional[pulumi.Input[bool]]:
|
|
422
393
|
"""
|
|
423
|
-
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
424
|
-
import only metadata. Defaults to true.
|
|
394
|
+
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
425
395
|
"""
|
|
426
396
|
return pulumi.get(self, "import_azure_monitor")
|
|
427
397
|
|
|
@@ -433,7 +403,7 @@ class _IntegrationState:
|
|
|
433
403
|
@pulumi.getter
|
|
434
404
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
435
405
|
"""
|
|
436
|
-
Name of the integration
|
|
406
|
+
Name of the integration.
|
|
437
407
|
"""
|
|
438
408
|
return pulumi.get(self, "name")
|
|
439
409
|
|
|
@@ -445,7 +415,7 @@ class _IntegrationState:
|
|
|
445
415
|
@pulumi.getter(name="namedToken")
|
|
446
416
|
def named_token(self) -> Optional[pulumi.Input[str]]:
|
|
447
417
|
"""
|
|
448
|
-
|
|
418
|
+
Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
449
419
|
"""
|
|
450
420
|
return pulumi.get(self, "named_token")
|
|
451
421
|
|
|
@@ -457,7 +427,7 @@ class _IntegrationState:
|
|
|
457
427
|
@pulumi.getter(name="pollRate")
|
|
458
428
|
def poll_rate(self) -> Optional[pulumi.Input[int]]:
|
|
459
429
|
"""
|
|
460
|
-
Azure poll rate (in seconds).
|
|
430
|
+
Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
461
431
|
"""
|
|
462
432
|
return pulumi.get(self, "poll_rate")
|
|
463
433
|
|
|
@@ -469,9 +439,7 @@ class _IntegrationState:
|
|
|
469
439
|
@pulumi.getter(name="resourceFilterRules")
|
|
470
440
|
def resource_filter_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]]]:
|
|
471
441
|
"""
|
|
472
|
-
List of rules for filtering Azure resources by their tags.
|
|
473
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
474
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
442
|
+
List of rules for filtering Azure resources by their tags.
|
|
475
443
|
"""
|
|
476
444
|
return pulumi.get(self, "resource_filter_rules")
|
|
477
445
|
|
|
@@ -483,7 +451,7 @@ class _IntegrationState:
|
|
|
483
451
|
@pulumi.getter(name="secretKey")
|
|
484
452
|
def secret_key(self) -> Optional[pulumi.Input[str]]:
|
|
485
453
|
"""
|
|
486
|
-
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
454
|
+
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
487
455
|
"""
|
|
488
456
|
return pulumi.get(self, "secret_key")
|
|
489
457
|
|
|
@@ -495,8 +463,7 @@ class _IntegrationState:
|
|
|
495
463
|
@pulumi.getter
|
|
496
464
|
def services(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
497
465
|
"""
|
|
498
|
-
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
499
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
466
|
+
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
500
467
|
"""
|
|
501
468
|
return pulumi.get(self, "services")
|
|
502
469
|
|
|
@@ -520,9 +487,7 @@ class _IntegrationState:
|
|
|
520
487
|
@pulumi.getter(name="syncGuestOsNamespaces")
|
|
521
488
|
def sync_guest_os_namespaces(self) -> Optional[pulumi.Input[bool]]:
|
|
522
489
|
"""
|
|
523
|
-
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
524
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
525
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
490
|
+
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
526
491
|
"""
|
|
527
492
|
return pulumi.get(self, "sync_guest_os_namespaces")
|
|
528
493
|
|
|
@@ -534,7 +499,7 @@ class _IntegrationState:
|
|
|
534
499
|
@pulumi.getter(name="tenantId")
|
|
535
500
|
def tenant_id(self) -> Optional[pulumi.Input[str]]:
|
|
536
501
|
"""
|
|
537
|
-
Azure ID of the Azure tenant.
|
|
502
|
+
Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
538
503
|
"""
|
|
539
504
|
return pulumi.get(self, "tenant_id")
|
|
540
505
|
|
|
@@ -550,14 +515,14 @@ class Integration(pulumi.CustomResource):
|
|
|
550
515
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
551
516
|
additional_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
552
517
|
app_id: Optional[pulumi.Input[str]] = None,
|
|
553
|
-
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
518
|
+
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]]] = None,
|
|
554
519
|
enabled: Optional[pulumi.Input[bool]] = None,
|
|
555
520
|
environment: Optional[pulumi.Input[str]] = None,
|
|
556
521
|
import_azure_monitor: Optional[pulumi.Input[bool]] = None,
|
|
557
522
|
name: Optional[pulumi.Input[str]] = None,
|
|
558
523
|
named_token: Optional[pulumi.Input[str]] = None,
|
|
559
524
|
poll_rate: Optional[pulumi.Input[int]] = None,
|
|
560
|
-
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
525
|
+
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]]] = None,
|
|
561
526
|
secret_key: Optional[pulumi.Input[str]] = None,
|
|
562
527
|
services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
563
528
|
subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -571,59 +536,58 @@ class Integration(pulumi.CustomResource):
|
|
|
571
536
|
|
|
572
537
|
## Example
|
|
573
538
|
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
539
|
+
```python
|
|
540
|
+
import pulumi
|
|
541
|
+
import pulumi_signalfx as signalfx
|
|
542
|
+
|
|
543
|
+
azure_myteam = signalfx.azure.Integration("azure_myteam",
|
|
544
|
+
name="Azure Foo",
|
|
545
|
+
enabled=True,
|
|
546
|
+
environment="azure",
|
|
547
|
+
poll_rate=300,
|
|
548
|
+
secret_key="XXX",
|
|
549
|
+
app_id="YYY",
|
|
550
|
+
tenant_id="ZZZ",
|
|
551
|
+
services=["microsoft.sql/servers/elasticpools"],
|
|
552
|
+
subscriptions=["sub-guid-here"],
|
|
553
|
+
additional_services=[
|
|
554
|
+
"some/service",
|
|
555
|
+
"another/service",
|
|
556
|
+
],
|
|
557
|
+
custom_namespaces_per_services=[{
|
|
558
|
+
"service": "Microsoft.Compute/virtualMachines",
|
|
559
|
+
"namespaces": [
|
|
560
|
+
"monitoringAgent",
|
|
561
|
+
"customNamespace",
|
|
562
|
+
],
|
|
563
|
+
}],
|
|
564
|
+
resource_filter_rules=[
|
|
565
|
+
{
|
|
566
|
+
"filter_source": "filter('azure_tag_service', 'payment') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"filter_source": "filter('azure_tag_service', 'notification') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
570
|
+
},
|
|
571
|
+
])
|
|
572
|
+
```
|
|
599
573
|
|
|
600
574
|
:param str resource_name: The name of the resource.
|
|
601
575
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
602
576
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
603
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
604
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
:param pulumi.Input[
|
|
609
|
-
:param pulumi.Input[str]
|
|
610
|
-
|
|
611
|
-
:param pulumi.Input[
|
|
612
|
-
|
|
613
|
-
:param pulumi.Input[str]
|
|
614
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
615
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
616
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationResourceFilterRuleArgs']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
617
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
618
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
619
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
620
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
621
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
577
|
+
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
578
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
579
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
580
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
581
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
582
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
583
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
584
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
585
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
586
|
+
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
587
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
622
588
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
623
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
624
|
-
|
|
625
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
626
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
589
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
590
|
+
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
627
591
|
"""
|
|
628
592
|
...
|
|
629
593
|
@overload
|
|
@@ -638,31 +602,40 @@ class Integration(pulumi.CustomResource):
|
|
|
638
602
|
|
|
639
603
|
## Example
|
|
640
604
|
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
605
|
+
```python
|
|
606
|
+
import pulumi
|
|
607
|
+
import pulumi_signalfx as signalfx
|
|
608
|
+
|
|
609
|
+
azure_myteam = signalfx.azure.Integration("azure_myteam",
|
|
610
|
+
name="Azure Foo",
|
|
611
|
+
enabled=True,
|
|
612
|
+
environment="azure",
|
|
613
|
+
poll_rate=300,
|
|
614
|
+
secret_key="XXX",
|
|
615
|
+
app_id="YYY",
|
|
616
|
+
tenant_id="ZZZ",
|
|
617
|
+
services=["microsoft.sql/servers/elasticpools"],
|
|
618
|
+
subscriptions=["sub-guid-here"],
|
|
619
|
+
additional_services=[
|
|
620
|
+
"some/service",
|
|
621
|
+
"another/service",
|
|
622
|
+
],
|
|
623
|
+
custom_namespaces_per_services=[{
|
|
624
|
+
"service": "Microsoft.Compute/virtualMachines",
|
|
625
|
+
"namespaces": [
|
|
626
|
+
"monitoringAgent",
|
|
627
|
+
"customNamespace",
|
|
628
|
+
],
|
|
629
|
+
}],
|
|
630
|
+
resource_filter_rules=[
|
|
631
|
+
{
|
|
632
|
+
"filter_source": "filter('azure_tag_service', 'payment') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"filter_source": "filter('azure_tag_service', 'notification') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
636
|
+
},
|
|
637
|
+
])
|
|
638
|
+
```
|
|
666
639
|
|
|
667
640
|
:param str resource_name: The name of the resource.
|
|
668
641
|
:param IntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -681,14 +654,14 @@ class Integration(pulumi.CustomResource):
|
|
|
681
654
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
682
655
|
additional_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
683
656
|
app_id: Optional[pulumi.Input[str]] = None,
|
|
684
|
-
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
657
|
+
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]]] = None,
|
|
685
658
|
enabled: Optional[pulumi.Input[bool]] = None,
|
|
686
659
|
environment: Optional[pulumi.Input[str]] = None,
|
|
687
660
|
import_azure_monitor: Optional[pulumi.Input[bool]] = None,
|
|
688
661
|
name: Optional[pulumi.Input[str]] = None,
|
|
689
662
|
named_token: Optional[pulumi.Input[str]] = None,
|
|
690
663
|
poll_rate: Optional[pulumi.Input[int]] = None,
|
|
691
|
-
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
664
|
+
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]]] = None,
|
|
692
665
|
secret_key: Optional[pulumi.Input[str]] = None,
|
|
693
666
|
services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
694
667
|
subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -744,14 +717,14 @@ class Integration(pulumi.CustomResource):
|
|
|
744
717
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
745
718
|
additional_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
746
719
|
app_id: Optional[pulumi.Input[str]] = None,
|
|
747
|
-
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
720
|
+
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]]] = None,
|
|
748
721
|
enabled: Optional[pulumi.Input[bool]] = None,
|
|
749
722
|
environment: Optional[pulumi.Input[str]] = None,
|
|
750
723
|
import_azure_monitor: Optional[pulumi.Input[bool]] = None,
|
|
751
724
|
name: Optional[pulumi.Input[str]] = None,
|
|
752
725
|
named_token: Optional[pulumi.Input[str]] = None,
|
|
753
726
|
poll_rate: Optional[pulumi.Input[int]] = None,
|
|
754
|
-
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
727
|
+
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]]] = None,
|
|
755
728
|
secret_key: Optional[pulumi.Input[str]] = None,
|
|
756
729
|
services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
757
730
|
subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -765,30 +738,20 @@ class Integration(pulumi.CustomResource):
|
|
|
765
738
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
766
739
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
767
740
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
768
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
769
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
:param pulumi.Input[
|
|
774
|
-
:param pulumi.Input[str]
|
|
775
|
-
|
|
776
|
-
:param pulumi.Input[
|
|
777
|
-
|
|
778
|
-
:param pulumi.Input[str]
|
|
779
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
780
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
781
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationResourceFilterRuleArgs']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
782
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
783
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
784
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
785
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
786
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
741
|
+
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
742
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
743
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
744
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
745
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
746
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
747
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
748
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
749
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
750
|
+
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
751
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
787
752
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
788
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
789
|
-
|
|
790
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
791
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
753
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
754
|
+
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
792
755
|
"""
|
|
793
756
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
794
757
|
|
|
@@ -823,7 +786,7 @@ class Integration(pulumi.CustomResource):
|
|
|
823
786
|
@pulumi.getter(name="appId")
|
|
824
787
|
def app_id(self) -> pulumi.Output[str]:
|
|
825
788
|
"""
|
|
826
|
-
Azure application ID for the Splunk Observability Cloud app.
|
|
789
|
+
Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
827
790
|
"""
|
|
828
791
|
return pulumi.get(self, "app_id")
|
|
829
792
|
|
|
@@ -831,10 +794,7 @@ class Integration(pulumi.CustomResource):
|
|
|
831
794
|
@pulumi.getter(name="customNamespacesPerServices")
|
|
832
795
|
def custom_namespaces_per_services(self) -> pulumi.Output[Optional[Sequence['outputs.IntegrationCustomNamespacesPerService']]]:
|
|
833
796
|
"""
|
|
834
|
-
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
835
|
-
`sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
836
|
-
so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
837
|
-
addition to the default namespaces.
|
|
797
|
+
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
838
798
|
"""
|
|
839
799
|
return pulumi.get(self, "custom_namespaces_per_services")
|
|
840
800
|
|
|
@@ -842,7 +802,7 @@ class Integration(pulumi.CustomResource):
|
|
|
842
802
|
@pulumi.getter
|
|
843
803
|
def enabled(self) -> pulumi.Output[bool]:
|
|
844
804
|
"""
|
|
845
|
-
Whether the integration is enabled
|
|
805
|
+
Whether the integration is enabled.
|
|
846
806
|
"""
|
|
847
807
|
return pulumi.get(self, "enabled")
|
|
848
808
|
|
|
@@ -850,8 +810,7 @@ class Integration(pulumi.CustomResource):
|
|
|
850
810
|
@pulumi.getter
|
|
851
811
|
def environment(self) -> pulumi.Output[Optional[str]]:
|
|
852
812
|
"""
|
|
853
|
-
|
|
854
|
-
`"azure"`
|
|
813
|
+
What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
855
814
|
"""
|
|
856
815
|
return pulumi.get(self, "environment")
|
|
857
816
|
|
|
@@ -859,8 +818,7 @@ class Integration(pulumi.CustomResource):
|
|
|
859
818
|
@pulumi.getter(name="importAzureMonitor")
|
|
860
819
|
def import_azure_monitor(self) -> pulumi.Output[Optional[bool]]:
|
|
861
820
|
"""
|
|
862
|
-
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
863
|
-
import only metadata. Defaults to true.
|
|
821
|
+
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
864
822
|
"""
|
|
865
823
|
return pulumi.get(self, "import_azure_monitor")
|
|
866
824
|
|
|
@@ -868,7 +826,7 @@ class Integration(pulumi.CustomResource):
|
|
|
868
826
|
@pulumi.getter
|
|
869
827
|
def name(self) -> pulumi.Output[str]:
|
|
870
828
|
"""
|
|
871
|
-
Name of the integration
|
|
829
|
+
Name of the integration.
|
|
872
830
|
"""
|
|
873
831
|
return pulumi.get(self, "name")
|
|
874
832
|
|
|
@@ -876,7 +834,7 @@ class Integration(pulumi.CustomResource):
|
|
|
876
834
|
@pulumi.getter(name="namedToken")
|
|
877
835
|
def named_token(self) -> pulumi.Output[Optional[str]]:
|
|
878
836
|
"""
|
|
879
|
-
|
|
837
|
+
Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
880
838
|
"""
|
|
881
839
|
return pulumi.get(self, "named_token")
|
|
882
840
|
|
|
@@ -884,7 +842,7 @@ class Integration(pulumi.CustomResource):
|
|
|
884
842
|
@pulumi.getter(name="pollRate")
|
|
885
843
|
def poll_rate(self) -> pulumi.Output[Optional[int]]:
|
|
886
844
|
"""
|
|
887
|
-
Azure poll rate (in seconds).
|
|
845
|
+
Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
888
846
|
"""
|
|
889
847
|
return pulumi.get(self, "poll_rate")
|
|
890
848
|
|
|
@@ -892,9 +850,7 @@ class Integration(pulumi.CustomResource):
|
|
|
892
850
|
@pulumi.getter(name="resourceFilterRules")
|
|
893
851
|
def resource_filter_rules(self) -> pulumi.Output[Optional[Sequence['outputs.IntegrationResourceFilterRule']]]:
|
|
894
852
|
"""
|
|
895
|
-
List of rules for filtering Azure resources by their tags.
|
|
896
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
897
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
853
|
+
List of rules for filtering Azure resources by their tags.
|
|
898
854
|
"""
|
|
899
855
|
return pulumi.get(self, "resource_filter_rules")
|
|
900
856
|
|
|
@@ -902,7 +858,7 @@ class Integration(pulumi.CustomResource):
|
|
|
902
858
|
@pulumi.getter(name="secretKey")
|
|
903
859
|
def secret_key(self) -> pulumi.Output[str]:
|
|
904
860
|
"""
|
|
905
|
-
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
861
|
+
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
906
862
|
"""
|
|
907
863
|
return pulumi.get(self, "secret_key")
|
|
908
864
|
|
|
@@ -910,8 +866,7 @@ class Integration(pulumi.CustomResource):
|
|
|
910
866
|
@pulumi.getter
|
|
911
867
|
def services(self) -> pulumi.Output[Sequence[str]]:
|
|
912
868
|
"""
|
|
913
|
-
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
914
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
869
|
+
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
915
870
|
"""
|
|
916
871
|
return pulumi.get(self, "services")
|
|
917
872
|
|
|
@@ -927,9 +882,7 @@ class Integration(pulumi.CustomResource):
|
|
|
927
882
|
@pulumi.getter(name="syncGuestOsNamespaces")
|
|
928
883
|
def sync_guest_os_namespaces(self) -> pulumi.Output[Optional[bool]]:
|
|
929
884
|
"""
|
|
930
|
-
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
931
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
932
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
885
|
+
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
933
886
|
"""
|
|
934
887
|
return pulumi.get(self, "sync_guest_os_namespaces")
|
|
935
888
|
|
|
@@ -937,7 +890,7 @@ class Integration(pulumi.CustomResource):
|
|
|
937
890
|
@pulumi.getter(name="tenantId")
|
|
938
891
|
def tenant_id(self) -> pulumi.Output[str]:
|
|
939
892
|
"""
|
|
940
|
-
Azure ID of the Azure tenant.
|
|
893
|
+
Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
941
894
|
"""
|
|
942
895
|
return pulumi.get(self, "tenant_id")
|
|
943
896
|
|