pulumi-newrelic 5.16.0a1698964311__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 +58 -1
  2. pulumi_newrelic/_inputs.py +10772 -2775
  3. pulumi_newrelic/_utilities.py +92 -11
  4. pulumi_newrelic/account_management.py +56 -42
  5. pulumi_newrelic/alert_channel.py +177 -151
  6. pulumi_newrelic/alert_condition.py +313 -301
  7. pulumi_newrelic/alert_muting_rule.py +195 -138
  8. pulumi_newrelic/alert_policy.py +157 -109
  9. pulumi_newrelic/alert_policy_channel.py +95 -81
  10. pulumi_newrelic/api_access_key.py +191 -209
  11. pulumi_newrelic/browser_application.py +161 -153
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +4267 -2710
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +238 -200
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +159 -212
  16. pulumi_newrelic/cloud/aws_integrations.py +518 -1490
  17. pulumi_newrelic/cloud/aws_link_account.py +88 -76
  18. pulumi_newrelic/cloud/azure_integrations.py +681 -587
  19. pulumi_newrelic/cloud/azure_link_account.py +129 -117
  20. pulumi_newrelic/cloud/gcp_integrations.py +436 -408
  21. pulumi_newrelic/cloud/gcp_link_account.py +71 -59
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1678 -2317
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +45 -0
  26. pulumi_newrelic/config/vars.py +22 -17
  27. pulumi_newrelic/data_partition_rule.py +129 -117
  28. pulumi_newrelic/entity_tags.py +153 -31
  29. pulumi_newrelic/events_to_metrics_rule.py +114 -102
  30. pulumi_newrelic/get_account.py +41 -29
  31. pulumi_newrelic/get_alert_channel.py +73 -28
  32. pulumi_newrelic/get_alert_policy.py +83 -34
  33. pulumi_newrelic/get_application.py +51 -39
  34. pulumi_newrelic/get_authentication_domain.py +111 -0
  35. pulumi_newrelic/get_cloud_account.py +43 -31
  36. pulumi_newrelic/get_entity.py +126 -121
  37. pulumi_newrelic/get_group.py +190 -0
  38. pulumi_newrelic/get_key_transaction.py +117 -38
  39. pulumi_newrelic/get_notification_destination.py +86 -36
  40. pulumi_newrelic/get_obfuscation_expression.py +47 -35
  41. pulumi_newrelic/get_service_level_alert_helper.py +237 -137
  42. pulumi_newrelic/get_test_grok_pattern.py +47 -32
  43. pulumi_newrelic/get_user.py +165 -0
  44. pulumi_newrelic/group.py +286 -0
  45. pulumi_newrelic/infra_alert_condition.py +400 -382
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +94 -23
  48. pulumi_newrelic/insights/event.py +56 -48
  49. pulumi_newrelic/insights/outputs.py +51 -18
  50. pulumi_newrelic/key_transaction.py +465 -0
  51. pulumi_newrelic/log_parsing_rule.py +169 -153
  52. pulumi_newrelic/monitor_downtime.py +914 -0
  53. pulumi_newrelic/notification_channel.py +560 -418
  54. pulumi_newrelic/notification_destination.py +379 -124
  55. pulumi_newrelic/nrql_alert_condition.py +945 -513
  56. pulumi_newrelic/nrql_drop_rule.py +121 -129
  57. pulumi_newrelic/obfuscation_expression.py +88 -76
  58. pulumi_newrelic/obfuscation_rule.py +123 -109
  59. pulumi_newrelic/one_dashboard.py +118 -108
  60. pulumi_newrelic/one_dashboard_json.py +77 -67
  61. pulumi_newrelic/one_dashboard_raw.py +214 -202
  62. pulumi_newrelic/outputs.py +5491 -2141
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +520 -90
  66. pulumi_newrelic/plugins/application_settings.py +463 -167
  67. pulumi_newrelic/plugins/outputs.py +337 -75
  68. pulumi_newrelic/plugins/workload.py +387 -151
  69. pulumi_newrelic/provider.py +156 -142
  70. pulumi_newrelic/pulumi-plugin.json +2 -1
  71. pulumi_newrelic/service_level.py +277 -255
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +275 -106
  74. pulumi_newrelic/synthetics/alert_condition.py +174 -160
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +367 -207
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +380 -218
  77. pulumi_newrelic/synthetics/get_private_location.py +51 -39
  78. pulumi_newrelic/synthetics/get_secure_credential.py +39 -27
  79. pulumi_newrelic/synthetics/monitor.py +668 -462
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +219 -201
  81. pulumi_newrelic/synthetics/outputs.py +102 -85
  82. pulumi_newrelic/synthetics/private_location.py +120 -110
  83. pulumi_newrelic/synthetics/script_monitor.py +623 -375
  84. pulumi_newrelic/synthetics/secure_credential.py +99 -93
  85. pulumi_newrelic/synthetics/step_monitor.py +545 -201
  86. pulumi_newrelic/user.py +366 -0
  87. pulumi_newrelic/workflow.py +348 -312
  88. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/METADATA +8 -7
  89. pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.16.0a1698964311.dist-info/RECORD +0 -82
  92. {pulumi_newrelic-5.16.0a1698964311.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.
@@ -1191,200 +1250,209 @@ class AzureIntegrations(pulumi.CustomResource):
1191
1250
  import pulumi
1192
1251
  import pulumi_newrelic as newrelic
1193
1252
 
1194
- foo_azure_link_account = newrelic.cloud.AzureLinkAccount("fooAzureLinkAccount",
1253
+ foo = newrelic.cloud.AzureLinkAccount("foo",
1195
1254
  account_id="The New Relic account ID where you want to link the Azure account",
1196
1255
  application_id="ID of the application",
1197
1256
  client_secret="Secret value of client's Azure account",
1198
1257
  subscription_id="Subscription ID of Azure",
1199
- tenant_id="Tenant ID of the Azure")
1200
- foo_azure_integrations = newrelic.cloud.AzureIntegrations("fooAzureIntegrations",
1201
- 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,
1202
1262
  account_id="The New Relic account ID",
1203
- api_management=newrelic.cloud.AzureIntegrationsApiManagementArgs(
1204
- metrics_polling_interval=1200,
1205
- resource_groups=["resource_groups"],
1206
- ),
1207
- app_gateway=newrelic.cloud.AzureIntegrationsAppGatewayArgs(
1208
- metrics_polling_interval=1200,
1209
- resource_groups=["resource_groups"],
1210
- ),
1211
- app_service=newrelic.cloud.AzureIntegrationsAppServiceArgs(
1212
- metrics_polling_interval=1200,
1213
- resource_groups=["resource_groups"],
1214
- ),
1215
- containers=newrelic.cloud.AzureIntegrationsContainersArgs(
1216
- metrics_polling_interval=1200,
1217
- resource_groups=["resource_groups"],
1218
- ),
1219
- cosmos_db=newrelic.cloud.AzureIntegrationsCosmosDbArgs(
1220
- metrics_polling_interval=1200,
1221
- resource_groups=["resource_groups"],
1222
- ),
1223
- cost_management=newrelic.cloud.AzureIntegrationsCostManagementArgs(
1224
- metrics_polling_interval=3600,
1225
- tag_keys=["tag_keys"],
1226
- ),
1227
- data_factory=newrelic.cloud.AzureIntegrationsDataFactoryArgs(
1228
- metrics_polling_interval=1200,
1229
- resource_groups=["resource_groups"],
1230
- ),
1231
- event_hub=newrelic.cloud.AzureIntegrationsEventHubArgs(
1232
- metrics_polling_interval=1200,
1233
- resource_groups=["resource_groups"],
1234
- ),
1235
- express_route=newrelic.cloud.AzureIntegrationsExpressRouteArgs(
1236
- metrics_polling_interval=1200,
1237
- resource_groups=["resource_groups"],
1238
- ),
1239
- firewalls=newrelic.cloud.AzureIntegrationsFirewallsArgs(
1240
- metrics_polling_interval=1200,
1241
- resource_groups=["resource_groups"],
1242
- ),
1243
- front_door=newrelic.cloud.AzureIntegrationsFrontDoorArgs(
1244
- metrics_polling_interval=1200,
1245
- resource_groups=["resource_groups"],
1246
- ),
1247
- functions=newrelic.cloud.AzureIntegrationsFunctionsArgs(
1248
- metrics_polling_interval=1200,
1249
- resource_groups=["resource_groups"],
1250
- ),
1251
- key_vault=newrelic.cloud.AzureIntegrationsKeyVaultArgs(
1252
- metrics_polling_interval=1200,
1253
- resource_groups=["resource_groups"],
1254
- ),
1255
- load_balancer=newrelic.cloud.AzureIntegrationsLoadBalancerArgs(
1256
- metrics_polling_interval=1200,
1257
- resource_groups=["resource_groups"],
1258
- ),
1259
- logic_apps=newrelic.cloud.AzureIntegrationsLogicAppsArgs(
1260
- metrics_polling_interval=1200,
1261
- resource_groups=["resource_groups"],
1262
- ),
1263
- machine_learning=newrelic.cloud.AzureIntegrationsMachineLearningArgs(
1264
- metrics_polling_interval=1200,
1265
- resource_groups=["resource_groups"],
1266
- ),
1267
- maria_db=newrelic.cloud.AzureIntegrationsMariaDbArgs(
1268
- metrics_polling_interval=1200,
1269
- resource_groups=["resource_groups"],
1270
- ),
1271
- monitor=newrelic.cloud.AzureIntegrationsMonitorArgs(
1272
- metrics_polling_interval=1200,
1273
- resource_groups=["resource_groups"],
1274
- include_tags=["env:production"],
1275
- 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": [
1276
1336
  "env:staging",
1277
1337
  "env:testing",
1278
1338
  ],
1279
- enabled=True,
1280
- resource_types=["microsoft.datashare/accounts"],
1281
- ),
1282
- mysql=newrelic.cloud.AzureIntegrationsMysqlArgs(
1283
- metrics_polling_interval=1200,
1284
- resource_groups=["resource_groups"],
1285
- ),
1286
- mysql_flexible=newrelic.cloud.AzureIntegrationsMysqlFlexibleArgs(
1287
- metrics_polling_interval=1200,
1288
- resource_groups=["resource_groups"],
1289
- ),
1290
- postgresql=newrelic.cloud.AzureIntegrationsPostgresqlArgs(
1291
- metrics_polling_interval=1200,
1292
- resource_groups=["resource_groups"],
1293
- ),
1294
- postgresql_flexible=newrelic.cloud.AzureIntegrationsPostgresqlFlexibleArgs(
1295
- metrics_polling_interval=1200,
1296
- resource_groups=["resource_groups"],
1297
- ),
1298
- power_bi_dedicated=newrelic.cloud.AzureIntegrationsPowerBiDedicatedArgs(
1299
- metrics_polling_interval=1200,
1300
- resource_groups=["resource_groups"],
1301
- ),
1302
- redis_cache=newrelic.cloud.AzureIntegrationsRedisCacheArgs(
1303
- metrics_polling_interval=1200,
1304
- resource_groups=["resource_groups"],
1305
- ),
1306
- service_bus=newrelic.cloud.AzureIntegrationsServiceBusArgs(
1307
- metrics_polling_interval=1200,
1308
- resource_groups=["resource_groups"],
1309
- ),
1310
- sql=newrelic.cloud.AzureIntegrationsSqlArgs(
1311
- metrics_polling_interval=1200,
1312
- resource_groups=["resource_groups"],
1313
- ),
1314
- sql_managed=newrelic.cloud.AzureIntegrationsSqlManagedArgs(
1315
- metrics_polling_interval=1200,
1316
- resource_groups=["resource_groups"],
1317
- ),
1318
- storage=newrelic.cloud.AzureIntegrationsStorageArgs(
1319
- metrics_polling_interval=1200,
1320
- resource_groups=["resource_groups"],
1321
- ),
1322
- virtual_machine=newrelic.cloud.AzureIntegrationsVirtualMachineArgs(
1323
- metrics_polling_interval=1200,
1324
- resource_groups=["resource_groups"],
1325
- ),
1326
- virtual_networks=newrelic.cloud.AzureIntegrationsVirtualNetworksArgs(
1327
- metrics_polling_interval=1200,
1328
- resource_groups=["resource_groups"],
1329
- ),
1330
- vms=newrelic.cloud.AzureIntegrationsVmsArgs(
1331
- metrics_polling_interval=1200,
1332
- resource_groups=["resource_groups"],
1333
- ),
1334
- vpn_gateway=newrelic.cloud.AzureIntegrationsVpnGatewayArgs(
1335
- metrics_polling_interval=1200,
1336
- resource_groups=["resource_groups"],
1337
- ))
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
+ })
1338
1398
  ```
1339
1399
 
1340
1400
  ## Import
1341
1401
 
1342
- Linked Azure accounts can be imported using `id`, you can find the `id` of existing Azure linked accounts in Azure dashboard under Infrastructure in NewRelic. bash
1402
+ Linked Azure accounts can be imported using `id`, you can find the `id` of existing Azure linked accounts in Azure dashboard under Infrastructure in NewRelic.
1403
+
1404
+ bash
1343
1405
 
1344
1406
  ```sh
