pulumi-newrelic 5.22.0__py3-none-any.whl → 5.58.0a1763707205__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.

Potentially problematic release.


This version of pulumi-newrelic might be problematic. Click here for more details.

Files changed (92) hide show
  1. pulumi_newrelic/__init__.py +28 -1
  2. pulumi_newrelic/_inputs.py +10385 -2976
  3. pulumi_newrelic/_utilities.py +50 -10
  4. pulumi_newrelic/account_management.py +48 -42
  5. pulumi_newrelic/alert_channel.py +165 -175
  6. pulumi_newrelic/alert_condition.py +307 -319
  7. pulumi_newrelic/alert_muting_rule.py +193 -140
  8. pulumi_newrelic/alert_policy.py +121 -117
  9. pulumi_newrelic/alert_policy_channel.py +89 -79
  10. pulumi_newrelic/api_access_key.py +195 -193
  11. pulumi_newrelic/browser_application.py +120 -114
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +4267 -2714
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +206 -196
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +143 -228
  16. pulumi_newrelic/cloud/aws_integrations.py +510 -1490
  17. pulumi_newrelic/cloud/aws_link_account.py +80 -76
  18. pulumi_newrelic/cloud/azure_integrations.py +673 -587
  19. pulumi_newrelic/cloud/azure_link_account.py +121 -117
  20. pulumi_newrelic/cloud/gcp_integrations.py +428 -408
  21. pulumi_newrelic/cloud/gcp_link_account.py +65 -61
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1678 -2321
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +8 -3
  26. pulumi_newrelic/config/vars.py +22 -17
  27. pulumi_newrelic/data_partition_rule.py +119 -117
  28. pulumi_newrelic/entity_tags.py +111 -53
  29. pulumi_newrelic/events_to_metrics_rule.py +106 -102
  30. pulumi_newrelic/get_account.py +41 -33
  31. pulumi_newrelic/get_alert_channel.py +73 -28
  32. pulumi_newrelic/get_alert_policy.py +82 -33
  33. pulumi_newrelic/get_application.py +51 -43
  34. pulumi_newrelic/get_authentication_domain.py +27 -23
  35. pulumi_newrelic/get_cloud_account.py +43 -35
  36. pulumi_newrelic/get_entity.py +126 -183
  37. pulumi_newrelic/get_group.py +76 -31
  38. pulumi_newrelic/get_key_transaction.py +117 -42
  39. pulumi_newrelic/get_notification_destination.py +75 -38
  40. pulumi_newrelic/get_obfuscation_expression.py +47 -39
  41. pulumi_newrelic/get_service_level_alert_helper.py +189 -171
  42. pulumi_newrelic/get_test_grok_pattern.py +47 -36
  43. pulumi_newrelic/get_user.py +39 -31
  44. pulumi_newrelic/group.py +59 -199
  45. pulumi_newrelic/infra_alert_condition.py +399 -405
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +71 -28
  48. pulumi_newrelic/insights/event.py +54 -52
  49. pulumi_newrelic/insights/outputs.py +28 -23
  50. pulumi_newrelic/key_transaction.py +465 -0
  51. pulumi_newrelic/log_parsing_rule.py +159 -157
  52. pulumi_newrelic/monitor_downtime.py +311 -331
  53. pulumi_newrelic/notification_channel.py +534 -464
  54. pulumi_newrelic/notification_destination.py +238 -141
  55. pulumi_newrelic/nrql_alert_condition.py +820 -614
  56. pulumi_newrelic/nrql_drop_rule.py +113 -151
  57. pulumi_newrelic/obfuscation_expression.py +80 -76
  58. pulumi_newrelic/obfuscation_rule.py +115 -109
  59. pulumi_newrelic/one_dashboard.py +110 -104
  60. pulumi_newrelic/one_dashboard_json.py +69 -63
  61. pulumi_newrelic/one_dashboard_raw.py +212 -206
  62. pulumi_newrelic/outputs.py +4936 -2234
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +519 -89
  66. pulumi_newrelic/plugins/application_settings.py +463 -187
  67. pulumi_newrelic/plugins/outputs.py +336 -74
  68. pulumi_newrelic/plugins/workload.py +313 -189
  69. pulumi_newrelic/provider.py +156 -142
  70. pulumi_newrelic/pulumi-plugin.json +2 -1
  71. pulumi_newrelic/service_level.py +263 -263
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +265 -108
  74. pulumi_newrelic/synthetics/alert_condition.py +170 -180
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +297 -249
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +306 -258
  77. pulumi_newrelic/synthetics/get_private_location.py +51 -47
  78. pulumi_newrelic/synthetics/get_secure_credential.py +39 -31
  79. pulumi_newrelic/synthetics/monitor.py +658 -460
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +211 -205
  81. pulumi_newrelic/synthetics/outputs.py +92 -87
  82. pulumi_newrelic/synthetics/private_location.py +118 -112
  83. pulumi_newrelic/synthetics/script_monitor.py +613 -373
  84. pulumi_newrelic/synthetics/secure_credential.py +97 -95
  85. pulumi_newrelic/synthetics/step_monitor.py +445 -275
  86. pulumi_newrelic/user.py +84 -80
  87. pulumi_newrelic/workflow.py +336 -322
  88. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/METADATA +7 -6
  89. pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.22.0.dist-info/RECORD +0 -89
  92. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,17 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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 copy
5
+ import builtins as _builtins
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 *
@@ -16,11 +21,12 @@ __all__ = ['AzureIntegrationsArgs', 'AzureIntegrations']
16
21
  @pulumi.input_type
17
22
  class AzureIntegrationsArgs:
18
23
  def __init__(__self__, *,
19
- linked_account_id: pulumi.Input[int],
20
- account_id: Optional[pulumi.Input[int]] = None,
24
+ linked_account_id: pulumi.Input[_builtins.str],
25
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
21
26
  api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
22
27
  app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
23
28
  app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
29
+ auto_discovery: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']] = None,
24
30
  containers: Optional[pulumi.Input['AzureIntegrationsContainersArgs']] = None,
25
31
  cosmos_db: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']] = None,
26
32
  cost_management: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']] = None,
@@ -52,11 +58,15 @@ class AzureIntegrationsArgs:
52
58
  vpn_gateway: Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']] = None):
53
59
  """
54
60
  The set of arguments for constructing a AzureIntegrations resource.
55
- :param pulumi.Input[int] linked_account_id: The ID of the linked Azure account in New Relic.
56
- :param pulumi.Input[int] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
61
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
62
+
63
+
64
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
65
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
57
66
  :param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
58
67
  :param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
59
68
  :param pulumi.Input['AzureIntegrationsAppServiceArgs'] app_service: Azure App Service. See Integration blocks below for details.
69
+ :param pulumi.Input['AzureIntegrationsAutoDiscoveryArgs'] auto_discovery: Azure Auto Discovery
60
70
  :param pulumi.Input['AzureIntegrationsContainersArgs'] containers: Azure Containers. See Integration blocks below for details.
61
71
  :param pulumi.Input['AzureIntegrationsCosmosDbArgs'] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
62
72
  :param pulumi.Input['AzureIntegrationsCostManagementArgs'] cost_management: Azure Cost Management. See Integration blocks below for details.
@@ -72,6 +82,8 @@ class AzureIntegrationsArgs:
72
82
  :param pulumi.Input['AzureIntegrationsMachineLearningArgs'] machine_learning: Azure Machine Learning. See Integration blocks below for details.
73
83
  :param pulumi.Input['AzureIntegrationsMariaDbArgs'] maria_db: Azure MariaDB. See Integration blocks below for details.
74
84
  :param pulumi.Input['AzureIntegrationsMonitorArgs'] monitor: Azure Monitor. See Integration blocks below for details.
85
+
86
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
75
87
  :param pulumi.Input['AzureIntegrationsMysqlArgs'] mysql: Azure MySQL. See Integration blocks below for details.
76
88
  :param pulumi.Input['AzureIntegrationsMysqlFlexibleArgs'] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
77
89
  :param pulumi.Input['AzureIntegrationsPostgresqlArgs'] postgresql: Azure PostgreSQL. See Integration blocks below for details.
@@ -82,14 +94,14 @@ class AzureIntegrationsArgs:
82
94
  :param pulumi.Input['AzureIntegrationsSqlArgs'] sql: Azure SQL. See Integration blocks below for details.
83
95
  :param pulumi.Input['AzureIntegrationsSqlManagedArgs'] sql_managed: Azure SQL Managed. See Integration blocks below for details.
84
96
  :param pulumi.Input['AzureIntegrationsStorageArgs'] storage: for Azure Storage. See Integration blocks below for details.
97
+
98
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
85
99
  :param pulumi.Input['AzureIntegrationsVirtualMachineArgs'] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
86
100
  :param pulumi.Input['AzureIntegrationsVirtualNetworksArgs'] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
87
-
88
- Below argument supports the minimum metric polling interval of 3600 seconds
89
101
  :param pulumi.Input['AzureIntegrationsVmsArgs'] vms: Azure VMs. See Integration blocks below for details.
90
102
  :param pulumi.Input['AzureIntegrationsVpnGatewayArgs'] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
91
103
 
92
- Below arguments supports the minimum metric polling interval of 900 seconds
104
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
93
105
  """
94
106
  pulumi.set(__self__, "linked_account_id", linked_account_id)
95
107
  if account_id is not None:
@@ -100,6 +112,8 @@ class AzureIntegrationsArgs:
100
112
  pulumi.set(__self__, "app_gateway", app_gateway)
101
113
  if app_service is not None:
102
114
  pulumi.set(__self__, "app_service", app_service)
115
+ if auto_discovery is not None:
116
+ pulumi.set(__self__, "auto_discovery", auto_discovery)
103
117
  if containers is not None:
104
118
  pulumi.set(__self__, "containers", containers)
105
119
  if cosmos_db is not None:
@@ -159,31 +173,34 @@ class AzureIntegrationsArgs:
159
173
  if vpn_gateway is not None:
160
174
  pulumi.set(__self__, "vpn_gateway", vpn_gateway)
161
175
 
162
- @property
176
+ @_builtins.property
163
177
  @pulumi.getter(name="linkedAccountId")
164
- def linked_account_id(self) -> pulumi.Input[int]:
178
+ def linked_account_id(self) -> pulumi.Input[_builtins.str]:
165
179
  """
166
180
  The ID of the linked Azure account in New Relic.
181
+
182
+
183
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
167
184
  """
168
185
  return pulumi.get(self, "linked_account_id")
169
186
 
170
187
  @linked_account_id.setter
171
- def linked_account_id(self, value: pulumi.Input[int]):
188
+ def linked_account_id(self, value: pulumi.Input[_builtins.str]):
172
189
  pulumi.set(self, "linked_account_id", value)
173
190
 
174
- @property
191
+ @_builtins.property
175
192
  @pulumi.getter(name="accountId")
176
- def account_id(self) -> Optional[pulumi.Input[int]]:
193
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
177
194
  """
178
195
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
179
196
  """
180
197
  return pulumi.get(self, "account_id")
181
198
 
182
199
  @account_id.setter
183
- def account_id(self, value: Optional[pulumi.Input[int]]):
200
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
184
201
  pulumi.set(self, "account_id", value)
185
202
 
186
- @property
203
+ @_builtins.property
187
204
  @pulumi.getter(name="apiManagement")
188
205
  def api_management(self) -> Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]:
189
206
  """
@@ -195,7 +212,7 @@ class AzureIntegrationsArgs:
195
212
  def api_management(self, value: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]):
196
213
  pulumi.set(self, "api_management", value)
197
214
 
198
- @property
215
+ @_builtins.property
199
216
  @pulumi.getter(name="appGateway")
200
217
  def app_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]:
201
218
  """
@@ -207,7 +224,7 @@ class AzureIntegrationsArgs:
207
224
  def app_gateway(self, value: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]):
208
225
  pulumi.set(self, "app_gateway", value)
209
226
 
210
- @property
227
+ @_builtins.property
211
228
  @pulumi.getter(name="appService")
212
229
  def app_service(self) -> Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]:
213
230
  """
@@ -219,7 +236,19 @@ class AzureIntegrationsArgs:
219
236
  def app_service(self, value: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]):
220
237
  pulumi.set(self, "app_service", value)
221
238
 
222
- @property
239
+ @_builtins.property
240
+ @pulumi.getter(name="autoDiscovery")
241
+ def auto_discovery(self) -> Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]:
242
+ """
243
+ Azure Auto Discovery
244
+ """
245
+ return pulumi.get(self, "auto_discovery")
246
+
247
+ @auto_discovery.setter
248
+ def auto_discovery(self, value: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]):
249
+ pulumi.set(self, "auto_discovery", value)
250
+
251
+ @_builtins.property
223
252
  @pulumi.getter
224
253
  def containers(self) -> Optional[pulumi.Input['AzureIntegrationsContainersArgs']]:
225
254
  """
