pulumi-newrelic 5.48.0a1752732890__py3-none-any.whl → 5.58.0a1766556761__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.
Files changed (91) hide show
  1. pulumi_newrelic/__init__.py +18 -1
  2. pulumi_newrelic/_inputs.py +4269 -3795
  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 +2183 -2130
  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 +194 -195
  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 +1468 -1418
  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 +52 -21
  31. pulumi_newrelic/get_alert_policy.py +51 -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 +29 -30
  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 +159 -160
  53. pulumi_newrelic/notification_destination.py +114 -129
  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 +2991 -2673
  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.48.0a1752732890.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/METADATA +1 -1
  88. pulumi_newrelic-5.58.0a1766556761.dist-info/RECORD +92 -0
  89. pulumi_newrelic-5.48.0a1752732890.dist-info/RECORD +0 -90
  90. {pulumi_newrelic-5.48.0a1752732890.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/WHEEL +0 -0
  91. {pulumi_newrelic-5.48.0a1752732890.dist-info → pulumi_newrelic-5.58.0a1766556761.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__ = ['AwsGovcloudIntegrationsArgs', 'AwsGovcloudIntegrations']
22
21
  @pulumi.input_type
23
22
  class AwsGovcloudIntegrationsArgs:
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
  alb: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']] = None,
28
27
  api_gateway: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']] = None,
29
28
  auto_scaling: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']] = None,
@@ -46,8 +45,8 @@ class AwsGovcloudIntegrationsArgs:
46
45
  sqs: Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']] = None):
47
46
  """
48
47
  The set of arguments for constructing a AwsGovcloudIntegrations resource.
49
- :param pulumi.Input[builtins.str] linked_account_id: The access key of the AwsGovCloud.
50
- :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`.
48
+ :param pulumi.Input[_builtins.str] linked_account_id: The access key of the AwsGovCloud.
49
+ :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`.
51
50
  :param pulumi.Input['AwsGovcloudIntegrationsAlbArgs'] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
52
51
  :param pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs'] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
53
52
  :param pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs'] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -113,31 +112,31 @@ class AwsGovcloudIntegrationsArgs:
113
112
  if sqs is not None:
114
113
  pulumi.set(__self__, "sqs", sqs)
115
114
 
116
- @property
115
+ @_builtins.property
117
116
  @pulumi.getter(name="linkedAccountId")
118
- def linked_account_id(self) -> pulumi.Input[builtins.str]:
117
+ def linked_account_id(self) -> pulumi.Input[_builtins.str]:
119
118
  """
120
119
  The access key of the AwsGovCloud.
121
120
  """
122
121
  return pulumi.get(self, "linked_account_id")
123
122
 
124
123
  @linked_account_id.setter
125
- def linked_account_id(self, value: pulumi.Input[builtins.str]):
124
+ def linked_account_id(self, value: pulumi.Input[_builtins.str]):
126
125
  pulumi.set(self, "linked_account_id", value)
127
126
 
128
- @property
127
+ @_builtins.property
129
128
  @pulumi.getter(name="accountId")
130
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
129
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
131
130
  """
132
131
  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`.
133
132
  """
134
133
  return pulumi.get(self, "account_id")
135
134
 
136
135
  @account_id.setter
137
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
136
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
138
137
  pulumi.set(self, "account_id", value)
139
138
 
140
- @property
139
+ @_builtins.property
141
140
  @pulumi.getter
142
141
  def alb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]:
143
142
  """
@@ -149,7 +148,7 @@ class AwsGovcloudIntegrationsArgs:
149
148
  def alb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]):
150
149
  pulumi.set(self, "alb", value)
151
150
 
152
- @property
151
+ @_builtins.property
153
152
  @pulumi.getter(name="apiGateway")
154
153
  def api_gateway(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]:
155
154
  """
@@ -161,7 +160,7 @@ class AwsGovcloudIntegrationsArgs:
161
160
  def api_gateway(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]):
162
161
  pulumi.set(self, "api_gateway", value)
163
162
 
164
- @property
163
+ @_builtins.property
165
164
  @pulumi.getter(name="autoScaling")
166
165
  def auto_scaling(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]:
167
166
  """
@@ -173,7 +172,7 @@ class AwsGovcloudIntegrationsArgs:
173
172
  def auto_scaling(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]):
174
173
  pulumi.set(self, "auto_scaling", value)
175
174
 
176
- @property
175
+ @_builtins.property
177
176
  @pulumi.getter(name="awsDirectConnect")
178
177
  def aws_direct_connect(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]:
179
178
  """
@@ -185,7 +184,7 @@ class AwsGovcloudIntegrationsArgs:
185
184
  def aws_direct_connect(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]):
186
185
  pulumi.set(self, "aws_direct_connect", value)
187
186
 
188
- @property
187
+ @_builtins.property
189
188
  @pulumi.getter(name="awsStates")
190
189
  def aws_states(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]:
191
190
  """
@@ -197,7 +196,7 @@ class AwsGovcloudIntegrationsArgs:
197
196
  def aws_states(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]):
198
197
  pulumi.set(self, "aws_states", value)
199
198
 
200
- @property
199
+ @_builtins.property
201
200
  @pulumi.getter
202
201
  def cloudtrail(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]:
203
202
  """
@@ -209,7 +208,7 @@ class AwsGovcloudIntegrationsArgs:
209
208
  def cloudtrail(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]):
210
209
  pulumi.set(self, "cloudtrail", value)
211
210
 
212
- @property
211
+ @_builtins.property
213
212
  @pulumi.getter(name="dynamoDb")
214
213
  def dynamo_db(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]:
215
214
  """
@@ -221,7 +220,7 @@ class AwsGovcloudIntegrationsArgs:
221
220
  def dynamo_db(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]):
222
221
  pulumi.set(self, "dynamo_db", value)
223
222
 
224
- @property
223
+ @_builtins.property
225
224
  @pulumi.getter
226
225
  def ebs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]:
227
226
  """
@@ -233,7 +232,7 @@ class AwsGovcloudIntegrationsArgs:
233
232
  def ebs(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]):
234
233
  pulumi.set(self, "ebs", value)
235
234
 
236
- @property
235
+ @_builtins.property
237
236
  @pulumi.getter
238
237
  def ec2(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]:
239
238
  """
@@ -245,7 +244,7 @@ class AwsGovcloudIntegrationsArgs:
245
244
  def ec2(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]):
246
245
  pulumi.set(self, "ec2", value)
247
246
 
248
- @property
247
+ @_builtins.property
249
248
  @pulumi.getter(name="elasticSearch")
250
249
  def elastic_search(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]:
251
250
  """
@@ -257,7 +256,7 @@ class AwsGovcloudIntegrationsArgs:
257
256
  def elastic_search(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]):
258
257
  pulumi.set(self, "elastic_search", value)
259
258
 
260
- @property
259
+ @_builtins.property
261
260
  @pulumi.getter
262
261
  def elb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]:
263
262
  """
@@ -269,7 +268,7 @@ class AwsGovcloudIntegrationsArgs:
269
268
  def elb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]):
270
269
  pulumi.set(self, "elb", value)
271
270
 
272
- @property
271
+ @_builtins.property
273
272
  @pulumi.getter
274
273
  def emr(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]:
275
274
  """
@@ -281,7 +280,7 @@ class AwsGovcloudIntegrationsArgs:
281
280
  def emr(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]):
282
281
  pulumi.set(self, "emr", value)
283
282
 
284
- @property
283
+ @_builtins.property
285
284
  @pulumi.getter
286
285
  def iam(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]:
287
286
  """
@@ -293,7 +292,7 @@ class AwsGovcloudIntegrationsArgs:
293
292
  def iam(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]):
294
293
  pulumi.set(self, "iam", value)
295
294
 
296
- @property
295
+ @_builtins.property
297
296
  @pulumi.getter(name="lambda")
298
297
  def lambda_(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]:
299
298
  """
@@ -305,7 +304,7 @@ class AwsGovcloudIntegrationsArgs:
305
304
  def lambda_(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]):
306
305
  pulumi.set(self, "lambda_", value)
307
306
 
308
- @property
307
+ @_builtins.property
309
308
  @pulumi.getter
310
309
  def rds(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]:
311
310
  """
@@ -317,7 +316,7 @@ class AwsGovcloudIntegrationsArgs:
317
316
  def rds(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]):
318
317
  pulumi.set(self, "rds", value)
319
318
 
320
- @property
319
+ @_builtins.property
321
320
  @pulumi.getter(name="redShift")
322
321
  def red_shift(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]:
323
322
  """
@@ -329,7 +328,7 @@ class AwsGovcloudIntegrationsArgs:
329
328
  def red_shift(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]):
330
329
  pulumi.set(self, "red_shift", value)
331
330
 
332
- @property
331
+ @_builtins.property
333
332
  @pulumi.getter
334
333
  def route53(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]:
335
334
  """
@@ -341,7 +340,7 @@ class AwsGovcloudIntegrationsArgs:
341
340
  def route53(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]):
342
341
  pulumi.set(self, "route53", value)
343
342
 
344
- @property
343
+ @_builtins.property
345
344
  @pulumi.getter
346
345
  def s3(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]:
347
346
  """
@@ -353,7 +352,7 @@ class AwsGovcloudIntegrationsArgs:
353
352
  def s3(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]):
354
353
  pulumi.set(self, "s3", value)
355
354
 
356
- @property
355
+ @_builtins.property
357
356
  @pulumi.getter
358
357
  def sns(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]:
359
358
  """
@@ -365,7 +364,7 @@ class AwsGovcloudIntegrationsArgs:
365
364
  def sns(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]):
366
365
  pulumi.set(self, "sns", value)
367
366
 
368
- @property
367
+ @_builtins.property
369
368
  @pulumi.getter
370
369
  def sqs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']]:
371
370
  """
@@ -381,7 +380,7 @@ class AwsGovcloudIntegrationsArgs:
381
380
  @pulumi.input_type
382
381
  class _AwsGovcloudIntegrationsState:
383
382
  def __init__(__self__, *,
384
- account_id: Optional[pulumi.Input[builtins.str]] = None,
383
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
385
384
  alb: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']] = None,
386
385
  api_gateway: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']] = None,
387
386
  auto_scaling: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']] = None,
@@ -396,7 +395,7 @@ class _AwsGovcloudIntegrationsState:
396
395
  emr: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']] = None,
397
396
  iam: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']] = None,
398
397
  lambda_: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']] = None,
399
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
398
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
400
399
  rds: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']] = None,
401
400
  red_shift: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']] = None,
402
401
  route53: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']] = None,
@@ -405,7 +404,7 @@ class _AwsGovcloudIntegrationsState:
405
404
  sqs: Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']] = None):
406
405
  """
407
406
  Input properties used for looking up and filtering AwsGovcloudIntegrations resources.
408
- :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`.
407
+ :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`.
409
408
  :param pulumi.Input['AwsGovcloudIntegrationsAlbArgs'] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
410
409
  :param pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs'] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
411
410
  :param pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs'] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -420,7 +419,7 @@ class _AwsGovcloudIntegrationsState:
420
419
  :param pulumi.Input['AwsGovcloudIntegrationsEmrArgs'] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
421
420
  :param pulumi.Input['AwsGovcloudIntegrationsIamArgs'] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
422
421
  :param pulumi.Input['AwsGovcloudIntegrationsLambdaArgs'] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
423
- :param pulumi.Input[builtins.str] linked_account_id: The access key of the AwsGovCloud.
422
+ :param pulumi.Input[_builtins.str] linked_account_id: The access key of the AwsGovCloud.
424
423
  :param pulumi.Input['AwsGovcloudIntegrationsRdsArgs'] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
425
424
  :param pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs'] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
426
425
  :param pulumi.Input['AwsGovcloudIntegrationsRoute53Args'] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
@@ -473,19 +472,19 @@ class _AwsGovcloudIntegrationsState:
473
472
  if sqs is not None:
474
473
  pulumi.set(__self__, "sqs", sqs)
475
474
 
476
- @property
475
+ @_builtins.property
477
476
  @pulumi.getter(name="accountId")
478
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
477
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
479
478
  """
480
479
  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`.
481
480
  """
482
481
  return pulumi.get(self, "account_id")
483
482
 
484
483
  @account_id.setter
485
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
484
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
486
485
  pulumi.set(self, "account_id", value)
487
486
 
488
- @property
487
+ @_builtins.property
489
488
  @pulumi.getter
490
489
  def alb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]:
491
490
  """
@@ -497,7 +496,7 @@ class _AwsGovcloudIntegrationsState:
497
496
  def alb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]):