1345
- $ pulumi import newrelic:cloud/azureIntegrations:AzureIntegrations foo <id>
1407
+ $ pulumi import newrelic:cloud/azureIntegrations:AzureIntegrations foo <id>
1346
1408
  ```
1347
1409
 
1348
1410
  :param str resource_name: The name of the resource.
1349
1411
  :param pulumi.ResourceOptions opts: Options for the resource.
1350
- :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`.
1351
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']] api_management: Azure API Management. See Integration blocks below for details.
1352
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1353
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']] app_service: Azure App Service. See Integration blocks below for details.
1354
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']] containers: Azure Containers. See Integration blocks below for details.
1355
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1356
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']] cost_management: Azure Cost Management. See Integration blocks below for details.
1357
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']] data_factory: Azure Data Factory. See Integration blocks below for details.
1358
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']] event_hub: Azure Event Hub. See Integration blocks below for details.
1359
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']] express_route: Azure Express Route. See Integration blocks below for details.
1360
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']] firewalls: Azure Firewalls. See Integration blocks below for details.
1361
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']] front_door: Azure Front Door. See Integration blocks below for details.
1362
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']] functions: Azure Functions. See Integration blocks below for details.
1363
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']] key_vault: Azure Key Vault. See Integration blocks below for details.
1364
- :param pulumi.Input[int] linked_account_id: The ID of the linked Azure account in New Relic.
1365
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
1366
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
1367
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
1368
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']] maria_db: Azure MariaDB. See Integration blocks below for details.
1369
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']] monitor: Azure Monitor. See Integration blocks below for details.
1370
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']] mysql: Azure MySQL. See Integration blocks below for details.
1371
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
1372
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
1373
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
1374
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
1375
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
1376
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']] service_bus: Azure Service Bus. See Integration blocks below for details.
1377
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']] sql: Azure SQL. See Integration blocks below for details.
1378
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
1379
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']] storage: for Azure Storage. See Integration blocks below for details.
1380
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
1381
- :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.
1382
1436
 
