pulumi-newrelic 5.42.1__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 (92) hide show
  1. pulumi_newrelic/__init__.py +19 -1
  2. pulumi_newrelic/_inputs.py +4314 -3779
  3. pulumi_newrelic/_utilities.py +1 -1
  4. pulumi_newrelic/account_management.py +37 -36
  5. pulumi_newrelic/alert_channel.py +63 -62
  6. pulumi_newrelic/alert_condition.py +219 -218
  7. pulumi_newrelic/alert_muting_rule.py +96 -95
  8. pulumi_newrelic/alert_policy.py +71 -70
  9. pulumi_newrelic/alert_policy_channel.py +54 -53
  10. pulumi_newrelic/api_access_key.py +186 -201
  11. pulumi_newrelic/browser_application.py +115 -114
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +2226 -2118
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +101 -96
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +71 -70
  16. pulumi_newrelic/cloud/aws_integrations.py +240 -192
  17. pulumi_newrelic/cloud/aws_link_account.py +71 -70
  18. pulumi_newrelic/cloud/azure_integrations.py +180 -132
  19. pulumi_newrelic/cloud/azure_link_account.py +105 -104
  20. pulumi_newrelic/cloud/gcp_integrations.py +115 -114
  21. pulumi_newrelic/cloud/gcp_link_account.py +56 -55
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1512 -1410
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +2 -2
  26. pulumi_newrelic/config/vars.py +15 -15
  27. pulumi_newrelic/data_partition_rule.py +114 -113
  28. pulumi_newrelic/entity_tags.py +79 -22
  29. pulumi_newrelic/events_to_metrics_rule.py +97 -96
  30. pulumi_newrelic/get_account.py +22 -22
  31. pulumi_newrelic/get_alert_channel.py +53 -21
  32. pulumi_newrelic/get_alert_policy.py +52 -26
  33. pulumi_newrelic/get_application.py +14 -14
  34. pulumi_newrelic/get_authentication_domain.py +10 -10
  35. pulumi_newrelic/get_cloud_account.py +22 -22
  36. pulumi_newrelic/get_entity.py +53 -53
  37. pulumi_newrelic/get_group.py +22 -22
  38. pulumi_newrelic/get_key_transaction.py +26 -26
  39. pulumi_newrelic/get_notification_destination.py +31 -31
  40. pulumi_newrelic/get_obfuscation_expression.py +16 -16
  41. pulumi_newrelic/get_service_level_alert_helper.py +54 -54
  42. pulumi_newrelic/get_test_grok_pattern.py +23 -23
  43. pulumi_newrelic/get_user.py +22 -22
  44. pulumi_newrelic/group.py +54 -53
  45. pulumi_newrelic/infra_alert_condition.py +257 -256
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +33 -33
  48. pulumi_newrelic/insights/event.py +6 -5
  49. pulumi_newrelic/insights/outputs.py +23 -23
  50. pulumi_newrelic/key_transaction.py +106 -105
  51. pulumi_newrelic/log_parsing_rule.py +148 -147
  52. pulumi_newrelic/monitor_downtime.py +148 -154
  53. pulumi_newrelic/notification_channel.py +218 -163
  54. pulumi_newrelic/notification_destination.py +123 -136
  55. pulumi_newrelic/nrql_alert_condition.py +513 -414
  56. pulumi_newrelic/nrql_drop_rule.py +108 -147
  57. pulumi_newrelic/obfuscation_expression.py +71 -70
  58. pulumi_newrelic/obfuscation_rule.py +91 -90
  59. pulumi_newrelic/one_dashboard.py +95 -94
  60. pulumi_newrelic/one_dashboard_json.py +64 -63
  61. pulumi_newrelic/one_dashboard_raw.py +116 -115
  62. pulumi_newrelic/outputs.py +3026 -2665
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +159 -159
  66. pulumi_newrelic/plugins/application_settings.py +186 -171
  67. pulumi_newrelic/plugins/outputs.py +109 -109
  68. pulumi_newrelic/plugins/workload.py +133 -132
  69. pulumi_newrelic/provider.py +136 -116
  70. pulumi_newrelic/pulumi-plugin.json +1 -1
  71. pulumi_newrelic/service_level.py +78 -77
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +128 -128
  74. pulumi_newrelic/synthetics/alert_condition.py +97 -96
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +218 -189
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +226 -197
  77. pulumi_newrelic/synthetics/get_private_location.py +22 -22
  78. pulumi_newrelic/synthetics/get_secure_credential.py +20 -20
  79. pulumi_newrelic/synthetics/monitor.py +399 -370
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +120 -119
  81. pulumi_newrelic/synthetics/outputs.py +86 -86
  82. pulumi_newrelic/synthetics/private_location.py +107 -106
  83. pulumi_newrelic/synthetics/script_monitor.py +385 -294
  84. pulumi_newrelic/synthetics/secure_credential.py +88 -87
  85. pulumi_newrelic/synthetics/step_monitor.py +241 -212
  86. pulumi_newrelic/user.py +71 -70
  87. pulumi_newrelic/workflow.py +141 -140
  88. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/METADATA +4 -4
  89. pulumi_newrelic-5.58.0a1766556761.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.42.1.dist-info/RECORD +0 -90
  92. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -21,8 +21,8 @@ __all__ = ['AwsGovcloudIntegrationsArgs', 'AwsGovcloudIntegrations']