498
497
  pulumi.set(self, "alb", value)
499
498
 
500
- @property
499
+ @_builtins.property
501
500
  @pulumi.getter(name="apiGateway")
502
501
  def api_gateway(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]:
503
502
  """
@@ -509,7 +508,7 @@ class _AwsGovcloudIntegrationsState:
509
508
  def api_gateway(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]):
510
509
  pulumi.set(self, "api_gateway", value)
511
510
 
512
- @property
511
+ @_builtins.property
513
512
  @pulumi.getter(name="autoScaling")
514
513
  def auto_scaling(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]:
515
514
  """
@@ -521,7 +520,7 @@ class _AwsGovcloudIntegrationsState:
521
520
  def auto_scaling(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]):
522
521
  pulumi.set(self, "auto_scaling", value)
523
522
 
524
- @property
523
+ @_builtins.property
525
524
  @pulumi.getter(name="awsDirectConnect")
526
525
  def aws_direct_connect(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]:
527
526
  """
@@ -533,7 +532,7 @@ class _AwsGovcloudIntegrationsState:
533
532
  def aws_direct_connect(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]):
534
533
  pulumi.set(self, "aws_direct_connect", value)
535
534
 
536
- @property
535
+ @_builtins.property
537
536
  @pulumi.getter(name="awsStates")
538
537
  def aws_states(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]:
539
538
  """