1383
- Below argument supports the minimum metric polling interval of 3600 seconds
1384
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']] vms: Azure VMs. See Integration blocks below for details.
1385
- :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.
1386
1448
 
1387
- 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.
1388
1456
  """
1389
1457
  ...
1390
1458
  @overload
@@ -1411,158 +1479,161 @@ class AzureIntegrations(pulumi.CustomResource):
1411
1479
  import pulumi
1412
1480
  import pulumi_newrelic as newrelic
1413
1481
 
1414
- foo_azure_link_account = newrelic.cloud.AzureLinkAccount("fooAzureLinkAccount",
1482
+ foo = newrelic.cloud.AzureLinkAccount("foo",
1415
1483
  account_id="The New Relic account ID where you want to link the Azure account",
1416
1484
  application_id="ID of the application",
1417
1485
  client_secret="Secret value of client's Azure account",
1418
1486
  subscription_id="Subscription ID of Azure",
1419
- tenant_id="Tenant ID of the Azure")
1420
- foo_azure_integrations = newrelic.cloud.AzureIntegrations("fooAzureIntegrations",
1421
- 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,
1422
1491
  account_id="The New Relic account ID",
1423
- api_management=newrelic.cloud.AzureIntegrationsApiManagementArgs(
1424
- metrics_polling_interval=1200,
1425
- resource_groups=["resource_groups"],
1426
- ),
1427
- app_gateway=newrelic.cloud.AzureIntegrationsAppGatewayArgs(
1428
- metrics_polling_interval=1200,
1429
- resource_groups=["resource_groups"],
1430
- ),
1431
- app_service=newrelic.cloud.AzureIntegrationsAppServiceArgs(
1432
- metrics_polling_interval=1200,
1433
- resource_groups=["resource_groups"],
1434
- ),
1435
- containers=newrelic.cloud.AzureIntegrationsContainersArgs(
1436
- metrics_polling_interval=1200,
1437
- resource_groups=["resource_groups"],
1438
- ),
1439
- cosmos_db=newrelic.cloud.AzureIntegrationsCosmosDbArgs(
1440
- metrics_polling_interval=1200,
1441
- resource_groups=["resource_groups"],
1442
- ),
1443
- cost_management=newrelic.cloud.AzureIntegrationsCostManagementArgs(
1444
- metrics_polling_interval=3600,
1445
- tag_keys=["tag_keys"],
1446
- ),
1447
- data_factory=newrelic.cloud.AzureIntegrationsDataFactoryArgs(
1448
- metrics_polling_interval=1200,
1449
- resource_groups=["resource_groups"],
1450
- ),
1451
- event_hub=newrelic.cloud.AzureIntegrationsEventHubArgs(
1452
- metrics_polling_interval=1200,
1453
- resource_groups=["resource_groups"],
1454
- ),
1455
- express_route=newrelic.cloud.AzureIntegrationsExpressRouteArgs(
1456
- metrics_polling_interval=1200,
1457
- resource_groups=["resource_groups"],
1458
- ),
1459
- firewalls=newrelic.cloud.AzureIntegrationsFirewallsArgs(
1460
- metrics_polling_interval=1200,
1461
- resource_groups=["resource_groups"],
1462
- ),
1463
- front_door=newrelic.cloud.AzureIntegrationsFrontDoorArgs(
1464
- metrics_polling_interval=1200,
1465
- resource_groups=["resource_groups"],
1466
- ),
1467
- functions=newrelic.cloud.AzureIntegrationsFunctionsArgs(
1468
- metrics_polling_interval=1200,
1469
- resource_groups=["resource_groups"],
1470
- ),
1471
- key_vault=newrelic.cloud.AzureIntegrationsKeyVaultArgs(
1472
- metrics_polling_interval=1200,
1473
- resource_groups=["resource_groups"],
1474
- ),
1475
- load_balancer=newrelic.cloud.AzureIntegrationsLoadBalancerArgs(
1476
- metrics_polling_interval=1200,
1477
- resource_groups=["resource_groups"],
1478
- ),
1479
- logic_apps=newrelic.cloud.AzureIntegrationsLogicAppsArgs(
1480
- metrics_polling_interval=1200,
1481
- resource_groups=["resource_groups"],
1482
- ),
1483
- machine_learning=newrelic.cloud.AzureIntegrationsMachineLearningArgs(
1484
- metrics_polling_interval=1200,
1485
- resource_groups=["resource_groups"],
1486
- ),
1487
- maria_db=newrelic.cloud.AzureIntegrationsMariaDbArgs(
1488
- metrics_polling_interval=1200,
1489
- resource_groups=["resource_groups"],
1490
- ),
1491
- monitor=newrelic.cloud.AzureIntegrationsMonitorArgs(
1492
- metrics_polling_interval=1200,
1493
- resource_groups=["resource_groups"],
1494
- include_tags=["env:production"],
1495
- 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": [
1496
1565
  "env:staging",
1497
1566
  "env:testing",
1498
1567
  ],
1499
- enabled=True,
1500
- resource_types=["microsoft.datashare/accounts"],
1501
- ),
1502
- mysql=newrelic.cloud.AzureIntegrationsMysqlArgs(
1503
- metrics_polling_interval=1200,
1504
- resource_groups=["resource_groups"],
1505
- ),
1506
- mysql_flexible=newrelic.cloud.AzureIntegrationsMysqlFlexibleArgs(
1507
- metrics_polling_interval=1200,
1508
- resource_groups=["resource_groups"],
1509
- ),
1510
- postgresql=newrelic.cloud.AzureIntegrationsPostgresqlArgs(
1511
- metrics_polling_interval=1200,
1512
- resource_groups=["resource_groups"],
1513
- ),
1514
- postgresql_flexible=newrelic.cloud.AzureIntegrationsPostgresqlFlexibleArgs(
1515
- metrics_polling_interval=1200,
1516
- resource_groups=["resource_groups"],
1517
- ),
1518
- power_bi_dedicated=newrelic.cloud.AzureIntegrationsPowerBiDedicatedArgs(
1519
- metrics_polling_interval=1200,
1520
- resource_groups=["resource_groups"],
1521
- ),
1522
- redis_cache=newrelic.cloud.AzureIntegrationsRedisCacheArgs(
1523
- metrics_polling_interval=1200,
1524
- resource_groups=["resource_groups"],
1525
- ),
1526
- service_bus=newrelic.cloud.AzureIntegrationsServiceBusArgs(
1527
- metrics_polling_interval=1200,
1528
- resource_groups=["resource_groups"],
1529
- ),
1530
- sql=newrelic.cloud.AzureIntegrationsSqlArgs(
1531
- metrics_polling_interval=1200,
1532
- resource_groups=["resource_groups"],
1533
- ),
1534
- sql_managed=newrelic.cloud.AzureIntegrationsSqlManagedArgs(
1535
- metrics_polling_interval=1200,
1536
- resource_groups=["resource_groups"],
1537
- ),
1538
- storage=newrelic.cloud.AzureIntegrationsStorageArgs(
1539
- metrics_polling_interval=1200,
1540
- resource_groups=["resource_groups"],
1541
- ),
1542
- virtual_machine=newrelic.cloud.AzureIntegrationsVirtualMachineArgs(
1543
- metrics_polling_interval=1200,
1544
- resource_groups=["resource_groups"],
1545
- ),
1546
- virtual_networks=newrelic.cloud.AzureIntegrationsVirtualNetworksArgs(
1547
- metrics_polling_interval=1200,
1548
- resource_groups=["resource_groups"],
1549
- ),
1550
- vms=newrelic.cloud.AzureIntegrationsVmsArgs(
1551
- metrics_polling_interval=1200,
1552
- resource_groups=["resource_groups"],
1553
- ),
1554
- vpn_gateway=newrelic.cloud.AzureIntegrationsVpnGatewayArgs(
1555
- metrics_polling_interval=1200,
1556
- resource_groups=["resource_groups"],
1557
- ))
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
+ })
1558
1627
  ```
1559
1628
 
1560
1629
  ## Import
1561
1630
 
1562
- Linked Azure accounts can be imported using `id`, you can find the `id` of existing Azure linked accounts in Azure dashboard under Infrastructure in NewRelic. bash
1631
+ Linked Azure accounts can be imported using `id`, you can find the `id` of existing Azure linked accounts in Azure dashboard under Infrastructure in NewRelic.
1632
+
1633
+ bash
1563
1634
 
1564
1635
  ```sh
1565
- $ pulumi import newrelic:cloud/azureIntegrations:AzureIntegrations foo <id>
1636
+ $ pulumi import newrelic:cloud/azureIntegrations:AzureIntegrations foo <id>
1566
1637
  ```
1567
1638
 
1568
1639
  :param str resource_name: The name of the resource.
@@ -1580,40 +1651,41 @@ class AzureIntegrations(pulumi.CustomResource):
1580
1651
  def _internal_init(__self__,
1581
1652
  resource_name: str,
1582
1653
  opts: Optional[pulumi.ResourceOptions] = None,
1583
- account_id: Optional[pulumi.Input[int]] = None,
1584
- api_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']]] = None,
1585
- app_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']]] = None,
1586
- app_service: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']]] = None,
1587
- containers: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']]] = None,
1588
- cosmos_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']]] = None,
1589
- cost_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']]] = None,
1590
- data_factory: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']]] = None,
1591
- event_hub: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']]] = None,
1592
- express_route: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']]] = None,
1593
- firewalls: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']]] = None,
1594
- front_door: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']]] = None,
1595
- functions: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']]] = None,
1596
- key_vault: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']]] = None,
1597
- linked_account_id: Optional[pulumi.Input[int]] = None,
1598
- load_balancer: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']]] = None,
1599
- logic_apps: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']]] = None,
1600
- machine_learning: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']]] = None,
1601
- maria_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']]] = None,
1602
- monitor: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']]] = None,
1603
- mysql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']]] = None,
1604
- mysql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']]] = None,
1605
- postgresql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']]] = None,
1606
- postgresql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']]] = None,
1607
- power_bi_dedicated: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']]] = None,
1608
- redis_cache: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']]] = None,
1609
- service_bus: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']]] = None,
1610
- sql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']]] = None,
1611
- sql_managed: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']]] = None,
1612
- storage: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']]] = None,
1613
- virtual_machine: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']]] = None,
1614
- virtual_networks: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualNetworksArgs']]] = None,
1615
- vms: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']]] = None,
1616
- 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,
1617
1689
  __props__=None):
1618
1690
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
1619
1691
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -1627,6 +1699,7 @@ class AzureIntegrations(pulumi.CustomResource):
1627
1699
  __props__.__dict__["api_management"] = api_management
1628
1700
  __props__.__dict__["app_gateway"] = app_gateway
1629
1701
  __props__.__dict__["app_service"] = app_service
1702
+ __props__.__dict__["auto_discovery"] = auto_discovery
1630
1703
  __props__.__dict__["containers"] = containers
1631
1704
  __props__.__dict__["cosmos_db"] = cosmos_db
1632
1705
  __props__.__dict__["cost_management"] = cost_management
@@ -1669,40 +1742,41 @@ class AzureIntegrations(pulumi.CustomResource):
1669
1742
  def get(resource_name: str,
1670
1743
  id: pulumi.Input[str],
1671
1744
  opts: Optional[pulumi.ResourceOptions] = None,
1672
- account_id: Optional[pulumi.Input[int]] = None,
1673
- api_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']]] = None,
1674
- app_gateway: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']]] = None,
1675
- app_service: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']]] = None,
1676
- containers: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']]] = None,
1677
- cosmos_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']]] = None,
1678
- cost_management: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']]] = None,
1679
- data_factory: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']]] = None,
1680
- event_hub: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']]] = None,
1681
- express_route: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']]] = None,
1682
- firewalls: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']]] = None,
1683
- front_door: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']]] = None,
1684
- functions: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']]] = None,
1685
- key_vault: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']]] = None,
1686
- linked_account_id: Optional[pulumi.Input[int]] = None,
1687
- load_balancer: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']]] = None,
1688
- logic_apps: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']]] = None,
1689
- machine_learning: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']]] = None,
1690
- maria_db: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']]] = None,
1691
- monitor: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']]] = None,
1692
- mysql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']]] = None,
1693
- mysql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']]] = None,
1694
- postgresql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']]] = None,
1695
- postgresql_flexible: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']]] = None,
1696
- power_bi_dedicated: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']]] = None,
1697
- redis_cache: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']]] = None,
1698
- service_bus: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']]] = None,
1699
- sql: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']]] = None,
1700
- sql_managed: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']]] = None,
1701
- storage: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']]] = None,
1702
- virtual_machine: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']]] = None,
1703
- virtual_networks: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualNetworksArgs']]] = None,
1704
- vms: Optional[pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']]] = None,
1705
- 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':
1706
1780
  """
