pulumi-newrelic 5.48.0a1753156041__py3-none-any.whl → 5.49.0a1753398082__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 (89) hide show
  1. pulumi_newrelic/__init__.py +1 -1
  2. pulumi_newrelic/_inputs.py +3759 -3760
  3. pulumi_newrelic/account_management.py +35 -36
  4. pulumi_newrelic/alert_channel.py +55 -56
  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 +112 -113
  10. pulumi_newrelic/browser_application.py +113 -114
  11. pulumi_newrelic/cloud/__init__.py +1 -1
  12. pulumi_newrelic/cloud/_inputs.py +2129 -2130
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +95 -96
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +69 -70
  15. pulumi_newrelic/cloud/aws_integrations.py +194 -195
  16. pulumi_newrelic/cloud/aws_link_account.py +69 -70
  17. pulumi_newrelic/cloud/azure_integrations.py +131 -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/outputs.py +1417 -1418
  22. pulumi_newrelic/config/__init__.py +1 -1
  23. pulumi_newrelic/config/__init__.pyi +1 -2
  24. pulumi_newrelic/config/vars.py +14 -15
  25. pulumi_newrelic/data_partition_rule.py +112 -113
  26. pulumi_newrelic/entity_tags.py +21 -22
  27. pulumi_newrelic/events_to_metrics_rule.py +95 -96
  28. pulumi_newrelic/get_account.py +21 -22
  29. pulumi_newrelic/get_alert_channel.py +20 -21
  30. pulumi_newrelic/get_alert_policy.py +25 -26
  31. pulumi_newrelic/get_application.py +13 -14
  32. pulumi_newrelic/get_authentication_domain.py +9 -10
  33. pulumi_newrelic/get_cloud_account.py +21 -22
  34. pulumi_newrelic/get_entity.py +52 -53
  35. pulumi_newrelic/get_group.py +17 -18
  36. pulumi_newrelic/get_key_transaction.py +25 -26
  37. pulumi_newrelic/get_notification_destination.py +29 -30
  38. pulumi_newrelic/get_obfuscation_expression.py +15 -16
  39. pulumi_newrelic/get_service_level_alert_helper.py +53 -54
  40. pulumi_newrelic/get_test_grok_pattern.py +22 -23
  41. pulumi_newrelic/get_user.py +21 -22
  42. pulumi_newrelic/group.py +52 -53
  43. pulumi_newrelic/infra_alert_condition.py +255 -256
  44. pulumi_newrelic/insights/__init__.py +1 -1
  45. pulumi_newrelic/insights/_inputs.py +32 -33
  46. pulumi_newrelic/insights/event.py +4 -5
  47. pulumi_newrelic/insights/outputs.py +22 -23
  48. pulumi_newrelic/key_transaction.py +104 -105
  49. pulumi_newrelic/log_parsing_rule.py +146 -147
  50. pulumi_newrelic/monitor_downtime.py +143 -144
  51. pulumi_newrelic/notification_channel.py +115 -116
  52. pulumi_newrelic/notification_destination.py +111 -112
  53. pulumi_newrelic/nrql_alert_condition.py +430 -431
  54. pulumi_newrelic/nrql_drop_rule.py +78 -79
  55. pulumi_newrelic/obfuscation_expression.py +69 -70
  56. pulumi_newrelic/obfuscation_rule.py +89 -90
  57. pulumi_newrelic/one_dashboard.py +93 -94
  58. pulumi_newrelic/one_dashboard_json.py +62 -63
  59. pulumi_newrelic/one_dashboard_raw.py +90 -91
  60. pulumi_newrelic/outputs.py +2646 -2647
  61. pulumi_newrelic/plugins/__init__.py +1 -1
  62. pulumi_newrelic/plugins/_inputs.py +158 -159
  63. pulumi_newrelic/plugins/application_settings.py +167 -168
  64. pulumi_newrelic/plugins/outputs.py +108 -109
  65. pulumi_newrelic/plugins/workload.py +131 -132
  66. pulumi_newrelic/provider.py +106 -107
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +76 -77
  69. pulumi_newrelic/synthetics/__init__.py +1 -1
  70. pulumi_newrelic/synthetics/_inputs.py +127 -128
  71. pulumi_newrelic/synthetics/alert_condition.py +95 -96
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +197 -198
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +205 -206
  74. pulumi_newrelic/synthetics/get_private_location.py +21 -22
  75. pulumi_newrelic/synthetics/get_secure_credential.py +19 -20
  76. pulumi_newrelic/synthetics/monitor.py +378 -379
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +118 -119
  78. pulumi_newrelic/synthetics/outputs.py +85 -86
  79. pulumi_newrelic/synthetics/private_location.py +105 -106
  80. pulumi_newrelic/synthetics/script_monitor.py +302 -303
  81. pulumi_newrelic/synthetics/secure_credential.py +86 -87
  82. pulumi_newrelic/synthetics/step_monitor.py +220 -221
  83. pulumi_newrelic/user.py +69 -70
  84. pulumi_newrelic/workflow.py +139 -140
  85. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.49.0a1753398082.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.48.0a1753156041.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.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,8 +21,8 @@ __all__ = ['GcpIntegrationsArgs', 'GcpIntegrations']
22
21
  @pulumi.input_type
23
22
  class GcpIntegrationsArgs:
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
  alloy_db: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']] = None,
28
27
  app_engine: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']] = None,
29
28
  big_query: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']] = None,
@@ -52,10 +51,10 @@ class GcpIntegrationsArgs:
52
51
  vpc_access: Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']] = None):