@@ -545,7 +544,7 @@ class _AwsGovcloudIntegrationsState:
545
544
  def aws_states(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]):
546
545
  pulumi.set(self, "aws_states", value)
547
546
 
548
- @property
547
+ @_builtins.property
549
548
  @pulumi.getter
550
549
  def cloudtrail(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]:
551
550
  """
@@ -557,7 +556,7 @@ class _AwsGovcloudIntegrationsState:
557
556
  def cloudtrail(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]):
558
557
  pulumi.set(self, "cloudtrail", value)
559
558
 
560
- @property
559
+ @_builtins.property
561
560
  @pulumi.getter(name="dynamoDb")
562
561
  def dynamo_db(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]:
563
562
  """
@@ -569,7 +568,7 @@ class _AwsGovcloudIntegrationsState:
569
568
  def dynamo_db(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]):
570
569
  pulumi.set(self, "dynamo_db", value)
571
570
 
572
- @property
571
+ @_builtins.property
573
572
  @pulumi.getter
574
573
  def ebs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]:
575
574
  """
@@ -581,7 +580,7 @@ class _AwsGovcloudIntegrationsState:
581
580
  def ebs(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]):
582
581
  pulumi.set(self, "ebs", value)
583
582
 
584
- @property
583
+ @_builtins.property
585
584
  @pulumi.getter
586
585
  def ec2(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]:
587
586
  """