1707
1781
  Get an existing AzureIntegrations resource's state with the given name, id, and optional extra
1708
1782
  properties used to qualify the lookup.
@@ -1710,44 +1784,50 @@ class AzureIntegrations(pulumi.CustomResource):
1710
1784
  :param str resource_name: The unique name of the resulting resource.
1711
1785
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1712
1786
  :param pulumi.ResourceOptions opts: Options for the resource.
1713
- :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`.
1714
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsApiManagementArgs']] api_management: Azure API Management. See Integration blocks below for details.
1715
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppGatewayArgs']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1716
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsAppServiceArgs']] app_service: Azure App Service. See Integration blocks below for details.
1717
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsContainersArgs']] containers: Azure Containers. See Integration blocks below for details.
1718
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCosmosDbArgs']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1719
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsCostManagementArgs']] cost_management: Azure Cost Management. See Integration blocks below for details.
1720
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsDataFactoryArgs']] data_factory: Azure Data Factory. See Integration blocks below for details.
1721
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsEventHubArgs']] event_hub: Azure Event Hub. See Integration blocks below for details.
1722
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsExpressRouteArgs']] express_route: Azure Express Route. See Integration blocks below for details.
1723
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFirewallsArgs']] firewalls: Azure Firewalls. See Integration blocks below for details.
1724
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFrontDoorArgs']] front_door: Azure Front Door. See Integration blocks below for details.
1725
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsFunctionsArgs']] functions: Azure Functions. See Integration blocks below for details.
1726
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsKeyVaultArgs']] key_vault: Azure Key Vault. See Integration blocks below for details.
1727
- :param pulumi.Input[int] linked_account_id: The ID of the linked Azure account in New Relic.
1728
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLoadBalancerArgs']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
1729
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsLogicAppsArgs']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
1730
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMachineLearningArgs']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
1731
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMariaDbArgs']] maria_db: Azure MariaDB. See Integration blocks below for details.
1732
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMonitorArgs']] monitor: Azure Monitor. See Integration blocks below for details.
1733
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlArgs']] mysql: Azure MySQL. See Integration blocks below for details.
1734
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsMysqlFlexibleArgs']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
1735
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlArgs']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
1736
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPostgresqlFlexibleArgs']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
1737
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsPowerBiDedicatedArgs']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
1738
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsRedisCacheArgs']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
1739
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsServiceBusArgs']] service_bus: Azure Service Bus. See Integration blocks below for details.
1740
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlArgs']] sql: Azure SQL. See Integration blocks below for details.
1741
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsSqlManagedArgs']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
1742
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsStorageArgs']] storage: for Azure Storage. See Integration blocks below for details.
1743
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVirtualMachineArgs']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
1744
- :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.
1745
1803
 
1746
- Below argument supports the minimum metric polling interval of 3600 seconds
1747
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVmsArgs']] vms: Azure VMs. See Integration blocks below for details.
1748
- :param pulumi.Input[pulumi.InputType['AzureIntegrationsVpnGatewayArgs']] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
1749
1804
 
1750
- Below arguments supports the minimum metric polling interval of 900 seconds
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.
1811
+
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.
1751
1831
  """
1752
1832
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1753
1833
 
@@ -1757,6 +1837,7 @@ class AzureIntegrations(pulumi.CustomResource):
1757
1837
  __props__.__dict__["api_management"] = api_management
1758
1838
  __props__.__dict__["app_gateway"] = app_gateway
1759
1839
  __props__.__dict__["app_service"] = app_service
1840
+ __props__.__dict__["auto_discovery"] = auto_discovery
1760
1841
  __props__.__dict__["containers"] = containers
1761
1842
  __props__.__dict__["cosmos_db"] = cosmos_db
1762
1843
  __props__.__dict__["cost_management"] = cost_management
@@ -1789,15 +1870,15 @@ class AzureIntegrations(pulumi.CustomResource):
1789
1870
  __props__.__dict__["vpn_gateway"] = vpn_gateway
1790
1871
  return AzureIntegrations(resource_name, opts=opts, __props__=__props__)
1791
1872
 
1792
- @property
1873
+ @_builtins.property
1793
1874
  @pulumi.getter(name="accountId")
1794
- def account_id(self) -> pulumi.Output[int]:
1875
+ def account_id(self) -> pulumi.Output[_builtins.str]:
1795
1876
  """
1796
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`.
1797
1878
  """
1798
1879
  return pulumi.get(self, "account_id")
1799
1880
 
1800
- @property
1881
+ @_builtins.property
1801
1882
  @pulumi.getter(name="apiManagement")
1802
1883
  def api_management(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsApiManagement']]:
1803
1884
  """