@@ -231,7 +260,7 @@ class AzureIntegrationsArgs:
231
260
  def containers(self, value: Optional[pulumi.Input['AzureIntegrationsContainersArgs']]):
232
261
  pulumi.set(self, "containers", value)
233
262
 
234
- @property
263
+ @_builtins.property
235
264
  @pulumi.getter(name="cosmosDb")
236
265
  def cosmos_db(self) -> Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]:
237
266
  """
@@ -243,7 +272,7 @@ class AzureIntegrationsArgs:
243
272
  def cosmos_db(self, value: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]):
244
273
  pulumi.set(self, "cosmos_db", value)
245
274
 
246
- @property
275
+ @_builtins.property
247
276
  @pulumi.getter(name="costManagement")
248
277
  def cost_management(self) -> Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]:
249
278
  """
@@ -255,7 +284,7 @@ class AzureIntegrationsArgs:
255
284
  def cost_management(self, value: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]):
256
285
  pulumi.set(self, "cost_management", value)
257
286
 
258
- @property
287
+ @_builtins.property
259
288
  @pulumi.getter(name="dataFactory")
260
289
  def data_factory(self) -> Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]:
261
290
  """
@@ -267,7 +296,7 @@ class AzureIntegrationsArgs:
267
296
  def data_factory(self, value: Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]):
268
297
  pulumi.set(self, "data_factory", value)
269
298
 
270
- @property
299
+ @_builtins.property
271
300
  @pulumi.getter(name="eventHub")
272
301
  def event_hub(self) -> Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]:
273
302
  """
@@ -279,7 +308,7 @@ class AzureIntegrationsArgs:
279
308
  def event_hub(self, value: Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]):
280
309
  pulumi.set(self, "event_hub", value)
281
310
 
282
- @property
311
+ @_builtins.property
283
312
  @pulumi.getter(name="expressRoute")
284
313
  def express_route(self) -> Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]:
285
314
  """
@@ -291,7 +320,7 @@ class AzureIntegrationsArgs:
291
320
  def express_route(self, value: Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]):
292
321
  pulumi.set(self, "express_route", value)
293
322
 
294
- @property
323
+ @_builtins.property
295
324
  @pulumi.getter
296
325
  def firewalls(self) -> Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]:
297
326
  """
@@ -303,7 +332,7 @@ class AzureIntegrationsArgs:
303
332
  def firewalls(self, value: Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]):
304
333
  pulumi.set(self, "firewalls", value)
305
334
 
306
- @property
335
+ @_builtins.property
307
336
  @pulumi.getter(name="frontDoor")
308
337
  def front_door(self) -> Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]:
309
338
  """
@@ -315,7 +344,7 @@ class AzureIntegrationsArgs:
315
344
  def front_door(self, value: Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]):
316
345
  pulumi.set(self, "front_door", value)
317
346
 
318
- @property
347
+ @_builtins.property
319
348
  @pulumi.getter
320
349
  def functions(self) -> Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]:
321
350
  """
@@ -327,7 +356,7 @@ class AzureIntegrationsArgs:
327
356
  def functions(self, value: Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]):
328
357
  pulumi.set(self, "functions", value)
329
358
 
330
- @property
359
+ @_builtins.property
331
360
  @pulumi.getter(name="keyVault")
332
361
  def key_vault(self) -> Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]:
333
362
  """
@@ -339,7 +368,7 @@ class AzureIntegrationsArgs:
339
368
  def key_vault(self, value: Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]):
340
369
  pulumi.set(self, "key_vault", value)
341
370
 
342
- @property
371
+ @_builtins.property
343
372
  @pulumi.getter(name="loadBalancer")
344
373
  def load_balancer(self) -> Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]:
345
374
  """
@@ -351,7 +380,7 @@ class AzureIntegrationsArgs:
351
380
  def load_balancer(self, value: Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]):
352
381
  pulumi.set(self, "load_balancer", value)
353
382
 
354
- @property
383
+ @_builtins.property
355
384
  @pulumi.getter(name="logicApps")
356
385
  def logic_apps(self) -> Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]:
357
386
  """
@@ -363,7 +392,7 @@ class AzureIntegrationsArgs:
363
392
  def logic_apps(self, value: Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]):
364
393
  pulumi.set(self, "logic_apps", value)
365
394
 
366
- @property
395
+ @_builtins.property
367
396
  @pulumi.getter(name="machineLearning")
368
397
  def machine_learning(self) -> Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]:
369
398
  """
@@ -375,7 +404,7 @@ class AzureIntegrationsArgs:
375
404
  def machine_learning(self, value: Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]):
376
405
  pulumi.set(self, "machine_learning", value)
377
406
 
378
- @property
407
+ @_builtins.property
379
408
  @pulumi.getter(name="mariaDb")
380
409
  def maria_db(self) -> Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]:
381
410
  """
@@ -387,11 +416,13 @@ class AzureIntegrationsArgs:
387
416
  def maria_db(self, value: Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]):
388
417
  pulumi.set(self, "maria_db", value)
389
418
 
390
- @property
419
+ @_builtins.property
391
420
  @pulumi.getter
392
421
  def monitor(self) -> Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]:
393
422
  """
394
423
  Azure Monitor. See Integration blocks below for details.
424
+
425
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
395
426
  """
396
427
  return pulumi.get(self, "monitor")
397
428
 
@@ -399,7 +430,7 @@ class AzureIntegrationsArgs:
399
430
  def monitor(self, value: Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]):
400
431
  pulumi.set(self, "monitor", value)
401
432
 
402
- @property
433
+ @_builtins.property
403
434
  @pulumi.getter
404
435
  def mysql(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]:
405
436
  """
@@ -411,7 +442,7 @@ class AzureIntegrationsArgs:
411
442
  def mysql(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]):
412
443
  pulumi.set(self, "mysql", value)
413
444
 
414
- @property
445
+ @_builtins.property
415
446
  @pulumi.getter(name="mysqlFlexible")
416
447
  def mysql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]:
417
448
  """
@@ -423,7 +454,7 @@ class AzureIntegrationsArgs:
423
454
  def mysql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]):
424
455
  pulumi.set(self, "mysql_flexible", value)
425
456
 
426
- @property
457
+ @_builtins.property
427
458
  @pulumi.getter
428
459
  def postgresql(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]:
429
460
  """
@@ -435,7 +466,7 @@ class AzureIntegrationsArgs:
435
466
  def postgresql(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]):
436
467
  pulumi.set(self, "postgresql", value)
437
468
 
438
- @property
469
+ @_builtins.property
439
470
  @pulumi.getter(name="postgresqlFlexible")
440
471
  def postgresql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]:
441
472
  """
@@ -447,7 +478,7 @@ class AzureIntegrationsArgs:
447
478
  def postgresql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]):
448
479
  pulumi.set(self, "postgresql_flexible", value)
449
480
 
450
- @property
481
+ @_builtins.property
451
482
  @pulumi.getter(name="powerBiDedicated")
452
483
  def power_bi_dedicated(self) -> Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]:
453
484
  """
@@ -459,7 +490,7 @@ class AzureIntegrationsArgs:
459
490
  def power_bi_dedicated(self, value: Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]):
460
491
  pulumi.set(self, "power_bi_dedicated", value)
461
492
 
462
- @property
493
+ @_builtins.property
463
494
  @pulumi.getter(name="redisCache")
464
495
  def redis_cache(self) -> Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]:
465
496
  """
@@ -471,7 +502,7 @@ class AzureIntegrationsArgs:
471
502
  def redis_cache(self, value: Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]):
472
503
  pulumi.set(self, "redis_cache", value)
473
504
 
474
- @property
505
+ @_builtins.property
475
506
  @pulumi.getter(name="serviceBus")
476
507
  def service_bus(self) -> Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]:
477
508
  """
@@ -483,7 +514,7 @@ class AzureIntegrationsArgs:
483
514
  def service_bus(self, value: Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]):
484
515
  pulumi.set(self, "service_bus", value)
485
516
 
486
- @property
517
+ @_builtins.property
487
518
  @pulumi.getter
488
519
  def sql(self) -> Optional[pulumi.Input['AzureIntegrationsSqlArgs']]:
489
520
  """
@@ -495,7 +526,7 @@ class AzureIntegrationsArgs:
495
526
  def sql(self, value: Optional[pulumi.Input['AzureIntegrationsSqlArgs']]):
496
527
  pulumi.set(self, "sql", value)
497
528
 
498
- @property
529
+ @_builtins.property
499
530
  @pulumi.getter(name="sqlManaged")
500
531
  def sql_managed(self) -> Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]:
501
532
  """
@@ -507,11 +538,13 @@ class AzureIntegrationsArgs:
507
538
  def sql_managed(self, value: Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]):
508
539
  pulumi.set(self, "sql_managed", value)
509
540
 
510
- @property
541
+ @_builtins.property
511
542
  @pulumi.getter
512
543
  def storage(self) -> Optional[pulumi.Input['AzureIntegrationsStorageArgs']]:
513
544
  """
514
545
  for Azure Storage. See Integration blocks below for details.
546
+
547
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
515
548
  """
516
549
  return pulumi.get(self, "storage")
517
550
 
@@ -519,7 +552,7 @@ class AzureIntegrationsArgs:
519
552
  def storage(self, value: Optional[pulumi.Input['AzureIntegrationsStorageArgs']]):
520
553
  pulumi.set(self, "storage", value)
521
554
 
522
- @property
555
+ @_builtins.property
523
556
  @pulumi.getter(name="virtualMachine")
524
557
  def virtual_machine(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]:
525
558
  """
@@ -531,13 +564,11 @@ class AzureIntegrationsArgs:
531
564
  def virtual_machine(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]):
532
565
  pulumi.set(self, "virtual_machine", value)
533
566
 
534
- @property
567
+ @_builtins.property
535
568
  @pulumi.getter(name="virtualNetworks")
536
569
  def virtual_networks(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]:
537
570
  """
538
571
  for Azure Virtual networks. See Integration blocks below for details.
539
-
540
- Below argument supports the minimum metric polling interval of 3600 seconds
541
572
  """
542
573
  return pulumi.get(self, "virtual_networks")
543
574
 
@@ -545,7 +576,7 @@ class AzureIntegrationsArgs:
545
576
  def virtual_networks(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]):
546
577
  pulumi.set(self, "virtual_networks", value)
547
578
 
548
- @property
579
+ @_builtins.property
549
580
  @pulumi.getter
550
581
  def vms(self) -> Optional[pulumi.Input['AzureIntegrationsVmsArgs']]:
551
582
  """
@@ -557,13 +588,13 @@ class AzureIntegrationsArgs:
557
588
  def vms(self, value: Optional[pulumi.Input['AzureIntegrationsVmsArgs']]):
558
589
  pulumi.set(self, "vms", value)
559
590
 
560
- @property
591
+ @_builtins.property
561
592
  @pulumi.getter(name="vpnGateway")
562
593
  def vpn_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']]:
563
594
  """
564
595
  Azure VPN Gateway. See Integration blocks below for details.
565
596
 
566
- Below arguments supports the minimum metric polling interval of 900 seconds
597
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
567
598
  """
568
599
  return pulumi.get(self, "vpn_gateway")
569
600
 
@@ -575,10 +606,11 @@ class AzureIntegrationsArgs:
575
606
  @pulumi.input_type
576
607
  class _AzureIntegrationsState:
577
608
  def __init__(__self__, *,
578
- account_id: Optional[pulumi.Input[int]] = None,
609
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
579
610
  api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
580
611
  app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
581
612
  app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
613
+ auto_discovery: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']] = None,
582
614
  containers: Optional[pulumi.Input['AzureIntegrationsContainersArgs']] = None,
583
615
  cosmos_db: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']] = None,
584
616
  cost_management: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']] = None,
@@ -589,7 +621,7 @@ class _AzureIntegrationsState:
589
621
  front_door: Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']] = None,
590
622
  functions: Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']] = None,
591
623
  key_vault: Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']] = None,
592
- linked_account_id: Optional[pulumi.Input[int]] = None,
624
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
593
625
  load_balancer: Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']] = None,
594
626
  logic_apps: Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']] = None,
595
627
  machine_learning: Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']] = None,
@@ -611,10 +643,11 @@ class _AzureIntegrationsState:
611
643
  vpn_gateway: Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']] = None):
612
644
  """
613
645
  Input properties used for looking up and filtering AzureIntegrations resources.
614
- :param pulumi.Input[int] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
646
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
615
647
  :param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
616
648
  :param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
617
649
  :param pulumi.Input['AzureIntegrationsAppServiceArgs'] app_service: Azure App Service. See Integration blocks below for details.
650
+ :param pulumi.Input['AzureIntegrationsAutoDiscoveryArgs'] auto_discovery: Azure Auto Discovery
618
651
  :param pulumi.Input['AzureIntegrationsContainersArgs'] containers: Azure Containers. See Integration blocks below for details.
619
652
  :param pulumi.Input['AzureIntegrationsCosmosDbArgs'] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
620
653
  :param pulumi.Input['AzureIntegrationsCostManagementArgs'] cost_management: Azure Cost Management. See Integration blocks below for details.
@@ -625,12 +658,17 @@ class _AzureIntegrationsState:
625
658
  :param pulumi.Input['AzureIntegrationsFrontDoorArgs'] front_door: Azure Front Door. See Integration blocks below for details.
626
659
  :param pulumi.Input['AzureIntegrationsFunctionsArgs'] functions: Azure Functions. See Integration blocks below for details.
627
660
  :param pulumi.Input['AzureIntegrationsKeyVaultArgs'] key_vault: Azure Key Vault. See Integration blocks below for details.
628
- :param pulumi.Input[int] linked_account_id: The ID of the linked Azure account in New Relic.
661
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
662
+
663
+
664
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
629
665
  :param pulumi.Input['AzureIntegrationsLoadBalancerArgs'] load_balancer: Azure Load Balancer. See Integration blocks below for details.
630
666
  :param pulumi.Input['AzureIntegrationsLogicAppsArgs'] logic_apps: Azure Logic Apps. See Integration blocks below for details.
631
667
  :param pulumi.Input['AzureIntegrationsMachineLearningArgs'] machine_learning: Azure Machine Learning. See Integration blocks below for details.
632
668
  :param pulumi.Input['AzureIntegrationsMariaDbArgs'] maria_db: Azure MariaDB. See Integration blocks below for details.
633
669
  :param pulumi.Input['AzureIntegrationsMonitorArgs'] monitor: Azure Monitor. See Integration blocks below for details.
670
+
671
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
634
672
  :param pulumi.Input['AzureIntegrationsMysqlArgs'] mysql: Azure MySQL. See Integration blocks below for details.
635
673
  :param pulumi.Input['AzureIntegrationsMysqlFlexibleArgs'] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
636
674
  :param pulumi.Input['AzureIntegrationsPostgresqlArgs'] postgresql: Azure PostgreSQL. See Integration blocks below for details.
@@ -641,14 +679,14 @@ class _AzureIntegrationsState:
641
679
  :param pulumi.Input['AzureIntegrationsSqlArgs'] sql: Azure SQL. See Integration blocks below for details.
642
680
  :param pulumi.Input['AzureIntegrationsSqlManagedArgs'] sql_managed: Azure SQL Managed. See Integration blocks below for details.
643
681
  :param pulumi.Input['AzureIntegrationsStorageArgs'] storage: for Azure Storage. See Integration blocks below for details.
682
+
683
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
644
684
  :param pulumi.Input['AzureIntegrationsVirtualMachineArgs'] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
645
685
  :param pulumi.Input['AzureIntegrationsVirtualNetworksArgs'] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
646
-
647
- Below argument supports the minimum metric polling interval of 3600 seconds
648
686
  :param pulumi.Input['AzureIntegrationsVmsArgs'] vms: Azure VMs. See Integration blocks below for details.
649
687
  :param pulumi.Input['AzureIntegrationsVpnGatewayArgs'] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
650
688
 
651
- Below arguments supports the minimum metric polling interval of 900 seconds
689
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
652
690
  """
653
691
  if account_id is not None:
654
692
  pulumi.set(__self__, "account_id", account_id)
@@ -658,6 +696,8 @@ class _AzureIntegrationsState:
658
696
  pulumi.set(__self__, "app_gateway", app_gateway)
659
697
  if app_service is not None:
660
698
  pulumi.set(__self__, "app_service", app_service)
699
+ if auto_discovery is not None:
700
+ pulumi.set(__self__, "auto_discovery", auto_discovery)
661
701
  if containers is not None:
662
702
  pulumi.set(__self__, "containers", containers)
663
703
  if cosmos_db is not None:
@@ -719,19 +759,19 @@ class _AzureIntegrationsState:
719
759
  if vpn_gateway is not None:
720
760
  pulumi.set(__self__, "vpn_gateway", vpn_gateway)
721
761
 
722
- @property
762
+ @_builtins.property
723
763
  @pulumi.getter(name="accountId")
724
- def account_id(self) -> Optional[pulumi.Input[int]]:
764
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
725
765
  """
726
766
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
727
767
  """
728
768
  return pulumi.get(self, "account_id")
729
769
 
730
770
  @account_id.setter
731
- def account_id(self, value: Optional[pulumi.Input[int]]):
771
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
732
772
  pulumi.set(self, "account_id", value)
733
773
 
734
- @property
774
+ @_builtins.property
735
775
  @pulumi.getter(name="apiManagement")
736
776
  def api_management(self) -> Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]:
737
777
  """
@@ -743,7 +783,7 @@ class _AzureIntegrationsState:
743
783
  def api_management(self, value: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]):
744
784
  pulumi.set(self, "api_management", value)
745
785
 
746
- @property
786
+ @_builtins.property
747
787
  @pulumi.getter(name="appGateway")
748
788
  def app_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]:
749
789
  """
@@ -755,7 +795,7 @@ class _AzureIntegrationsState:
755
795
  def app_gateway(self, value: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]):
756
796
  pulumi.set(self, "app_gateway", value)
757
797
 
758
- @property
798
+ @_builtins.property
759
799
  @pulumi.getter(name="appService")
760
800
  def app_service(self) -> Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]:
761
801
  """
@@ -767,7 +807,19 @@ class _AzureIntegrationsState:
767
807
  def app_service(self, value: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]):
768
808
  pulumi.set(self, "app_service", value)
769
809
 
770
- @property
810
+ @_builtins.property
811
+ @pulumi.getter(name="autoDiscovery")
812
+ def auto_discovery(self) -> Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]:
813
+ """
814
+ Azure Auto Discovery
815
+ """
816
+ return pulumi.get(self, "auto_discovery")
817
+
818
+ @auto_discovery.setter
819
+ def auto_discovery(self, value: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]):
820
+ pulumi.set(self, "auto_discovery", value)
821
+
822
+ @_builtins.property
771
823
  @pulumi.getter
772
824
  def containers(self) -> Optional[pulumi.Input['AzureIntegrationsContainersArgs']]:
773
825
  """
@@ -779,7 +831,7 @@ class _AzureIntegrationsState:
779
831
  def containers(self, value: Optional[pulumi.Input['AzureIntegrationsContainersArgs']]):
780
832
  pulumi.set(self, "containers", value)
781
833
 
782
- @property
834
+ @_builtins.property
783
835
  @pulumi.getter(name="cosmosDb")
784
836
  def cosmos_db(self) -> Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]:
785
837
  """
@@ -791,7 +843,7 @@ class _AzureIntegrationsState:
791
843
  def cosmos_db(self, value: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]):
792
844
  pulumi.set(self, "cosmos_db", value)
793
845
 
794
- @property
846
+ @_builtins.property
795
847
  @pulumi.getter(name="costManagement")
796
848
  def cost_management(self) -> Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]:
797
849
  """
@@ -803,7 +855,7 @@ class _AzureIntegrationsState:
803
855
  def cost_management(self, value: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]):
804
856
  pulumi.set(self, "cost_management", value)
805
857
 
806
- @property
858
+ @_builtins.property
807
859
  @pulumi.getter(name="dataFactory")
808
860
  def data_factory(self) -> Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]:
809
861
  """
@@ -815,7 +867,7 @@ class _AzureIntegrationsState:
815
867
  def data_factory(self, value: Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]):
816
868
  pulumi.set(self, "data_factory", value)
817
869
 
818
- @property
870
+ @_builtins.property
819
871
  @pulumi.getter(name="eventHub")
820
872
  def event_hub(self) -> Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]:
821
873
  """
@@ -827,7 +879,7 @@ class _AzureIntegrationsState:
827
879
  def event_hub(self, value: Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]):
828
880
  pulumi.set(self, "event_hub", value)
829
881
 
830
- @property
882
+ @_builtins.property
831
883
  @pulumi.getter(name="expressRoute")
832
884
  def express_route(self) -> Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]:
833
885
  """
@@ -839,7 +891,7 @@ class _AzureIntegrationsState:
839
891
  def express_route(self, value: Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]):
840
892
  pulumi.set(self, "express_route", value)
841
893
 
842
- @property
894
+ @_builtins.property
843
895
  @pulumi.getter
844
896
  def firewalls(self) -> Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]:
845
897
  """
@@ -851,7 +903,7 @@ class _AzureIntegrationsState:
851
903
  def firewalls(self, value: Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]):
852
904
  pulumi.set(self, "firewalls", value)
853
905
 
854
- @property
906
+ @_builtins.property
855
907
  @pulumi.getter(name="frontDoor")
856
908
  def front_door(self) -> Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]:
857
909
  """
@@ -863,7 +915,7 @@ class _AzureIntegrationsState:
863
915
  def front_door(self, value: Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]):
864
916
  pulumi.set(self, "front_door", value)
865
917
 
866
- @property
918
+ @_builtins.property
867
919
  @pulumi.getter
868
920
  def functions(self) -> Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]:
869
921
  """
@@ -875,7 +927,7 @@ class _AzureIntegrationsState:
875
927
  def functions(self, value: Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]):
876
928
  pulumi.set(self, "functions", value)
877
929
 
878
- @property
930
+ @_builtins.property
879
931
  @pulumi.getter(name="keyVault")
880
932
  def key_vault(self) -> Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]:
881
933
  """
@@ -887,19 +939,22 @@ class _AzureIntegrationsState:
887
939
  def key_vault(self, value: Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]):
888
940
  pulumi.set(self, "key_vault", value)
889
941
 
890
- @property
942
+ @_builtins.property
891
943
  @pulumi.getter(name="linkedAccountId")
892
- def linked_account_id(self) -> Optional[pulumi.Input[int]]:
944
+ def linked_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
893
945
  """
894
946
  The ID of the linked Azure account in New Relic.
947
+
948
+
949
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
895
950
  """
896
951
  return pulumi.get(self, "linked_account_id")
897
952
 
898
953
  @linked_account_id.setter
899
- def linked_account_id(self, value: Optional[pulumi.Input[int]]):
954
+ def linked_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
900
955
  pulumi.set(self, "linked_account_id", value)
901
956
 
902
- @property
957
+ @_builtins.property
903
958
  @pulumi.getter(name="loadBalancer")
904
959
  def load_balancer(self) -> Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]:
905
960
  """
@@ -911,7 +966,7 @@ class _AzureIntegrationsState:
911
966
  def load_balancer(self, value: Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]):
912
967
  pulumi.set(self, "load_balancer", value)
913
968
 
914
- @property
969
+ @_builtins.property
915
970
  @pulumi.getter(name="logicApps")
916
971
  def logic_apps(self) -> Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]:
917
972
  """
@@ -923,7 +978,7 @@ class _AzureIntegrationsState:
923
978
  def logic_apps(self, value: Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]):
924
979
  pulumi.set(self, "logic_apps", value)
925
980
 
926
- @property
981
+ @_builtins.property
927
982
  @pulumi.getter(name="machineLearning")
928
983
  def machine_learning(self) -> Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]:
929
984
  """
@@ -935,7 +990,7 @@ class _AzureIntegrationsState:
935
990
  def machine_learning(self, value: Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]):
936
991
  pulumi.set(self, "machine_learning", value)
937
992
 
938
- @property
993
+ @_builtins.property
939
994
  @pulumi.getter(name="mariaDb")
940
995
  def maria_db(self) -> Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]:
941
996
  """
@@ -947,11 +1002,13 @@ class _AzureIntegrationsState:
947
1002
  def maria_db(self, value: Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]):
948
1003
  pulumi.set(self, "maria_db", value)
949
1004
 
950
- @property
1005
+ @_builtins.property
951
1006
  @pulumi.getter
952
1007
  def monitor(self) -> Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]:
953
1008
  """
954
1009
  Azure Monitor. See Integration blocks below for details.
1010
+
1011
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
955
1012
  """
956
1013
  return pulumi.get(self, "monitor")
957
1014
 
@@ -959,7 +1016,7 @@ class _AzureIntegrationsState:
959
1016
  def monitor(self, value: Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]):
960
1017
  pulumi.set(self, "monitor", value)
961
1018
 
962
- @property
1019
+ @_builtins.property
963
1020
  @pulumi.getter
964
1021
  def mysql(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]:
965
1022
  """
@@ -971,7 +1028,7 @@ class _AzureIntegrationsState:
971
1028
  def mysql(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]):
972
1029
  pulumi.set(self, "mysql", value)
973
1030
 
974
- @property
1031
+ @_builtins.property
975
1032
  @pulumi.getter(name="mysqlFlexible")
976
1033
  def mysql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]:
977
1034
  """
@@ -983,7 +1040,7 @@ class _AzureIntegrationsState:
983
1040
  def mysql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]):
984
1041
  pulumi.set(self, "mysql_flexible", value)
985
1042
 
986
- @property
1043
+ @_builtins.property
987
1044
  @pulumi.getter
988
1045
  def postgresql(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]:
989
1046
  """
@@ -995,7 +1052,7 @@ class _AzureIntegrationsState:
995
1052
  def postgresql(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]):