@@ -593,7 +592,7 @@ class _AwsGovcloudIntegrationsState:
593
592
  def ec2(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]):
594
593
  pulumi.set(self, "ec2", value)
595
594
 
596
- @property
595
+ @_builtins.property
597
596
  @pulumi.getter(name="elasticSearch")
598
597
  def elastic_search(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]:
599
598
  """
@@ -605,7 +604,7 @@ class _AwsGovcloudIntegrationsState:
605
604
  def elastic_search(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]):
606
605
  pulumi.set(self, "elastic_search", value)
607
606
 
608
- @property
607
+ @_builtins.property
609
608
  @pulumi.getter
610
609
  def elb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]:
611
610
  """
@@ -617,7 +616,7 @@ class _AwsGovcloudIntegrationsState:
617
616
  def elb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]):
618
617
  pulumi.set(self, "elb", value)
619
618
 
620
- @property
619
+ @_builtins.property
621
620
  @pulumi.getter
622
621
  def emr(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]:
623
622
  """
@@ -629,7 +628,7 @@ class _AwsGovcloudIntegrationsState:
629
628
  def emr(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]):
630
629
  pulumi.set(self, "emr", value)
631
630
 
632
- @property
631
+ @_builtins.property
633
632
  @pulumi.getter
634
633
  def iam(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]:
635
634
  """
@@ -641,7 +640,7 @@ class _AwsGovcloudIntegrationsState:
641
640
  def iam(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]):
642
641
  pulumi.set(self, "iam", value)
643
642
 
644
- @property
643
+ @_builtins.property
645
644
  @pulumi.getter(name="lambda")
646
645
  def lambda_(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]:
647
646
  """
@@ -653,19 +652,19 @@ class _AwsGovcloudIntegrationsState:
653
652
  def lambda_(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]):
654
653
  pulumi.set(self, "lambda_", value)
655
654
 
656
- @property
655
+ @_builtins.property
657
656
  @pulumi.getter(name="linkedAccountId")
658
- def linked_account_id(self) -> Optional[pulumi.Input[builtins.str]]:
657
+ def linked_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
659
658
  """