53
52
  """
54
53
  The set of arguments for constructing a GcpIntegrations resource.
55
- :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
54
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
56
55
 
57
56
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
58
- :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
+ :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`.
59
58
  :param pulumi.Input['GcpIntegrationsAlloyDbArgs'] alloy_db: Alloy DB integration. See Integration blocks below for details.
60
59
  :param pulumi.Input['GcpIntegrationsAppEngineArgs'] app_engine: App Engine integration. See Integration blocks below for details.
61
60
  :param pulumi.Input['GcpIntegrationsBigQueryArgs'] big_query: Biq Query integration. See Integration blocks below for details.
@@ -139,9 +138,9 @@ class GcpIntegrationsArgs:
139
138
  if vpc_access is not None:
140
139
  pulumi.set(__self__, "vpc_access", vpc_access)
141
140
 
142
- @property
141
+ @_builtins.property
143
142
  @pulumi.getter(name="linkedAccountId")
144
- def linked_account_id(self) -> pulumi.Input[builtins.str]:
143
+ def linked_account_id(self) -> pulumi.Input[_builtins.str]:
145
144
  """
146
145
  The ID of the linked GCP account in New Relic.
147
146
 
@@ -150,22 +149,22 @@ class GcpIntegrationsArgs:
150
149
  return pulumi.get(self, "linked_account_id")
151
150
 
152
151
  @linked_account_id.setter
153
- def linked_account_id(self, value: pulumi.Input[builtins.str]):
152
+ def linked_account_id(self, value: pulumi.Input[_builtins.str]):
154
153
  pulumi.set(self, "linked_account_id", value)
155
154
 
156
- @property
155
+ @_builtins.property
157
156
  @pulumi.getter(name="accountId")
158
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
157
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
159
158
  """
160
159
  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`.
161
160
  """
162
161
  return pulumi.get(self, "account_id")
163
162
 
164
163
  @account_id.setter
165
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
164
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
166
165
  pulumi.set(self, "account_id", value)
167
166
 
168
- @property
167
+ @_builtins.property
169
168
  @pulumi.getter(name="alloyDb")
170
169
  def alloy_db(self) -> Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]:
171
170
  """
@@ -177,7 +176,7 @@ class GcpIntegrationsArgs:
177
176
  def alloy_db(self, value: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]):
178
177
  pulumi.set(self, "alloy_db", value)
179
178
 
180
- @property
179
+ @_builtins.property
181
180
  @pulumi.getter(name="appEngine")
182
181
  def app_engine(self) -> Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]:
183
182
  """
@@ -189,7 +188,7 @@ class GcpIntegrationsArgs:
189
188
  def app_engine(self, value: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]):
190
189
  pulumi.set(self, "app_engine", value)
191
190
 
192
- @property
191
+ @_builtins.property
193
192
  @pulumi.getter(name="bigQuery")
194
193
  def big_query(self) -> Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]:
195
194
  """
@@ -201,7 +200,7 @@ class GcpIntegrationsArgs:
201
200
  def big_query(self, value: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]):
202
201
  pulumi.set(self, "big_query", value)
203
202
 
204
- @property
203
+ @_builtins.property
205
204
  @pulumi.getter(name="bigTable")
206
205
  def big_table(self) -> Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]:
207
206
  """
@@ -213,7 +212,7 @@ class GcpIntegrationsArgs:
213
212
  def big_table(self, value: Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]):
214
213
  pulumi.set(self, "big_table", value)
215
214
 
216
- @property
215
+ @_builtins.property
217
216
  @pulumi.getter
218
217
  def composer(self) -> Optional[pulumi.Input['GcpIntegrationsComposerArgs']]:
219
218
  """
@@ -225,7 +224,7 @@ class GcpIntegrationsArgs:
225
224
  def composer(self, value: Optional[pulumi.Input['GcpIntegrationsComposerArgs']]):
226
225
  pulumi.set(self, "composer", value)
227
226
 
228
- @property
227
+ @_builtins.property
229
228
  @pulumi.getter(name="dataFlow")
230
229
  def data_flow(self) -> Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]:
231
230
  """
@@ -237,7 +236,7 @@ class GcpIntegrationsArgs:
237
236
  def data_flow(self, value: Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]):
238
237
  pulumi.set(self, "data_flow", value)
239
238
 
240
- @property
239
+ @_builtins.property
241
240
  @pulumi.getter(name="dataProc")
242
241
  def data_proc(self) -> Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]:
243
242
  """
@@ -249,7 +248,7 @@ class GcpIntegrationsArgs:
249
248
  def data_proc(self, value: Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]):
250
249
  pulumi.set(self, "data_proc", value)
251
250
 
252
- @property
251
+ @_builtins.property
253
252
  @pulumi.getter(name="dataStore")
254
253
  def data_store(self) -> Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]:
255
254
  """
@@ -261,7 +260,7 @@ class GcpIntegrationsArgs:
261
260
  def data_store(self, value: Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]):
262
261
  pulumi.set(self, "data_store", value)
263
262
 
264
- @property
263
+ @_builtins.property
265
264
  @pulumi.getter(name="fireBaseDatabase")
266
265
  def fire_base_database(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]:
267
266
  """
@@ -273,7 +272,7 @@ class GcpIntegrationsArgs:
273
272
  def fire_base_database(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]):
274
273
  pulumi.set(self, "fire_base_database", value)
275
274
 
276
- @property
275
+ @_builtins.property
277
276
  @pulumi.getter(name="fireBaseHosting")
278
277
  def fire_base_hosting(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]:
279
278
  """
@@ -285,7 +284,7 @@ class GcpIntegrationsArgs:
285
284
  def fire_base_hosting(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]):
286
285
  pulumi.set(self, "fire_base_hosting", value)
287
286
 
288
- @property
287
+ @_builtins.property
289
288
  @pulumi.getter(name="fireBaseStorage")
290
289
  def fire_base_storage(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]:
291
290
  """
@@ -297,7 +296,7 @@ class GcpIntegrationsArgs:
297
296
  def fire_base_storage(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]):
298
297
  pulumi.set(self, "fire_base_storage", value)
299
298
 
300
- @property
299
+ @_builtins.property
301
300
  @pulumi.getter(name="fireStore")
302
301
  def fire_store(self) -> Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]:
303
302
  """
@@ -309,7 +308,7 @@ class GcpIntegrationsArgs:
309
308
  def fire_store(self, value: Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]):
310
309
  pulumi.set(self, "fire_store", value)
311
310
 
312
- @property
311
+ @_builtins.property
313
312
  @pulumi.getter
314
313
  def functions(self) -> Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]:
315
314
  """
@@ -321,7 +320,7 @@ class GcpIntegrationsArgs:
321
320
  def functions(self, value: Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]):
322
321
  pulumi.set(self, "functions", value)
323
322
 
324
- @property
323
+ @_builtins.property
325
324
  @pulumi.getter
326
325
  def interconnect(self) -> Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]:
327
326
  """
@@ -333,7 +332,7 @@ class GcpIntegrationsArgs:
333
332
  def interconnect(self, value: Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]):
334
333
  pulumi.set(self, "interconnect", value)
335
334
 
336
- @property
335
+ @_builtins.property
337
336
  @pulumi.getter
338
337
  def kubernetes(self) -> Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]:
339
338
  """
@@ -345,7 +344,7 @@ class GcpIntegrationsArgs:
345
344
  def kubernetes(self, value: Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]):
346
345
  pulumi.set(self, "kubernetes", value)
347
346
 
348
- @property
347
+ @_builtins.property
349
348
  @pulumi.getter(name="loadBalancing")
350
349
  def load_balancing(self) -> Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]:
351
350
  """
@@ -357,7 +356,7 @@ class GcpIntegrationsArgs:
357
356
  def load_balancing(self, value: Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]):
358
357
  pulumi.set(self, "load_balancing", value)
359
358
 
360
- @property
359
+ @_builtins.property
361
360
  @pulumi.getter(name="memCache")
362
361
  def mem_cache(self) -> Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]:
363
362
  """
@@ -369,7 +368,7 @@ class GcpIntegrationsArgs:
369
368
  def mem_cache(self, value: Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]):
370
369
  pulumi.set(self, "mem_cache", value)
371
370
 
372
- @property
371
+ @_builtins.property
373
372
  @pulumi.getter(name="pubSub")
374
373
  def pub_sub(self) -> Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]:
375
374
  """
@@ -381,7 +380,7 @@ class GcpIntegrationsArgs:
381
380
  def pub_sub(self, value: Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]):
382
381
  pulumi.set(self, "pub_sub", value)
383
382
 
384
- @property
383
+ @_builtins.property
385
384
  @pulumi.getter
386
385
  def redis(self) -> Optional[pulumi.Input['GcpIntegrationsRedisArgs']]:
387
386
  """
@@ -393,7 +392,7 @@ class GcpIntegrationsArgs:
393
392
  def redis(self, value: Optional[pulumi.Input['GcpIntegrationsRedisArgs']]):
394
393
  pulumi.set(self, "redis", value)
395
394
 
396
- @property
395
+ @_builtins.property
397
396
  @pulumi.getter
398
397
  def router(self) -> Optional[pulumi.Input['GcpIntegrationsRouterArgs']]:
399
398
  """
@@ -405,7 +404,7 @@ class GcpIntegrationsArgs:
405
404
  def router(self, value: Optional[pulumi.Input['GcpIntegrationsRouterArgs']]):
406
405
  pulumi.set(self, "router", value)
407
406
 
408
- @property
407
+ @_builtins.property
409
408
  @pulumi.getter
410
409
  def run(self) -> Optional[pulumi.Input['GcpIntegrationsRunArgs']]:
411
410
  """
@@ -417,7 +416,7 @@ class GcpIntegrationsArgs:
417
416
  def run(self, value: Optional[pulumi.Input['GcpIntegrationsRunArgs']]):
418
417
  pulumi.set(self, "run", value)
419
418
 
420
- @property
419
+ @_builtins.property
421
420
  @pulumi.getter
422
421
  def spanner(self) -> Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]:
423
422
  """
@@ -429,7 +428,7 @@ class GcpIntegrationsArgs:
429
428
  def spanner(self, value: Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]):
430
429
  pulumi.set(self, "spanner", value)
431
430
 
432
- @property
431
+ @_builtins.property
433
432
  @pulumi.getter
434
433
  def sql(self) -> Optional[pulumi.Input['GcpIntegrationsSqlArgs']]:
435
434
  """
@@ -441,7 +440,7 @@ class GcpIntegrationsArgs:
441
440
  def sql(self, value: Optional[pulumi.Input['GcpIntegrationsSqlArgs']]):
442
441
  pulumi.set(self, "sql", value)
443
442
 
444
- @property
443
+ @_builtins.property
445
444
  @pulumi.getter
446
445
  def storage(self) -> Optional[pulumi.Input['GcpIntegrationsStorageArgs']]:
447
446
  """
@@ -453,7 +452,7 @@ class GcpIntegrationsArgs:
453
452
  def storage(self, value: Optional[pulumi.Input['GcpIntegrationsStorageArgs']]):
454
453
  pulumi.set(self, "storage", value)
455
454
 
456
- @property
455
+ @_builtins.property
457
456
  @pulumi.getter(name="virtualMachines")
458
457
  def virtual_machines(self) -> Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]:
459
458
  """
@@ -465,7 +464,7 @@ class GcpIntegrationsArgs:
465
464
  def virtual_machines(self, value: Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]):
466
465
  pulumi.set(self, "virtual_machines", value)
467
466
 
468
- @property
467
+ @_builtins.property
469
468
  @pulumi.getter(name="vpcAccess")
470
469
  def vpc_access(self) -> Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']]:
471
470
  """