@@ -1805,7 +1886,7 @@ class AzureIntegrations(pulumi.CustomResource):
1805
1886
  """
1806
1887
  return pulumi.get(self, "api_management")
1807
1888
 
1808
- @property
1889
+ @_builtins.property
1809
1890
  @pulumi.getter(name="appGateway")
1810
1891
  def app_gateway(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAppGateway']]:
1811
1892
  """
@@ -1813,7 +1894,7 @@ class AzureIntegrations(pulumi.CustomResource):
1813
1894
  """
1814
1895
  return pulumi.get(self, "app_gateway")
1815
1896
 
1816
- @property
1897
+ @_builtins.property
1817
1898
  @pulumi.getter(name="appService")
1818
1899
  def app_service(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAppService']]:
1819
1900
  """
@@ -1821,7 +1902,15 @@ class AzureIntegrations(pulumi.CustomResource):
1821
1902
  """
1822
1903
  return pulumi.get(self, "app_service")
1823
1904
 
1824
- @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
1825
1914
  @pulumi.getter
1826
1915
  def containers(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsContainers']]:
1827
1916
  """
@@ -1829,7 +1918,7 @@ class AzureIntegrations(pulumi.CustomResource):
1829
1918
  """
1830
1919
  return pulumi.get(self, "containers")
1831
1920
 
1832
- @property
1921
+ @_builtins.property
1833
1922
  @pulumi.getter(name="cosmosDb")
1834
1923
  def cosmos_db(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsCosmosDb']]:
1835
1924
  """