21
21
  @pulumi.input_type
22
22
  class AwsGovcloudIntegrationsArgs:
23
23
  def __init__(__self__, *,
24
- linked_account_id: pulumi.Input[str],
25
- account_id: Optional[pulumi.Input[str]] = None,
24
+ linked_account_id: pulumi.Input[_builtins.str],
25
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
26
26
  alb: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']] = None,
27
27
  api_gateway: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']] = None,
28
28
  auto_scaling: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']] = None,
@@ -45,8 +45,8 @@ class AwsGovcloudIntegrationsArgs:
45
45
  sqs: Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']] = None):
46
46
  """
47
47
  The set of arguments for constructing a AwsGovcloudIntegrations resource.
48
- :param pulumi.Input[str] linked_account_id: The access key of the AwsGovCloud.
49
- :param pulumi.Input[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`.
50
50
  :param pulumi.Input['AwsGovcloudIntegrationsAlbArgs'] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
51
51
  :param pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs'] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
52
52
  :param pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs'] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -112,31 +112,31 @@ class AwsGovcloudIntegrationsArgs:
112
112
  if sqs is not None:
113
113
  pulumi.set(__self__, "sqs", sqs)
114
114
 
115
- @property
115
+ @_builtins.property
116
116
  @pulumi.getter(name="linkedAccountId")
117
- def linked_account_id(self) -> pulumi.Input[str]:
117
+ def linked_account_id(self) -> pulumi.Input[_builtins.str]:
118
118
  """
119
119
  The access key of the AwsGovCloud.
120
120
  """
121
121
  return pulumi.get(self, "linked_account_id")
122
122
 
123
123
  @linked_account_id.setter
124
- def linked_account_id(self, value: pulumi.Input[str]):
124
+ def linked_account_id(self, value: pulumi.Input[_builtins.str]):
125
125
  pulumi.set(self, "linked_account_id", value)
126
126
 
127
- @property
127
+ @_builtins.property
128
128
  @pulumi.getter(name="accountId")
129
- def account_id(self) -> Optional[pulumi.Input[str]]:
129
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
130
130
  """
131
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`.
132
132
  """
133
133
  return pulumi.get(self, "account_id")
134
134
 
135
135
  @account_id.setter
136
- def account_id(self, value: Optional[pulumi.Input[str]]):
136
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
137
137
  pulumi.set(self, "account_id", value)
138
138
 
139
- @property
139
+ @_builtins.property
140
140
  @pulumi.getter
141
141
  def alb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]:
142
142
  """
@@ -148,7 +148,7 @@ class AwsGovcloudIntegrationsArgs:
148
148
  def alb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]):
149
149
  pulumi.set(self, "alb", value)
150
150
 
151
- @property
151
+ @_builtins.property
152
152
  @pulumi.getter(name="apiGateway")
153
153
  def api_gateway(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]:
154
154
  """
@@ -160,7 +160,7 @@ class AwsGovcloudIntegrationsArgs:
160
160
  def api_gateway(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]):
161
161
  pulumi.set(self, "api_gateway", value)
162
162
 
163
- @property
163
+ @_builtins.property
164
164
  @pulumi.getter(name="autoScaling")
165
165
  def auto_scaling(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]:
166
166
  """
@@ -172,7 +172,7 @@ class AwsGovcloudIntegrationsArgs:
172
172
  def auto_scaling(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]):
173
173
  pulumi.set(self, "auto_scaling", value)
174
174
 
175
- @property
175
+ @_builtins.property
176
176
  @pulumi.getter(name="awsDirectConnect")
177
177
  def aws_direct_connect(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]:
178
178
  """
@@ -184,7 +184,7 @@ class AwsGovcloudIntegrationsArgs:
184
184
  def aws_direct_connect(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]):
185
185
  pulumi.set(self, "aws_direct_connect", value)
186
186
 
187
- @property
187
+ @_builtins.property
188
188
  @pulumi.getter(name="awsStates")
189
189
  def aws_states(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]:
190
190
  """
@@ -196,7 +196,7 @@ class AwsGovcloudIntegrationsArgs:
196
196
  def aws_states(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]):
197
197
  pulumi.set(self, "aws_states", value)
198
198
 
199
- @property
199
+ @_builtins.property
200
200
  @pulumi.getter
201
201
  def cloudtrail(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]:
202
202
  """
@@ -208,7 +208,7 @@ class AwsGovcloudIntegrationsArgs:
208
208
  def cloudtrail(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]):
209
209
  pulumi.set(self, "cloudtrail", value)
210
210
 
211
- @property
211
+ @_builtins.property
212
212
  @pulumi.getter(name="dynamoDb")
213
213
  def dynamo_db(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]:
214
214
  """
@@ -220,7 +220,7 @@ class AwsGovcloudIntegrationsArgs:
220
220
  def dynamo_db(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]):
221
221
  pulumi.set(self, "dynamo_db", value)
222
222
 
223
- @property
223
+ @_builtins.property
224
224
  @pulumi.getter
225
225
  def ebs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]:
226
226
  """
@@ -232,7 +232,7 @@ class AwsGovcloudIntegrationsArgs:
232
232
  def ebs(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]):
233
233
  pulumi.set(self, "ebs", value)
234
234
 
235
- @property
235
+ @_builtins.property
236
236
  @pulumi.getter
237
237
  def ec2(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]:
238
238
  """
@@ -244,7 +244,7 @@ class AwsGovcloudIntegrationsArgs:
244
244
  def ec2(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]):
245
245
  pulumi.set(self, "ec2", value)
246
246
 
247
- @property
247
+ @_builtins.property
248
248
  @pulumi.getter(name="elasticSearch")
249
249
  def elastic_search(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]:
250
250
  """
@@ -256,7 +256,7 @@ class AwsGovcloudIntegrationsArgs:
256
256
  def elastic_search(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]):
257
257
  pulumi.set(self, "elastic_search", value)
258
258
 
259
- @property
259
+ @_builtins.property
260
260
  @pulumi.getter
261
261
  def elb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]:
262
262
  """
@@ -268,7 +268,7 @@ class AwsGovcloudIntegrationsArgs:
268
268
  def elb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]):
269
269
  pulumi.set(self, "elb", value)
270
270
 
271
- @property
271
+ @_builtins.property
272
272
  @pulumi.getter
273
273
  def emr(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]:
274
274
  """
@@ -280,7 +280,7 @@ class AwsGovcloudIntegrationsArgs:
280
280
  def emr(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]):
281
281
  pulumi.set(self, "emr", value)
282
282
 
283
- @property
283
+ @_builtins.property
284
284
  @pulumi.getter
285
285
  def iam(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]:
286
286
  """
@@ -292,7 +292,7 @@ class AwsGovcloudIntegrationsArgs:
292
292
  def iam(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]):
293
293
  pulumi.set(self, "iam", value)
294
294
 
295
- @property
295
+ @_builtins.property
296
296
  @pulumi.getter(name="lambda")
297
297
  def lambda_(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]:
298
298
  """
@@ -304,7 +304,7 @@ class AwsGovcloudIntegrationsArgs:
304
304
  def lambda_(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]):
305
305
  pulumi.set(self, "lambda_", value)
306
306
 
307
- @property
307
+ @_builtins.property
308
308
  @pulumi.getter
309
309
  def rds(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]:
310
310
  """
@@ -316,7 +316,7 @@ class AwsGovcloudIntegrationsArgs:
316
316
  def rds(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]):
317
317
  pulumi.set(self, "rds", value)
318
318
 
319
- @property
319
+ @_builtins.property
320
320
  @pulumi.getter(name="redShift")
321
321
  def red_shift(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]:
322
322
  """
@@ -328,7 +328,7 @@ class AwsGovcloudIntegrationsArgs:
328
328
  def red_shift(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]):
329
329
  pulumi.set(self, "red_shift", value)
330
330
 
331
- @property
331
+ @_builtins.property
332
332
  @pulumi.getter
333
333
  def route53(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]:
334
334
  """
@@ -340,7 +340,7 @@ class AwsGovcloudIntegrationsArgs:
340
340
  def route53(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]):
341
341
  pulumi.set(self, "route53", value)
342
342
 
343
- @property
343
+ @_builtins.property
344
344
  @pulumi.getter
345
345
  def s3(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]:
346
346
  """
@@ -352,7 +352,7 @@ class AwsGovcloudIntegrationsArgs:
352
352
  def s3(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]):
353
353
  pulumi.set(self, "s3", value)
354
354
 
355
- @property
355
+ @_builtins.property
356
356
  @pulumi.getter
357
357
  def sns(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]:
358
358
  """
@@ -364,7 +364,7 @@ class AwsGovcloudIntegrationsArgs:
364
364
  def sns(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]):
365
365
  pulumi.set(self, "sns", value)
366
366
 
367
- @property
367
+ @_builtins.property
368
368
  @pulumi.getter
369
369
  def sqs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']]:
370
370
  """
@@ -380,7 +380,7 @@ class AwsGovcloudIntegrationsArgs:
380
380
  @pulumi.input_type
381
381
  class _AwsGovcloudIntegrationsState:
382
382
  def __init__(__self__, *,
383
- account_id: Optional[pulumi.Input[str]] = None,
383
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
384
384
  alb: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']] = None,
385
385
  api_gateway: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']] = None,
386
386
  auto_scaling: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']] = None,
@@ -395,7 +395,7 @@ class _AwsGovcloudIntegrationsState:
395
395
  emr: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']] = None,
396
396
  iam: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']] = None,
397
397
  lambda_: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']] = None,
398
- linked_account_id: Optional[pulumi.Input[str]] = None,
398
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
399
399
  rds: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']] = None,
400
400
  red_shift: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']] = None,
401
401
  route53: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']] = None,
@@ -404,7 +404,7 @@ class _AwsGovcloudIntegrationsState:
404
404
  sqs: Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']] = None):
405
405
  """
406
406
  Input properties used for looking up and filtering AwsGovcloudIntegrations resources.
407
- :param pulumi.Input[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`.
408
408
  :param pulumi.Input['AwsGovcloudIntegrationsAlbArgs'] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
409
409
  :param pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs'] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
410
410
  :param pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs'] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -419,7 +419,7 @@ class _AwsGovcloudIntegrationsState:
419
419
  :param pulumi.Input['AwsGovcloudIntegrationsEmrArgs'] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
420
420
  :param pulumi.Input['AwsGovcloudIntegrationsIamArgs'] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
421
421
  :param pulumi.Input['AwsGovcloudIntegrationsLambdaArgs'] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
422
- :param pulumi.Input[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.
423
423
  :param pulumi.Input['AwsGovcloudIntegrationsRdsArgs'] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
424
424
  :param pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs'] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
425
425
  :param pulumi.Input['AwsGovcloudIntegrationsRoute53Args'] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
@@ -472,19 +472,19 @@ class _AwsGovcloudIntegrationsState:
472
472
  if sqs is not None:
473
473
  pulumi.set(__self__, "sqs", sqs)
474
474
 
475
- @property
475
+ @_builtins.property
476
476
  @pulumi.getter(name="accountId")
477
- def account_id(self) -> Optional[pulumi.Input[str]]:
477
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
478
478
  """
479
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`.
480
480
  """
481
481
  return pulumi.get(self, "account_id")
482
482
 
483
483
  @account_id.setter
484
- def account_id(self, value: Optional[pulumi.Input[str]]):
484
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
485
485
  pulumi.set(self, "account_id", value)
486
486
 
487
- @property
487
+ @_builtins.property
488
488
  @pulumi.getter
489
489
  def alb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]:
490
490
  """
@@ -496,7 +496,7 @@ class _AwsGovcloudIntegrationsState:
496
496
  def alb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]):
497
497
  pulumi.set(self, "alb", value)
498
498
 
499
- @property
499
+ @_builtins.property
500
500
  @pulumi.getter(name="apiGateway")
501
501
  def api_gateway(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]:
502
502
  """
@@ -508,7 +508,7 @@ class _AwsGovcloudIntegrationsState:
508
508
  def api_gateway(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]):