660
659
  The access key of the AwsGovCloud.
661
660
  """
662
661
  return pulumi.get(self, "linked_account_id")
663
662
 
664
663
  @linked_account_id.setter
665
- def linked_account_id(self, value: Optional[pulumi.Input[builtins.str]]):
664
+ def linked_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
666
665
  pulumi.set(self, "linked_account_id", value)
667
666
 
668
- @property
667
+ @_builtins.property
669
668
  @pulumi.getter
670
669
  def rds(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]:
671
670
  """
@@ -677,7 +676,7 @@ class _AwsGovcloudIntegrationsState:
677
676
  def rds(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]):
678
677
  pulumi.set(self, "rds", value)
679
678
 
680
- @property
679
+ @_builtins.property
681
680
  @pulumi.getter(name="redShift")
682
681
  def red_shift(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]:
683
682
  """
@@ -689,7 +688,7 @@ class _AwsGovcloudIntegrationsState:
689
688
  def red_shift(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]):
690
689
  pulumi.set(self, "red_shift", value)
691
690
 
692
- @property
691
+ @_builtins.property
693
692
  @pulumi.getter
694
693
  def route53(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]:
695
694
  """
@@ -701,7 +700,7 @@ class _AwsGovcloudIntegrationsState:
701
700
  def route53(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]):
702
701
  pulumi.set(self, "route53", value)
703
702
 
704
- @property
703
+ @_builtins.property
705
704
  @pulumi.getter
706
705
  def s3(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]:
707
706
  """
@@ -713,7 +712,7 @@ class _AwsGovcloudIntegrationsState:
713
712
  def s3(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]):
714
713
  pulumi.set(self, "s3", value)
715
714
 
716
- @property
715
+ @_builtins.property
717
716
  @pulumi.getter
718
717
  def sns(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]:
719
718
  """
@@ -725,7 +724,7 @@ class _AwsGovcloudIntegrationsState:
725
724
  def sns(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]):
726
725
  pulumi.set(self, "sns", value)
727
726
 
728
- @property
727
+ @_builtins.property
729
728
  @pulumi.getter
730
729
  def sqs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']]:
731
730
  """
@@ -744,7 +743,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
744
743
  def __init__(__self__,
745
744
  resource_name: str,
746
745
  opts: Optional[pulumi.ResourceOptions] = None,
747
- account_id: Optional[pulumi.Input[builtins.str]] = None,
746
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
748
747
  alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
749
748
  api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
750
749
  auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
@@ -759,7 +758,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
759
758
  emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
760
759
  iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
761
760
  lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
762
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
761
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
763
762
  rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
764
763
  red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
765
764
  route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
@@ -780,6 +779,8 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
780
779
 
781
780
  To pull data from AWSGovCloud, complete the [steps outlined here](https://docs.newrelic.com/docs/infrastructure/amazon-integrations/connect/connect-aws-govcloud-new-relic).
782
781
 
782
+ ## Example Usage
783
+
783
784
  ## Import
784
785
 
785
786
  Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
@@ -792,7 +793,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
792
793
 
793
794
  :param str resource_name: The name of the resource.
794
795
  :param pulumi.ResourceOptions opts: Options for the resource.
795
- :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`.
796
+ :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`.
796
797
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
797
798
  :param pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
798
799
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -807,7 +808,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
807
808
  :param pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
808
809
  :param pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
809
810
  :param pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
810
- :param pulumi.Input[builtins.str] linked_account_id: The access key of the AwsGovCloud.
811
+ :param pulumi.Input[_builtins.str] linked_account_id: The access key of the AwsGovCloud.
811
812
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
812
813
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
813
814
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
@@ -834,6 +835,8 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
834
835
 
835
836
  To pull data from AWSGovCloud, complete the [steps outlined here](https://docs.newrelic.com/docs/infrastructure/amazon-integrations/connect/connect-aws-govcloud-new-relic).
836
837
 
838
+ ## Example Usage
839
+
837
840
  ## Import
838
841
 
839
842
  Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
@@ -859,7 +862,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
859
862
  def _internal_init(__self__,
860
863
  resource_name: str,
861
864
  opts: Optional[pulumi.ResourceOptions] = None,
862
- account_id: Optional[pulumi.Input[builtins.str]] = None,
865
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
863
866
  alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
864
867
  api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
865
868
  auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
@@ -874,7 +877,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
874
877
  emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
875
878
  iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
876
879
  lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
877
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
880
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
878
881
  rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
879
882
  red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
880
883
  route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
@@ -924,7 +927,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
924
927
  def get(resource_name: str,
925
928
  id: pulumi.Input[str],
926
929
  opts: Optional[pulumi.ResourceOptions] = None,
927
- account_id: Optional[pulumi.Input[builtins.str]] = None,
930
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
928
931
  alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
929
932
  api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
930
933
  auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
@@ -939,7 +942,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
939
942
  emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
940
943
  iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
941
944
  lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
942
- linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
945
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
943
946
  rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
944
947
  red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
945
948
  route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
@@ -953,7 +956,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
953
956
  :param str resource_name: The unique name of the resulting resource.
954
957
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
955
958
  :param pulumi.ResourceOptions opts: Options for the resource.
956
- :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`.
959
+ :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`.
957
960
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
958
961
  :param pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
959
962
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -968,7 +971,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
968
971
  :param pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
969
972
  :param pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
970
973
  :param pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
971
- :param pulumi.Input[builtins.str] linked_account_id: The access key of the AwsGovCloud.
974
+ :param pulumi.Input[_builtins.str] linked_account_id: The access key of the AwsGovCloud.
972
975
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
973
976
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
974
977
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
@@ -1004,15 +1007,15 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1004
1007
  __props__.__dict__["sqs"] = sqs
1005
1008
  return AwsGovcloudIntegrations(resource_name, opts=opts, __props__=__props__)
1006
1009
 
1007
- @property
1010
+ @_builtins.property
1008
1011
  @pulumi.getter(name="accountId")
1009
- def account_id(self) -> pulumi.Output[builtins.str]:
1012
+ def account_id(self) -> pulumi.Output[_builtins.str]:
1010
1013
  """
