pulumi-newrelic 5.47.0a1750228491__py3-none-any.whl → 5.57.2a1762486520__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 (91) hide show
  1. pulumi_newrelic/__init__.py +18 -1
  2. pulumi_newrelic/_inputs.py +4271 -3797
  3. pulumi_newrelic/account_management.py +35 -36
  4. pulumi_newrelic/alert_channel.py +61 -62
  5. pulumi_newrelic/alert_condition.py +217 -218
  6. pulumi_newrelic/alert_muting_rule.py +92 -93
  7. pulumi_newrelic/alert_policy.py +69 -70
  8. pulumi_newrelic/alert_policy_channel.py +52 -53
  9. pulumi_newrelic/api_access_key.py +190 -159
  10. pulumi_newrelic/browser_application.py +113 -114
  11. pulumi_newrelic/cloud/__init__.py +2 -1
  12. pulumi_newrelic/cloud/_inputs.py +2225 -2118
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +99 -96
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +69 -70
  15. pulumi_newrelic/cloud/aws_integrations.py +238 -192
  16. pulumi_newrelic/cloud/aws_link_account.py +69 -70
  17. pulumi_newrelic/cloud/azure_integrations.py +178 -132
  18. pulumi_newrelic/cloud/azure_link_account.py +103 -104
  19. pulumi_newrelic/cloud/gcp_integrations.py +113 -114
  20. pulumi_newrelic/cloud/gcp_link_account.py +52 -53
  21. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  22. pulumi_newrelic/cloud/outputs.py +1511 -1410
  23. pulumi_newrelic/config/__init__.py +1 -1
  24. pulumi_newrelic/config/__init__.pyi +1 -2
  25. pulumi_newrelic/config/vars.py +14 -15
  26. pulumi_newrelic/data_partition_rule.py +112 -113
  27. pulumi_newrelic/entity_tags.py +77 -22
  28. pulumi_newrelic/events_to_metrics_rule.py +95 -96
  29. pulumi_newrelic/get_account.py +21 -22
  30. pulumi_newrelic/get_alert_channel.py +24 -21
  31. pulumi_newrelic/get_alert_policy.py +29 -26
  32. pulumi_newrelic/get_application.py +13 -14
  33. pulumi_newrelic/get_authentication_domain.py +9 -10
  34. pulumi_newrelic/get_cloud_account.py +21 -22
  35. pulumi_newrelic/get_entity.py +52 -53
  36. pulumi_newrelic/get_group.py +17 -18
  37. pulumi_newrelic/get_key_transaction.py +25 -26
  38. pulumi_newrelic/get_notification_destination.py +30 -31
  39. pulumi_newrelic/get_obfuscation_expression.py +15 -16
  40. pulumi_newrelic/get_service_level_alert_helper.py +53 -54
  41. pulumi_newrelic/get_test_grok_pattern.py +22 -23
  42. pulumi_newrelic/get_user.py +21 -22
  43. pulumi_newrelic/group.py +52 -53
  44. pulumi_newrelic/infra_alert_condition.py +255 -256
  45. pulumi_newrelic/insights/__init__.py +1 -1
  46. pulumi_newrelic/insights/_inputs.py +32 -33
  47. pulumi_newrelic/insights/event.py +4 -5
  48. pulumi_newrelic/insights/outputs.py +22 -23
  49. pulumi_newrelic/key_transaction.py +104 -105
  50. pulumi_newrelic/log_parsing_rule.py +146 -147
  51. pulumi_newrelic/monitor_downtime.py +146 -154
  52. pulumi_newrelic/notification_channel.py +164 -165
  53. pulumi_newrelic/notification_destination.py +121 -136
  54. pulumi_newrelic/nrql_alert_condition.py +479 -431
  55. pulumi_newrelic/nrql_drop_rule.py +106 -147
  56. pulumi_newrelic/obfuscation_expression.py +69 -70
  57. pulumi_newrelic/obfuscation_rule.py +89 -90
  58. pulumi_newrelic/one_dashboard.py +93 -94
  59. pulumi_newrelic/one_dashboard_json.py +62 -63
  60. pulumi_newrelic/one_dashboard_raw.py +114 -115
  61. pulumi_newrelic/outputs.py +2992 -2674
  62. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  63. pulumi_newrelic/plugins/__init__.py +1 -1
  64. pulumi_newrelic/plugins/_inputs.py +158 -159
  65. pulumi_newrelic/plugins/application_settings.py +167 -168
  66. pulumi_newrelic/plugins/outputs.py +108 -109
  67. pulumi_newrelic/plugins/workload.py +131 -132
  68. pulumi_newrelic/provider.py +106 -107
  69. pulumi_newrelic/pulumi-plugin.json +1 -1
  70. pulumi_newrelic/service_level.py +76 -77
  71. pulumi_newrelic/synthetics/__init__.py +1 -1
  72. pulumi_newrelic/synthetics/_inputs.py +127 -128
  73. pulumi_newrelic/synthetics/alert_condition.py +95 -96
  74. pulumi_newrelic/synthetics/broken_links_monitor.py +197 -198
  75. pulumi_newrelic/synthetics/cert_check_monitor.py +205 -206
  76. pulumi_newrelic/synthetics/get_private_location.py +21 -22
  77. pulumi_newrelic/synthetics/get_secure_credential.py +19 -20
  78. pulumi_newrelic/synthetics/monitor.py +378 -379
  79. pulumi_newrelic/synthetics/multi_location_alert_condition.py +118 -119
  80. pulumi_newrelic/synthetics/outputs.py +85 -86
  81. pulumi_newrelic/synthetics/private_location.py +105 -106
  82. pulumi_newrelic/synthetics/script_monitor.py +364 -303
  83. pulumi_newrelic/synthetics/secure_credential.py +86 -87
  84. pulumi_newrelic/synthetics/step_monitor.py +220 -221
  85. pulumi_newrelic/user.py +69 -70
  86. pulumi_newrelic/workflow.py +139 -140
  87. {pulumi_newrelic-5.47.0a1750228491.dist-info → pulumi_newrelic-5.57.2a1762486520.dist-info}/METADATA +1 -1
  88. pulumi_newrelic-5.57.2a1762486520.dist-info/RECORD +92 -0
  89. pulumi_newrelic-5.47.0a1750228491.dist-info/RECORD +0 -90
  90. {pulumi_newrelic-5.47.0a1750228491.dist-info → pulumi_newrelic-5.57.2a1762486520.dist-info}/WHEEL +0 -0
  91. {pulumi_newrelic-5.47.0a1750228491.dist-info → pulumi_newrelic-5.57.2a1762486520.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,11 +21,12 @@ __all__ = ['AzureIntegrationsArgs', 'AzureIntegrations']
22
21
  @pulumi.input_type
23
22
  class AzureIntegrationsArgs:
24
23
  def __init__(__self__, *,
25
- linked_account_id: pulumi.Input[builtins.str],
26
- account_id: Optional[pulumi.Input[builtins.str]] = None,
24
+ linked_account_id: pulumi.Input[_builtins.str],
25
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
27
26
  api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
28
27
  app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
29
28
  app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
29
+ auto_discovery: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']] = None,
30
30
  containers: Optional[pulumi.Input['AzureIntegrationsContainersArgs']] = None,
31
31
  cosmos_db: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']] = None,
32
32
  cost_management: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']] = None,
@@ -58,14 +58,15 @@ class AzureIntegrationsArgs:
58
58
  vpn_gateway: Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']] = None):
59
59
  """
60
60
  The set of arguments for constructing a AzureIntegrations resource.
61
- :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
61
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
62
62
 
63
63
 
64
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`.
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`.
66
66
  :param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
67
67
  :param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
68
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
69
70
  :param pulumi.Input['AzureIntegrationsContainersArgs'] containers: Azure Containers. See Integration blocks below for details.
70
71
  :param pulumi.Input['AzureIntegrationsCosmosDbArgs'] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
71
72
  :param pulumi.Input['AzureIntegrationsCostManagementArgs'] cost_management: Azure Cost Management. See Integration blocks below for details.
@@ -111,6 +112,8 @@ class AzureIntegrationsArgs:
111
112
  pulumi.set(__self__, "app_gateway", app_gateway)
112
113
  if app_service is not None:
113
114
  pulumi.set(__self__, "app_service", app_service)
115
+ if auto_discovery is not None:
116
+ pulumi.set(__self__, "auto_discovery", auto_discovery)
114
117
  if containers is not None:
115
118
  pulumi.set(__self__, "containers", containers)
116
119
  if cosmos_db is not None:
@@ -170,9 +173,9 @@ class AzureIntegrationsArgs:
170
173
  if vpn_gateway is not None:
171
174
  pulumi.set(__self__, "vpn_gateway", vpn_gateway)
172
175
 
173
- @property
176
+ @_builtins.property
174
177
  @pulumi.getter(name="linkedAccountId")
175
- def linked_account_id(self) -> pulumi.Input[builtins.str]:
178
+ def linked_account_id(self) -> pulumi.Input[_builtins.str]:
176
179
  """
177
180
  The ID of the linked Azure account in New Relic.
178
181
 
@@ -182,22 +185,22 @@ class AzureIntegrationsArgs:
182
185
  return pulumi.get(self, "linked_account_id")
183
186
 
184
187
  @linked_account_id.setter
185
- def linked_account_id(self, value: pulumi.Input[builtins.str]):
188
+ def linked_account_id(self, value: pulumi.Input[_builtins.str]):
186
189
  pulumi.set(self, "linked_account_id", value)
187
190
 
188
- @property
191
+ @_builtins.property
189
192
  @pulumi.getter(name="accountId")
190
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
193
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
191
194
  """
192
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`.
193
196
  """
194
197
  return pulumi.get(self, "account_id")
195
198
 
196
199
  @account_id.setter
197
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
200
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
198
201
  pulumi.set(self, "account_id", value)
199
202
 
200
- @property
203
+ @_builtins.property
201
204
  @pulumi.getter(name="apiManagement")
202
205
  def api_management(self) -> Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]:
203
206
  """
@@ -209,7 +212,7 @@ class AzureIntegrationsArgs:
209
212
  def api_management(self, value: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]):
210
213
  pulumi.set(self, "api_management", value)
211
214
 
212
- @property
215
+ @_builtins.property
213
216
  @pulumi.getter(name="appGateway")
214
217
  def app_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]:
215
218
  """
@@ -221,7 +224,7 @@ class AzureIntegrationsArgs:
221
224
  def app_gateway(self, value: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]):