509
509
  pulumi.set(self, "api_gateway", value)
510
510
 
511
- @property
511
+ @_builtins.property
512
512
  @pulumi.getter(name="autoScaling")
513
513
  def auto_scaling(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]:
514
514
  """
@@ -520,7 +520,7 @@ class _AwsGovcloudIntegrationsState:
520
520
  def auto_scaling(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]):
521
521
  pulumi.set(self, "auto_scaling", value)
522
522
 
523
- @property
523
+ @_builtins.property
524
524
  @pulumi.getter(name="awsDirectConnect")
525
525
  def aws_direct_connect(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]:
526
526
  """
@@ -532,7 +532,7 @@ class _AwsGovcloudIntegrationsState:
532
532
  def aws_direct_connect(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]):
533
533
  pulumi.set(self, "aws_direct_connect", value)
534
534
 
535
- @property
535
+ @_builtins.property
536
536
  @pulumi.getter(name="awsStates")
537
537
  def aws_states(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]:
538
538
  """
@@ -544,7 +544,7 @@ class _AwsGovcloudIntegrationsState:
544
544
  def aws_states(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]):
545
545
  pulumi.set(self, "aws_states", value)
546
546
 
547
- @property
547
+ @_builtins.property
548
548
  @pulumi.getter
549
549
  def cloudtrail(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]:
550
550
  """