@@ -481,7 +480,7 @@ class GcpIntegrationsArgs:
481
480
  @pulumi.input_type
482
481
  class _GcpIntegrationsState:
483
482
  def __init__(__self__, *,
484
- account_id: Optional[pulumi.Input[builtins.str]] = None,
483
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
485
484
  alloy_db: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']] = None,
486
485
  app_engine: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']] = None,
487
486
  big_query: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']] = None,
@@ -497,7 +496,7 @@ class _GcpIntegrationsState:
497
496
  functions: Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']] = None,
498
497
  interconnect: Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']] = None,
499
498
  kubernetes: Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']] = None,
500
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
499
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
501
500
  load_balancing: Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']] = None,
502
501
  mem_cache: Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']] = None,
503
502
  pub_sub: Optional[pulumi.Input['GcpIntegrationsPubSubArgs']] = None,
@@ -511,7 +510,7 @@ class _GcpIntegrationsState:
511
510
  vpc_access: Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']] = None):
512
511
  """
513
512
  Input properties used for looking up and filtering GcpIntegrations resources.
514
- :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`.
513
+ :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`.
515
514
  :param pulumi.Input['GcpIntegrationsAlloyDbArgs'] alloy_db: Alloy DB integration. See Integration blocks below for details.
516
515
  :param pulumi.Input['GcpIntegrationsAppEngineArgs'] app_engine: App Engine integration. See Integration blocks below for details.
517
516
  :param pulumi.Input['GcpIntegrationsBigQueryArgs'] big_query: Biq Query integration. See Integration blocks below for details.
@@ -527,7 +526,7 @@ class _GcpIntegrationsState:
527
526
  :param pulumi.Input['GcpIntegrationsFunctionsArgs'] functions: Functions integration. See Integration blocks below for details.
528
527
  :param pulumi.Input['GcpIntegrationsInterconnectArgs'] interconnect: Interconnect integration. See Integration blocks below for details.
529
528
  :param pulumi.Input['GcpIntegrationsKubernetesArgs'] kubernetes: Kubernetes integration. See Integration blocks below for details.
530
- :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
529
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
531
530
 
532
531
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
533
532
  :param pulumi.Input['GcpIntegrationsLoadBalancingArgs'] load_balancing: Load Balancing integration. See Integration blocks below for details.
@@ -599,19 +598,19 @@ class _GcpIntegrationsState:
599
598
  if vpc_access is not None:
600
599
  pulumi.set(__self__, "vpc_access", vpc_access)
601
600
 
602
- @property
601
+ @_builtins.property
603
602
  @pulumi.getter(name="accountId")
604
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
603
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
605
604
  """
606
605
  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`.
607
606
  """
608
607
  return pulumi.get(self, "account_id")
609
608
 
610
609
  @account_id.setter
611
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
610
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
612
611
  pulumi.set(self, "account_id", value)
613
612
 
614
- @property
613
+ @_builtins.property
615
614
  @pulumi.getter(name="alloyDb")
616
615
  def alloy_db(self) -> Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]:
617
616
  """
@@ -623,7 +622,7 @@ class _GcpIntegrationsState:
623
622
  def alloy_db(self, value: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]):
624
623
  pulumi.set(self, "alloy_db", value)
625
624
 
626
- @property
625
+ @_builtins.property
627
626
  @pulumi.getter(name="appEngine")
628
627
  def app_engine(self) -> Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]:
629
628
  """
@@ -635,7 +634,7 @@ class _GcpIntegrationsState:
635
634
  def app_engine(self, value: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]):
636
635
  pulumi.set(self, "app_engine", value)
637
636
 
638
- @property
637
+ @_builtins.property
639
638
  @pulumi.getter(name="bigQuery")
640
639
  def big_query(self) -> Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]:
641
640
  """
@@ -647,7 +646,7 @@ class _GcpIntegrationsState:
647
646
  def big_query(self, value: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]):
648
647
  pulumi.set(self, "big_query", value)
649
648
 
650
- @property
649
+ @_builtins.property
651
650
  @pulumi.getter(name="bigTable")
652
651
  def big_table(self) -> Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]:
653
652
  """
@@ -659,7 +658,7 @@ class _GcpIntegrationsState:
659
658
  def big_table(self, value: Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]):
660
659
  pulumi.set(self, "big_table", value)
661
660
 
662
- @property
661
+ @_builtins.property
663
662
  @pulumi.getter
664
663
  def composer(self) -> Optional[pulumi.Input['GcpIntegrationsComposerArgs']]:
665
664
  """
@@ -671,7 +670,7 @@ class _GcpIntegrationsState:
671
670
  def composer(self, value: Optional[pulumi.Input['GcpIntegrationsComposerArgs']]):
672
671
  pulumi.set(self, "composer", value)
673
672
 
674
- @property
673
+ @_builtins.property
675
674
  @pulumi.getter(name="dataFlow")
676
675
  def data_flow(self) -> Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]:
677
676
  """
@@ -683,7 +682,7 @@ class _GcpIntegrationsState:
683
682
  def data_flow(self, value: Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]):
684
683
  pulumi.set(self, "data_flow", value)
685
684
 
686
- @property
685
+ @_builtins.property
687
686
  @pulumi.getter(name="dataProc")
688
687
  def data_proc(self) -> Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]:
689
688
  """
@@ -695,7 +694,7 @@ class _GcpIntegrationsState:
695
694
  def data_proc(self, value: Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]):
696
695
  pulumi.set(self, "data_proc", value)
697
696
 
698
- @property
697
+ @_builtins.property
699
698
  @pulumi.getter(name="dataStore")
700
699
  def data_store(self) -> Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]:
701
700
  """
@@ -707,7 +706,7 @@ class _GcpIntegrationsState:
707
706
  def data_store(self, value: Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]):
708
707
  pulumi.set(self, "data_store", value)
709
708
 
710
- @property
709
+ @_builtins.property
711
710
  @pulumi.getter(name="fireBaseDatabase")
712
711
  def fire_base_database(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]:
713
712
  """
@@ -719,7 +718,7 @@ class _GcpIntegrationsState:
719
718
  def fire_base_database(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]):
720
719
  pulumi.set(self, "fire_base_database", value)
721
720
 
722
- @property
721
+ @_builtins.property
723
722
  @pulumi.getter(name="fireBaseHosting")
724
723
  def fire_base_hosting(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]:
725
724
  """
@@ -731,7 +730,7 @@ class _GcpIntegrationsState:
731
730
  def fire_base_hosting(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]):
732
731
  pulumi.set(self, "fire_base_hosting", value)
733
732
 
734
- @property
733
+ @_builtins.property
735
734
  @pulumi.getter(name="fireBaseStorage")
736
735
  def fire_base_storage(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]:
737
736
  """
@@ -743,7 +742,7 @@ class _GcpIntegrationsState:
743
742
  def fire_base_storage(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]):
744
743
  pulumi.set(self, "fire_base_storage", value)
745
744
 
746
- @property
745
+ @_builtins.property
747
746
  @pulumi.getter(name="fireStore")
748
747
  def fire_store(self) -> Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]:
749
748
  """
@@ -755,7 +754,7 @@ class _GcpIntegrationsState:
755
754
  def fire_store(self, value: Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]):
756
755
  pulumi.set(self, "fire_store", value)
757
756
 
758
- @property
757
+ @_builtins.property
759
758
  @pulumi.getter
760
759
  def functions(self) -> Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]:
761
760
  """
@@ -767,7 +766,7 @@ class _GcpIntegrationsState:
767
766
  def functions(self, value: Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]):
768
767
  pulumi.set(self, "functions", value)
769
768
 
770
- @property
769
+ @_builtins.property
771
770
  @pulumi.getter
772
771
  def interconnect(self) -> Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]:
773
772
  """
@@ -779,7 +778,7 @@ class _GcpIntegrationsState:
779
778
  def interconnect(self, value: Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]):
780
779
  pulumi.set(self, "interconnect", value)
781
780
 
782
- @property
781
+ @_builtins.property
783
782
  @pulumi.getter
784
783
  def kubernetes(self) -> Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]:
785
784
  """
@@ -791,9 +790,9 @@ class _GcpIntegrationsState:
791
790
  def kubernetes(self, value: Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]):
792
791
  pulumi.set(self, "kubernetes", value)
793
792
 
794
- @property
793
+ @_builtins.property
795
794
  @pulumi.getter(name="linkedAccountId")
796
- def linked_account_id(self) -> Optional[pulumi.Input[builtins.str]]:
795
+ def linked_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
797
796
  """
798
797
  The ID of the linked GCP account in New Relic.
799
798
 
@@ -802,10 +801,10 @@ class _GcpIntegrationsState:
802
801
  return pulumi.get(self, "linked_account_id")
803
802
 
804
803
  @linked_account_id.setter
805
- def linked_account_id(self, value: Optional[pulumi.Input[builtins.str]]):
804
+ def linked_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
806
805
  pulumi.set(self, "linked_account_id", value)
807
806
 
808
- @property
807
+ @_builtins.property
809
808
  @pulumi.getter(name="loadBalancing")
810
809
  def load_balancing(self) -> Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]:
811
810
  """
@@ -817,7 +816,7 @@ class _GcpIntegrationsState:
817
816
  def load_balancing(self, value: Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]):
818
817
  pulumi.set(self, "load_balancing", value)
819
818
 
820
- @property
819
+ @_builtins.property
821
820
  @pulumi.getter(name="memCache")
822
821
  def mem_cache(self) -> Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]:
823
822
  """
@@ -829,7 +828,7 @@ class _GcpIntegrationsState:
829
828
  def mem_cache(self, value: Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]):
830
829
  pulumi.set(self, "mem_cache", value)
831
830
 
832
- @property
831
+ @_builtins.property
833
832
  @pulumi.getter(name="pubSub")
834
833
  def pub_sub(self) -> Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]:
835
834
  """
@@ -841,7 +840,7 @@ class _GcpIntegrationsState:
841
840
  def pub_sub(self, value: Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]):
842
841
  pulumi.set(self, "pub_sub", value)
843
842
 
844
- @property
843
+ @_builtins.property
845
844
  @pulumi.getter
846
845
  def redis(self) -> Optional[pulumi.Input['GcpIntegrationsRedisArgs']]:
847
846
  """
@@ -853,7 +852,7 @@ class _GcpIntegrationsState:
853
852
  def redis(self, value: Optional[pulumi.Input['GcpIntegrationsRedisArgs']]):
854
853
  pulumi.set(self, "redis", value)
855
854
 
856
- @property
855
+ @_builtins.property
857
856
  @pulumi.getter
858
857
  def router(self) -> Optional[pulumi.Input['GcpIntegrationsRouterArgs']]:
859
858
  """
@@ -865,7 +864,7 @@ class _GcpIntegrationsState:
865
864
  def router(self, value: Optional[pulumi.Input['GcpIntegrationsRouterArgs']]):
866
865
  pulumi.set(self, "router", value)
867
866
 
868
- @property
867
+ @_builtins.property
869
868
  @pulumi.getter
870
869
  def run(self) -> Optional[pulumi.Input['GcpIntegrationsRunArgs']]:
871
870
  """
@@ -877,7 +876,7 @@ class _GcpIntegrationsState:
877
876
  def run(self, value: Optional[pulumi.Input['GcpIntegrationsRunArgs']]):
878
877
  pulumi.set(self, "run", value)
879
878
 
880
- @property
879
+ @_builtins.property
881
880
  @pulumi.getter
882
881
  def spanner(self) -> Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]:
883
882
  """
@@ -889,7 +888,7 @@ class _GcpIntegrationsState:
889
888
  def spanner(self, value: Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]):
890
889
  pulumi.set(self, "spanner", value)
891
890
 
892
- @property
891
+ @_builtins.property
893
892
  @pulumi.getter
894
893
  def sql(self) -> Optional[pulumi.Input['GcpIntegrationsSqlArgs']]:
895
894
  """
@@ -901,7 +900,7 @@ class _GcpIntegrationsState:
901
900
  def sql(self, value: Optional[pulumi.Input['GcpIntegrationsSqlArgs']]):
902
901
  pulumi.set(self, "sql", value)
903
902
 
904
- @property
903
+ @_builtins.property
905
904
  @pulumi.getter
906
905
  def storage(self) -> Optional[pulumi.Input['GcpIntegrationsStorageArgs']]:
907
906
  """
@@ -913,7 +912,7 @@ class _GcpIntegrationsState:
913
912
  def storage(self, value: Optional[pulumi.Input['GcpIntegrationsStorageArgs']]):
914
913
  pulumi.set(self, "storage", value)
915
914
 
916
- @property
915
+ @_builtins.property
917
916
  @pulumi.getter(name="virtualMachines")
918
917
  def virtual_machines(self) -> Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]:
919
918
  """
@@ -925,7 +924,7 @@ class _GcpIntegrationsState:
925
924
  def virtual_machines(self, value: Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]):
926
925
  pulumi.set(self, "virtual_machines", value)
927
926
 
928
- @property
927
+ @_builtins.property
929
928
  @pulumi.getter(name="vpcAccess")
930
929
  def vpc_access(self) -> Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']]:
931
930
  """
@@ -944,7 +943,7 @@ class GcpIntegrations(pulumi.CustomResource):
944
943
  def __init__(__self__,
945
944
  resource_name: str,
946
945
  opts: Optional[pulumi.ResourceOptions] = None,
947
- account_id: Optional[pulumi.Input[builtins.str]] = None,
946
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
948
947
  alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
949
948
  app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
950
949
  big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
@@ -960,7 +959,7 @@ class GcpIntegrations(pulumi.CustomResource):
960
959
  functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
961
960
  interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
962
961
  kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
963
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
962
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
964
963
  load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
965
964
  mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
966
965
  pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
@@ -1088,7 +1087,7 @@ class GcpIntegrations(pulumi.CustomResource):
1088
1087
 
1089
1088
  :param str resource_name: The name of the resource.
1090
1089
  :param pulumi.ResourceOptions opts: Options for the resource.
1091
- :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`.
1090
+ :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`.
1092
1091
  :param pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']] alloy_db: Alloy DB integration. See Integration blocks below for details.
1093
1092
  :param pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']] app_engine: App Engine integration. See Integration blocks below for details.
1094
1093
  :param pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']] big_query: Biq Query integration. See Integration blocks below for details.
@@ -1104,7 +1103,7 @@ class GcpIntegrations(pulumi.CustomResource):
1104
1103
  :param pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']] functions: Functions integration. See Integration blocks below for details.
1105
1104
  :param pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']] interconnect: Interconnect integration. See Integration blocks below for details.
1106
1105
  :param pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']] kubernetes: Kubernetes integration. See Integration blocks below for details.
1107
- :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
1106
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
1108
1107
 
1109
1108
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
1110
1109
  :param pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']] load_balancing: Load Balancing integration. See Integration blocks below for details.
@@ -1253,7 +1252,7 @@ class GcpIntegrations(pulumi.CustomResource):
1253
1252
  def _internal_init(__self__,
1254
1253
  resource_name: str,
1255
1254
  opts: Optional[pulumi.ResourceOptions] = None,
1256
- account_id: Optional[pulumi.Input[builtins.str]] = None,
1255
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1257
1256
  alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
1258
1257
  app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
1259
1258
  big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
@@ -1269,7 +1268,7 @@ class GcpIntegrations(pulumi.CustomResource):
1269
1268
  functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
1270
1269
  interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
1271
1270
  kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
1272
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1271
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1273
1272
  load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
1274
1273
  mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
1275
1274
  pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
@@ -1330,7 +1329,7 @@ class GcpIntegrations(pulumi.CustomResource):
1330
1329
  def get(resource_name: str,
1331
1330
  id: pulumi.Input[str],
1332
1331
  opts: Optional[pulumi.ResourceOptions] = None,
1333
- account_id: Optional[pulumi.Input[builtins.str]] = None,
1332
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
1334
1333
  alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
1335
1334
  app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
1336
1335
  big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
@@ -1346,7 +1345,7 @@ class GcpIntegrations(pulumi.CustomResource):
1346
1345
  functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
1347
1346
  interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
1348
1347
  kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
1349
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1348
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1350
1349
  load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
1351
1350
  mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
1352
1351
  pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
@@ -1365,7 +1364,7 @@ class GcpIntegrations(pulumi.CustomResource):
1365
1364
  :param str resource_name: The unique name of the resulting resource.
1366
1365
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1367
1366
  :param pulumi.ResourceOptions opts: Options for the resource.
1368
- :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`.
1367
+ :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`.
1369
1368
  :param pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']] alloy_db: Alloy DB integration. See Integration blocks below for details.
1370
1369
  :param pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']] app_engine: App Engine integration. See Integration blocks below for details.
1371
1370
  :param pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']] big_query: Biq Query integration. See Integration blocks below for details.
@@ -1381,7 +1380,7 @@ class GcpIntegrations(pulumi.CustomResource):
1381
1380
  :param pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']] functions: Functions integration. See Integration blocks below for details.
1382
1381
  :param pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']] interconnect: Interconnect integration. See Integration blocks below for details.
1383
1382
  :param pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']] kubernetes: Kubernetes integration. See Integration blocks below for details.
1384
- :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
1383
+ :param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
1385
1384
 
1386
1385
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
1387
1386
  :param pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']] load_balancing: Load Balancing integration. See Integration blocks below for details.
@@ -1430,15 +1429,15 @@ class GcpIntegrations(pulumi.CustomResource):
1430
1429
  __props__.__dict__["vpc_access"] = vpc_access
1431
1430
  return GcpIntegrations(resource_name, opts=opts, __props__=__props__)
1432
1431
 
1433
- @property
1432
+ @_builtins.property
1434
1433
  @pulumi.getter(name="accountId")
1435
- def account_id(self) -> pulumi.Output[builtins.str]:
1434
+ def account_id(self) -> pulumi.Output[_builtins.str]:
1436
1435
  """
1437
1436
  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`.
1438
1437
  """
1439
1438
  return pulumi.get(self, "account_id")
1440
1439
 
1441
- @property
1440
+ @_builtins.property
1442
1441
  @pulumi.getter(name="alloyDb")
1443
1442
  def alloy_db(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsAlloyDb']]:
1444
1443
  """
@@ -1446,7 +1445,7 @@ class GcpIntegrations(pulumi.CustomResource):
1446
1445
  """
1447
1446
  return pulumi.get(self, "alloy_db")
1448
1447
 
1449
- @property
1448
+ @_builtins.property
1450
1449
  @pulumi.getter(name="appEngine")
1451
1450
  def app_engine(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsAppEngine']]:
1452
1451
  """
@@ -1454,7 +1453,7 @@ class GcpIntegrations(pulumi.CustomResource):
1454
1453
  """
1455
1454
  return pulumi.get(self, "app_engine")
1456
1455
 
1457
- @property
1456
+ @_builtins.property
1458
1457
  @pulumi.getter(name="bigQuery")
1459
1458
  def big_query(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsBigQuery']]:
1460
1459
  """
@@ -1462,7 +1461,7 @@ class GcpIntegrations(pulumi.CustomResource):
1462
1461
  """
1463
1462
  return pulumi.get(self, "big_query")
1464
1463
 
1465
- @property
1464
+ @_builtins.property
1466
1465
  @pulumi.getter(name="bigTable")
1467
1466
  def big_table(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsBigTable']]:
1468
1467
  """
@@ -1470,7 +1469,7 @@ class GcpIntegrations(pulumi.CustomResource):
1470
1469
  """
1471
1470
  return pulumi.get(self, "big_table")
1472
1471
 
1473
- @property
1472
+ @_builtins.property
1474
1473
  @pulumi.getter
1475
1474
  def composer(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsComposer']]:
1476
1475
  """
@@ -1478,7 +1477,7 @@ class GcpIntegrations(pulumi.CustomResource):
1478
1477
  """
1479
1478
  return pulumi.get(self, "composer")
1480
1479
 
1481
- @property
1480
+ @_builtins.property
1482
1481
  @pulumi.getter(name="dataFlow")
1483
1482
  def data_flow(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsDataFlow']]:
1484
1483
  """
@@ -1486,7 +1485,7 @@ class GcpIntegrations(pulumi.CustomResource):
1486
1485
  """
1487
1486
  return pulumi.get(self, "data_flow")
1488
1487
 
1489
- @property
1488
+ @_builtins.property
1490
1489
  @pulumi.getter(name="dataProc")
1491
1490
  def data_proc(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsDataProc']]:
1492
1491
  """
@@ -1494,7 +1493,7 @@ class GcpIntegrations(pulumi.CustomResource):
1494
1493
  """
1495
1494
  return pulumi.get(self, "data_proc")
1496
1495
 
1497
- @property
1496
+ @_builtins.property
1498
1497
  @pulumi.getter(name="dataStore")
1499
1498
  def data_store(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsDataStore']]:
1500
1499
  """
@@ -1502,7 +1501,7 @@ class GcpIntegrations(pulumi.CustomResource):
1502
1501
  """
1503
1502
  return pulumi.get(self, "data_store")
1504
1503
 
1505
- @property
1504
+ @_builtins.property
1506
1505
  @pulumi.getter(name="fireBaseDatabase")
1507
1506
  def fire_base_database(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireBaseDatabase']]:
1508
1507
  """
@@ -1510,7 +1509,7 @@ class GcpIntegrations(pulumi.CustomResource):
1510
1509
  """
1511
1510
  return pulumi.get(self, "fire_base_database")
1512
1511
 
1513
- @property
1512
+ @_builtins.property
1514
1513
  @pulumi.getter(name="fireBaseHosting")
1515
1514
  def fire_base_hosting(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireBaseHosting']]:
1516
1515
  """
@@ -1518,7 +1517,7 @@ class GcpIntegrations(pulumi.CustomResource):
1518
1517
  """
1519
1518
  return pulumi.get(self, "fire_base_hosting")
1520
1519
 
1521
- @property
1520
+ @_builtins.property
1522
1521
  @pulumi.getter(name="fireBaseStorage")
1523
1522
  def fire_base_storage(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireBaseStorage']]:
1524
1523
  """
@@ -1526,7 +1525,7 @@ class GcpIntegrations(pulumi.CustomResource):
1526
1525
  """
1527
1526
  return pulumi.get(self, "fire_base_storage")
1528
1527
 
1529
- @property
1528
+ @_builtins.property
1530
1529
  @pulumi.getter(name="fireStore")
1531
1530
  def fire_store(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireStore']]:
1532
1531
  """
@@ -1534,7 +1533,7 @@ class GcpIntegrations(pulumi.CustomResource):
1534
1533
  """
1535
1534
  return pulumi.get(self, "fire_store")
1536
1535
 
1537
- @property
1536
+ @_builtins.property
1538
1537
  @pulumi.getter
1539
1538
  def functions(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFunctions']]:
1540
1539
  """
@@ -1542,7 +1541,7 @@ class GcpIntegrations(pulumi.CustomResource):
1542
1541
  """
1543
1542
  return pulumi.get(self, "functions")
1544
1543
 
1545
- @property
1544
+ @_builtins.property
1546
1545
  @pulumi.getter
1547
1546
  def interconnect(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsInterconnect']]:
1548
1547
  """
@@ -1550,7 +1549,7 @@ class GcpIntegrations(pulumi.CustomResource):
1550
1549
  """
1551
1550
  return pulumi.get(self, "interconnect")
1552
1551
 
1553
- @property
1552
+ @_builtins.property
1554
1553
  @pulumi.getter
1555
1554
  def kubernetes(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsKubernetes']]:
1556
1555
  """
@@ -1558,9 +1557,9 @@ class GcpIntegrations(pulumi.CustomResource):
1558
1557
  """
1559
1558
  return pulumi.get(self, "kubernetes")
1560
1559
 
1561
- @property
1560
+ @_builtins.property
1562
1561
  @pulumi.getter(name="linkedAccountId")
1563
- def linked_account_id(self) -> pulumi.Output[builtins.str]:
1562
+ def linked_account_id(self) -> pulumi.Output[_builtins.str]:
1564
1563
  """
1565
1564
  The ID of the linked GCP account in New Relic.
1566
1565
 
@@ -1568,7 +1567,7 @@ class GcpIntegrations(pulumi.CustomResource):
1568
1567
  """
1569
1568
  return pulumi.get(self, "linked_account_id")
1570
1569
 
1571
- @property
1570
+ @_builtins.property
1572
1571
  @pulumi.getter(name="loadBalancing")
1573
1572
  def load_balancing(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsLoadBalancing']]:
1574
1573
  """
@@ -1576,7 +1575,7 @@ class GcpIntegrations(pulumi.CustomResource):
1576
1575
  """
1577
1576
  return pulumi.get(self, "load_balancing")
1578
1577
 
1579
- @property
1578
+ @_builtins.property
1580
1579
  @pulumi.getter(name="memCache")
1581
1580
  def mem_cache(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsMemCache']]:
1582
1581
  """
@@ -1584,7 +1583,7 @@ class GcpIntegrations(pulumi.CustomResource):
1584
1583
  """
1585
1584
  return pulumi.get(self, "mem_cache")
1586
1585
 
1587
- @property
1586
+ @_builtins.property
1588
1587
  @pulumi.getter(name="pubSub")
1589
1588
  def pub_sub(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsPubSub']]:
1590
1589
  """
@@ -1592,7 +1591,7 @@ class GcpIntegrations(pulumi.CustomResource):
1592
1591
  """
1593
1592
  return pulumi.get(self, "pub_sub")
1594
1593
 
1595
- @property
1594
+ @_builtins.property
1596
1595
  @pulumi.getter
1597
1596
  def redis(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsRedis']]:
1598
1597
  """
@@ -1600,7 +1599,7 @@ class GcpIntegrations(pulumi.CustomResource):
1600
1599
  """
1601
1600
  return pulumi.get(self, "redis")
1602
1601
 
1603
- @property
1602
+ @_builtins.property
1604
1603
  @pulumi.getter
1605
1604
  def router(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsRouter']]:
1606
1605
  """
@@ -1608,7 +1607,7 @@ class GcpIntegrations(pulumi.CustomResource):
1608
1607
  """
1609
1608
  return pulumi.get(self, "router")
1610
1609
 
1611
- @property
1610
+ @_builtins.property
1612
1611
  @pulumi.getter
1613
1612
  def run(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsRun']]:
1614
1613
  """
@@ -1616,7 +1615,7 @@ class GcpIntegrations(pulumi.CustomResource):
1616
1615
  """
1617
1616
  return pulumi.get(self, "run")
1618
1617
 
1619
- @property
1618
+ @_builtins.property
1620
1619
  @pulumi.getter
1621
1620
  def spanner(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsSpanner']]:
1622
1621
  """
@@ -1624,7 +1623,7 @@ class GcpIntegrations(pulumi.CustomResource):
1624
1623
  """
1625
1624
  return pulumi.get(self, "spanner")
1626
1625
 
1627
- @property
1626
+ @_builtins.property
1628
1627
  @pulumi.getter
1629
1628
  def sql(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsSql']]:
1630
1629
  """
@@ -1632,7 +1631,7 @@ class GcpIntegrations(pulumi.CustomResource):
1632
1631
  """
1633
1632
  return pulumi.get(self, "sql")
1634
1633
 
1635
- @property
1634
+ @_builtins.property
1636
1635
  @pulumi.getter
1637
1636
  def storage(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsStorage']]:
1638
1637
  """
@@ -1640,7 +1639,7 @@ class GcpIntegrations(pulumi.CustomResource):
1640
1639
  """
1641
1640
  return pulumi.get(self, "storage")
1642
1641
 
1643
- @property
1642
+ @_builtins.property
1644
1643
  @pulumi.getter(name="virtualMachines")
1645
1644
  def virtual_machines(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsVirtualMachines']]:
1646
1645
  """
@@ -1648,7 +1647,7 @@ class GcpIntegrations(pulumi.CustomResource):
1648
1647
  """
1649
1648
  return pulumi.get(self, "virtual_machines")
1650
1649
 
1651
- @property
1650
+ @_builtins.property
1652
1651
  @pulumi.getter(name="vpcAccess")
1653
1652
  def vpc_access(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsVpcAccess']]:
1654
1653
  """