@@ -1837,7 +1926,7 @@ class AzureIntegrations(pulumi.CustomResource):
1837
1926
  """
1838
1927
  return pulumi.get(self, "cosmos_db")
1839
1928
 
1840
- @property
1929
+ @_builtins.property
1841
1930
  @pulumi.getter(name="costManagement")
1842
1931
  def cost_management(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsCostManagement']]:
1843
1932
  """
@@ -1845,7 +1934,7 @@ class AzureIntegrations(pulumi.CustomResource):
1845
1934
  """
1846
1935
  return pulumi.get(self, "cost_management")
1847
1936
 
1848
- @property
1937
+ @_builtins.property
1849
1938
  @pulumi.getter(name="dataFactory")
1850
1939
  def data_factory(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsDataFactory']]:
1851
1940
  """
@@ -1853,7 +1942,7 @@ class AzureIntegrations(pulumi.CustomResource):
1853
1942
  """
1854
1943
  return pulumi.get(self, "data_factory")
1855
1944
 
1856
- @property
1945
+ @_builtins.property
1857
1946
  @pulumi.getter(name="eventHub")
1858
1947
  def event_hub(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsEventHub']]:
1859
1948
  """
@@ -1861,7 +1950,7 @@ class AzureIntegrations(pulumi.CustomResource):
1861
1950
  """
1862
1951
  return pulumi.get(self, "event_hub")
1863
1952
 
1864
- @property
1953
+ @_builtins.property
1865
1954
  @pulumi.getter(name="expressRoute")
1866
1955
  def express_route(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsExpressRoute']]:
1867
1956
  """