@@ -556,7 +556,7 @@ class _AwsGovcloudIntegrationsState:
556
556
  def cloudtrail(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]):
557
557
  pulumi.set(self, "cloudtrail", value)
558
558
 
559
- @property
559
+ @_builtins.property
560
560
  @pulumi.getter(name="dynamoDb")
561
561
  def dynamo_db(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]:
562
562
  """
@@ -568,7 +568,7 @@ class _AwsGovcloudIntegrationsState:
568
568
  def dynamo_db(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]):
569
569
  pulumi.set(self, "dynamo_db", value)
570
570
 
571
- @property
571
+ @_builtins.property
572
572
  @pulumi.getter
573
573
  def ebs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]:
574
574
  """
@@ -580,7 +580,7 @@ class _AwsGovcloudIntegrationsState:
580
580
  def ebs(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]):
581
581
  pulumi.set(self, "ebs", value)
582
582
 
583
- @property
583
+ @_builtins.property
584
584
  @pulumi.getter
585
585
  def ec2(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]:
586
586
  """
@@ -592,7 +592,7 @@ class _AwsGovcloudIntegrationsState:
592
592
  def ec2(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]):
593
593
  pulumi.set(self, "ec2", value)
594
594
 
595
- @property
595
+ @_builtins.property
596
596
  @pulumi.getter(name="elasticSearch")
597
597
  def elastic_search(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]:
598
598
  """