996
1053
  pulumi.set(self, "postgresql", value)
997
1054
 
998
- @property
1055
+ @_builtins.property
999
1056
  @pulumi.getter(name="postgresqlFlexible")
1000
1057
  def postgresql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]:
1001
1058
  """
@@ -1007,7 +1064,7 @@ class _AzureIntegrationsState:
1007
1064
  def postgresql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]):
1008
1065
  pulumi.set(self, "postgresql_flexible", value)
1009
1066
 
1010
- @property
1067
+ @_builtins.property
1011
1068
  @pulumi.getter(name="powerBiDedicated")
1012
1069
  def power_bi_dedicated(self) -> Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]:
1013
1070
  """
@@ -1019,7 +1076,7 @@ class _AzureIntegrationsState:
1019
1076
  def power_bi_dedicated(self, value: Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]):
1020
1077
  pulumi.set(self, "power_bi_dedicated", value)
1021
1078
 
1022
- @property
1079
+ @_builtins.property
1023
1080
  @pulumi.getter(name="redisCache")
1024
1081
  def redis_cache(self) -> Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]:
1025
1082
  """
@@ -1031,7 +1088,7 @@ class _AzureIntegrationsState:
1031
1088
  def redis_cache(self, value: Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]):
1032
1089
  pulumi.set(self, "redis_cache", value)
1033
1090
 
1034
- @property
1091
+ @_builtins.property
1035
1092
  @pulumi.getter(name="serviceBus")
1036
1093
  def service_bus(self) -> Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]:
1037
1094
  """
@@ -1043,7 +1100,7 @@ class _AzureIntegrationsState:
1043
1100
  def service_bus(self, value: Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]):
1044
1101
  pulumi.set(self, "service_bus", value)
1045
1102
 
1046
- @property
1103
+ @_builtins.property
1047
1104
  @pulumi.getter
1048
1105
  def sql(self) -> Optional[pulumi.Input['AzureIntegrationsSqlArgs']]:
1049
1106
  """
@@ -1055,7 +1112,7 @@ class _AzureIntegrationsState:
1055
1112
  def sql(self, value: Optional[pulumi.Input['AzureIntegrationsSqlArgs']]):
1056
1113
  pulumi.set(self, "sql", value)
1057
1114
 
1058
- @property
1115
+ @_builtins.property
1059
1116
  @pulumi.getter(name="sqlManaged")
1060
1117
  def sql_managed(self) -> Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]:
1061
1118
  """
@@ -1067,11 +1124,13 @@ class _AzureIntegrationsState:
1067
1124
  def sql_managed(self, value: Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]):
1068
1125
  pulumi.set(self, "sql_managed", value)
1069
1126
 
1070
- @property
1127
+ @_builtins.property
1071
1128
  @pulumi.getter
1072
1129
  def storage(self) -> Optional[pulumi.Input['AzureIntegrationsStorageArgs']]:
1073
1130
  """
1074
1131
  for Azure Storage. See Integration blocks below for details.
1132
+
1133
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
1075
1134
  """
1076
1135
  return pulumi.get(self, "storage")
1077
1136
 
@@ -1079,7 +1138,7 @@ class _AzureIntegrationsState:
1079
1138
  def storage(self, value: Optional[pulumi.Input['AzureIntegrationsStorageArgs']]):
1080
1139
  pulumi.set(self, "storage", value)
1081
1140
 
1082
- @property
1141
+ @_builtins.property
1083
1142
  @pulumi.getter(name="virtualMachine")
1084
1143
  def virtual_machine(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]:
1085
1144
  """
@@ -1091,13 +1150,11 @@ class _AzureIntegrationsState:
1091
1150
  def virtual_machine(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]):
1092
1151
  pulumi.set(self, "virtual_machine", value)
1093
1152
 
1094
- @property
1153
+ @_builtins.property
1095
1154
  @pulumi.getter(name="virtualNetworks")
1096
1155
  def virtual_networks(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]:
1097
1156
  """
1098
1157
  for Azure Virtual networks. See Integration blocks below for details.
1099
-
1100
- Below argument supports the minimum metric polling interval of 3600 seconds
1101
1158
  """
1102
1159
  return pulumi.get(self, "virtual_networks")
1103
1160
 
@@ -1105,7 +1162,7 @@ class _AzureIntegrationsState:
1105
1162
  def virtual_networks(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]):
1106
1163
  pulumi.set(self, "virtual_networks", value)
1107
1164
 
1108
- @property
1165
+ @_builtins.property
1109
1166
  @pulumi.getter
1110
1167
  def vms(self) -> Optional[pulumi.Input['AzureIntegrationsVmsArgs']]:
1111
1168
  """
@@ -1117,13 +1174,13 @@ class _AzureIntegrationsState:
1117
1174
  def vms(self, value: Optional[pulumi.Input['AzureIntegrationsVmsArgs']]):
1118
1175
  pulumi.set(self, "vms", value)
1119
1176
 
1120
- @property
1177
+ @_builtins.property
1121
1178
  @pulumi.getter(name="vpnGateway")
1122
1179
  def vpn_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']]:
1123
1180
  """
1124
1181
  Azure VPN Gateway. See Integration blocks below for details.
1125
1182
 
1126
- Below arguments supports the minimum metric polling interval of 900 seconds
1183
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
1127
1184
  """
1128
1185
  return pulumi.get(self, "vpn_gateway")
1129
1186
 
@@ -1132,45 +1189,47 @@ class _AzureIntegrationsState:
1132
1189
  pulumi.set(self, "vpn_gateway", value)
1133
1190
 
1134
1191
 
1192
+ @pulumi.type_token("newrelic:cloud/azureIntegrations:AzureIntegrations")
1135
1193
  class AzureIntegrations(pulumi.CustomResource):
1136
1194
  @overload