@@ -1869,7 +1958,7 @@ class AzureIntegrations(pulumi.CustomResource):
1869
1958
  """
1870
1959
  return pulumi.get(self, "express_route")
1871
1960
 
1872
- @property
1961
+ @_builtins.property
1873
1962
  @pulumi.getter
1874
1963
  def firewalls(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFirewalls']]:
1875
1964
  """
@@ -1877,7 +1966,7 @@ class AzureIntegrations(pulumi.CustomResource):
1877
1966
  """
1878
1967
  return pulumi.get(self, "firewalls")
1879
1968
 
1880
- @property
1969
+ @_builtins.property
1881
1970
  @pulumi.getter(name="frontDoor")
1882
1971
  def front_door(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFrontDoor']]:
1883
1972
  """
@@ -1885,7 +1974,7 @@ class AzureIntegrations(pulumi.CustomResource):
1885
1974
  """
1886
1975
  return pulumi.get(self, "front_door")
1887
1976
 
1888
- @property
1977
+ @_builtins.property
1889
1978
  @pulumi.getter
1890
1979
  def functions(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFunctions']]:
1891
1980
  """
@@ -1893,7 +1982,7 @@ class AzureIntegrations(pulumi.CustomResource):
1893
1982
  """
1894
1983
  return pulumi.get(self, "functions")
1895
1984
 
1896
- @property
1985
+ @_builtins.property
1897
1986
  @pulumi.getter(name="keyVault")
1898
1987
  def key_vault(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsKeyVault']]:
1899
1988
  """
@@ -1901,15 +1990,18 @@ class AzureIntegrations(pulumi.CustomResource):
1901
1990
  """
1902
1991
  return pulumi.get(self, "key_vault")
1903
1992
 
1904
- @property
1993
+ @_builtins.property
1905
1994
  @pulumi.getter(name="linkedAccountId")
1906
- def linked_account_id(self) -> pulumi.Output[int]:
1995
+ def linked_account_id(self) -> pulumi.Output[_builtins.str]:
1907
1996
  """
1908
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.
1909
2001
  """
1910
2002
  return pulumi.get(self, "linked_account_id")
1911
2003
 
1912
- @property
2004
+ @_builtins.property
1913
2005
  @pulumi.getter(name="loadBalancer")
1914
2006
  def load_balancer(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsLoadBalancer']]:
1915
2007
  """
@@ -1917,7 +2009,7 @@ class AzureIntegrations(pulumi.CustomResource):
1917
2009
  """
1918
2010
  return pulumi.get(self, "load_balancer")
1919
2011
 
1920
- @property
2012
+ @_builtins.property
1921
2013
  @pulumi.getter(name="logicApps")
1922
2014
  def logic_apps(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsLogicApps']]:
1923
2015
  """
@@ -1925,7 +2017,7 @@ class AzureIntegrations(pulumi.CustomResource):
1925
2017
  """
1926
2018
  return pulumi.get(self, "logic_apps")
1927
2019
 
1928
- @property
2020
+ @_builtins.property
1929
2021
  @pulumi.getter(name="machineLearning")
1930
2022
  def machine_learning(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMachineLearning']]:
1931
2023
  """
@@ -1933,7 +2025,7 @@ class AzureIntegrations(pulumi.CustomResource):
1933
2025
  """
1934
2026
  return pulumi.get(self, "machine_learning")
1935
2027
 
1936
- @property
2028
+ @_builtins.property
1937
2029
  @pulumi.getter(name="mariaDb")
1938
2030
  def maria_db(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMariaDb']]:
1939
2031
  """
@@ -1941,15 +2033,17 @@ class AzureIntegrations(pulumi.CustomResource):
1941
2033
  """
1942
2034
  return pulumi.get(self, "maria_db")
1943
2035
 
1944
- @property
2036
+ @_builtins.property
1945
2037
  @pulumi.getter
1946
2038
  def monitor(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMonitor']]:
1947
2039
  """