@@ -604,7 +604,7 @@ class _AwsGovcloudIntegrationsState:
604
604
  def elastic_search(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]):
605
605
  pulumi.set(self, "elastic_search", value)
606
606
 
607
- @property
607
+ @_builtins.property
608
608
  @pulumi.getter
609
609
  def elb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]:
610
610
  """
@@ -616,7 +616,7 @@ class _AwsGovcloudIntegrationsState:
616
616
  def elb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]):
617
617
  pulumi.set(self, "elb", value)
618
618
 
619
- @property
619
+ @_builtins.property
620
620
  @pulumi.getter
621
621
  def emr(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]:
622
622
  """
@@ -628,7 +628,7 @@ class _AwsGovcloudIntegrationsState:
628
628
  def emr(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]):
629
629
  pulumi.set(self, "emr", value)
630
630
 
631
- @property
631
+ @_builtins.property
632
632
  @pulumi.getter
633
633
  def iam(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]:
634
634
  """
@@ -640,7 +640,7 @@ class _AwsGovcloudIntegrationsState:
640
640
  def iam(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]):
641
641
  pulumi.set(self, "iam", value)
642
642
 
643
- @property
643
+ @_builtins.property
644
644
  @pulumi.getter(name="lambda")
645
645
  def lambda_(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]:
646
646
  """
@@ -652,19 +652,19 @@ class _AwsGovcloudIntegrationsState:
652
652
  def lambda_(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]):