222
225
  pulumi.set(self, "app_gateway", value)
223
226
 
224
- @property
227
+ @_builtins.property
225
228
  @pulumi.getter(name="appService")
226
229
  def app_service(self) -> Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]:
227
230
  """
@@ -233,7 +236,19 @@ class AzureIntegrationsArgs:
233
236
  def app_service(self, value: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]):
234
237
  pulumi.set(self, "app_service", value)
235
238
 
236
- @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
237
252
  @pulumi.getter
238
253
  def containers(self) -> Optional[pulumi.Input['AzureIntegrationsContainersArgs']]:
239
254
  """
@@ -245,7 +260,7 @@ class AzureIntegrationsArgs:
245
260
  def containers(self, value: Optional[pulumi.Input['AzureIntegrationsContainersArgs']]):
246
261
  pulumi.set(self, "containers", value)
247
262
 
248
- @property
263
+ @_builtins.property
249
264
  @pulumi.getter(name="cosmosDb")
250
265
  def cosmos_db(self) -> Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]:
251
266
  """
@@ -257,7 +272,7 @@ class AzureIntegrationsArgs:
257
272
  def cosmos_db(self, value: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]):
258
273
  pulumi.set(self, "cosmos_db", value)
259
274
 
260
- @property
275
+ @_builtins.property
261
276
  @pulumi.getter(name="costManagement")
262
277
  def cost_management(self) -> Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]:
263
278
  """
@@ -269,7 +284,7 @@ class AzureIntegrationsArgs:
269
284
  def cost_management(self, value: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]):
270
285
  pulumi.set(self, "cost_management", value)
271
286
 
272
- @property
287
+ @_builtins.property
273
288
  @pulumi.getter(name="dataFactory")
274
289
  def data_factory(self) -> Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]:
275
290
  """
@@ -281,7 +296,7 @@ class AzureIntegrationsArgs:
281
296
  def data_factory(self, value: Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]):
282
297
  pulumi.set(self, "data_factory", value)
283
298
 
284
- @property
299
+ @_builtins.property
285
300
  @pulumi.getter(name="eventHub")
286
301
  def event_hub(self) -> Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]:
287
302
  """
@@ -293,7 +308,7 @@ class AzureIntegrationsArgs:
293
308
  def event_hub(self, value: Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]):
294
309
  pulumi.set(self, "event_hub", value)
295
310
 
296
- @property
311
+ @_builtins.property
297
312
  @pulumi.getter(name="expressRoute")
298
313
  def express_route(self) -> Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]:
299
314
  """
@@ -305,7 +320,7 @@ class AzureIntegrationsArgs:
305
320
  def express_route(self, value: Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]):
306
321
  pulumi.set(self, "express_route", value)
307
322
 
308
- @property
323
+ @_builtins.property
309
324
  @pulumi.getter
310
325
  def firewalls(self) -> Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]:
311
326
  """
@@ -317,7 +332,7 @@ class AzureIntegrationsArgs:
317
332
  def firewalls(self, value: Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]):
318
333
  pulumi.set(self, "firewalls", value)
319
334
 
320
- @property
335
+ @_builtins.property
321
336
  @pulumi.getter(name="frontDoor")
322
337
  def front_door(self) -> Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]:
323
338
  """
@@ -329,7 +344,7 @@ class AzureIntegrationsArgs:
329
344
  def front_door(self, value: Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]):
330
345
  pulumi.set(self, "front_door", value)
331
346
 
332
- @property
347
+ @_builtins.property
333
348
  @pulumi.getter
334
349
  def functions(self) -> Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]:
335
350
  """
@@ -341,7 +356,7 @@ class AzureIntegrationsArgs:
341
356
  def functions(self, value: Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]):
342
357
  pulumi.set(self, "functions", value)
343
358
 