1948
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.
1949
2043
  """
1950
2044
  return pulumi.get(self, "monitor")
1951
2045
 
1952
- @property
2046
+ @_builtins.property
1953
2047
  @pulumi.getter
1954
2048
  def mysql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMysql']]:
1955
2049
  """
@@ -1957,7 +2051,7 @@ class AzureIntegrations(pulumi.CustomResource):
1957
2051
  """
1958
2052
  return pulumi.get(self, "mysql")
1959
2053
 
1960
- @property
2054
+ @_builtins.property
1961
2055
  @pulumi.getter(name="mysqlFlexible")
1962
2056
  def mysql_flexible(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMysqlFlexible']]:
1963
2057
  """
@@ -1965,7 +2059,7 @@ class AzureIntegrations(pulumi.CustomResource):
1965
2059
  """
1966
2060
  return pulumi.get(self, "mysql_flexible")
1967
2061
 
1968
- @property
2062
+ @_builtins.property
1969
2063
  @pulumi.getter
1970
2064
  def postgresql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPostgresql']]:
1971
2065
  """
@@ -1973,7 +2067,7 @@ class AzureIntegrations(pulumi.CustomResource):
1973
2067
  """
1974
2068
  return pulumi.get(self, "postgresql")
1975
2069
 
1976
- @property
2070
+ @_builtins.property
1977
2071
  @pulumi.getter(name="postgresqlFlexible")
1978
2072
  def postgresql_flexible(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPostgresqlFlexible']]:
1979
2073
  """
@@ -1981,7 +2075,7 @@ class AzureIntegrations(pulumi.CustomResource):
1981
2075
  """
1982
2076
  return pulumi.get(self, "postgresql_flexible")
1983
2077
 
1984
- @property
2078
+ @_builtins.property
1985
2079
  @pulumi.getter(name="powerBiDedicated")
1986
2080
  def power_bi_dedicated(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPowerBiDedicated']]:
1987
2081
  """
@@ -1989,7 +2083,7 @@ class AzureIntegrations(pulumi.CustomResource):
1989
2083
  """
1990
2084
  return pulumi.get(self, "power_bi_dedicated")
1991
2085
 
1992
- @property
2086
+ @_builtins.property
1993
2087
  @pulumi.getter(name="redisCache")
1994
2088
  def redis_cache(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsRedisCache']]:
1995
2089
  """
@@ -1997,7 +2091,7 @@ class AzureIntegrations(pulumi.CustomResource):
1997
2091
  """
1998
2092
  return pulumi.get(self, "redis_cache")
1999
2093
 
2000
- @property
2094
+ @_builtins.property
2001
2095
  @pulumi.getter(name="serviceBus")
2002
2096
  def service_bus(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsServiceBus']]:
2003
2097
  """
@@ -2005,7 +2099,7 @@ class AzureIntegrations(pulumi.CustomResource):
2005
2099
  """
2006
2100
  return pulumi.get(self, "service_bus")
2007
2101
 
2008
- @property
2102
+ @_builtins.property
2009
2103
  @pulumi.getter
2010
2104
  def sql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsSql']]:
2011
2105
  """
@@ -2013,7 +2107,7 @@ class AzureIntegrations(pulumi.CustomResource):
2013
2107
  """
2014
2108
  return pulumi.get(self, "sql")
2015
2109
 
2016
- @property
2110
+ @_builtins.property
2017
2111
  @pulumi.getter(name="sqlManaged")
2018
2112
  def sql_managed(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsSqlManaged']]:
2019
2113
  """
@@ -2021,15 +2115,17 @@ class AzureIntegrations(pulumi.CustomResource):
2021
2115
  """
2022
2116
  return pulumi.get(self, "sql_managed")
2023
2117
 
2024
- @property
2118
+ @_builtins.property
2025
2119
  @pulumi.getter
2026
2120
  def storage(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsStorage']]:
2027
2121
  """
2028
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.
2029
2125
  """
2030
2126
  return pulumi.get(self, "storage")
2031
2127
 
2032
- @property
2128
+ @_builtins.property
2033
2129
  @pulumi.getter(name="virtualMachine")
2034
2130
  def virtual_machine(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVirtualMachine']]:
2035
2131
  """
@@ -2037,17 +2133,15 @@ class AzureIntegrations(pulumi.CustomResource):
2037
2133
  """
2038
2134
  return pulumi.get(self, "virtual_machine")
2039
2135
 
2040
- @property
2136
+ @_builtins.property
2041
2137
  @pulumi.getter(name="virtualNetworks")
2042
2138
  def virtual_networks(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVirtualNetworks']]:
2043
2139
  """
2044
2140
  for Azure Virtual networks. See Integration blocks below for details.
2045
-
2046
- Below argument supports the minimum metric polling interval of 3600 seconds
2047
2141
  """
2048
2142
  return pulumi.get(self, "virtual_networks")
2049
2143
 
2050
- @property
2144
+ @_builtins.property
2051
2145
  @pulumi.getter
2052
2146
  def vms(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVms']]:
2053
2147
  """
@@ -2055,13 +2149,13 @@ class AzureIntegrations(pulumi.CustomResource):
2055
2149
  """
2056
2150
  return pulumi.get(self, "vms")
2057
2151
 
2058
- @property
2152
+ @_builtins.property
2059
2153
  @pulumi.getter(name="vpnGateway")
2060
2154
  def vpn_gateway(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVpnGateway']]:
2061
2155
  """
2062
2156
  Azure VPN Gateway. See Integration blocks below for details.
2063
2157
 
2064
- 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.
2065
2159
  """
2066
2160
  return pulumi.get(self, "vpn_gateway")
2067
2161