653
653
  pulumi.set(self, "lambda_", value)
654
654
 
655
- @property
655
+ @_builtins.property
656
656
  @pulumi.getter(name="linkedAccountId")
657
- def linked_account_id(self) -> Optional[pulumi.Input[str]]:
657
+ def linked_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
658
658
  """
659
659
  The access key of the AwsGovCloud.
660
660
  """
661
661
  return pulumi.get(self, "linked_account_id")
662
662
 
663
663
  @linked_account_id.setter
664
- def linked_account_id(self, value: Optional[pulumi.Input[str]]):
664
+ def linked_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
665
665
  pulumi.set(self, "linked_account_id", value)
666
666
 
667
- @property
667
+ @_builtins.property
668
668
  @pulumi.getter
669
669
  def rds(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]:
670
670
  """
@@ -676,7 +676,7 @@ class _AwsGovcloudIntegrationsState:
676
676
  def rds(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]):
677
677
  pulumi.set(self, "rds", value)
678
678
 
679
- @property
679
+ @_builtins.property
680
680
  @pulumi.getter(name="redShift")
681
681
  def red_shift(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]:
682
682
  """
@@ -688,7 +688,7 @@ class _AwsGovcloudIntegrationsState:
688
688
  def red_shift(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]):
689
689
  pulumi.set(self, "red_shift", value)
690
690
 
691
- @property
691
+ @_builtins.property
692
692
  @pulumi.getter
693
693
  def route53(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]:
694
694
  """
@@ -700,7 +700,7 @@ class _AwsGovcloudIntegrationsState:
700
700
  def route53(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]):
701
701
  pulumi.set(self, "route53", value)
702
702
 
703
- @property
703
+ @_builtins.property
704
704
  @pulumi.getter
705
705
  def s3(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]:
706
706
  """
@@ -712,7 +712,7 @@ class _AwsGovcloudIntegrationsState:
712
712
  def s3(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]):
713
713
  pulumi.set(self, "s3", value)
714
714
 
715
- @property
715
+ @_builtins.property
716
716
  @pulumi.getter
717
717
  def sns(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]:
718
718
  """
@@ -724,7 +724,7 @@ class _AwsGovcloudIntegrationsState:
724
724
  def sns(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]):
725
725
  pulumi.set(self, "sns", value)
726
726
 
727
- @property
727
+ @_builtins.property
728
728
  @pulumi.getter
729
729
  def sqs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']]:
730
730
  """
@@ -737,12 +737,13 @@ class _AwsGovcloudIntegrationsState:
737
737
  pulumi.set(self, "sqs", value)
738
738
 
739
739
 
740
+ @pulumi.type_token("newrelic:cloud/awsGovcloudIntegrations:AwsGovcloudIntegrations")
740
741
  class AwsGovcloudIntegrations(pulumi.CustomResource):
741
742
  @overload
742
743
  def __init__(__self__,
743
744
  resource_name: str,
744
745
  opts: Optional[pulumi.ResourceOptions] = None,
745
- account_id: Optional[pulumi.Input[str]] = None,
746
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
746
747
  alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
747
748
  api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
748
749
  auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
@@ -757,7 +758,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
757
758
  emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
758
759
  iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
759
760
  lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
760
- linked_account_id: Optional[pulumi.Input[str]] = None,
761
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
761
762
  rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
762
763
  red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
763
764
  route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
@@ -778,6 +779,8 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
778
779
 
779
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).
780
781
 
782
+ ## Example Usage
783
+
781
784
  ## Import
782
785
 
783
786
  Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
@@ -790,7 +793,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
790
793
 
791
794
  :param str resource_name: The name of the resource.
792
795
  :param pulumi.ResourceOptions opts: Options for the resource.