344
- @property
359
+ @_builtins.property
345
360
  @pulumi.getter(name="keyVault")
346
361
  def key_vault(self) -> Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]:
347
362
  """
@@ -353,7 +368,7 @@ class AzureIntegrationsArgs:
353
368
  def key_vault(self, value: Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]):
354
369
  pulumi.set(self, "key_vault", value)
355
370
 
356
- @property
371
+ @_builtins.property
357
372
  @pulumi.getter(name="loadBalancer")
358
373
  def load_balancer(self) -> Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]:
359
374
  """
@@ -365,7 +380,7 @@ class AzureIntegrationsArgs:
365
380
  def load_balancer(self, value: Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]):
366
381
  pulumi.set(self, "load_balancer", value)
367
382
 
368
- @property
383
+ @_builtins.property
369
384
  @pulumi.getter(name="logicApps")
370
385
  def logic_apps(self) -> Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]:
371
386
  """
@@ -377,7 +392,7 @@ class AzureIntegrationsArgs:
377
392
  def logic_apps(self, value: Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]):
378
393
  pulumi.set(self, "logic_apps", value)
379
394
 
380
- @property
395
+ @_builtins.property
381
396
  @pulumi.getter(name="machineLearning")
382
397
  def machine_learning(self) -> Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]:
383
398
  """
@@ -389,7 +404,7 @@ class AzureIntegrationsArgs:
389
404
  def machine_learning(self, value: Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]):
390
405
  pulumi.set(self, "machine_learning", value)
391
406
 
392
- @property
407
+ @_builtins.property
393
408
  @pulumi.getter(name="mariaDb")
394
409
  def maria_db(self) -> Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]:
395
410
  """
@@ -401,7 +416,7 @@ class AzureIntegrationsArgs:
401
416
  def maria_db(self, value: Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]):
402
417
  pulumi.set(self, "maria_db", value)
403
418
 
404
- @property
419
+ @_builtins.property
405
420
  @pulumi.getter
406
421
  def monitor(self) -> Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]:
407
422
  """
@@ -415,7 +430,7 @@ class AzureIntegrationsArgs:
415
430
  def monitor(self, value: Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]):
416
431
  pulumi.set(self, "monitor", value)
417
432
 
418
- @property
433
+ @_builtins.property
419
434
  @pulumi.getter
420
435
  def mysql(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]:
421
436
  """
@@ -427,7 +442,7 @@ class AzureIntegrationsArgs:
427
442
  def mysql(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]):
428
443
  pulumi.set(self, "mysql", value)
429
444
 
430
- @property
445
+ @_builtins.property
431
446
  @pulumi.getter(name="mysqlFlexible")
432
447
  def mysql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]:
433
448
  """
@@ -439,7 +454,7 @@ class AzureIntegrationsArgs:
439
454
  def mysql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]):
440
455
  pulumi.set(self, "mysql_flexible", value)
441
456
 
442
- @property
457
+ @_builtins.property
443
458
  @pulumi.getter
444
459
  def postgresql(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]:
445
460
  """
@@ -451,7 +466,7 @@ class AzureIntegrationsArgs:
451
466
  def postgresql(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]):
452
467
  pulumi.set(self, "postgresql", value)
453
468
 
454
- @property
469
+ @_builtins.property
455
470
  @pulumi.getter(name="postgresqlFlexible")
456
471
  def postgresql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]:
457
472
  """
@@ -463,7 +478,7 @@ class AzureIntegrationsArgs:
463
478
  def postgresql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]):
464
479
  pulumi.set(self, "postgresql_flexible", value)
465
480
 
466
- @property
481
+ @_builtins.property
467
482
  @pulumi.getter(name="powerBiDedicated")
468
483
  def power_bi_dedicated(self) -> Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]:
469
484
  """
@@ -475,7 +490,7 @@ class AzureIntegrationsArgs:
475
490
  def power_bi_dedicated(self, value: Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]):
476
491
  pulumi.set(self, "power_bi_dedicated", value)
477
492
 
478
- @property
493
+ @_builtins.property
479
494
  @pulumi.getter(name="redisCache")
480
495
  def redis_cache(self) -> Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]:
481
496
  """
@@ -487,7 +502,7 @@ class AzureIntegrationsArgs:
487
502
  def redis_cache(self, value: Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]):
488
503
  pulumi.set(self, "redis_cache", value)
489
504
 
490
- @property
505
+ @_builtins.property
491
506
  @pulumi.getter(name="serviceBus")
492
507
  def service_bus(self) -> Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]:
493
508
  """
@@ -499,7 +514,7 @@ class AzureIntegrationsArgs:
499
514
  def service_bus(self, value: Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]):
500
515
  pulumi.set(self, "service_bus", value)
501
516
 
502
- @property
517
+ @_builtins.property
503
518
  @pulumi.getter
504
519
  def sql(self) -> Optional[pulumi.Input['AzureIntegrationsSqlArgs']]:
505
520
  """
@@ -511,7 +526,7 @@ class AzureIntegrationsArgs:
511
526
  def sql(self, value: Optional[pulumi.Input['AzureIntegrationsSqlArgs']]):
512
527
  pulumi.set(self, "sql", value)
513
528
 
514
- @property
529
+ @_builtins.property
515
530
  @pulumi.getter(name="sqlManaged")
516
531
  def sql_managed(self) -> Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]:
517
532
  """
@@ -523,7 +538,7 @@ class AzureIntegrationsArgs:
523
538
  def sql_managed(self, value: Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]):
524
539
  pulumi.set(self, "sql_managed", value)
525
540
 
526
- @property
541
+ @_builtins.property
527
542
  @pulumi.getter
528
543
  def storage(self) -> Optional[pulumi.Input['AzureIntegrationsStorageArgs']]:
529
544
  """
@@ -537,7 +552,7 @@ class AzureIntegrationsArgs:
537
552
  def storage(self, value: Optional[pulumi.Input['AzureIntegrationsStorageArgs']]):
538
553
  pulumi.set(self, "storage", value)
539
554
 
540
- @property
555
+ @_builtins.property
541
556
  @pulumi.getter(name="virtualMachine")
542
557
  def virtual_machine(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]:
543
558
  """
@@ -549,7 +564,7 @@ class AzureIntegrationsArgs:
549
564
  def virtual_machine(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]):
550
565
  pulumi.set(self, "virtual_machine", value)
551
566
 
552
- @property
567
+ @_builtins.property
553
568
  @pulumi.getter(name="virtualNetworks")
554
569
  def virtual_networks(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]:
555
570
  """
@@ -561,7 +576,7 @@ class AzureIntegrationsArgs:
561
576
  def virtual_networks(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]):
562
577
  pulumi.set(self, "virtual_networks", value)
563
578
 
564
- @property
579
+ @_builtins.property
565
580
  @pulumi.getter
566
581
  def vms(self) -> Optional[pulumi.Input['AzureIntegrationsVmsArgs']]:
567
582
  """
@@ -573,7 +588,7 @@ class AzureIntegrationsArgs:
573
588
  def vms(self, value: Optional[pulumi.Input['AzureIntegrationsVmsArgs']]):
574
589
  pulumi.set(self, "vms", value)
575
590
 
576
- @property
591
+ @_builtins.property
577
592
  @pulumi.getter(name="vpnGateway")
578
593
  def vpn_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']]:
579
594
  """