1137
1195
  def __init__(__self__,
1138
1196
  resource_name: str,
1139
1197
  opts: Optional[pulumi.ResourceOptions] = None,
1140
- account_id: Optional[pulumi.Input[int]] = None,
1141
- api_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']]] = None,
1142
- app_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']]] = None,
1143
- app_service: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']]] = None,
1144
- containers: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']]] = None,
1145
- cosmos_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']]] = None,
1146
- cost_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']]] = None,
1147
- data_factory: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']]] = None,
1148
- event_hub: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']]] = None,
1149
- express_route: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']]] = None,
1150
- firewalls: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']]] = None,
1151
- front_door: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']]] = None,
1152
- functions: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']]] = None,
1153
- key_vault: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']]] = None,
1154
- linked_account_id: Optional[pulumi.Input[int]] = None,
1155
- load_balancer: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']]] = None,
1156
- logic_apps: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']]] = None,
1157
- machine_learning: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']]] = None,
1158
- maria_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']]] = None,
1159
- monitor: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']]] = None,
1160
- mysql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']]] = None,
1161
- mysql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']]] = None,
1162
- postgresql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']]] = None,
1163
- postgresql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']]] = None,
1164
- power_bi_dedicated: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']]] = None,
1165
- redis_cache: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']]] = None,
1166
- service_bus: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']]] = None,
1167
- sql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']]] = None,
1168
- sql_managed: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']]] = None,
1169
- storage: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']]] = None,
1170
- virtual_machine: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']]] = None,
1171
- virtual_networks: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualNetworksArgs']]] = None,
1172
- vms: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']]] = None,
1173
- vpn_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVpnGatewayArgs']]] = None,
1198
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1199
+ api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1200
+ app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1201
+ app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
1202
+ auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
1203
+ containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
1204
+ cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
1205
+ cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
1206
+ data_factory: Optional[pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']]] = None,
1207
+ event_hub: Optional[pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']]] = None,
1208
+ express_route: Optional[pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']]] = None,
1209
+ firewalls: Optional[pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']]] = None,
1210
+ front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1211
+ functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1212
+ key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1213
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1214
+ load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1215
+ logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1216
+ machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
1217
+ maria_db: Optional[pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']]] = None,
1218
+ monitor: Optional[pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']]] = None,
1219
+ mysql: Optional[pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']]] = None,
1220
+ mysql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']]] = None,
1221
+ postgresql: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']]] = None,
1222
+ postgresql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']]] = None,
1223
+ power_bi_dedicated: Optional[pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']]] = None,
1224
+ redis_cache: Optional[pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']]] = None,
1225
+ service_bus: Optional[pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']]] = None,
1226
+ sql: Optional[pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']]] = None,
1227
+ sql_managed: Optional[pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']]] = None,
1228
+ storage: Optional[pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']]] = None,
1229
+ virtual_machine: Optional[pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']]] = None,
1230
+ virtual_networks: Optional[pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']]] = None,
1231
+ vms: Optional[pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']]] = None,
1232
+ vpn_gateway: Optional[pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']]] = None,
1174
1233
  __props__=None):
1175
1234
  """
1176
1235
  Use this resource to integrate Azure services with New Relic.
@@ -1187,157 +1246,156 @@ class AzureIntegrations(pulumi.CustomResource):
1187
1246
 
1188
1247
  Leave an integration block empty to use its default configuration. You can also use the full example, including the Azure set up, found in our guides.
1189
1248
 
1190
- <!--Start PulumiCodeChooser -->
1191
1249
  ```python
1192
1250
  import pulumi
1193
1251
  import pulumi_newrelic as newrelic
1194
1252
 
1195
- foo_azure_link_account = newrelic.cloud.AzureLinkAccount("fooAzureLinkAccount",
1253
+ foo = newrelic.cloud.AzureLinkAccount("foo",
1196
1254
  account_id="The New Relic account ID where you want to link the Azure account",
1197
1255
  application_id="ID of the application",
1198
1256
  client_secret="Secret value of client's Azure account",
1199
1257
  subscription_id="Subscription ID of Azure",
1200
- tenant_id="Tenant ID of the Azure")
1201
- foo_azure_integrations = newrelic.cloud.AzureIntegrations("fooAzureIntegrations",
1202
- linked_account_id=foo_azure_link_account.id,
1258
+ tenant_id="Tenant ID of the Azure",
1259
+ name="Name of the linked account")
1260
+ foo_azure_integrations = newrelic.cloud.AzureIntegrations("foo",
1261
+ linked_account_id=foo.id,
1203
1262
  account_id="The New Relic account ID",
1204
- api_management=newrelic.cloud.AzureIntegrationsApiManagementArgs(
1205
- metrics_polling_interval=1200,
1206
- resource_groups=["resource_groups"],
1207
- ),
1208
- app_gateway=newrelic.cloud.AzureIntegrationsAppGatewayArgs(
1209
- metrics_polling_interval=1200,
1210
- resource_groups=["resource_groups"],
1211
- ),
1212
- app_service=newrelic.cloud.AzureIntegrationsAppServiceArgs(
1213
- metrics_polling_interval=1200,
1214
- resource_groups=["resource_groups"],
1215
- ),
1216
- containers=newrelic.cloud.AzureIntegrationsContainersArgs(
1217
- metrics_polling_interval=1200,
1218
- resource_groups=["resource_groups"],
1219
- ),
1220
- cosmos_db=newrelic.cloud.AzureIntegrationsCosmosDbArgs(
1221
- metrics_polling_interval=1200,
1222
- resource_groups=["resource_groups"],
1223
- ),
1224
- cost_management=newrelic.cloud.AzureIntegrationsCostManagementArgs(
1225
- metrics_polling_interval=3600,
1226
- tag_keys=["tag_keys"],
1227
- ),
1228
- data_factory=newrelic.cloud.AzureIntegrationsDataFactoryArgs(
1229
- metrics_polling_interval=1200,
1230
- resource_groups=["resource_groups"],
1231
- ),
1232
- event_hub=newrelic.cloud.AzureIntegrationsEventHubArgs(
1233
- metrics_polling_interval=1200,
1234
- resource_groups=["resource_groups"],
1235
- ),
1236
- express_route=newrelic.cloud.AzureIntegrationsExpressRouteArgs(
1237
- metrics_polling_interval=1200,
1238
- resource_groups=["resource_groups"],
1239
- ),
1240
- firewalls=newrelic.cloud.AzureIntegrationsFirewallsArgs(
1241
- metrics_polling_interval=1200,
1242
- resource_groups=["resource_groups"],
1243
- ),
1244
- front_door=newrelic.cloud.AzureIntegrationsFrontDoorArgs(
1245
- metrics_polling_interval=1200,
1246
- resource_groups=["resource_groups"],
1247
- ),
1248
- functions=newrelic.cloud.AzureIntegrationsFunctionsArgs(
1249
- metrics_polling_interval=1200,
1250
- resource_groups=["resource_groups"],
1251
- ),
1252
- key_vault=newrelic.cloud.AzureIntegrationsKeyVaultArgs(
1253
- metrics_polling_interval=1200,
1254
- resource_groups=["resource_groups"],
1255
- ),
1256
- load_balancer=newrelic.cloud.AzureIntegrationsLoadBalancerArgs(
1257
- metrics_polling_interval=1200,
1258
- resource_groups=["resource_groups"],
1259
- ),
1260
- logic_apps=newrelic.cloud.AzureIntegrationsLogicAppsArgs(
1261
- metrics_polling_interval=1200,
1262
- resource_groups=["resource_groups"],
1263
- ),
1264
- machine_learning=newrelic.cloud.AzureIntegrationsMachineLearningArgs(
1265
- metrics_polling_interval=1200,
1266
- resource_groups=["resource_groups"],
1267
- ),
1268
- maria_db=newrelic.cloud.AzureIntegrationsMariaDbArgs(
1269
- metrics_polling_interval=1200,
1270
- resource_groups=["resource_groups"],
1271
- ),
1272
- monitor=newrelic.cloud.AzureIntegrationsMonitorArgs(
1273
- metrics_polling_interval=1200,
1274
- resource_groups=["resource_groups"],
1275
- include_tags=["env:production"],
1276
- exclude_tags=[
1263
+ api_management={
1264
+ "metrics_polling_interval": 300,
1265
+ "resource_groups": ["resource_groups"],
1266
+ },
1267
+ app_gateway={
1268
+ "metrics_polling_interval": 300,
1269
+ "resource_groups": ["resource_groups"],
1270
+ },
1271
+ app_service={
1272
+ "metrics_polling_interval": 300,
1273
+ "resource_groups": ["resource_groups"],
1274
+ },
1275
+ containers={
1276
+ "metrics_polling_interval": 300,
1277
+ "resource_groups": ["resource_groups"],
1278
+ },
1279
+ cosmos_db={
1280
+ "metrics_polling_interval": 300,
1281
+ "resource_groups": ["resource_groups"],
1282
+ },
1283
+ cost_management={
1284
+ "metrics_polling_interval": 3600,
1285
+ "tag_keys": ["tag_keys"],
1286
+ },
1287
+ data_factory={
1288
+ "metrics_polling_interval": 300,
1289
+ "resource_groups": ["resource_groups"],
1290
+ },
1291
+ event_hub={
1292
+ "metrics_polling_interval": 300,
1293
+ "resource_groups": ["resource_groups"],
1294
+ },
1295
+ express_route={
1296
+ "metrics_polling_interval": 300,
1297
+ "resource_groups": ["resource_groups"],
1298
+ },
1299
+ firewalls={
1300
+ "metrics_polling_interval": 300,
1301
+ "resource_groups": ["resource_groups"],
1302
+ },
1303
+ front_door={
1304
+ "metrics_polling_interval": 300,
1305
+ "resource_groups": ["resource_groups"],
1306
+ },
1307
+ functions={
1308
+ "metrics_polling_interval": 300,
1309
+ "resource_groups": ["resource_groups"],
1310
+ },
1311
+ key_vault={
1312
+ "metrics_polling_interval": 300,
1313
+ "resource_groups": ["resource_groups"],
1314
+ },
1315
+ load_balancer={
1316
+ "metrics_polling_interval": 300,
1317
+ "resource_groups": ["resource_groups"],
1318
+ },
1319
+ logic_apps={
1320
+ "metrics_polling_interval": 300,
1321
+ "resource_groups": ["resource_groups"],
1322
+ },
1323
+ machine_learning={
1324
+ "metrics_polling_interval": 300,
1325
+ "resource_groups": ["resource_groups"],
1326
+ },
1327
+ maria_db={
1328
+ "metrics_polling_interval": 3600,
1329
+ "resource_groups": ["resource_groups"],
1330
+ },
1331
+ monitor={
1332
+ "metrics_polling_interval": 60,
1333
+ "resource_groups": ["resource_groups"],
1334
+ "include_tags": ["env:production"],
1335
+ "exclude_tags": [
1277
1336
  "env:staging",
1278
1337
  "env:testing",
1279
1338
  ],
1280
- enabled=True,
1281
- resource_types=["microsoft.datashare/accounts"],
1282
- ),
1283
- mysql=newrelic.cloud.AzureIntegrationsMysqlArgs(
1284
- metrics_polling_interval=1200,
1285
- resource_groups=["resource_groups"],
1286
- ),
1287
- mysql_flexible=newrelic.cloud.AzureIntegrationsMysqlFlexibleArgs(
1288
- metrics_polling_interval=1200,
1289
- resource_groups=["resource_groups"],
1290
- ),
1291
- postgresql=newrelic.cloud.AzureIntegrationsPostgresqlArgs(
1292
- metrics_polling_interval=1200,
1293
- resource_groups=["resource_groups"],
1294
- ),
1295
- postgresql_flexible=newrelic.cloud.AzureIntegrationsPostgresqlFlexibleArgs(
1296
- metrics_polling_interval=1200,
1297
- resource_groups=["resource_groups"],
1298
- ),
1299
- power_bi_dedicated=newrelic.cloud.AzureIntegrationsPowerBiDedicatedArgs(
1300
- metrics_polling_interval=1200,
1301
- resource_groups=["resource_groups"],
1302
- ),
1303
- redis_cache=newrelic.cloud.AzureIntegrationsRedisCacheArgs(
1304
- metrics_polling_interval=1200,
1305
- resource_groups=["resource_groups"],
1306
- ),
1307
- service_bus=newrelic.cloud.AzureIntegrationsServiceBusArgs(
1308
- metrics_polling_interval=1200,
1309
- resource_groups=["resource_groups"],
1310
- ),
1311
- sql=newrelic.cloud.AzureIntegrationsSqlArgs(
1312
- metrics_polling_interval=1200,
1313
- resource_groups=["resource_groups"],
1314
- ),
1315
- sql_managed=newrelic.cloud.AzureIntegrationsSqlManagedArgs(
1316
- metrics_polling_interval=1200,
1317
- resource_groups=["resource_groups"],
1318
- ),
1319
- storage=newrelic.cloud.AzureIntegrationsStorageArgs(
1320
- metrics_polling_interval=1200,
1321
- resource_groups=["resource_groups"],
1322
- ),
1323
- virtual_machine=newrelic.cloud.AzureIntegrationsVirtualMachineArgs(
1324
- metrics_polling_interval=1200,
1325
- resource_groups=["resource_groups"],
1326
- ),
1327
- virtual_networks=newrelic.cloud.AzureIntegrationsVirtualNetworksArgs(
1328
- metrics_polling_interval=1200,
1329
- resource_groups=["resource_groups"],
1330
- ),
1331
- vms=newrelic.cloud.AzureIntegrationsVmsArgs(
1332
- metrics_polling_interval=1200,
1333
- resource_groups=["resource_groups"],
1334
- ),
1335
- vpn_gateway=newrelic.cloud.AzureIntegrationsVpnGatewayArgs(
1336
- metrics_polling_interval=1200,
1337
- resource_groups=["resource_groups"],
1338
- ))
1339
+ "enabled": True,
1340
+ "resource_types": ["microsoft.datashare/accounts"],
1341
+ },
1342
+ mysql={
1343
+ "metrics_polling_interval": 3600,
1344
+ "resource_groups": ["resource_groups"],
1345
+ },
1346
+ mysql_flexible={
1347
+ "metrics_polling_interval": 3600,
1348
+ "resource_groups": ["resource_groups"],
1349
+ },
1350
+ postgresql={
1351
+ "metrics_polling_interval": 3600,
1352
+ "resource_groups": ["resource_groups"],
1353
+ },
1354
+ postgresql_flexible={
1355
+ "metrics_polling_interval": 3600,
1356
+ "resource_groups": ["resource_groups"],
1357
+ },
1358
+ power_bi_dedicated={
1359
+ "metrics_polling_interval": 300,
1360
+ "resource_groups": ["resource_groups"],
1361
+ },
1362
+ redis_cache={
1363
+ "metrics_polling_interval": 300,
1364
+ "resource_groups": ["resource_groups"],
1365
+ },
1366
+ service_bus={
1367
+ "metrics_polling_interval": 300,
1368
+ "resource_groups": ["resource_groups"],
1369
+ },
1370
+ sql={
1371
+ "metrics_polling_interval": 300,
1372
+ "resource_groups": ["resource_groups"],
1373
+ },
1374
+ sql_managed={
1375
+ "metrics_polling_interval": 300,
1376
+ "resource_groups": ["resource_groups"],
1377
+ },
1378
+ storage={
1379
+ "metrics_polling_interval": 1800,
1380
+ "resource_groups": ["resource_groups"],
1381
+ },
1382
+ virtual_machine={
1383
+ "metrics_polling_interval": 300,
1384
+ "resource_groups": ["resource_groups"],
1385
+ },
1386
+ virtual_networks={
1387
+ "metrics_polling_interval": 300,
1388
+ "resource_groups": ["resource_groups"],
1389
+ },
1390
+ vms={
1391
+ "metrics_polling_interval": 300,
1392
+ "resource_groups": ["resource_groups"],
1393
+ },
1394
+ vpn_gateway={
1395
+ "metrics_polling_interval": 300,
1396
+ "resource_groups": ["resource_groups"],
1397
+ })
1339
1398
  ```
1340
- <!--End PulumiCodeChooser -->
1341
1399
 
1342
1400
  ## Import
1343
1401
 
@@ -1351,44 +1409,50 @@ class AzureIntegrations(pulumi.CustomResource):
1351
1409
 
1352
1410
  :param str resource_name: The name of the resource.
1353
1411
  :param pulumi.ResourceOptions opts: Options for the resource.
1354
- :param pulumi.Input[int] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1355
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']] api_management: Azure API Management. See Integration blocks below for details.
1356
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1357
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']] app_service: Azure App Service. See Integration blocks below for details.
1358
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']] containers: Azure Containers. See Integration blocks below for details.
1359
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1360
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']] cost_management: Azure Cost Management. See Integration blocks below for details.
1361
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']] data_factory: Azure Data Factory. See Integration blocks below for details.
1362
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']] event_hub: Azure Event Hub. See Integration blocks below for details.
1363
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']] express_route: Azure Express Route. See Integration blocks below for details.
1364
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']] firewalls: Azure Firewalls. See Integration blocks below for details.
1365
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']] front_door: Azure Front Door. See Integration blocks below for details.
1366
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']] functions: Azure Functions. See Integration blocks below for details.
1367
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']] key_vault: Azure Key Vault. See Integration blocks below for details.
1368
- :param pulumi.Input[int] linked_account_id: The ID of the linked Azure account in New Relic.
1369
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
1370
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
1371
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
1372
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']] maria_db: Azure MariaDB. See Integration blocks below for details.
1373
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']] monitor: Azure Monitor. See Integration blocks below for details.
1374
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']] mysql: Azure MySQL. See Integration blocks below for details.
1375
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
1376
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
1377
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
1378
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
1379
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
1380
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']] service_bus: Azure Service Bus. See Integration blocks below for details.
1381
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']] sql: Azure SQL. See Integration blocks below for details.
1382
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
1383
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']] storage: for Azure Storage. See Integration blocks below for details.
1384
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
1385
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualNetworksArgs']] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
1412
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1413
+ :param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
1414
+ :param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1415
+ :param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
1416
+ :param pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']] auto_discovery: Azure Auto Discovery
1417
+ :param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
1418
+ :param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1419
+ :param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
1420
+ :param pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']] data_factory: Azure Data Factory. See Integration blocks below for details.
1421
+ :param pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']] event_hub: Azure Event Hub. See Integration blocks below for details.
1422
+ :param pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']] express_route: Azure Express Route. See Integration blocks below for details.
1423
+ :param pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']] firewalls: Azure Firewalls. See Integration blocks below for details.
1424
+ :param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
1425
+ :param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
1426
+ :param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
1427
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1428
+
1429
+
1430
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
1431
+ :param pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
1432
+ :param pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
1433
+ :param pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
1434
+ :param pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']] maria_db: Azure MariaDB. See Integration blocks below for details.
1435
+ :param pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']] monitor: Azure Monitor. See Integration blocks below for details.
1386
1436
 
1387
- Below argument supports the minimum metric polling interval of 3600 seconds
1388
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']] vms: Azure VMs. See Integration blocks below for details.
1389
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVpnGatewayArgs']] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
1437
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
1438
+ :param pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']] mysql: Azure MySQL. See Integration blocks below for details.
1439
+ :param pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
1440
+ :param pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
1441
+ :param pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
1442
+ :param pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
1443
+ :param pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
1444
+ :param pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']] service_bus: Azure Service Bus. See Integration blocks below for details.
1445
+ :param pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']] sql: Azure SQL. See Integration blocks below for details.
1446
+ :param pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
1447
+ :param pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']] storage: for Azure Storage. See Integration blocks below for details.
1390
1448
 
1391
- Below arguments supports the minimum metric polling interval of 900 seconds
1449
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
1450
+ :param pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
1451
+ :param pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
1452
+ :param pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']] vms: Azure VMs. See Integration blocks below for details.
1453
+ :param pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
1454
+
1455
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
1392
1456
  """
1393
1457
  ...
1394
1458
  @overload
@@ -1411,157 +1475,156 @@ class AzureIntegrations(pulumi.CustomResource):
1411
1475
 
1412
1476
  Leave an integration block empty to use its default configuration. You can also use the full example, including the Azure set up, found in our guides.
1413
1477
 
1414
- <!--Start PulumiCodeChooser -->
1415
1478
  ```python
1416
1479
  import pulumi
1417
1480
  import pulumi_newrelic as newrelic
1418
1481
 
1419
- foo_azure_link_account = newrelic.cloud.AzureLinkAccount("fooAzureLinkAccount",
1482
+ foo = newrelic.cloud.AzureLinkAccount("foo",
1420
1483
  account_id="The New Relic account ID where you want to link the Azure account",
1421
1484
  application_id="ID of the application",
1422
1485
  client_secret="Secret value of client's Azure account",
1423
1486
  subscription_id="Subscription ID of Azure",
1424
- tenant_id="Tenant ID of the Azure")
1425
- foo_azure_integrations = newrelic.cloud.AzureIntegrations("fooAzureIntegrations",
1426
- linked_account_id=foo_azure_link_account.id,
1487
+ tenant_id="Tenant ID of the Azure",
1488
+ name="Name of the linked account")
1489
+ foo_azure_integrations = newrelic.cloud.AzureIntegrations("foo",
1490
+ linked_account_id=foo.id,
1427
1491
  account_id="The New Relic account ID",
1428
- api_management=newrelic.cloud.AzureIntegrationsApiManagementArgs(
1429
- metrics_polling_interval=1200,
1430
- resource_groups=["resource_groups"],
1431
- ),
1432
- app_gateway=newrelic.cloud.AzureIntegrationsAppGatewayArgs(
1433
- metrics_polling_interval=1200,
1434
- resource_groups=["resource_groups"],
1435
- ),
1436
- app_service=newrelic.cloud.AzureIntegrationsAppServiceArgs(
1437
- metrics_polling_interval=1200,
1438
- resource_groups=["resource_groups"],
1439
- ),
1440
- containers=newrelic.cloud.AzureIntegrationsContainersArgs(
1441
- metrics_polling_interval=1200,
1442
- resource_groups=["resource_groups"],
1443
- ),
1444
- cosmos_db=newrelic.cloud.AzureIntegrationsCosmosDbArgs(
1445
- metrics_polling_interval=1200,
1446
- resource_groups=["resource_groups"],
1447
- ),
1448
- cost_management=newrelic.cloud.AzureIntegrationsCostManagementArgs(
1449
- metrics_polling_interval=3600,
1450
- tag_keys=["tag_keys"],
1451
- ),
1452
- data_factory=newrelic.cloud.AzureIntegrationsDataFactoryArgs(
1453
- metrics_polling_interval=1200,
1454
- resource_groups=["resource_groups"],
1455
- ),
1456
- event_hub=newrelic.cloud.AzureIntegrationsEventHubArgs(
1457
- metrics_polling_interval=1200,
1458
- resource_groups=["resource_groups"],
1459
- ),
1460
- express_route=newrelic.cloud.AzureIntegrationsExpressRouteArgs(
1461
- metrics_polling_interval=1200,
1462
- resource_groups=["resource_groups"],
1463
- ),
1464
- firewalls=newrelic.cloud.AzureIntegrationsFirewallsArgs(
1465
- metrics_polling_interval=1200,
1466
- resource_groups=["resource_groups"],
1467
- ),
1468
- front_door=newrelic.cloud.AzureIntegrationsFrontDoorArgs(
1469
- metrics_polling_interval=1200,
1470
- resource_groups=["resource_groups"],
1471
- ),
1472
- functions=newrelic.cloud.AzureIntegrationsFunctionsArgs(
1473
- metrics_polling_interval=1200,
1474
- resource_groups=["resource_groups"],
1475
- ),
1476
- key_vault=newrelic.cloud.AzureIntegrationsKeyVaultArgs(
1477
- metrics_polling_interval=1200,
1478
- resource_groups=["resource_groups"],
1479
- ),
1480
- load_balancer=newrelic.cloud.AzureIntegrationsLoadBalancerArgs(
1481
- metrics_polling_interval=1200,
1482
- resource_groups=["resource_groups"],
1483
- ),
1484
- logic_apps=newrelic.cloud.AzureIntegrationsLogicAppsArgs(
1485
- metrics_polling_interval=1200,
1486
- resource_groups=["resource_groups"],
1487
- ),
1488
- machine_learning=newrelic.cloud.AzureIntegrationsMachineLearningArgs(
1489
- metrics_polling_interval=1200,
1490
- resource_groups=["resource_groups"],
1491
- ),
1492
- maria_db=newrelic.cloud.AzureIntegrationsMariaDbArgs(
1493
- metrics_polling_interval=1200,
1494
- resource_groups=["resource_groups"],
1495
- ),
1496
- monitor=newrelic.cloud.AzureIntegrationsMonitorArgs(
1497
- metrics_polling_interval=1200,
1498
- resource_groups=["resource_groups"],
1499
- include_tags=["env:production"],
1500
- exclude_tags=[
1492
+ api_management={
1493
+ "metrics_polling_interval": 300,
1494
+ "resource_groups": ["resource_groups"],
1495
+ },
1496
+ app_gateway={
1497
+ "metrics_polling_interval": 300,
1498
+ "resource_groups": ["resource_groups"],
1499
+ },
1500
+ app_service={
1501
+ "metrics_polling_interval": 300,
1502
+ "resource_groups": ["resource_groups"],
1503
+ },
1504
+ containers={
1505
+ "metrics_polling_interval": 300,
1506
+ "resource_groups": ["resource_groups"],
1507
+ },
1508
+ cosmos_db={
1509
+ "metrics_polling_interval": 300,
1510
+ "resource_groups": ["resource_groups"],
1511
+ },
1512
+ cost_management={
1513
+ "metrics_polling_interval": 3600,
1514
+ "tag_keys": ["tag_keys"],
1515
+ },
1516
+ data_factory={
1517
+ "metrics_polling_interval": 300,
1518
+ "resource_groups": ["resource_groups"],
1519
+ },
1520
+ event_hub={
1521
+ "metrics_polling_interval": 300,
1522
+ "resource_groups": ["resource_groups"],
1523
+ },
1524
+ express_route={
1525
+ "metrics_polling_interval": 300,
1526
+ "resource_groups": ["resource_groups"],
1527
+ },
1528
+ firewalls={
1529
+ "metrics_polling_interval": 300,
1530
+ "resource_groups": ["resource_groups"],
1531
+ },
1532
+ front_door={
1533
+ "metrics_polling_interval": 300,
1534
+ "resource_groups": ["resource_groups"],
1535
+ },
1536
+ functions={
1537
+ "metrics_polling_interval": 300,
1538
+ "resource_groups": ["resource_groups"],
1539
+ },
1540
+ key_vault={
1541
+ "metrics_polling_interval": 300,
1542
+ "resource_groups": ["resource_groups"],
1543
+ },
1544
+ load_balancer={
1545
+ "metrics_polling_interval": 300,
1546
+ "resource_groups": ["resource_groups"],
1547
+ },
1548
+ logic_apps={
1549
+ "metrics_polling_interval": 300,
1550
+ "resource_groups": ["resource_groups"],
1551
+ },
1552
+ machine_learning={
1553
+ "metrics_polling_interval": 300,
1554
+ "resource_groups": ["resource_groups"],
1555
+ },
1556
+ maria_db={
1557
+ "metrics_polling_interval": 3600,
1558
+ "resource_groups": ["resource_groups"],
1559
+ },
1560
+ monitor={
1561
+ "metrics_polling_interval": 60,
1562
+ "resource_groups": ["resource_groups"],
1563
+ "include_tags": ["env:production"],
1564
+ "exclude_tags": [
1501
1565
  "env:staging",
1502
1566
  "env:testing",
1503
1567
  ],
1504
- enabled=True,
1505
- resource_types=["microsoft.datashare/accounts"],
1506
- ),
1507
- mysql=newrelic.cloud.AzureIntegrationsMysqlArgs(
1508
- metrics_polling_interval=1200,
1509
- resource_groups=["resource_groups"],
1510
- ),
1511
- mysql_flexible=newrelic.cloud.AzureIntegrationsMysqlFlexibleArgs(
1512
- metrics_polling_interval=1200,
1513
- resource_groups=["resource_groups"],
1514
- ),
1515
- postgresql=newrelic.cloud.AzureIntegrationsPostgresqlArgs(
1516
- metrics_polling_interval=1200,
1517
- resource_groups=["resource_groups"],
1518
- ),
1519
- postgresql_flexible=newrelic.cloud.AzureIntegrationsPostgresqlFlexibleArgs(
1520
- metrics_polling_interval=1200,
1521
- resource_groups=["resource_groups"],
1522
- ),
1523
- power_bi_dedicated=newrelic.cloud.AzureIntegrationsPowerBiDedicatedArgs(
1524
- metrics_polling_interval=1200,
1525
- resource_groups=["resource_groups"],
1526
- ),
1527
- redis_cache=newrelic.cloud.AzureIntegrationsRedisCacheArgs(
1528
- metrics_polling_interval=1200,
1529
- resource_groups=["resource_groups"],
1530
- ),
1531
- service_bus=newrelic.cloud.AzureIntegrationsServiceBusArgs(
1532
- metrics_polling_interval=1200,
1533
- resource_groups=["resource_groups"],
1534
- ),
1535
- sql=newrelic.cloud.AzureIntegrationsSqlArgs(
1536
- metrics_polling_interval=1200,
1537
- resource_groups=["resource_groups"],
1538
- ),
1539
- sql_managed=newrelic.cloud.AzureIntegrationsSqlManagedArgs(
1540
- metrics_polling_interval=1200,
1541
- resource_groups=["resource_groups"],
1542
- ),
1543
- storage=newrelic.cloud.AzureIntegrationsStorageArgs(
1544
- metrics_polling_interval=1200,
1545
- resource_groups=["resource_groups"],
1546
- ),
1547
- virtual_machine=newrelic.cloud.AzureIntegrationsVirtualMachineArgs(
1548
- metrics_polling_interval=1200,
1549
- resource_groups=["resource_groups"],
1550
- ),
1551
- virtual_networks=newrelic.cloud.AzureIntegrationsVirtualNetworksArgs(
1552
- metrics_polling_interval=1200,
1553
- resource_groups=["resource_groups"],
1554
- ),
1555
- vms=newrelic.cloud.AzureIntegrationsVmsArgs(
1556
- metrics_polling_interval=1200,
1557
- resource_groups=["resource_groups"],
1558
- ),
1559
- vpn_gateway=newrelic.cloud.AzureIntegrationsVpnGatewayArgs(
1560
- metrics_polling_interval=1200,
1561
- resource_groups=["resource_groups"],
1562
- ))
1568
+ "enabled": True,
1569
+ "resource_types": ["microsoft.datashare/accounts"],
1570
+ },
1571
+ mysql={
1572
+ "metrics_polling_interval": 3600,
1573
+ "resource_groups": ["resource_groups"],
1574
+ },
1575
+ mysql_flexible={
1576
+ "metrics_polling_interval": 3600,
1577
+ "resource_groups": ["resource_groups"],
1578
+ },
1579
+ postgresql={
1580
+ "metrics_polling_interval": 3600,
1581
+ "resource_groups": ["resource_groups"],
1582
+ },
1583
+ postgresql_flexible={
1584
+ "metrics_polling_interval": 3600,
1585
+ "resource_groups": ["resource_groups"],
1586
+ },
1587
+ power_bi_dedicated={
1588
+ "metrics_polling_interval": 300,
1589
+ "resource_groups": ["resource_groups"],
1590
+ },
1591
+ redis_cache={
1592
+ "metrics_polling_interval": 300,
1593
+ "resource_groups": ["resource_groups"],
1594
+ },
1595
+ service_bus={
1596
+ "metrics_polling_interval": 300,
1597
+ "resource_groups": ["resource_groups"],
1598
+ },
1599
+ sql={
1600
+ "metrics_polling_interval": 300,
1601
+ "resource_groups": ["resource_groups"],
1602
+ },
1603
+ sql_managed={
1604
+ "metrics_polling_interval": 300,
1605
+ "resource_groups": ["resource_groups"],
1606
+ },
1607
+ storage={
1608
+ "metrics_polling_interval": 1800,
1609
+ "resource_groups": ["resource_groups"],
1610
+ },
1611
+ virtual_machine={
1612
+ "metrics_polling_interval": 300,
1613
+ "resource_groups": ["resource_groups"],
1614
+ },
1615
+ virtual_networks={
1616
+ "metrics_polling_interval": 300,
1617
+ "resource_groups": ["resource_groups"],
1618
+ },
1619
+ vms={
1620
+ "metrics_polling_interval": 300,
1621
+ "resource_groups": ["resource_groups"],
1622
+ },
1623
+ vpn_gateway={
1624
+ "metrics_polling_interval": 300,
1625
+ "resource_groups": ["resource_groups"],
1626
+ })
1563
1627
  ```
1564
- <!--End PulumiCodeChooser -->
1565
1628
 
1566
1629
  ## Import
1567
1630
 
@@ -1588,40 +1651,41 @@ class AzureIntegrations(pulumi.CustomResource):
1588
1651
  def _internal_init(__self__,
1589
1652
  resource_name: str,
1590
1653
  opts: Optional[pulumi.ResourceOptions] = None,
1591
- account_id: Optional[pulumi.Input[int]] = None,
1592
- api_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']]] = None,
1593
- app_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']]] = None,
1594
- app_service: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']]] = None,
1595
- containers: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']]] = None,
1596
- cosmos_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']]] = None,
1597
- cost_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']]] = None,
1598
- data_factory: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']]] = None,
1599
- event_hub: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']]] = None,
1600
- express_route: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']]] = None,
1601
- firewalls: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']]] = None,
1602
- front_door: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']]] = None,
1603
- functions: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']]] = None,
1604
- key_vault: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']]] = None,
1605
- linked_account_id: Optional[pulumi.Input[int]] = None,
1606
- load_balancer: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']]] = None,
1607
- logic_apps: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']]] = None,
1608
- machine_learning: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']]] = None,
1609
- maria_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']]] = None,
1610
- monitor: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']]] = None,
1611
- mysql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']]] = None,
1612
- mysql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']]] = None,
1613
- postgresql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']]] = None,
1614
- postgresql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']]] = None,
1615
- power_bi_dedicated: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']]] = None,
1616
- redis_cache: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']]] = None,
1617
- service_bus: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']]] = None,
1618
- sql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']]] = None,
1619
- sql_managed: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']]] = None,
1620
- storage: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']]] = None,
1621
- virtual_machine: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']]] = None,
1622
- virtual_networks: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualNetworksArgs']]] = None,
1623
- vms: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']]] = None,
1624
- vpn_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVpnGatewayArgs']]] = None,
1654
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1655
+ api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1656
+ app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1657
+ app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
1658
+ auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
1659
+ containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
1660
+ cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
1661
+ cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
1662
+ data_factory: Optional[pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']]] = None,
1663
+ event_hub: Optional[pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']]] = None,
1664
+ express_route: Optional[pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']]] = None,
1665
+ firewalls: Optional[pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']]] = None,
1666
+ front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1667
+ functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1668
+ key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1669
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1670
+ load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1671
+ logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1672
+ machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
1673
+ maria_db: Optional[pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']]] = None,
1674
+ monitor: Optional[pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']]] = None,
1675
+ mysql: Optional[pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']]] = None,
1676
+ mysql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']]] = None,
1677
+ postgresql: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']]] = None,
1678
+ postgresql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']]] = None,
1679
+ power_bi_dedicated: Optional[pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']]] = None,
1680
+ redis_cache: Optional[pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']]] = None,
1681
+ service_bus: Optional[pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']]] = None,
1682
+ sql: Optional[pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']]] = None,
1683
+ sql_managed: Optional[pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']]] = None,
1684
+ storage: Optional[pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']]] = None,
1685
+ virtual_machine: Optional[pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']]] = None,
1686
+ virtual_networks: Optional[pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']]] = None,
1687
+ vms: Optional[pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']]] = None,
1688
+ vpn_gateway: Optional[pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']]] = None,
1625
1689
  __props__=None):
1626
1690
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
1627
1691
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -1635,6 +1699,7 @@ class AzureIntegrations(pulumi.CustomResource):
1635
1699
  __props__.__dict__["api_management"] = api_management
1636
1700
  __props__.__dict__["app_gateway"] = app_gateway
1637
1701
  __props__.__dict__["app_service"] = app_service
1702
+ __props__.__dict__["auto_discovery"] = auto_discovery
1638
1703
  __props__.__dict__["containers"] = containers
1639
1704
  __props__.__dict__["cosmos_db"] = cosmos_db
1640
1705
  __props__.__dict__["cost_management"] = cost_management
@@ -1677,40 +1742,41 @@ class AzureIntegrations(pulumi.CustomResource):
1677
1742
  def get(resource_name: str,
1678
1743
  id: pulumi.Input[str],
1679
1744
  opts: Optional[pulumi.ResourceOptions] = None,
1680
- account_id: Optional[pulumi.Input[int]] = None,
1681
- api_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']]] = None,
1682
- app_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']]] = None,
1683
- app_service: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']]] = None,
1684
- containers: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']]] = None,
1685
- cosmos_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']]] = None,
1686
- cost_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']]] = None,
1687
- data_factory: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']]] = None,
1688
- event_hub: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']]] = None,
1689
- express_route: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']]] = None,
1690
- firewalls: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']]] = None,
1691
- front_door: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']]] = None,
1692
- functions: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']]] = None,
1693
- key_vault: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']]] = None,
1694
- linked_account_id: Optional[pulumi.Input[int]] = None,
1695
- load_balancer: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']]] = None,
1696
- logic_apps: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']]] = None,
1697
- machine_learning: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']]] = None,
1698
- maria_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']]] = None,
1699
- monitor: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']]] = None,
1700
- mysql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']]] = None,
1701
- mysql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']]] = None,
1702
- postgresql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']]] = None,
1703
- postgresql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']]] = None,
1704
- power_bi_dedicated: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']]] = None,
1705
- redis_cache: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']]] = None,
1706
- service_bus: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']]] = None,
1707
- sql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']]] = None,
1708
- sql_managed: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']]] = None,
1709
- storage: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']]] = None,
1710
- virtual_machine: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']]] = None,
1711
- virtual_networks: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualNetworksArgs']]] = None,
1712
- vms: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']]] = None,
1713
- vpn_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVpnGatewayArgs']]] = None) -> 'AzureIntegrations':
1745
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1746
+ api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1747
+ app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1748
+ app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
1749
+ auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
1750
+ containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
1751
+ cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
1752
+ cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
1753
+ data_factory: Optional[pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']]] = None,
1754
+ event_hub: Optional[pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']]] = None,
1755
+ express_route: Optional[pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']]] = None,
1756
+ firewalls: Optional[pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']]] = None,
1757
+ front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1758
+ functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1759
+ key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1760
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1761
+ load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1762
+ logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1763
+ machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
1764
+ maria_db: Optional[pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']]] = None,
1765
+ monitor: Optional[pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']]] = None,
1766
+ mysql: Optional[pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']]] = None,
1767
+ mysql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']]] = None,
1768
+ postgresql: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']]] = None,
1769
+ postgresql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']]] = None,
1770
+ power_bi_dedicated: Optional[pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']]] = None,
1771
+ redis_cache: Optional[pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']]] = None,
1772
+ service_bus: Optional[pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']]] = None,
1773
+ sql: Optional[pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']]] = None,
1774
+ sql_managed: Optional[pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']]] = None,
1775
+ storage: Optional[pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']]] = None,
1776
+ virtual_machine: Optional[pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']]] = None,
1777
+ virtual_networks: Optional[pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']]] = None,
1778
+ vms: Optional[pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']]] = None,
1779
+ vpn_gateway: Optional[pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']]] = None) -> 'AzureIntegrations':
1714
1780
  """
1715
1781
  Get an existing AzureIntegrations resource's state with the given name, id, and optional extra
1716
1782
  properties used to qualify the lookup.
@@ -1718,44 +1784,50 @@ class AzureIntegrations(pulumi.CustomResource):
1718
1784
  :param str resource_name: The unique name of the resulting resource.
1719
1785
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1720
1786
  :param pulumi.ResourceOptions opts: Options for the resource.
1721
- :param pulumi.Input[int] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1722
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']] api_management: Azure API Management. See Integration blocks below for details.
1723
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1724
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']] app_service: Azure App Service. See Integration blocks below for details.
1725
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']] containers: Azure Containers. See Integration blocks below for details.
1726
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1727
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']] cost_management: Azure Cost Management. See Integration blocks below for details.
1728
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']] data_factory: Azure Data Factory. See Integration blocks below for details.
1729
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']] event_hub: Azure Event Hub. See Integration blocks below for details.
1730
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']] express_route: Azure Express Route. See Integration blocks below for details.
1731
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']] firewalls: Azure Firewalls. See Integration blocks below for details.
1732
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']] front_door: Azure Front Door. See Integration blocks below for details.
1733
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']] functions: Azure Functions. See Integration blocks below for details.
1734
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']] key_vault: Azure Key Vault. See Integration blocks below for details.
1735
- :param pulumi.Input[int] linked_account_id: The ID of the linked Azure account in New Relic.
1736
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
1737
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
1738
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
1739
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']] maria_db: Azure MariaDB. See Integration blocks below for details.
1740
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']] monitor: Azure Monitor. See Integration blocks below for details.
1741
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']] mysql: Azure MySQL. See Integration blocks below for details.
1742
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
1743
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
1744
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
1745
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
1746
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
1747
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']] service_bus: Azure Service Bus. See Integration blocks below for details.
1748
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']] sql: Azure SQL. See Integration blocks below for details.
1749
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
1750
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']] storage: for Azure Storage. See Integration blocks below for details.
1751
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
1752
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualNetworksArgs']] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
1787
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1788
+ :param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
1789
+ :param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1790
+ :param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
1791
+ :param pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']] auto_discovery: Azure Auto Discovery
1792
+ :param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
1793
+ :param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1794
+ :param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
1795
+ :param pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']] data_factory: Azure Data Factory. See Integration blocks below for details.
1796
+ :param pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']] event_hub: Azure Event Hub. See Integration blocks below for details.
1797
+ :param pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']] express_route: Azure Express Route. See Integration blocks below for details.
1798
+ :param pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']] firewalls: Azure Firewalls. See Integration blocks below for details.
1799
+ :param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
1800
+ :param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
1801
+ :param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
1802
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1803
+
1753
1804
 
1754
- Below argument supports the minimum metric polling interval of 3600 seconds
1755
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']] vms: Azure VMs. See Integration blocks below for details.
1756
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVpnGatewayArgs']] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
1805
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
1806
+ :param pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
1807
+ :param pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
1808
+ :param pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
1809
+ :param pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']] maria_db: Azure MariaDB. See Integration blocks below for details.
1810
+ :param pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']] monitor: Azure Monitor. See Integration blocks below for details.
1757
1811
 
1758
- Below arguments supports the minimum metric polling interval of 900 seconds
1812
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
1813
+ :param pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']] mysql: Azure MySQL. See Integration blocks below for details.
1814
+ :param pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
1815
+ :param pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
1816
+ :param pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
1817
+ :param pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
1818
+ :param pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
1819
+ :param pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']] service_bus: Azure Service Bus. See Integration blocks below for details.
1820
+ :param pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']] sql: Azure SQL. See Integration blocks below for details.
1821
+ :param pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
1822
+ :param pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']] storage: for Azure Storage. See Integration blocks below for details.
1823
+
1824
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
1825
+ :param pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
1826
+ :param pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
1827
+ :param pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']] vms: Azure VMs. See Integration blocks below for details.
1828
+ :param pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
1829
+
1830
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
1759
1831
  """
1760
1832
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1761
1833
 
@@ -1765,6 +1837,7 @@ class AzureIntegrations(pulumi.CustomResource):
1765
1837
  __props__.__dict__["api_management"] = api_management
1766
1838
  __props__.__dict__["app_gateway"] = app_gateway
1767
1839
  __props__.__dict__["app_service"] = app_service
1840
+ __props__.__dict__["auto_discovery"] = auto_discovery
1768
1841
  __props__.__dict__["containers"] = containers
1769
1842
  __props__.__dict__["cosmos_db"] = cosmos_db
1770
1843
  __props__.__dict__["cost_management"] = cost_management
@@ -1797,15 +1870,15 @@ class AzureIntegrations(pulumi.CustomResource):
1797
1870
  __props__.__dict__["vpn_gateway"] = vpn_gateway
1798
1871
  return AzureIntegrations(resource_name, opts=opts, __props__=__props__)
1799
1872
 
1800
- @property
1873
+ @_builtins.property
1801
1874
  @pulumi.getter(name="accountId")
1802
- def account_id(self) -> pulumi.Output[int]:
1875
+ def account_id(self) -> pulumi.Output[_builtins.str]:
1803
1876
  """
1804
1877
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1805
1878
  """
1806
1879
  return pulumi.get(self, "account_id")
1807
1880
 
1808
- @property
1881
+ @_builtins.property
1809
1882
  @pulumi.getter(name="apiManagement")
1810
1883
  def api_management(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsApiManagement']]:
1811
1884
  """
@@ -1813,7 +1886,7 @@ class AzureIntegrations(pulumi.CustomResource):
1813
1886
  """
1814
1887
  return pulumi.get(self, "api_management")
1815
1888
 
1816
- @property
1889
+ @_builtins.property
1817
1890
  @pulumi.getter(name="appGateway")
1818
1891
  def app_gateway(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAppGateway']]:
1819
1892
  """
@@ -1821,7 +1894,7 @@ class AzureIntegrations(pulumi.CustomResource):
1821
1894
  """
1822
1895
  return pulumi.get(self, "app_gateway")
1823
1896
 
1824
- @property
1897
+ @_builtins.property
1825
1898
  @pulumi.getter(name="appService")
1826
1899
  def app_service(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAppService']]:
1827
1900
  """
@@ -1829,7 +1902,15 @@ class AzureIntegrations(pulumi.CustomResource):
1829
1902
  """
1830
1903
  return pulumi.get(self, "app_service")
1831
1904
 
1832
- @property
1905
+ @_builtins.property
1906
+ @pulumi.getter(name="autoDiscovery")
1907
+ def auto_discovery(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAutoDiscovery']]:
1908
+ """
1909
+ Azure Auto Discovery
1910
+ """
1911
+ return pulumi.get(self, "auto_discovery")
1912
+
1913
+ @_builtins.property
1833
1914
  @pulumi.getter
1834
1915
  def containers(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsContainers']]:
1835
1916
  """
@@ -1837,7 +1918,7 @@ class AzureIntegrations(pulumi.CustomResource):
1837
1918
  """
1838
1919
  return pulumi.get(self, "containers")
1839
1920
 
1840
- @property
1921
+ @_builtins.property
1841
1922
  @pulumi.getter(name="cosmosDb")
1842
1923
  def cosmos_db(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsCosmosDb']]:
1843
1924
  """
@@ -1845,7 +1926,7 @@ class AzureIntegrations(pulumi.CustomResource):
1845
1926
  """
1846
1927
  return pulumi.get(self, "cosmos_db")
1847
1928
 
1848
- @property
1929
+ @_builtins.property
1849
1930
  @pulumi.getter(name="costManagement")
1850
1931
  def cost_management(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsCostManagement']]:
1851
1932
  """
@@ -1853,7 +1934,7 @@ class AzureIntegrations(pulumi.CustomResource):
1853
1934
  """
1854
1935
  return pulumi.get(self, "cost_management")
1855
1936
 
1856
- @property
1937
+ @_builtins.property
1857
1938
  @pulumi.getter(name="dataFactory")
1858
1939
  def data_factory(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsDataFactory']]:
1859
1940
  """
@@ -1861,7 +1942,7 @@ class AzureIntegrations(pulumi.CustomResource):
1861
1942
  """
1862
1943
  return pulumi.get(self, "data_factory")
1863
1944
 
1864
- @property
1945
+ @_builtins.property
1865
1946
  @pulumi.getter(name="eventHub")
1866
1947
  def event_hub(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsEventHub']]:
1867
1948
  """
@@ -1869,7 +1950,7 @@ class AzureIntegrations(pulumi.CustomResource):
1869
1950
  """
1870
1951
  return pulumi.get(self, "event_hub")
1871
1952
 
1872
- @property
1953
+ @_builtins.property
1873
1954
  @pulumi.getter(name="expressRoute")
1874
1955
  def express_route(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsExpressRoute']]:
1875
1956
  """
@@ -1877,7 +1958,7 @@ class AzureIntegrations(pulumi.CustomResource):
1877
1958
  """
1878
1959
  return pulumi.get(self, "express_route")
1879
1960
 
1880
- @property
1961
+ @_builtins.property
1881
1962
  @pulumi.getter
1882
1963
  def firewalls(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFirewalls']]:
1883
1964
  """
@@ -1885,7 +1966,7 @@ class AzureIntegrations(pulumi.CustomResource):
1885
1966
  """
1886
1967
  return pulumi.get(self, "firewalls")
1887
1968
 
1888
- @property
1969
+ @_builtins.property
1889
1970
  @pulumi.getter(name="frontDoor")
1890
1971
  def front_door(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFrontDoor']]:
1891
1972
  """
@@ -1893,7 +1974,7 @@ class AzureIntegrations(pulumi.CustomResource):
1893
1974
  """
1894
1975
  return pulumi.get(self, "front_door")
1895
1976
 
1896
- @property
1977
+ @_builtins.property
1897
1978
  @pulumi.getter
1898
1979
  def functions(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFunctions']]:
1899
1980
  """
@@ -1901,7 +1982,7 @@ class AzureIntegrations(pulumi.CustomResource):
1901
1982
  """
1902
1983
  return pulumi.get(self, "functions")
1903
1984
 
1904
- @property
1985
+ @_builtins.property
1905
1986
  @pulumi.getter(name="keyVault")
1906
1987
  def key_vault(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsKeyVault']]:
1907
1988
  """
@@ -1909,15 +1990,18 @@ class AzureIntegrations(pulumi.CustomResource):
1909
1990
  """
1910
1991
  return pulumi.get(self, "key_vault")
1911
1992
 
1912
- @property
1993
+ @_builtins.property
1913
1994
  @pulumi.getter(name="linkedAccountId")
1914
- def linked_account_id(self) -> pulumi.Output[int]:
1995
+ def linked_account_id(self) -> pulumi.Output[_builtins.str]:
1915
1996
  """
1916
1997
  The ID of the linked Azure account in New Relic.
1998
+
1999
+
2000
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
1917
2001
  """
1918
2002
  return pulumi.get(self, "linked_account_id")
1919
2003
 
1920
- @property
2004
+ @_builtins.property
1921
2005
  @pulumi.getter(name="loadBalancer")
1922
2006
  def load_balancer(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsLoadBalancer']]:
1923
2007
  """
@@ -1925,7 +2009,7 @@ class AzureIntegrations(pulumi.CustomResource):
1925
2009
  """
1926
2010
  return pulumi.get(self, "load_balancer")
1927
2011
 
1928
- @property
2012
+ @_builtins.property
1929
2013
  @pulumi.getter(name="logicApps")
1930
2014
  def logic_apps(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsLogicApps']]:
1931
2015
  """
@@ -1933,7 +2017,7 @@ class AzureIntegrations(pulumi.CustomResource):
1933
2017
  """
1934
2018
  return pulumi.get(self, "logic_apps")
1935
2019
 
1936
- @property
2020
+ @_builtins.property
1937
2021
  @pulumi.getter(name="machineLearning")
1938
2022
  def machine_learning(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMachineLearning']]:
1939
2023
  """
@@ -1941,7 +2025,7 @@ class AzureIntegrations(pulumi.CustomResource):
1941
2025
  """
1942
2026
  return pulumi.get(self, "machine_learning")
1943
2027
 
1944
- @property
2028
+ @_builtins.property
1945
2029
  @pulumi.getter(name="mariaDb")
1946
2030
  def maria_db(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMariaDb']]:
1947
2031
  """
@@ -1949,15 +2033,17 @@ class AzureIntegrations(pulumi.CustomResource):
1949
2033
  """
1950
2034
  return pulumi.get(self, "maria_db")
1951
2035
 
1952
- @property
2036
+ @_builtins.property
1953
2037
  @pulumi.getter
1954
2038
  def monitor(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMonitor']]:
1955
2039
  """
1956
2040
  Azure Monitor. See Integration blocks below for details.
2041
+
2042
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
1957
2043
  """
1958
2044
  return pulumi.get(self, "monitor")
1959
2045
 
1960
- @property
2046
+ @_builtins.property
1961
2047
  @pulumi.getter
1962
2048
  def mysql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMysql']]:
1963
2049
  """
@@ -1965,7 +2051,7 @@ class AzureIntegrations(pulumi.CustomResource):
1965
2051
  """
1966
2052
  return pulumi.get(self, "mysql")
1967
2053
 
1968
- @property
2054
+ @_builtins.property
1969
2055
  @pulumi.getter(name="mysqlFlexible")
1970
2056
  def mysql_flexible(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMysqlFlexible']]:
1971
2057
  """
@@ -1973,7 +2059,7 @@ class AzureIntegrations(pulumi.CustomResource):
1973
2059
  """
1974
2060
  return pulumi.get(self, "mysql_flexible")
1975
2061
 
1976
- @property
2062
+ @_builtins.property
1977
2063
  @pulumi.getter
1978
2064
  def postgresql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPostgresql']]:
1979
2065
  """
@@ -1981,7 +2067,7 @@ class AzureIntegrations(pulumi.CustomResource):
1981
2067
  """
1982
2068
  return pulumi.get(self, "postgresql")
1983
2069
 
1984
- @property
2070
+ @_builtins.property
1985
2071
  @pulumi.getter(name="postgresqlFlexible")
1986
2072
  def postgresql_flexible(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPostgresqlFlexible']]:
1987
2073
  """
@@ -1989,7 +2075,7 @@ class AzureIntegrations(pulumi.CustomResource):
1989
2075
  """
1990
2076
  return pulumi.get(self, "postgresql_flexible")
1991
2077
 
1992
- @property
2078
+ @_builtins.property
1993
2079
  @pulumi.getter(name="powerBiDedicated")
1994
2080
  def power_bi_dedicated(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPowerBiDedicated']]:
1995
2081
  """
@@ -1997,7 +2083,7 @@ class AzureIntegrations(pulumi.CustomResource):
1997
2083
  """
1998
2084
  return pulumi.get(self, "power_bi_dedicated")
1999
2085
 
2000
- @property
2086
+ @_builtins.property
2001
2087
  @pulumi.getter(name="redisCache")
2002
2088
  def redis_cache(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsRedisCache']]:
2003
2089
  """
@@ -2005,7 +2091,7 @@ class AzureIntegrations(pulumi.CustomResource):
2005
2091
  """
2006
2092
  return pulumi.get(self, "redis_cache")
2007
2093
 
2008
- @property
2094
+ @_builtins.property
2009
2095
  @pulumi.getter(name="serviceBus")
2010
2096
  def service_bus(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsServiceBus']]:
2011
2097
  """
@@ -2013,7 +2099,7 @@ class AzureIntegrations(pulumi.CustomResource):
2013
2099
  """
2014
2100
  return pulumi.get(self, "service_bus")
2015
2101
 
2016
- @property
2102
+ @_builtins.property
2017
2103
  @pulumi.getter
2018
2104
  def sql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsSql']]:
2019
2105
  """
@@ -2021,7 +2107,7 @@ class AzureIntegrations(pulumi.CustomResource):
2021
2107
  """
2022
2108
  return pulumi.get(self, "sql")
2023
2109
 
2024
- @property
2110
+ @_builtins.property
2025
2111
  @pulumi.getter(name="sqlManaged")
2026
2112
  def sql_managed(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsSqlManaged']]:
2027
2113
  """
@@ -2029,15 +2115,17 @@ class AzureIntegrations(pulumi.CustomResource):
2029
2115
  """
2030
2116
  return pulumi.get(self, "sql_managed")
2031
2117
 
2032
- @property
2118
+ @_builtins.property
2033
2119
  @pulumi.getter
2034
2120
  def storage(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsStorage']]:
2035
2121
  """
2036
2122
  for Azure Storage. See Integration blocks below for details.
2123
+
2124
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
2037
2125
  """
2038
2126
  return pulumi.get(self, "storage")
2039
2127
 
2040
- @property
2128
+ @_builtins.property
2041
2129
  @pulumi.getter(name="virtualMachine")
2042
2130
  def virtual_machine(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVirtualMachine']]:
2043
2131
  """
@@ -2045,17 +2133,15 @@ class AzureIntegrations(pulumi.CustomResource):
2045
2133
  """
2046
2134
  return pulumi.get(self, "virtual_machine")
2047
2135
 
2048
- @property
2136
+ @_builtins.property
2049
2137
  @pulumi.getter(name="virtualNetworks")
2050
2138
  def virtual_networks(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVirtualNetworks']]:
2051
2139
  """
2052
2140
  for Azure Virtual networks. See Integration blocks below for details.
2053
-
2054
- Below argument supports the minimum metric polling interval of 3600 seconds
2055
2141
  """
2056
2142
  return pulumi.get(self, "virtual_networks")
2057
2143
 
2058
- @property
2144
+ @_builtins.property
2059
2145
  @pulumi.getter
2060
2146
  def vms(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVms']]:
2061
2147
  """
@@ -2063,13 +2149,13 @@ class AzureIntegrations(pulumi.CustomResource):
2063
2149
  """
2064
2150
  return pulumi.get(self, "vms")
2065
2151
 
2066
- @property
2152
+ @_builtins.property
2067
2153
  @pulumi.getter(name="vpnGateway")
2068
2154
  def vpn_gateway(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVpnGateway']]:
2069
2155
  """
2070
2156
  Azure VPN Gateway. See Integration blocks below for details.
2071
2157
 
2072
- Below arguments supports the minimum metric polling interval of 900 seconds
2158
+ The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
2073
2159
  """
2074
2160
  return pulumi.get(self, "vpn_gateway")
2075
2161