793
- :param pulumi.Input[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`.
794
797
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
795
798
  :param pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
796
799
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -805,7 +808,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
805
808
  :param pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
806
809
  :param pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
807
810
  :param pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
808
- :param pulumi.Input[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.
809
812
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
810
813
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
811
814
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
@@ -832,6 +835,8 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
832
835
 
833
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).
834
837
 
838
+ ## Example Usage
839
+
835
840
  ## Import
836
841
 
837
842
  Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
@@ -857,7 +862,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
857
862
  def _internal_init(__self__,
858
863
  resource_name: str,
859
864
  opts: Optional[pulumi.ResourceOptions] = None,
860
- account_id: Optional[pulumi.Input[str]] = None,
865
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
861
866
  alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
862
867
  api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
863
868
  auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
@@ -872,7 +877,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
872
877
  emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
873
878
  iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
874
879
  lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
875
- linked_account_id: Optional[pulumi.Input[str]] = None,
880
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
876
881
  rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
877
882
  red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
878
883
  route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
@@ -922,7 +927,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
922
927
  def get(resource_name: str,
923
928
  id: pulumi.Input[str],
924
929
  opts: Optional[pulumi.ResourceOptions] = None,
925
- account_id: Optional[pulumi.Input[str]] = None,
930
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
926
931
  alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
927
932
  api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
928
933
  auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
@@ -937,7 +942,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
937
942
  emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
938
943
  iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
939
944
  lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
940
- linked_account_id: Optional[pulumi.Input[str]] = None,
945
+ linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
941
946
  rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
942
947
  red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
943
948
  route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
@@ -951,7 +956,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
951
956
  :param str resource_name: The unique name of the resulting resource.
952
957
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
953
958
  :param pulumi.ResourceOptions opts: Options for the resource.
954
- :param pulumi.Input[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`.
955
960
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
956
961
  :param pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
957
962
  :param pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
@@ -966,7 +971,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
966
971
  :param pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
967
972
  :param pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
968
973
  :param pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
969
- :param pulumi.Input[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.
970
975
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
971
976
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
972
977
  :param pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
@@ -1002,15 +1007,15 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1002
1007
  __props__.__dict__["sqs"] = sqs
1003
1008
  return AwsGovcloudIntegrations(resource_name, opts=opts, __props__=__props__)
1004
1009
 
1005
- @property
1010
+ @_builtins.property
1006
1011
  @pulumi.getter(name="accountId")
1007
- def account_id(self) -> pulumi.Output[str]:
1012
+ def account_id(self) -> pulumi.Output[_builtins.str]:
1008
1013
  """
1009
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`.
1010
1015
  """
1011
1016
  return pulumi.get(self, "account_id")
1012
1017
 
1013
- @property
1018
+ @_builtins.property
1014
1019
  @pulumi.getter
1015
1020
  def alb(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAlb']]:
1016
1021
  """
@@ -1018,7 +1023,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1018
1023
  """
1019
1024
  return pulumi.get(self, "alb")
1020
1025
 
1021
- @property
1026
+ @_builtins.property
1022
1027
  @pulumi.getter(name="apiGateway")
1023
1028
  def api_gateway(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsApiGateway']]:
1024
1029
  """
@@ -1026,7 +1031,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1026
1031
  """
1027
1032
  return pulumi.get(self, "api_gateway")
1028
1033
 
1029
- @property
1034
+ @_builtins.property
1030
1035
  @pulumi.getter(name="autoScaling")
1031
1036
  def auto_scaling(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAutoScaling']]:
1032
1037
  """
@@ -1034,7 +1039,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1034
1039
  """
1035
1040
  return pulumi.get(self, "auto_scaling")
1036
1041
 
1037
- @property
1042
+ @_builtins.property
1038
1043
  @pulumi.getter(name="awsDirectConnect")
1039
1044
  def aws_direct_connect(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAwsDirectConnect']]:
1040
1045
  """
@@ -1042,7 +1047,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1042
1047
  """
1043
1048
  return pulumi.get(self, "aws_direct_connect")
1044
1049
 
1045
- @property
1050
+ @_builtins.property
1046
1051
  @pulumi.getter(name="awsStates")
1047
1052
  def aws_states(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAwsStates']]:
1048
1053
  """
@@ -1050,7 +1055,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1050
1055
  """
1051
1056
  return pulumi.get(self, "aws_states")
1052
1057
 
1053
- @property
1058
+ @_builtins.property
1054
1059
  @pulumi.getter
1055
1060
  def cloudtrail(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsCloudtrail']]:
1056
1061
  """
@@ -1058,7 +1063,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1058
1063
  """
1059
1064
  return pulumi.get(self, "cloudtrail")
1060
1065
 
1061
- @property
1066
+ @_builtins.property
1062
1067
  @pulumi.getter(name="dynamoDb")
1063
1068
  def dynamo_db(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsDynamoDb']]:
1064
1069
  """
@@ -1066,7 +1071,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1066
1071
  """
1067
1072
  return pulumi.get(self, "dynamo_db")
1068
1073
 
1069
- @property
1074
+ @_builtins.property
1070
1075
  @pulumi.getter
1071
1076
  def ebs(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEbs']]:
1072
1077
  """
@@ -1074,7 +1079,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1074
1079
  """
1075
1080
  return pulumi.get(self, "ebs")
1076
1081
 
1077
- @property
1082
+ @_builtins.property
1078
1083
  @pulumi.getter
1079
1084
  def ec2(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEc2']]:
1080
1085
  """
@@ -1082,7 +1087,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1082
1087
  """
1083
1088
  return pulumi.get(self, "ec2")
1084
1089
 
1085
- @property
1090
+ @_builtins.property
1086
1091
  @pulumi.getter(name="elasticSearch")
1087
1092
  def elastic_search(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsElasticSearch']]:
1088
1093
  """
@@ -1090,7 +1095,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1090
1095
  """
1091
1096
  return pulumi.get(self, "elastic_search")
1092
1097
 
1093
- @property
1098
+ @_builtins.property
1094
1099
  @pulumi.getter
1095
1100
  def elb(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsElb']]:
1096
1101
  """
@@ -1098,7 +1103,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1098
1103
  """
1099
1104
  return pulumi.get(self, "elb")
1100
1105
 
1101
- @property
1106
+ @_builtins.property
1102
1107
  @pulumi.getter
1103
1108
  def emr(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEmr']]:
1104
1109
  """
@@ -1106,7 +1111,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1106
1111
  """
1107
1112
  return pulumi.get(self, "emr")
1108
1113
 
1109
- @property
1114
+ @_builtins.property
1110
1115
  @pulumi.getter
1111
1116
  def iam(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsIam']]:
1112
1117
  """
@@ -1114,7 +1119,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1114
1119
  """
1115
1120
  return pulumi.get(self, "iam")
1116
1121
 
1117
- @property
1122
+ @_builtins.property
1118
1123
  @pulumi.getter(name="lambda")
1119
1124
  def lambda_(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsLambda']]:
1120
1125
  """
@@ -1122,15 +1127,15 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1122
1127
  """
1123
1128
  return pulumi.get(self, "lambda_")
1124
1129
 
1125
- @property
1130
+ @_builtins.property
1126
1131
  @pulumi.getter(name="linkedAccountId")
1127
- def linked_account_id(self) -> pulumi.Output[str]:
1132
+ def linked_account_id(self) -> pulumi.Output[_builtins.str]:
1128
1133
  """
1129
1134
  The access key of the AwsGovCloud.
1130
1135
  """
1131
1136
  return pulumi.get(self, "linked_account_id")
1132
1137
 
1133
- @property
1138
+ @_builtins.property
1134
1139
  @pulumi.getter
1135
1140
  def rds(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRds']]:
1136
1141
  """
@@ -1138,7 +1143,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1138
1143
  """
1139
1144
  return pulumi.get(self, "rds")
1140
1145
 
1141
- @property
1146
+ @_builtins.property
1142
1147
  @pulumi.getter(name="redShift")
1143
1148
  def red_shift(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRedShift']]:
1144
1149
  """
@@ -1146,7 +1151,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1146
1151
  """
1147
1152
  return pulumi.get(self, "red_shift")
1148
1153
 
1149
- @property
1154
+ @_builtins.property
1150
1155
  @pulumi.getter
1151
1156
  def route53(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRoute53']]:
1152
1157
  """
@@ -1154,7 +1159,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1154
1159
  """
1155
1160
  return pulumi.get(self, "route53")
1156
1161
 
1157
- @property
1162
+ @_builtins.property
1158
1163
  @pulumi.getter
1159
1164
  def s3(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsS3']]:
1160
1165
  """
@@ -1162,7 +1167,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1162
1167
  """
1163
1168
  return pulumi.get(self, "s3")
1164
1169
 
1165
- @property
1170
+ @_builtins.property
1166
1171
  @pulumi.getter
1167
1172
  def sns(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsSns']]:
1168
1173
  """
@@ -1170,7 +1175,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
1170
1175
  """
1171
1176
  return pulumi.get(self, "sns")
1172
1177
 
1173
- @property
1178
+ @_builtins.property
1174
1179
  @pulumi.getter
1175
1180
  def sqs(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsSqs']]:
1176
1181
  """