@@ -591,10 +606,11 @@ class AzureIntegrationsArgs:
591
606
  @pulumi.input_type
592
607
  class _AzureIntegrationsState:
593
608
  def __init__(__self__, *,
594
- account_id: Optional[pulumi.Input[builtins.str]] = None,
609
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
595
610
  api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
596
611
  app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
597
612
  app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
613
+ auto_discovery: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']] = None,
598
614
  containers: Optional[pulumi.Input['AzureIntegrationsContainersArgs']] = None,
599
615
  cosmos_db: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']] = None,
600
616
  cost_management: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']] = None,
@@ -605,7 +621,7 @@ class _AzureIntegrationsState:
605
621
  front_door: Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']] = None,
606
622
  functions: Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']] = None,
607
623
  key_vault: Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']] = None,
608
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
624
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
609
625
  load_balancer: Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']] = None,
610
626
  logic_apps: Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']] = None,
611
627
  machine_learning: Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']] = None,
@@ -627,10 +643,11 @@ class _AzureIntegrationsState:
627
643
  vpn_gateway: Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']] = None):
628
644
  """
629
645
  Input properties used for looking up and filtering AzureIntegrations resources.
630
- :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`.
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`.
631
647
  :param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
632
648
  :param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
633
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
634
651
  :param pulumi.Input['AzureIntegrationsContainersArgs'] containers: Azure Containers. See Integration blocks below for details.
635
652
  :param pulumi.Input['AzureIntegrationsCosmosDbArgs'] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
636
653
  :param pulumi.Input['AzureIntegrationsCostManagementArgs'] cost_management: Azure Cost Management. See Integration blocks below for details.
@@ -641,7 +658,7 @@ class _AzureIntegrationsState:
641
658
  :param pulumi.Input['AzureIntegrationsFrontDoorArgs'] front_door: Azure Front Door. See Integration blocks below for details.
642
659
  :param pulumi.Input['AzureIntegrationsFunctionsArgs'] functions: Azure Functions. See Integration blocks below for details.
643
660
  :param pulumi.Input['AzureIntegrationsKeyVaultArgs'] key_vault: Azure Key Vault. See Integration blocks below for details.
644
- :param pulumi.Input[builtins.str] 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.
645
662
 
646
663
 
647
664
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
@@ -679,6 +696,8 @@ class _AzureIntegrationsState:
679
696
  pulumi.set(__self__, "app_gateway", app_gateway)
680
697
  if app_service is not None:
681
698
  pulumi.set(__self__, "app_service", app_service)
699
+ if auto_discovery is not None:
700
+ pulumi.set(__self__, "auto_discovery", auto_discovery)
682
701
  if containers is not None:
683
702
  pulumi.set(__self__, "containers", containers)
684
703
  if cosmos_db is not None:
@@ -740,19 +759,19 @@ class _AzureIntegrationsState:
740
759
  if vpn_gateway is not None:
741
760
  pulumi.set(__self__, "vpn_gateway", vpn_gateway)
742
761
 
743
- @property
762
+ @_builtins.property
744
763
  @pulumi.getter(name="accountId")
745
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
764
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
746
765
  """
747
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`.
748
767
  """
749
768
  return pulumi.get(self, "account_id")
750
769
 
751
770
  @account_id.setter
752
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
771
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
753
772
  pulumi.set(self, "account_id", value)
754
773
 
755
- @property
774
+ @_builtins.property
756
775
  @pulumi.getter(name="apiManagement")
757
776
  def api_management(self) -> Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]:
758
777
  """
@@ -764,7 +783,7 @@ class _AzureIntegrationsState:
764
783
  def api_management(self, value: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']]):
765
784
  pulumi.set(self, "api_management", value)
766
785
 
767
- @property
786
+ @_builtins.property
768
787
  @pulumi.getter(name="appGateway")
769
788
  def app_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]:
770
789
  """
@@ -776,7 +795,7 @@ class _AzureIntegrationsState:
776
795
  def app_gateway(self, value: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']]):
777
796
  pulumi.set(self, "app_gateway", value)
778
797
 
779
- @property
798
+ @_builtins.property
780
799
  @pulumi.getter(name="appService")
781
800
  def app_service(self) -> Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]:
782
801
  """
@@ -788,7 +807,19 @@ class _AzureIntegrationsState:
788
807
  def app_service(self, value: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]):
789
808
  pulumi.set(self, "app_service", value)
790
809
 
791
- @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
792
823
  @pulumi.getter
793
824
  def containers(self) -> Optional[pulumi.Input['AzureIntegrationsContainersArgs']]:
794
825
  """
@@ -800,7 +831,7 @@ class _AzureIntegrationsState:
800
831
  def containers(self, value: Optional[pulumi.Input['AzureIntegrationsContainersArgs']]):
801
832
  pulumi.set(self, "containers", value)
802
833
 
803
- @property
834
+ @_builtins.property
804
835
  @pulumi.getter(name="cosmosDb")
805
836
  def cosmos_db(self) -> Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]:
806
837
  """
@@ -812,7 +843,7 @@ class _AzureIntegrationsState:
812
843
  def cosmos_db(self, value: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']]):
813
844
  pulumi.set(self, "cosmos_db", value)
814
845
 
815
- @property
846
+ @_builtins.property
816
847
  @pulumi.getter(name="costManagement")
817
848
  def cost_management(self) -> Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]:
818
849
  """
@@ -824,7 +855,7 @@ class _AzureIntegrationsState:
824
855
  def cost_management(self, value: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']]):
825
856
  pulumi.set(self, "cost_management", value)
826
857
 
827
- @property
858
+ @_builtins.property
828
859
  @pulumi.getter(name="dataFactory")
829
860
  def data_factory(self) -> Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]:
830
861
  """
@@ -836,7 +867,7 @@ class _AzureIntegrationsState:
836
867
  def data_factory(self, value: Optional[pulumi.Input['AzureIntegrationsDataFactoryArgs']]):
837
868
  pulumi.set(self, "data_factory", value)
838
869
 
839
- @property
870
+ @_builtins.property
840
871
  @pulumi.getter(name="eventHub")
841
872
  def event_hub(self) -> Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]:
842
873
  """
@@ -848,7 +879,7 @@ class _AzureIntegrationsState:
848
879
  def event_hub(self, value: Optional[pulumi.Input['AzureIntegrationsEventHubArgs']]):
849
880
  pulumi.set(self, "event_hub", value)
850
881
 
851
- @property
882
+ @_builtins.property
852
883
  @pulumi.getter(name="expressRoute")
853
884
  def express_route(self) -> Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]:
854
885
  """
@@ -860,7 +891,7 @@ class _AzureIntegrationsState:
860
891
  def express_route(self, value: Optional[pulumi.Input['AzureIntegrationsExpressRouteArgs']]):
861
892
  pulumi.set(self, "express_route", value)
862
893
 
863
- @property
894
+ @_builtins.property
864
895
  @pulumi.getter
865
896
  def firewalls(self) -> Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]:
866
897
  """
@@ -872,7 +903,7 @@ class _AzureIntegrationsState:
872
903
  def firewalls(self, value: Optional[pulumi.Input['AzureIntegrationsFirewallsArgs']]):
873
904
  pulumi.set(self, "firewalls", value)
874
905
 
875
- @property
906
+ @_builtins.property
876
907
  @pulumi.getter(name="frontDoor")
877
908
  def front_door(self) -> Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]:
878
909
  """
@@ -884,7 +915,7 @@ class _AzureIntegrationsState:
884
915
  def front_door(self, value: Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']]):
885
916
  pulumi.set(self, "front_door", value)
886
917
 
887
- @property
918
+ @_builtins.property
888
919
  @pulumi.getter
889
920
  def functions(self) -> Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]:
890
921
  """
@@ -896,7 +927,7 @@ class _AzureIntegrationsState:
896
927
  def functions(self, value: Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']]):
897
928
  pulumi.set(self, "functions", value)
898
929
 
899
- @property
930
+ @_builtins.property
900
931
  @pulumi.getter(name="keyVault")
901
932
  def key_vault(self) -> Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]:
902
933
  """
@@ -908,9 +939,9 @@ class _AzureIntegrationsState:
908
939
  def key_vault(self, value: Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']]):
909
940
  pulumi.set(self, "key_vault", value)
910
941
 
911
- @property
942
+ @_builtins.property
912
943
  @pulumi.getter(name="linkedAccountId")
913
- def linked_account_id(self) -> Optional[pulumi.Input[builtins.str]]:
944
+ def linked_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
914
945
  """
915
946
  The ID of the linked Azure account in New Relic.
916
947
 
@@ -920,10 +951,10 @@ class _AzureIntegrationsState:
920
951
  return pulumi.get(self, "linked_account_id")
921
952
 
922
953
  @linked_account_id.setter
923
- def linked_account_id(self, value: Optional[pulumi.Input[builtins.str]]):
954
+ def linked_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
924
955
  pulumi.set(self, "linked_account_id", value)
925
956
 
926
- @property
957
+ @_builtins.property
927
958
  @pulumi.getter(name="loadBalancer")
928
959
  def load_balancer(self) -> Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]:
929
960
  """
@@ -935,7 +966,7 @@ class _AzureIntegrationsState:
935
966
  def load_balancer(self, value: Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']]):
936
967
  pulumi.set(self, "load_balancer", value)
937
968
 
938
- @property
969
+ @_builtins.property
939
970
  @pulumi.getter(name="logicApps")
940
971
  def logic_apps(self) -> Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]:
941
972
  """
@@ -947,7 +978,7 @@ class _AzureIntegrationsState:
947
978
  def logic_apps(self, value: Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']]):
948
979
  pulumi.set(self, "logic_apps", value)
949
980
 
950
- @property
981
+ @_builtins.property
951
982
  @pulumi.getter(name="machineLearning")
952
983
  def machine_learning(self) -> Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]:
953
984
  """
@@ -959,7 +990,7 @@ class _AzureIntegrationsState:
959
990
  def machine_learning(self, value: Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']]):
960
991
  pulumi.set(self, "machine_learning", value)
961
992
 
962
- @property
993
+ @_builtins.property
963
994
  @pulumi.getter(name="mariaDb")
964
995
  def maria_db(self) -> Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]:
965
996
  """
@@ -971,7 +1002,7 @@ class _AzureIntegrationsState:
971
1002
  def maria_db(self, value: Optional[pulumi.Input['AzureIntegrationsMariaDbArgs']]):
972
1003
  pulumi.set(self, "maria_db", value)
973
1004
 
974
- @property
1005
+ @_builtins.property
975
1006
  @pulumi.getter
976
1007
  def monitor(self) -> Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]:
977
1008
  """
@@ -985,7 +1016,7 @@ class _AzureIntegrationsState:
985
1016
  def monitor(self, value: Optional[pulumi.Input['AzureIntegrationsMonitorArgs']]):
986
1017
  pulumi.set(self, "monitor", value)
987
1018
 
988
- @property
1019
+ @_builtins.property
989
1020
  @pulumi.getter
990
1021
  def mysql(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]:
991
1022
  """
@@ -997,7 +1028,7 @@ class _AzureIntegrationsState:
997
1028
  def mysql(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlArgs']]):
998
1029
  pulumi.set(self, "mysql", value)
999
1030
 
1000
- @property
1031
+ @_builtins.property
1001
1032
  @pulumi.getter(name="mysqlFlexible")
1002
1033
  def mysql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]:
1003
1034
  """
@@ -1009,7 +1040,7 @@ class _AzureIntegrationsState:
1009
1040
  def mysql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsMysqlFlexibleArgs']]):
1010
1041
  pulumi.set(self, "mysql_flexible", value)
1011
1042
 
1012
- @property
1043
+ @_builtins.property
1013
1044
  @pulumi.getter
1014
1045
  def postgresql(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]:
1015
1046
  """
@@ -1021,7 +1052,7 @@ class _AzureIntegrationsState:
1021
1052
  def postgresql(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlArgs']]):
1022
1053
  pulumi.set(self, "postgresql", value)
1023
1054
 
1024
- @property
1055
+ @_builtins.property
1025
1056
  @pulumi.getter(name="postgresqlFlexible")
1026
1057
  def postgresql_flexible(self) -> Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]:
1027
1058
  """
@@ -1033,7 +1064,7 @@ class _AzureIntegrationsState:
1033
1064
  def postgresql_flexible(self, value: Optional[pulumi.Input['AzureIntegrationsPostgresqlFlexibleArgs']]):
1034
1065
  pulumi.set(self, "postgresql_flexible", value)
1035
1066
 
1036
- @property
1067
+ @_builtins.property
1037
1068
  @pulumi.getter(name="powerBiDedicated")
1038
1069
  def power_bi_dedicated(self) -> Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]:
1039
1070
  """
@@ -1045,7 +1076,7 @@ class _AzureIntegrationsState:
1045
1076
  def power_bi_dedicated(self, value: Optional[pulumi.Input['AzureIntegrationsPowerBiDedicatedArgs']]):
1046
1077
  pulumi.set(self, "power_bi_dedicated", value)
1047
1078
 
1048
- @property
1079
+ @_builtins.property
1049
1080
  @pulumi.getter(name="redisCache")
1050
1081
  def redis_cache(self) -> Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]:
1051
1082
  """
@@ -1057,7 +1088,7 @@ class _AzureIntegrationsState:
1057
1088
  def redis_cache(self, value: Optional[pulumi.Input['AzureIntegrationsRedisCacheArgs']]):
1058
1089
  pulumi.set(self, "redis_cache", value)
1059
1090
 
1060
- @property
1091
+ @_builtins.property
1061
1092
  @pulumi.getter(name="serviceBus")
1062
1093
  def service_bus(self) -> Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]:
1063
1094
  """
@@ -1069,7 +1100,7 @@ class _AzureIntegrationsState:
1069
1100
  def service_bus(self, value: Optional[pulumi.Input['AzureIntegrationsServiceBusArgs']]):
1070
1101
  pulumi.set(self, "service_bus", value)
1071
1102
 
1072
- @property
1103
+ @_builtins.property
1073
1104
  @pulumi.getter
1074
1105
  def sql(self) -> Optional[pulumi.Input['AzureIntegrationsSqlArgs']]:
1075
1106
  """
@@ -1081,7 +1112,7 @@ class _AzureIntegrationsState:
1081
1112
  def sql(self, value: Optional[pulumi.Input['AzureIntegrationsSqlArgs']]):
1082
1113
  pulumi.set(self, "sql", value)
1083
1114
 
1084
- @property
1115
+ @_builtins.property
1085
1116
  @pulumi.getter(name="sqlManaged")
1086
1117
  def sql_managed(self) -> Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]:
1087
1118
  """
@@ -1093,7 +1124,7 @@ class _AzureIntegrationsState:
1093
1124
  def sql_managed(self, value: Optional[pulumi.Input['AzureIntegrationsSqlManagedArgs']]):
1094
1125
  pulumi.set(self, "sql_managed", value)
1095
1126
 
1096
- @property
1127
+ @_builtins.property
1097
1128
  @pulumi.getter
1098
1129
  def storage(self) -> Optional[pulumi.Input['AzureIntegrationsStorageArgs']]:
1099
1130
  """
@@ -1107,7 +1138,7 @@ class _AzureIntegrationsState:
1107
1138
  def storage(self, value: Optional[pulumi.Input['AzureIntegrationsStorageArgs']]):
1108
1139
  pulumi.set(self, "storage", value)
1109
1140
 
1110
- @property
1141
+ @_builtins.property
1111
1142
  @pulumi.getter(name="virtualMachine")
1112
1143
  def virtual_machine(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]:
1113
1144
  """
@@ -1119,7 +1150,7 @@ class _AzureIntegrationsState:
1119
1150
  def virtual_machine(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualMachineArgs']]):
1120
1151
  pulumi.set(self, "virtual_machine", value)
1121
1152
 
1122
- @property
1153
+ @_builtins.property
1123
1154
  @pulumi.getter(name="virtualNetworks")
1124
1155
  def virtual_networks(self) -> Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]:
1125
1156
  """
@@ -1131,7 +1162,7 @@ class _AzureIntegrationsState:
1131
1162
  def virtual_networks(self, value: Optional[pulumi.Input['AzureIntegrationsVirtualNetworksArgs']]):
1132
1163
  pulumi.set(self, "virtual_networks", value)
1133
1164
 
1134
- @property
1165
+ @_builtins.property
1135
1166
  @pulumi.getter
1136
1167
  def vms(self) -> Optional[pulumi.Input['AzureIntegrationsVmsArgs']]:
1137
1168
  """
@@ -1143,7 +1174,7 @@ class _AzureIntegrationsState:
1143
1174
  def vms(self, value: Optional[pulumi.Input['AzureIntegrationsVmsArgs']]):
1144
1175
  pulumi.set(self, "vms", value)
1145
1176
 
1146
- @property
1177
+ @_builtins.property
1147
1178
  @pulumi.getter(name="vpnGateway")
1148
1179
  def vpn_gateway(self) -> Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']]:
1149
1180
  """
@@ -1164,10 +1195,11 @@ class AzureIntegrations(pulumi.CustomResource):
1164
1195
  def __init__(__self__,
1165
1196
  resource_name: str,
1166
1197
  opts: Optional[pulumi.ResourceOptions] = None,
1167
- account_id: Optional[pulumi.Input[builtins.str]] = None,
1198
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1168
1199
  api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1169
1200
  app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1170
1201
  app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
1202
+ auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
1171
1203
  containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
1172
1204
  cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
1173
1205
  cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
@@ -1178,7 +1210,7 @@ class AzureIntegrations(pulumi.CustomResource):
1178
1210
  front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1179
1211
  functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1180
1212
  key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1181
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1213
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1182
1214
  load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1183
1215
  logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1184
1216
  machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
@@ -1377,10 +1409,11 @@ class AzureIntegrations(pulumi.CustomResource):
1377
1409
 
1378
1410
  :param str resource_name: The name of the resource.
1379
1411
  :param pulumi.ResourceOptions opts: Options for the resource.
1380
- :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`.
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`.
1381
1413
  :param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
1382
1414
  :param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1383
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
1384
1417
  :param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
1385
1418
  :param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1386
1419
  :param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
@@ -1391,7 +1424,7 @@ class AzureIntegrations(pulumi.CustomResource):
1391
1424
  :param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
1392
1425
  :param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
1393
1426
  :param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
1394
- :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1427
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1395
1428
 
1396
1429
 
1397
1430
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
@@ -1618,10 +1651,11 @@ class AzureIntegrations(pulumi.CustomResource):
1618
1651
  def _internal_init(__self__,
1619
1652
  resource_name: str,
1620
1653
  opts: Optional[pulumi.ResourceOptions] = None,
1621
- account_id: Optional[pulumi.Input[builtins.str]] = None,
1654
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1622
1655
  api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1623
1656
  app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1624
1657
  app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
1658
+ auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
1625
1659
  containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
1626
1660
  cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
1627
1661
  cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
@@ -1632,7 +1666,7 @@ class AzureIntegrations(pulumi.CustomResource):
1632
1666
  front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1633
1667
  functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1634
1668
  key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1635
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1669
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1636
1670
  load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1637
1671
  logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1638
1672
  machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
@@ -1665,6 +1699,7 @@ class AzureIntegrations(pulumi.CustomResource):
1665
1699
  __props__.__dict__["api_management"] = api_management
1666
1700
  __props__.__dict__["app_gateway"] = app_gateway
1667
1701
  __props__.__dict__["app_service"] = app_service
1702
+ __props__.__dict__["auto_discovery"] = auto_discovery
1668
1703
  __props__.__dict__["containers"] = containers
1669
1704
  __props__.__dict__["cosmos_db"] = cosmos_db
1670
1705
  __props__.__dict__["cost_management"] = cost_management
@@ -1707,10 +1742,11 @@ class AzureIntegrations(pulumi.CustomResource):
1707
1742
  def get(resource_name: str,
1708
1743
  id: pulumi.Input[str],
1709
1744
  opts: Optional[pulumi.ResourceOptions] = None,
1710
- account_id: Optional[pulumi.Input[builtins.str]] = None,
1745
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1711
1746
  api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1712
1747
  app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1713
1748
  app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
1749
+ auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
1714
1750
  containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
1715
1751
  cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
1716
1752
  cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
@@ -1721,7 +1757,7 @@ class AzureIntegrations(pulumi.CustomResource):
1721
1757
  front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1722
1758
  functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1723
1759
  key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1724
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1760
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1725
1761
  load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1726
1762
  logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1727
1763
  machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
@@ -1748,10 +1784,11 @@ class AzureIntegrations(pulumi.CustomResource):
1748
1784
  :param str resource_name: The unique name of the resulting resource.
1749
1785
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1750
1786
  :param pulumi.ResourceOptions opts: Options for the resource.
1751
- :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`.
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`.
1752
1788
  :param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
1753
1789
  :param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1754
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
1755
1792
  :param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
1756
1793
  :param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
1757
1794
  :param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
@@ -1762,7 +1799,7 @@ class AzureIntegrations(pulumi.CustomResource):
1762
1799
  :param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
1763
1800
  :param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
1764
1801
  :param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
1765
- :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1802
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1766
1803
 
1767
1804
 
1768
1805
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
@@ -1800,6 +1837,7 @@ class AzureIntegrations(pulumi.CustomResource):
1800
1837
  __props__.__dict__["api_management"] = api_management
1801
1838
  __props__.__dict__["app_gateway"] = app_gateway
1802
1839
  __props__.__dict__["app_service"] = app_service
1840
+ __props__.__dict__["auto_discovery"] = auto_discovery
1803
1841
  __props__.__dict__["containers"] = containers
1804
1842
  __props__.__dict__["cosmos_db"] = cosmos_db
1805
1843
  __props__.__dict__["cost_management"] = cost_management
@@ -1832,15 +1870,15 @@ class AzureIntegrations(pulumi.CustomResource):
1832
1870
  __props__.__dict__["vpn_gateway"] = vpn_gateway
1833
1871
  return AzureIntegrations(resource_name, opts=opts, __props__=__props__)
1834
1872
 
1835
- @property
1873
+ @_builtins.property
1836
1874
  @pulumi.getter(name="accountId")
1837
- def account_id(self) -> pulumi.Output[builtins.str]:
1875
+ def account_id(self) -> pulumi.Output[_builtins.str]:
1838
1876
  """
1839
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`.
1840
1878
  """
1841
1879
  return pulumi.get(self, "account_id")
1842
1880
 
1843
- @property
1881
+ @_builtins.property
1844
1882
  @pulumi.getter(name="apiManagement")
1845
1883
  def api_management(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsApiManagement']]:
1846
1884
  """
@@ -1848,7 +1886,7 @@ class AzureIntegrations(pulumi.CustomResource):
1848
1886
  """
1849
1887
  return pulumi.get(self, "api_management")
1850
1888
 
1851
- @property
1889
+ @_builtins.property
1852
1890
  @pulumi.getter(name="appGateway")
1853
1891
  def app_gateway(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAppGateway']]:
1854
1892
  """
@@ -1856,7 +1894,7 @@ class AzureIntegrations(pulumi.CustomResource):
1856
1894
  """
1857
1895
  return pulumi.get(self, "app_gateway")
1858
1896
 
1859
- @property
1897
+ @_builtins.property
1860
1898
  @pulumi.getter(name="appService")
1861
1899
  def app_service(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAppService']]:
1862
1900
  """
@@ -1864,7 +1902,15 @@ class AzureIntegrations(pulumi.CustomResource):
1864
1902
  """
1865
1903
  return pulumi.get(self, "app_service")
1866
1904
 
1867
- @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
1868
1914
  @pulumi.getter
1869
1915
  def containers(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsContainers']]:
1870
1916
  """
@@ -1872,7 +1918,7 @@ class AzureIntegrations(pulumi.CustomResource):
1872
1918
  """
1873
1919
  return pulumi.get(self, "containers")
1874
1920
 
1875
- @property
1921
+ @_builtins.property
1876
1922
  @pulumi.getter(name="cosmosDb")
1877
1923
  def cosmos_db(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsCosmosDb']]:
1878
1924
  """
@@ -1880,7 +1926,7 @@ class AzureIntegrations(pulumi.CustomResource):
1880
1926
  """
1881
1927
  return pulumi.get(self, "cosmos_db")
1882
1928
 
1883
- @property
1929
+ @_builtins.property
1884
1930
  @pulumi.getter(name="costManagement")
1885
1931
  def cost_management(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsCostManagement']]:
1886
1932
  """
@@ -1888,7 +1934,7 @@ class AzureIntegrations(pulumi.CustomResource):
1888
1934
  """
1889
1935
  return pulumi.get(self, "cost_management")
1890
1936
 
1891
- @property
1937
+ @_builtins.property
1892
1938
  @pulumi.getter(name="dataFactory")
1893
1939
  def data_factory(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsDataFactory']]:
1894
1940
  """
@@ -1896,7 +1942,7 @@ class AzureIntegrations(pulumi.CustomResource):
1896
1942
  """
1897
1943
  return pulumi.get(self, "data_factory")
1898
1944
 
1899
- @property
1945
+ @_builtins.property
1900
1946
  @pulumi.getter(name="eventHub")
1901
1947
  def event_hub(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsEventHub']]:
1902
1948
  """
@@ -1904,7 +1950,7 @@ class AzureIntegrations(pulumi.CustomResource):
1904
1950
  """
1905
1951
  return pulumi.get(self, "event_hub")
1906
1952
 
1907
- @property
1953
+ @_builtins.property
1908
1954
  @pulumi.getter(name="expressRoute")
1909
1955
  def express_route(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsExpressRoute']]:
1910
1956
  """
@@ -1912,7 +1958,7 @@ class AzureIntegrations(pulumi.CustomResource):
1912
1958
  """
1913
1959
  return pulumi.get(self, "express_route")
1914
1960
 
1915
- @property
1961
+ @_builtins.property
1916
1962
  @pulumi.getter
1917
1963
  def firewalls(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFirewalls']]:
1918
1964
  """
@@ -1920,7 +1966,7 @@ class AzureIntegrations(pulumi.CustomResource):
1920
1966
  """
1921
1967
  return pulumi.get(self, "firewalls")
1922
1968
 
1923
- @property
1969
+ @_builtins.property
1924
1970
  @pulumi.getter(name="frontDoor")
1925
1971
  def front_door(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFrontDoor']]:
1926
1972
  """
@@ -1928,7 +1974,7 @@ class AzureIntegrations(pulumi.CustomResource):
1928
1974
  """
1929
1975
  return pulumi.get(self, "front_door")
1930
1976
 
1931
- @property
1977
+ @_builtins.property
1932
1978
  @pulumi.getter
1933
1979
  def functions(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsFunctions']]:
1934
1980
  """
@@ -1936,7 +1982,7 @@ class AzureIntegrations(pulumi.CustomResource):
1936
1982
  """
1937
1983
  return pulumi.get(self, "functions")
1938
1984
 
1939
- @property
1985
+ @_builtins.property
1940
1986
  @pulumi.getter(name="keyVault")
1941
1987
  def key_vault(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsKeyVault']]:
1942
1988
  """
@@ -1944,9 +1990,9 @@ class AzureIntegrations(pulumi.CustomResource):
1944
1990
  """
1945
1991
  return pulumi.get(self, "key_vault")
1946
1992
 
1947
- @property
1993
+ @_builtins.property
1948
1994
  @pulumi.getter(name="linkedAccountId")
1949
- def linked_account_id(self) -> pulumi.Output[builtins.str]:
1995
+ def linked_account_id(self) -> pulumi.Output[_builtins.str]:
1950
1996
  """
1951
1997
  The ID of the linked Azure account in New Relic.
1952
1998
 
@@ -1955,7 +2001,7 @@ class AzureIntegrations(pulumi.CustomResource):
1955
2001
  """
1956
2002
  return pulumi.get(self, "linked_account_id")
1957
2003
 
1958
- @property
2004
+ @_builtins.property
1959
2005
  @pulumi.getter(name="loadBalancer")
1960
2006
  def load_balancer(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsLoadBalancer']]:
1961
2007
  """
@@ -1963,7 +2009,7 @@ class AzureIntegrations(pulumi.CustomResource):
1963
2009
  """
1964
2010
  return pulumi.get(self, "load_balancer")
1965
2011
 
1966
- @property
2012
+ @_builtins.property
1967
2013
  @pulumi.getter(name="logicApps")
1968
2014
  def logic_apps(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsLogicApps']]:
1969
2015
  """
@@ -1971,7 +2017,7 @@ class AzureIntegrations(pulumi.CustomResource):
1971
2017
  """
1972
2018
  return pulumi.get(self, "logic_apps")
1973
2019
 
1974
- @property
2020
+ @_builtins.property
1975
2021
  @pulumi.getter(name="machineLearning")
1976
2022
  def machine_learning(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMachineLearning']]:
1977
2023
  """
@@ -1979,7 +2025,7 @@ class AzureIntegrations(pulumi.CustomResource):
1979
2025
  """
1980
2026
  return pulumi.get(self, "machine_learning")
1981
2027
 
1982
- @property
2028
+ @_builtins.property
1983
2029
  @pulumi.getter(name="mariaDb")
1984
2030
  def maria_db(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMariaDb']]:
1985
2031
  """
@@ -1987,7 +2033,7 @@ class AzureIntegrations(pulumi.CustomResource):
1987
2033
  """
1988
2034
  return pulumi.get(self, "maria_db")
1989
2035
 
1990
- @property
2036
+ @_builtins.property
1991
2037
  @pulumi.getter
1992
2038
  def monitor(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMonitor']]:
1993
2039
  """
@@ -1997,7 +2043,7 @@ class AzureIntegrations(pulumi.CustomResource):
1997
2043
  """
1998
2044
  return pulumi.get(self, "monitor")
1999
2045
 
2000
- @property
2046
+ @_builtins.property
2001
2047
  @pulumi.getter
2002
2048
  def mysql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMysql']]:
2003
2049
  """
@@ -2005,7 +2051,7 @@ class AzureIntegrations(pulumi.CustomResource):
2005
2051
  """
2006
2052
  return pulumi.get(self, "mysql")
2007
2053
 
2008
- @property
2054
+ @_builtins.property
2009
2055
  @pulumi.getter(name="mysqlFlexible")
2010
2056
  def mysql_flexible(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsMysqlFlexible']]:
2011
2057
  """
@@ -2013,7 +2059,7 @@ class AzureIntegrations(pulumi.CustomResource):
2013
2059
  """
2014
2060
  return pulumi.get(self, "mysql_flexible")
2015
2061
 
2016
- @property
2062
+ @_builtins.property
2017
2063
  @pulumi.getter
2018
2064
  def postgresql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPostgresql']]:
2019
2065
  """
@@ -2021,7 +2067,7 @@ class AzureIntegrations(pulumi.CustomResource):
2021
2067
  """
2022
2068
  return pulumi.get(self, "postgresql")
2023
2069
 
2024
- @property
2070
+ @_builtins.property
2025
2071
  @pulumi.getter(name="postgresqlFlexible")
2026
2072
  def postgresql_flexible(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPostgresqlFlexible']]:
2027
2073
  """
@@ -2029,7 +2075,7 @@ class AzureIntegrations(pulumi.CustomResource):
2029
2075
  """
2030
2076
  return pulumi.get(self, "postgresql_flexible")
2031
2077
 
2032
- @property
2078
+ @_builtins.property
2033
2079
  @pulumi.getter(name="powerBiDedicated")
2034
2080
  def power_bi_dedicated(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsPowerBiDedicated']]:
2035
2081
  """
@@ -2037,7 +2083,7 @@ class AzureIntegrations(pulumi.CustomResource):
2037
2083
  """
2038
2084
  return pulumi.get(self, "power_bi_dedicated")
2039
2085
 
2040
- @property
2086
+ @_builtins.property
2041
2087
  @pulumi.getter(name="redisCache")
2042
2088
  def redis_cache(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsRedisCache']]:
2043
2089
  """
@@ -2045,7 +2091,7 @@ class AzureIntegrations(pulumi.CustomResource):
2045
2091
  """
2046
2092
  return pulumi.get(self, "redis_cache")
2047
2093
 
2048
- @property
2094
+ @_builtins.property
2049
2095
  @pulumi.getter(name="serviceBus")
2050
2096
  def service_bus(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsServiceBus']]:
2051
2097
  """
@@ -2053,7 +2099,7 @@ class AzureIntegrations(pulumi.CustomResource):
2053
2099
  """
2054
2100
  return pulumi.get(self, "service_bus")
2055
2101
 
2056
- @property
2102
+ @_builtins.property
2057
2103
  @pulumi.getter
2058
2104
  def sql(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsSql']]:
2059
2105
  """
@@ -2061,7 +2107,7 @@ class AzureIntegrations(pulumi.CustomResource):
2061
2107
  """
2062
2108
  return pulumi.get(self, "sql")
2063
2109
 
2064
- @property
2110
+ @_builtins.property
2065
2111
  @pulumi.getter(name="sqlManaged")
2066
2112
  def sql_managed(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsSqlManaged']]:
2067
2113
  """
@@ -2069,7 +2115,7 @@ class AzureIntegrations(pulumi.CustomResource):
2069
2115
  """
2070
2116
  return pulumi.get(self, "sql_managed")
2071
2117
 
2072
- @property
2118
+ @_builtins.property
2073
2119
  @pulumi.getter
2074
2120
  def storage(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsStorage']]:
2075
2121
  """
@@ -2079,7 +2125,7 @@ class AzureIntegrations(pulumi.CustomResource):
2079
2125
  """
2080
2126
  return pulumi.get(self, "storage")
2081
2127
 
2082
- @property
2128
+ @_builtins.property
2083
2129
  @pulumi.getter(name="virtualMachine")
2084
2130
  def virtual_machine(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVirtualMachine']]:
2085
2131
  """
@@ -2087,7 +2133,7 @@ class AzureIntegrations(pulumi.CustomResource):
2087
2133
  """
2088
2134
  return pulumi.get(self, "virtual_machine")
2089
2135
 
2090
- @property
2136
+ @_builtins.property
2091
2137
  @pulumi.getter(name="virtualNetworks")
2092
2138
  def virtual_networks(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVirtualNetworks']]:
2093
2139
  """
@@ -2095,7 +2141,7 @@ class AzureIntegrations(pulumi.CustomResource):
2095
2141
  """
2096
2142
  return pulumi.get(self, "virtual_networks")
2097
2143
 
2098
- @property
2144
+ @_builtins.property
2099
2145
  @pulumi.getter
2100
2146
  def vms(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVms']]:
2101
2147
  """
@@ -2103,7 +2149,7 @@ class AzureIntegrations(pulumi.CustomResource):
2103
2149
  """
2104
2150
  return pulumi.get(self, "vms")
2105
2151
 
2106
- @property
2152
+ @_builtins.property
2107
2153
  @pulumi.getter(name="vpnGateway")
2108
2154
  def vpn_gateway(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsVpnGateway']]:
2109
2155
  """