1011
1014
  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`.
1012
1015
  """
1013
1016
  return pulumi.get(self, "account_id")
1014
1017
 
1015
- @property
1018
+ @_builtins.property
1016
1019
  @pulumi.getter
1017
1020
  def alb(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAlb']]:
1018
1021
  """
@@ -1020,7 +1023,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1020
1023
  """
1021
1024
  return pulumi.get(self, "alb")
1022
1025
 
1023
- @property
1026
+ @_builtins.property
1024
1027
  @pulumi.getter(name="apiGateway")
1025
1028
  def api_gateway(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsApiGateway']]:
1026
1029
  """
@@ -1028,7 +1031,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1028
1031
  """
1029
1032
  return pulumi.get(self, "api_gateway")
1030
1033
 
1031
- @property
1034
+ @_builtins.property
1032
1035
  @pulumi.getter(name="autoScaling")
1033
1036
  def auto_scaling(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAutoScaling']]:
1034
1037
  """
@@ -1036,7 +1039,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1036
1039
  """
1037
1040
  return pulumi.get(self, "auto_scaling")
1038
1041
 
1039
- @property
1042
+ @_builtins.property
1040
1043
  @pulumi.getter(name="awsDirectConnect")
1041
1044
  def aws_direct_connect(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAwsDirectConnect']]:
1042
1045
  """
@@ -1044,7 +1047,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1044
1047
  """
1045
1048
  return pulumi.get(self, "aws_direct_connect")
1046
1049
 
1047
- @property
1050
+ @_builtins.property
1048
1051
  @pulumi.getter(name="awsStates")
1049
1052
  def aws_states(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAwsStates']]:
1050
1053
  """
@@ -1052,7 +1055,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1052
1055
  """
1053
1056
  return pulumi.get(self, "aws_states")
1054
1057
 
1055
- @property
1058
+ @_builtins.property
1056
1059
  @pulumi.getter
1057
1060
  def cloudtrail(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsCloudtrail']]:
1058
1061
  """
@@ -1060,7 +1063,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1060
1063
  """
1061
1064
  return pulumi.get(self, "cloudtrail")
1062
1065
 
1063
- @property
1066
+ @_builtins.property
1064
1067
  @pulumi.getter(name="dynamoDb")
1065
1068
  def dynamo_db(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsDynamoDb']]:
1066
1069
  """
@@ -1068,7 +1071,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1068
1071
  """
1069
1072
  return pulumi.get(self, "dynamo_db")
1070
1073
 
1071
- @property
1074
+ @_builtins.property
1072
1075
  @pulumi.getter
1073
1076
  def ebs(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEbs']]:
1074
1077
  """
@@ -1076,7 +1079,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1076
1079
  """
1077
1080
  return pulumi.get(self, "ebs")
1078
1081
 
1079
- @property
1082
+ @_builtins.property
1080
1083
  @pulumi.getter
1081
1084
  def ec2(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEc2']]:
1082
1085
  """
@@ -1084,7 +1087,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1084
1087
  """
1085
1088
  return pulumi.get(self, "ec2")
1086
1089
 
1087
- @property
1090
+ @_builtins.property
1088
1091
  @pulumi.getter(name="elasticSearch")
1089
1092
  def elastic_search(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsElasticSearch']]:
1090
1093
  """
@@ -1092,7 +1095,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1092
1095
  """
1093
1096
  return pulumi.get(self, "elastic_search")
1094
1097
 
1095
- @property
1098
+ @_builtins.property
1096
1099
  @pulumi.getter
1097
1100
  def elb(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsElb']]:
1098
1101
  """
@@ -1100,7 +1103,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1100
1103
  """
1101
1104
  return pulumi.get(self, "elb")
1102
1105
 
1103
- @property
1106
+ @_builtins.property
1104
1107
  @pulumi.getter
1105
1108
  def emr(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEmr']]:
1106
1109
  """
@@ -1108,7 +1111,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1108
1111
  """
1109
1112
  return pulumi.get(self, "emr")
1110
1113
 
1111
- @property
1114
+ @_builtins.property
1112
1115
  @pulumi.getter
1113
1116
  def iam(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsIam']]:
1114
1117
  """
@@ -1116,7 +1119,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1116
1119
  """
1117
1120
  return pulumi.get(self, "iam")
1118
1121
 
1119
- @property
1122
+ @_builtins.property
1120
1123
  @pulumi.getter(name="lambda")
1121
1124
  def lambda_(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsLambda']]:
1122
1125
  """
@@ -1124,15 +1127,15 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1124
1127
  """
1125
1128
  return pulumi.get(self, "lambda_")
1126
1129
 
1127
- @property
1130
+ @_builtins.property
1128
1131
  @pulumi.getter(name="linkedAccountId")
1129
- def linked_account_id(self) -> pulumi.Output[builtins.str]:
1132
+ def linked_account_id(self) -> pulumi.Output[_builtins.str]:
1130
1133
  """
1131
1134
  The access key of the AwsGovCloud.
1132
1135
  """
1133
1136
  return pulumi.get(self, "linked_account_id")
1134
1137
 
1135
- @property
1138
+ @_builtins.property
1136
1139
  @pulumi.getter
1137
1140
  def rds(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRds']]:
1138
1141
  """
@@ -1140,7 +1143,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1140
1143
  """
1141
1144
  return pulumi.get(self, "rds")
1142
1145
 
1143
- @property
1146
+ @_builtins.property
1144
1147
  @pulumi.getter(name="redShift")
1145
1148
  def red_shift(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRedShift']]:
1146
1149
  """
@@ -1148,7 +1151,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1148
1151
  """
1149
1152
  return pulumi.get(self, "red_shift")
1150
1153
 
1151
- @property
1154
+ @_builtins.property
1152
1155
  @pulumi.getter
1153
1156
  def route53(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRoute53']]:
1154
1157
  """
@@ -1156,7 +1159,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1156
1159
  """
1157
1160
  return pulumi.get(self, "route53")
1158
1161
 
1159
- @property
1162
+ @_builtins.property
1160
1163
  @pulumi.getter
1161
1164
  def s3(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsS3']]:
1162
1165
  """
@@ -1164,7 +1167,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1164
1167
  """
1165
1168
  return pulumi.get(self, "s3")
1166
1169
 
1167
- @property
1170
+ @_builtins.property
1168
1171
  @pulumi.getter
1169
1172
  def sns(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsSns']]:
1170
1173
  """
@@ -1172,7 +1175,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1172
1175
  """
1173
1176
  return pulumi.get(self, "sns")
1174
1177
 
1175
- @property
1178
+ @_builtins.property
1176
1179
  @pulumi.getter
1177
1180
  def sqs(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsSqs']]:
1178
1181
  """