pulumi-newrelic 5.16.0a1698964311__py3-none-any.whl → 5.58.0a1763707205__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-newrelic might be problematic. Click here for more details.
- pulumi_newrelic/__init__.py +58 -1
- pulumi_newrelic/_inputs.py +10772 -2775
- pulumi_newrelic/_utilities.py +92 -11
- pulumi_newrelic/account_management.py +56 -42
- pulumi_newrelic/alert_channel.py +177 -151
- pulumi_newrelic/alert_condition.py +313 -301
- pulumi_newrelic/alert_muting_rule.py +195 -138
- pulumi_newrelic/alert_policy.py +157 -109
- pulumi_newrelic/alert_policy_channel.py +95 -81
- pulumi_newrelic/api_access_key.py +191 -209
- pulumi_newrelic/browser_application.py +161 -153
- pulumi_newrelic/cloud/__init__.py +3 -1
- pulumi_newrelic/cloud/_inputs.py +4267 -2710
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +238 -200
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +159 -212
- pulumi_newrelic/cloud/aws_integrations.py +518 -1490
- pulumi_newrelic/cloud/aws_link_account.py +88 -76
- pulumi_newrelic/cloud/azure_integrations.py +681 -587
- pulumi_newrelic/cloud/azure_link_account.py +129 -117
- pulumi_newrelic/cloud/gcp_integrations.py +436 -408
- pulumi_newrelic/cloud/gcp_link_account.py +71 -59
- pulumi_newrelic/cloud/oci_link_account.py +926 -0
- pulumi_newrelic/cloud/outputs.py +1678 -2317
- pulumi_newrelic/config/__init__.py +2 -1
- pulumi_newrelic/config/__init__.pyi +45 -0
- pulumi_newrelic/config/vars.py +22 -17
- pulumi_newrelic/data_partition_rule.py +129 -117
- pulumi_newrelic/entity_tags.py +153 -31
- pulumi_newrelic/events_to_metrics_rule.py +114 -102
- pulumi_newrelic/get_account.py +41 -29
- pulumi_newrelic/get_alert_channel.py +73 -28
- pulumi_newrelic/get_alert_policy.py +83 -34
- pulumi_newrelic/get_application.py +51 -39
- pulumi_newrelic/get_authentication_domain.py +111 -0
- pulumi_newrelic/get_cloud_account.py +43 -31
- pulumi_newrelic/get_entity.py +126 -121
- pulumi_newrelic/get_group.py +190 -0
- pulumi_newrelic/get_key_transaction.py +117 -38
- pulumi_newrelic/get_notification_destination.py +86 -36
- pulumi_newrelic/get_obfuscation_expression.py +47 -35
- pulumi_newrelic/get_service_level_alert_helper.py +237 -137
- pulumi_newrelic/get_test_grok_pattern.py +47 -32
- pulumi_newrelic/get_user.py +165 -0
- pulumi_newrelic/group.py +286 -0
- pulumi_newrelic/infra_alert_condition.py +400 -382
- pulumi_newrelic/insights/__init__.py +2 -1
- pulumi_newrelic/insights/_inputs.py +94 -23
- pulumi_newrelic/insights/event.py +56 -48
- pulumi_newrelic/insights/outputs.py +51 -18
- pulumi_newrelic/key_transaction.py +465 -0
- pulumi_newrelic/log_parsing_rule.py +169 -153
- pulumi_newrelic/monitor_downtime.py +914 -0
- pulumi_newrelic/notification_channel.py +560 -418
- pulumi_newrelic/notification_destination.py +379 -124
- pulumi_newrelic/nrql_alert_condition.py +945 -513
- pulumi_newrelic/nrql_drop_rule.py +121 -129
- pulumi_newrelic/obfuscation_expression.py +88 -76
- pulumi_newrelic/obfuscation_rule.py +123 -109
- pulumi_newrelic/one_dashboard.py +118 -108
- pulumi_newrelic/one_dashboard_json.py +77 -67
- pulumi_newrelic/one_dashboard_raw.py +214 -202
- pulumi_newrelic/outputs.py +5491 -2141
- pulumi_newrelic/pipeline_cloud_rule.py +335 -0
- pulumi_newrelic/plugins/__init__.py +2 -1
- pulumi_newrelic/plugins/_inputs.py +520 -90
- pulumi_newrelic/plugins/application_settings.py +463 -167
- pulumi_newrelic/plugins/outputs.py +337 -75
- pulumi_newrelic/plugins/workload.py +387 -151
- pulumi_newrelic/provider.py +156 -142
- pulumi_newrelic/pulumi-plugin.json +2 -1
- pulumi_newrelic/service_level.py +277 -255
- pulumi_newrelic/synthetics/__init__.py +2 -1
- pulumi_newrelic/synthetics/_inputs.py +275 -106
- pulumi_newrelic/synthetics/alert_condition.py +174 -160
- pulumi_newrelic/synthetics/broken_links_monitor.py +367 -207
- pulumi_newrelic/synthetics/cert_check_monitor.py +380 -218
- pulumi_newrelic/synthetics/get_private_location.py +51 -39
- pulumi_newrelic/synthetics/get_secure_credential.py +39 -27
- pulumi_newrelic/synthetics/monitor.py +668 -462
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +219 -201
- pulumi_newrelic/synthetics/outputs.py +102 -85
- pulumi_newrelic/synthetics/private_location.py +120 -110
- pulumi_newrelic/synthetics/script_monitor.py +623 -375
- pulumi_newrelic/synthetics/secure_credential.py +99 -93
- pulumi_newrelic/synthetics/step_monitor.py +545 -201
- pulumi_newrelic/user.py +366 -0
- pulumi_newrelic/workflow.py +348 -312
- {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/METADATA +8 -7
- pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD +92 -0
- {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/WHEEL +1 -1
- pulumi_newrelic-5.16.0a1698964311.dist-info/RECORD +0 -82
- {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from .. import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -16,8 +21,8 @@ __all__ = ['AwsGovcloudIntegrationsArgs', 'AwsGovcloudIntegrations']
|
|
|
16
21
|
@pulumi.input_type
|
|
17
22
|
class AwsGovcloudIntegrationsArgs:
|
|
18
23
|
def __init__(__self__, *,
|
|
19
|
-
linked_account_id: pulumi.Input[
|
|
20
|
-
account_id: Optional[pulumi.Input[
|
|
24
|
+
linked_account_id: pulumi.Input[_builtins.str],
|
|
25
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
21
26
|
alb: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']] = None,
|
|
22
27
|
api_gateway: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']] = None,
|
|
23
28
|
auto_scaling: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']] = None,
|
|
@@ -40,8 +45,8 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
40
45
|
sqs: Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']] = None):
|
|
41
46
|
"""
|
|
42
47
|
The set of arguments for constructing a AwsGovcloudIntegrations resource.
|
|
43
|
-
:param pulumi.Input[
|
|
44
|
-
:param pulumi.Input[
|
|
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`.
|
|
45
50
|
:param pulumi.Input['AwsGovcloudIntegrationsAlbArgs'] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
|
|
46
51
|
:param pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs'] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
|
|
47
52
|
:param pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs'] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
|
|
@@ -107,31 +112,31 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
107
112
|
if sqs is not None:
|
|
108
113
|
pulumi.set(__self__, "sqs", sqs)
|
|
109
114
|
|
|
110
|
-
@property
|
|
115
|
+
@_builtins.property
|
|
111
116
|
@pulumi.getter(name="linkedAccountId")
|
|
112
|
-
def linked_account_id(self) -> pulumi.Input[
|
|
117
|
+
def linked_account_id(self) -> pulumi.Input[_builtins.str]:
|
|
113
118
|
"""
|
|
114
119
|
The access key of the AwsGovCloud.
|
|
115
120
|
"""
|
|
116
121
|
return pulumi.get(self, "linked_account_id")
|
|
117
122
|
|
|
118
123
|
@linked_account_id.setter
|
|
119
|
-
def linked_account_id(self, value: pulumi.Input[
|
|
124
|
+
def linked_account_id(self, value: pulumi.Input[_builtins.str]):
|
|
120
125
|
pulumi.set(self, "linked_account_id", value)
|
|
121
126
|
|
|
122
|
-
@property
|
|
127
|
+
@_builtins.property
|
|
123
128
|
@pulumi.getter(name="accountId")
|
|
124
|
-
def account_id(self) -> Optional[pulumi.Input[
|
|
129
|
+
def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
125
130
|
"""
|
|
126
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`.
|
|
127
132
|
"""
|
|
128
133
|
return pulumi.get(self, "account_id")
|
|
129
134
|
|
|
130
135
|
@account_id.setter
|
|
131
|
-
def account_id(self, value: Optional[pulumi.Input[
|
|
136
|
+
def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
132
137
|
pulumi.set(self, "account_id", value)
|
|
133
138
|
|
|
134
|
-
@property
|
|
139
|
+
@_builtins.property
|
|
135
140
|
@pulumi.getter
|
|
136
141
|
def alb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]:
|
|
137
142
|
"""
|
|
@@ -143,7 +148,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
143
148
|
def alb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]):
|
|
144
149
|
pulumi.set(self, "alb", value)
|
|
145
150
|
|
|
146
|
-
@property
|
|
151
|
+
@_builtins.property
|
|
147
152
|
@pulumi.getter(name="apiGateway")
|
|
148
153
|
def api_gateway(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]:
|
|
149
154
|
"""
|
|
@@ -155,7 +160,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
155
160
|
def api_gateway(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]):
|
|
156
161
|
pulumi.set(self, "api_gateway", value)
|
|
157
162
|
|
|
158
|
-
@property
|
|
163
|
+
@_builtins.property
|
|
159
164
|
@pulumi.getter(name="autoScaling")
|
|
160
165
|
def auto_scaling(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]:
|
|
161
166
|
"""
|
|
@@ -167,7 +172,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
167
172
|
def auto_scaling(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]):
|
|
168
173
|
pulumi.set(self, "auto_scaling", value)
|
|
169
174
|
|
|
170
|
-
@property
|
|
175
|
+
@_builtins.property
|
|
171
176
|
@pulumi.getter(name="awsDirectConnect")
|
|
172
177
|
def aws_direct_connect(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]:
|
|
173
178
|
"""
|
|
@@ -179,7 +184,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
179
184
|
def aws_direct_connect(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]):
|
|
180
185
|
pulumi.set(self, "aws_direct_connect", value)
|
|
181
186
|
|
|
182
|
-
@property
|
|
187
|
+
@_builtins.property
|
|
183
188
|
@pulumi.getter(name="awsStates")
|
|
184
189
|
def aws_states(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]:
|
|
185
190
|
"""
|
|
@@ -191,7 +196,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
191
196
|
def aws_states(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]):
|
|
192
197
|
pulumi.set(self, "aws_states", value)
|
|
193
198
|
|
|
194
|
-
@property
|
|
199
|
+
@_builtins.property
|
|
195
200
|
@pulumi.getter
|
|
196
201
|
def cloudtrail(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]:
|
|
197
202
|
"""
|
|
@@ -203,7 +208,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
203
208
|
def cloudtrail(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]):
|
|
204
209
|
pulumi.set(self, "cloudtrail", value)
|
|
205
210
|
|
|
206
|
-
@property
|
|
211
|
+
@_builtins.property
|
|
207
212
|
@pulumi.getter(name="dynamoDb")
|
|
208
213
|
def dynamo_db(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]:
|
|
209
214
|
"""
|
|
@@ -215,7 +220,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
215
220
|
def dynamo_db(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]):
|
|
216
221
|
pulumi.set(self, "dynamo_db", value)
|
|
217
222
|
|
|
218
|
-
@property
|
|
223
|
+
@_builtins.property
|
|
219
224
|
@pulumi.getter
|
|
220
225
|
def ebs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]:
|
|
221
226
|
"""
|
|
@@ -227,7 +232,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
227
232
|
def ebs(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]):
|
|
228
233
|
pulumi.set(self, "ebs", value)
|
|
229
234
|
|
|
230
|
-
@property
|
|
235
|
+
@_builtins.property
|
|
231
236
|
@pulumi.getter
|
|
232
237
|
def ec2(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]:
|
|
233
238
|
"""
|
|
@@ -239,7 +244,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
239
244
|
def ec2(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]):
|
|
240
245
|
pulumi.set(self, "ec2", value)
|
|
241
246
|
|
|
242
|
-
@property
|
|
247
|
+
@_builtins.property
|
|
243
248
|
@pulumi.getter(name="elasticSearch")
|
|
244
249
|
def elastic_search(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]:
|
|
245
250
|
"""
|
|
@@ -251,7 +256,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
251
256
|
def elastic_search(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]):
|
|
252
257
|
pulumi.set(self, "elastic_search", value)
|
|
253
258
|
|
|
254
|
-
@property
|
|
259
|
+
@_builtins.property
|
|
255
260
|
@pulumi.getter
|
|
256
261
|
def elb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]:
|
|
257
262
|
"""
|
|
@@ -263,7 +268,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
263
268
|
def elb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]):
|
|
264
269
|
pulumi.set(self, "elb", value)
|
|
265
270
|
|
|
266
|
-
@property
|
|
271
|
+
@_builtins.property
|
|
267
272
|
@pulumi.getter
|
|
268
273
|
def emr(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]:
|
|
269
274
|
"""
|
|
@@ -275,7 +280,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
275
280
|
def emr(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]):
|
|
276
281
|
pulumi.set(self, "emr", value)
|
|
277
282
|
|
|
278
|
-
@property
|
|
283
|
+
@_builtins.property
|
|
279
284
|
@pulumi.getter
|
|
280
285
|
def iam(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]:
|
|
281
286
|
"""
|
|
@@ -287,7 +292,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
287
292
|
def iam(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]):
|
|
288
293
|
pulumi.set(self, "iam", value)
|
|
289
294
|
|
|
290
|
-
@property
|
|
295
|
+
@_builtins.property
|
|
291
296
|
@pulumi.getter(name="lambda")
|
|
292
297
|
def lambda_(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]:
|
|
293
298
|
"""
|
|
@@ -299,7 +304,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
299
304
|
def lambda_(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]):
|
|
300
305
|
pulumi.set(self, "lambda_", value)
|
|
301
306
|
|
|
302
|
-
@property
|
|
307
|
+
@_builtins.property
|
|
303
308
|
@pulumi.getter
|
|
304
309
|
def rds(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]:
|
|
305
310
|
"""
|
|
@@ -311,7 +316,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
311
316
|
def rds(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]):
|
|
312
317
|
pulumi.set(self, "rds", value)
|
|
313
318
|
|
|
314
|
-
@property
|
|
319
|
+
@_builtins.property
|
|
315
320
|
@pulumi.getter(name="redShift")
|
|
316
321
|
def red_shift(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]:
|
|
317
322
|
"""
|
|
@@ -323,7 +328,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
323
328
|
def red_shift(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]):
|
|
324
329
|
pulumi.set(self, "red_shift", value)
|
|
325
330
|
|
|
326
|
-
@property
|
|
331
|
+
@_builtins.property
|
|
327
332
|
@pulumi.getter
|
|
328
333
|
def route53(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]:
|
|
329
334
|
"""
|
|
@@ -335,7 +340,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
335
340
|
def route53(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]):
|
|
336
341
|
pulumi.set(self, "route53", value)
|
|
337
342
|
|
|
338
|
-
@property
|
|
343
|
+
@_builtins.property
|
|
339
344
|
@pulumi.getter
|
|
340
345
|
def s3(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]:
|
|
341
346
|
"""
|
|
@@ -347,7 +352,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
347
352
|
def s3(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]):
|
|
348
353
|
pulumi.set(self, "s3", value)
|
|
349
354
|
|
|
350
|
-
@property
|
|
355
|
+
@_builtins.property
|
|
351
356
|
@pulumi.getter
|
|
352
357
|
def sns(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]:
|
|
353
358
|
"""
|
|
@@ -359,7 +364,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
359
364
|
def sns(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]):
|
|
360
365
|
pulumi.set(self, "sns", value)
|
|
361
366
|
|
|
362
|
-
@property
|
|
367
|
+
@_builtins.property
|
|
363
368
|
@pulumi.getter
|
|
364
369
|
def sqs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']]:
|
|
365
370
|
"""
|
|
@@ -375,7 +380,7 @@ class AwsGovcloudIntegrationsArgs:
|
|
|
375
380
|
@pulumi.input_type
|
|
376
381
|
class _AwsGovcloudIntegrationsState:
|
|
377
382
|
def __init__(__self__, *,
|
|
378
|
-
account_id: Optional[pulumi.Input[
|
|
383
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
379
384
|
alb: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']] = None,
|
|
380
385
|
api_gateway: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']] = None,
|
|
381
386
|
auto_scaling: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']] = None,
|
|
@@ -390,7 +395,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
390
395
|
emr: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']] = None,
|
|
391
396
|
iam: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']] = None,
|
|
392
397
|
lambda_: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']] = None,
|
|
393
|
-
linked_account_id: Optional[pulumi.Input[
|
|
398
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
394
399
|
rds: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']] = None,
|
|
395
400
|
red_shift: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']] = None,
|
|
396
401
|
route53: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']] = None,
|
|
@@ -399,7 +404,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
399
404
|
sqs: Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']] = None):
|
|
400
405
|
"""
|
|
401
406
|
Input properties used for looking up and filtering AwsGovcloudIntegrations resources.
|
|
402
|
-
:param pulumi.Input[
|
|
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`.
|
|
403
408
|
:param pulumi.Input['AwsGovcloudIntegrationsAlbArgs'] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
|
|
404
409
|
:param pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs'] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
|
|
405
410
|
:param pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs'] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
|
|
@@ -414,7 +419,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
414
419
|
:param pulumi.Input['AwsGovcloudIntegrationsEmrArgs'] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
|
|
415
420
|
:param pulumi.Input['AwsGovcloudIntegrationsIamArgs'] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
|
|
416
421
|
:param pulumi.Input['AwsGovcloudIntegrationsLambdaArgs'] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
|
|
417
|
-
:param pulumi.Input[
|
|
422
|
+
:param pulumi.Input[_builtins.str] linked_account_id: The access key of the AwsGovCloud.
|
|
418
423
|
:param pulumi.Input['AwsGovcloudIntegrationsRdsArgs'] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
|
|
419
424
|
:param pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs'] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
|
|
420
425
|
:param pulumi.Input['AwsGovcloudIntegrationsRoute53Args'] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
|
|
@@ -467,19 +472,19 @@ class _AwsGovcloudIntegrationsState:
|
|
|
467
472
|
if sqs is not None:
|
|
468
473
|
pulumi.set(__self__, "sqs", sqs)
|
|
469
474
|
|
|
470
|
-
@property
|
|
475
|
+
@_builtins.property
|
|
471
476
|
@pulumi.getter(name="accountId")
|
|
472
|
-
def account_id(self) -> Optional[pulumi.Input[
|
|
477
|
+
def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
473
478
|
"""
|
|
474
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`.
|
|
475
480
|
"""
|
|
476
481
|
return pulumi.get(self, "account_id")
|
|
477
482
|
|
|
478
483
|
@account_id.setter
|
|
479
|
-
def account_id(self, value: Optional[pulumi.Input[
|
|
484
|
+
def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
480
485
|
pulumi.set(self, "account_id", value)
|
|
481
486
|
|
|
482
|
-
@property
|
|
487
|
+
@_builtins.property
|
|
483
488
|
@pulumi.getter
|
|
484
489
|
def alb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]:
|
|
485
490
|
"""
|
|
@@ -491,7 +496,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
491
496
|
def alb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAlbArgs']]):
|
|
492
497
|
pulumi.set(self, "alb", value)
|
|
493
498
|
|
|
494
|
-
@property
|
|
499
|
+
@_builtins.property
|
|
495
500
|
@pulumi.getter(name="apiGateway")
|
|
496
501
|
def api_gateway(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]:
|
|
497
502
|
"""
|
|
@@ -503,7 +508,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
503
508
|
def api_gateway(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsApiGatewayArgs']]):
|
|
504
509
|
pulumi.set(self, "api_gateway", value)
|
|
505
510
|
|
|
506
|
-
@property
|
|
511
|
+
@_builtins.property
|
|
507
512
|
@pulumi.getter(name="autoScaling")
|
|
508
513
|
def auto_scaling(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]:
|
|
509
514
|
"""
|
|
@@ -515,7 +520,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
515
520
|
def auto_scaling(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAutoScalingArgs']]):
|
|
516
521
|
pulumi.set(self, "auto_scaling", value)
|
|
517
522
|
|
|
518
|
-
@property
|
|
523
|
+
@_builtins.property
|
|
519
524
|
@pulumi.getter(name="awsDirectConnect")
|
|
520
525
|
def aws_direct_connect(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]:
|
|
521
526
|
"""
|
|
@@ -527,7 +532,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
527
532
|
def aws_direct_connect(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsDirectConnectArgs']]):
|
|
528
533
|
pulumi.set(self, "aws_direct_connect", value)
|
|
529
534
|
|
|
530
|
-
@property
|
|
535
|
+
@_builtins.property
|
|
531
536
|
@pulumi.getter(name="awsStates")
|
|
532
537
|
def aws_states(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]:
|
|
533
538
|
"""
|
|
@@ -539,7 +544,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
539
544
|
def aws_states(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsAwsStatesArgs']]):
|
|
540
545
|
pulumi.set(self, "aws_states", value)
|
|
541
546
|
|
|
542
|
-
@property
|
|
547
|
+
@_builtins.property
|
|
543
548
|
@pulumi.getter
|
|
544
549
|
def cloudtrail(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]:
|
|
545
550
|
"""
|
|
@@ -551,7 +556,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
551
556
|
def cloudtrail(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsCloudtrailArgs']]):
|
|
552
557
|
pulumi.set(self, "cloudtrail", value)
|
|
553
558
|
|
|
554
|
-
@property
|
|
559
|
+
@_builtins.property
|
|
555
560
|
@pulumi.getter(name="dynamoDb")
|
|
556
561
|
def dynamo_db(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]:
|
|
557
562
|
"""
|
|
@@ -563,7 +568,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
563
568
|
def dynamo_db(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsDynamoDbArgs']]):
|
|
564
569
|
pulumi.set(self, "dynamo_db", value)
|
|
565
570
|
|
|
566
|
-
@property
|
|
571
|
+
@_builtins.property
|
|
567
572
|
@pulumi.getter
|
|
568
573
|
def ebs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]:
|
|
569
574
|
"""
|
|
@@ -575,7 +580,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
575
580
|
def ebs(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEbsArgs']]):
|
|
576
581
|
pulumi.set(self, "ebs", value)
|
|
577
582
|
|
|
578
|
-
@property
|
|
583
|
+
@_builtins.property
|
|
579
584
|
@pulumi.getter
|
|
580
585
|
def ec2(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]:
|
|
581
586
|
"""
|
|
@@ -587,7 +592,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
587
592
|
def ec2(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEc2Args']]):
|
|
588
593
|
pulumi.set(self, "ec2", value)
|
|
589
594
|
|
|
590
|
-
@property
|
|
595
|
+
@_builtins.property
|
|
591
596
|
@pulumi.getter(name="elasticSearch")
|
|
592
597
|
def elastic_search(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]:
|
|
593
598
|
"""
|
|
@@ -599,7 +604,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
599
604
|
def elastic_search(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElasticSearchArgs']]):
|
|
600
605
|
pulumi.set(self, "elastic_search", value)
|
|
601
606
|
|
|
602
|
-
@property
|
|
607
|
+
@_builtins.property
|
|
603
608
|
@pulumi.getter
|
|
604
609
|
def elb(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]:
|
|
605
610
|
"""
|
|
@@ -611,7 +616,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
611
616
|
def elb(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsElbArgs']]):
|
|
612
617
|
pulumi.set(self, "elb", value)
|
|
613
618
|
|
|
614
|
-
@property
|
|
619
|
+
@_builtins.property
|
|
615
620
|
@pulumi.getter
|
|
616
621
|
def emr(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]:
|
|
617
622
|
"""
|
|
@@ -623,7 +628,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
623
628
|
def emr(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsEmrArgs']]):
|
|
624
629
|
pulumi.set(self, "emr", value)
|
|
625
630
|
|
|
626
|
-
@property
|
|
631
|
+
@_builtins.property
|
|
627
632
|
@pulumi.getter
|
|
628
633
|
def iam(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]:
|
|
629
634
|
"""
|
|
@@ -635,7 +640,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
635
640
|
def iam(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsIamArgs']]):
|
|
636
641
|
pulumi.set(self, "iam", value)
|
|
637
642
|
|
|
638
|
-
@property
|
|
643
|
+
@_builtins.property
|
|
639
644
|
@pulumi.getter(name="lambda")
|
|
640
645
|
def lambda_(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]:
|
|
641
646
|
"""
|
|
@@ -647,19 +652,19 @@ class _AwsGovcloudIntegrationsState:
|
|
|
647
652
|
def lambda_(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsLambdaArgs']]):
|
|
648
653
|
pulumi.set(self, "lambda_", value)
|
|
649
654
|
|
|
650
|
-
@property
|
|
655
|
+
@_builtins.property
|
|
651
656
|
@pulumi.getter(name="linkedAccountId")
|
|
652
|
-
def linked_account_id(self) -> Optional[pulumi.Input[
|
|
657
|
+
def linked_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
653
658
|
"""
|
|
654
659
|
The access key of the AwsGovCloud.
|
|
655
660
|
"""
|
|
656
661
|
return pulumi.get(self, "linked_account_id")
|
|
657
662
|
|
|
658
663
|
@linked_account_id.setter
|
|
659
|
-
def linked_account_id(self, value: Optional[pulumi.Input[
|
|
664
|
+
def linked_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
660
665
|
pulumi.set(self, "linked_account_id", value)
|
|
661
666
|
|
|
662
|
-
@property
|
|
667
|
+
@_builtins.property
|
|
663
668
|
@pulumi.getter
|
|
664
669
|
def rds(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]:
|
|
665
670
|
"""
|
|
@@ -671,7 +676,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
671
676
|
def rds(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRdsArgs']]):
|
|
672
677
|
pulumi.set(self, "rds", value)
|
|
673
678
|
|
|
674
|
-
@property
|
|
679
|
+
@_builtins.property
|
|
675
680
|
@pulumi.getter(name="redShift")
|
|
676
681
|
def red_shift(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]:
|
|
677
682
|
"""
|
|
@@ -683,7 +688,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
683
688
|
def red_shift(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRedShiftArgs']]):
|
|
684
689
|
pulumi.set(self, "red_shift", value)
|
|
685
690
|
|
|
686
|
-
@property
|
|
691
|
+
@_builtins.property
|
|
687
692
|
@pulumi.getter
|
|
688
693
|
def route53(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]:
|
|
689
694
|
"""
|
|
@@ -695,7 +700,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
695
700
|
def route53(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsRoute53Args']]):
|
|
696
701
|
pulumi.set(self, "route53", value)
|
|
697
702
|
|
|
698
|
-
@property
|
|
703
|
+
@_builtins.property
|
|
699
704
|
@pulumi.getter
|
|
700
705
|
def s3(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]:
|
|
701
706
|
"""
|
|
@@ -707,7 +712,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
707
712
|
def s3(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsS3Args']]):
|
|
708
713
|
pulumi.set(self, "s3", value)
|
|
709
714
|
|
|
710
|
-
@property
|
|
715
|
+
@_builtins.property
|
|
711
716
|
@pulumi.getter
|
|
712
717
|
def sns(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]:
|
|
713
718
|
"""
|
|
@@ -719,7 +724,7 @@ class _AwsGovcloudIntegrationsState:
|
|
|
719
724
|
def sns(self, value: Optional[pulumi.Input['AwsGovcloudIntegrationsSnsArgs']]):
|
|
720
725
|
pulumi.set(self, "sns", value)
|
|
721
726
|
|
|
722
|
-
@property
|
|
727
|
+
@_builtins.property
|
|
723
728
|
@pulumi.getter
|
|
724
729
|
def sqs(self) -> Optional[pulumi.Input['AwsGovcloudIntegrationsSqsArgs']]:
|
|
725
730
|
"""
|
|
@@ -732,67 +737,84 @@ class _AwsGovcloudIntegrationsState:
|
|
|
732
737
|
pulumi.set(self, "sqs", value)
|
|
733
738
|
|
|
734
739
|
|
|
740
|
+
@pulumi.type_token("newrelic:cloud/awsGovcloudIntegrations:AwsGovcloudIntegrations")
|
|
735
741
|
class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
736
742
|
@overload
|
|
737
743
|
def __init__(__self__,
|
|
738
744
|
resource_name: str,
|
|
739
745
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
740
|
-
account_id: Optional[pulumi.Input[
|
|
741
|
-
alb: Optional[pulumi.Input[
|
|
742
|
-
api_gateway: Optional[pulumi.Input[
|
|
743
|
-
auto_scaling: Optional[pulumi.Input[
|
|
744
|
-
aws_direct_connect: Optional[pulumi.Input[
|
|
745
|
-
aws_states: Optional[pulumi.Input[
|
|
746
|
-
cloudtrail: Optional[pulumi.Input[
|
|
747
|
-
dynamo_db: Optional[pulumi.Input[
|
|
748
|
-
ebs: Optional[pulumi.Input[
|
|
749
|
-
ec2: Optional[pulumi.Input[
|
|
750
|
-
elastic_search: Optional[pulumi.Input[
|
|
751
|
-
elb: Optional[pulumi.Input[
|
|
752
|
-
emr: Optional[pulumi.Input[
|
|
753
|
-
iam: Optional[pulumi.Input[
|
|
754
|
-
lambda_: Optional[pulumi.Input[
|
|
755
|
-
linked_account_id: Optional[pulumi.Input[
|
|
756
|
-
rds: Optional[pulumi.Input[
|
|
757
|
-
red_shift: Optional[pulumi.Input[
|
|
758
|
-
route53: Optional[pulumi.Input[
|
|
759
|
-
s3: Optional[pulumi.Input[
|
|
760
|
-
sns: Optional[pulumi.Input[
|
|
761
|
-
sqs: Optional[pulumi.Input[
|
|
746
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
747
|
+
alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
|
|
748
|
+
api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
|
|
749
|
+
auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
|
|
750
|
+
aws_direct_connect: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAwsDirectConnectArgs', 'AwsGovcloudIntegrationsAwsDirectConnectArgsDict']]] = None,
|
|
751
|
+
aws_states: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAwsStatesArgs', 'AwsGovcloudIntegrationsAwsStatesArgsDict']]] = None,
|
|
752
|
+
cloudtrail: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsCloudtrailArgs', 'AwsGovcloudIntegrationsCloudtrailArgsDict']]] = None,
|
|
753
|
+
dynamo_db: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsDynamoDbArgs', 'AwsGovcloudIntegrationsDynamoDbArgsDict']]] = None,
|
|
754
|
+
ebs: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEbsArgs', 'AwsGovcloudIntegrationsEbsArgsDict']]] = None,
|
|
755
|
+
ec2: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEc2Args', 'AwsGovcloudIntegrationsEc2ArgsDict']]] = None,
|
|
756
|
+
elastic_search: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsElasticSearchArgs', 'AwsGovcloudIntegrationsElasticSearchArgsDict']]] = None,
|
|
757
|
+
elb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsElbArgs', 'AwsGovcloudIntegrationsElbArgsDict']]] = None,
|
|
758
|
+
emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
|
|
759
|
+
iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
|
|
760
|
+
lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
|
|
761
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
762
|
+
rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
|
|
763
|
+
red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
|
|
764
|
+
route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
|
|
765
|
+
s3: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsS3Args', 'AwsGovcloudIntegrationsS3ArgsDict']]] = None,
|
|
766
|
+
sns: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsSnsArgs', 'AwsGovcloudIntegrationsSnsArgsDict']]] = None,
|
|
767
|
+
sqs: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsSqsArgs', 'AwsGovcloudIntegrationsSqsArgsDict']]] = None,
|
|
762
768
|
__props__=None):
|
|
763
769
|
"""
|
|
770
|
+
> **IMPORTANT!** This resource is in alpha state, and could still contain issues and missing functionality. If you encounter any issue please create a ticket on Github with all the required information.
|
|
771
|
+
|
|
772
|
+
Use this resource to integrate an AWSGovCloud account to New Relic.
|
|
773
|
+
|
|
774
|
+
## Prerequisite
|
|
775
|
+
|
|
776
|
+
Obtain the AwsGovCloud account designed to address the specific regulatory needs of United States (federal, state, and local agencies), education institutions, and the supporting ecosystem.
|
|
777
|
+
|
|
778
|
+
It is an isolated AWS region designed to host sensitive data and regulated workloads in the cloud, helping customers support their US government compliance requirements.
|
|
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).
|
|
781
|
+
|
|
782
|
+
## Example Usage
|
|
783
|
+
|
|
764
784
|
## Import
|
|
765
785
|
|
|
766
|
-
Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
|
|
786
|
+
Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
|
|
787
|
+
|
|
788
|
+
bash
|
|
767
789
|
|
|
768
790
|
```sh
|
|
769
|
-
|
|
791
|
+
$ pulumi import newrelic:cloud/awsGovcloudIntegrations:AwsGovcloudIntegrations foo <id>
|
|
770
792
|
```
|
|
771
793
|
|
|
772
794
|
:param str resource_name: The name of the resource.
|
|
773
795
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
774
|
-
:param pulumi.Input[
|
|
775
|
-
:param pulumi.Input[
|
|
776
|
-
:param pulumi.Input[
|
|
777
|
-
:param pulumi.Input[
|
|
778
|
-
:param pulumi.Input[
|
|
779
|
-
:param pulumi.Input[
|
|
780
|
-
:param pulumi.Input[
|
|
781
|
-
:param pulumi.Input[
|
|
782
|
-
:param pulumi.Input[
|
|
783
|
-
:param pulumi.Input[
|
|
784
|
-
:param pulumi.Input[
|
|
785
|
-
:param pulumi.Input[
|
|
786
|
-
:param pulumi.Input[
|
|
787
|
-
:param pulumi.Input[
|
|
788
|
-
:param pulumi.Input[
|
|
789
|
-
:param pulumi.Input[
|
|
790
|
-
:param pulumi.Input[
|
|
791
|
-
:param pulumi.Input[
|
|
792
|
-
:param pulumi.Input[
|
|
793
|
-
:param pulumi.Input[
|
|
794
|
-
:param pulumi.Input[
|
|
795
|
-
:param pulumi.Input[
|
|
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`.
|
|
797
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
|
|
798
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
|
|
799
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
|
|
800
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAwsDirectConnectArgs', 'AwsGovcloudIntegrationsAwsDirectConnectArgsDict']] aws_direct_connect: Aws Direct Connect AwsGovCloud integration.See Integration blocks below for details.
|
|
801
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAwsStatesArgs', 'AwsGovcloudIntegrationsAwsStatesArgsDict']] aws_states: Aws States AwsGovCloud integration.See Integration blocks below for details.
|
|
802
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsCloudtrailArgs', 'AwsGovcloudIntegrationsCloudtrailArgsDict']] cloudtrail: Cloudtrail AwsGovCloud integration.See Integration blocks below for details.
|
|
803
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsDynamoDbArgs', 'AwsGovcloudIntegrationsDynamoDbArgsDict']] dynamo_db: Dynamo DB AwsGovCloud integration.See Integration blocks below for details.
|
|
804
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsEbsArgs', 'AwsGovcloudIntegrationsEbsArgsDict']] ebs: Elastic Beanstalk AwsGovCloud integration.See Integration blocks below for details.
|
|
805
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsEc2Args', 'AwsGovcloudIntegrationsEc2ArgsDict']] ec2: EC2 AwsGovCloud integration.See Integration blocks below for details.
|
|
806
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsElasticSearchArgs', 'AwsGovcloudIntegrationsElasticSearchArgsDict']] elastic_search: Elastic search AwsGovCloud integration.See Integration blocks below for details.
|
|
807
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsElbArgs', 'AwsGovcloudIntegrationsElbArgsDict']] elb: Elb AwsGovCloud integration.See Integration blocks below for details.
|
|
808
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
|
|
809
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
|
|
810
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
|
|
811
|
+
:param pulumi.Input[_builtins.str] linked_account_id: The access key of the AwsGovCloud.
|
|
812
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
|
|
813
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
|
|
814
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
|
|
815
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsS3Args', 'AwsGovcloudIntegrationsS3ArgsDict']] s3: The s3 integration
|
|
816
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsSnsArgs', 'AwsGovcloudIntegrationsSnsArgsDict']] sns: SNS AwsGovCloud integration.See Integration blocks below for details.
|
|
817
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsSqsArgs', 'AwsGovcloudIntegrationsSqsArgsDict']] sqs: SQS AwsGovCloud integration.See Integration blocks below for details.
|
|
796
818
|
"""
|
|
797
819
|
...
|
|
798
820
|
@overload
|
|
@@ -801,12 +823,28 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
801
823
|
args: AwsGovcloudIntegrationsArgs,
|
|
802
824
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
803
825
|
"""
|
|
826
|
+
> **IMPORTANT!** This resource is in alpha state, and could still contain issues and missing functionality. If you encounter any issue please create a ticket on Github with all the required information.
|
|
827
|
+
|
|
828
|
+
Use this resource to integrate an AWSGovCloud account to New Relic.
|
|
829
|
+
|
|
830
|
+
## Prerequisite
|
|
831
|
+
|
|
832
|
+
Obtain the AwsGovCloud account designed to address the specific regulatory needs of United States (federal, state, and local agencies), education institutions, and the supporting ecosystem.
|
|
833
|
+
|
|
834
|
+
It is an isolated AWS region designed to host sensitive data and regulated workloads in the cloud, helping customers support their US government compliance requirements.
|
|
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).
|
|
837
|
+
|
|
838
|
+
## Example Usage
|
|
839
|
+
|
|
804
840
|
## Import
|
|
805
841
|
|
|
806
|
-
Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
|
|
842
|
+
Integrate AWSGovCloud accounts can be imported using the `id`, e.g.
|
|
843
|
+
|
|
844
|
+
bash
|
|
807
845
|
|
|
808
846
|
```sh
|
|
809
|
-
|
|
847
|
+
$ pulumi import newrelic:cloud/awsGovcloudIntegrations:AwsGovcloudIntegrations foo <id>
|
|
810
848
|
```
|
|
811
849
|
|
|
812
850
|
:param str resource_name: The name of the resource.
|
|
@@ -824,28 +862,28 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
824
862
|
def _internal_init(__self__,
|
|
825
863
|
resource_name: str,
|
|
826
864
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
827
|
-
account_id: Optional[pulumi.Input[
|
|
828
|
-
alb: Optional[pulumi.Input[
|
|
829
|
-
api_gateway: Optional[pulumi.Input[
|
|
830
|
-
auto_scaling: Optional[pulumi.Input[
|
|
831
|
-
aws_direct_connect: Optional[pulumi.Input[
|
|
832
|
-
aws_states: Optional[pulumi.Input[
|
|
833
|
-
cloudtrail: Optional[pulumi.Input[
|
|
834
|
-
dynamo_db: Optional[pulumi.Input[
|
|
835
|
-
ebs: Optional[pulumi.Input[
|
|
836
|
-
ec2: Optional[pulumi.Input[
|
|
837
|
-
elastic_search: Optional[pulumi.Input[
|
|
838
|
-
elb: Optional[pulumi.Input[
|
|
839
|
-
emr: Optional[pulumi.Input[
|
|
840
|
-
iam: Optional[pulumi.Input[
|
|
841
|
-
lambda_: Optional[pulumi.Input[
|
|
842
|
-
linked_account_id: Optional[pulumi.Input[
|
|
843
|
-
rds: Optional[pulumi.Input[
|
|
844
|
-
red_shift: Optional[pulumi.Input[
|
|
845
|
-
route53: Optional[pulumi.Input[
|
|
846
|
-
s3: Optional[pulumi.Input[
|
|
847
|
-
sns: Optional[pulumi.Input[
|
|
848
|
-
sqs: Optional[pulumi.Input[
|
|
865
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
866
|
+
alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
|
|
867
|
+
api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
|
|
868
|
+
auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
|
|
869
|
+
aws_direct_connect: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAwsDirectConnectArgs', 'AwsGovcloudIntegrationsAwsDirectConnectArgsDict']]] = None,
|
|
870
|
+
aws_states: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAwsStatesArgs', 'AwsGovcloudIntegrationsAwsStatesArgsDict']]] = None,
|
|
871
|
+
cloudtrail: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsCloudtrailArgs', 'AwsGovcloudIntegrationsCloudtrailArgsDict']]] = None,
|
|
872
|
+
dynamo_db: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsDynamoDbArgs', 'AwsGovcloudIntegrationsDynamoDbArgsDict']]] = None,
|
|
873
|
+
ebs: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEbsArgs', 'AwsGovcloudIntegrationsEbsArgsDict']]] = None,
|
|
874
|
+
ec2: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEc2Args', 'AwsGovcloudIntegrationsEc2ArgsDict']]] = None,
|
|
875
|
+
elastic_search: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsElasticSearchArgs', 'AwsGovcloudIntegrationsElasticSearchArgsDict']]] = None,
|
|
876
|
+
elb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsElbArgs', 'AwsGovcloudIntegrationsElbArgsDict']]] = None,
|
|
877
|
+
emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
|
|
878
|
+
iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
|
|
879
|
+
lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
|
|
880
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
881
|
+
rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
|
|
882
|
+
red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
|
|
883
|
+
route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
|
|
884
|
+
s3: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsS3Args', 'AwsGovcloudIntegrationsS3ArgsDict']]] = None,
|
|
885
|
+
sns: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsSnsArgs', 'AwsGovcloudIntegrationsSnsArgsDict']]] = None,
|
|
886
|
+
sqs: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsSqsArgs', 'AwsGovcloudIntegrationsSqsArgsDict']]] = None,
|
|
849
887
|
__props__=None):
|
|
850
888
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
851
889
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -889,28 +927,28 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
889
927
|
def get(resource_name: str,
|
|
890
928
|
id: pulumi.Input[str],
|
|
891
929
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
892
|
-
account_id: Optional[pulumi.Input[
|
|
893
|
-
alb: Optional[pulumi.Input[
|
|
894
|
-
api_gateway: Optional[pulumi.Input[
|
|
895
|
-
auto_scaling: Optional[pulumi.Input[
|
|
896
|
-
aws_direct_connect: Optional[pulumi.Input[
|
|
897
|
-
aws_states: Optional[pulumi.Input[
|
|
898
|
-
cloudtrail: Optional[pulumi.Input[
|
|
899
|
-
dynamo_db: Optional[pulumi.Input[
|
|
900
|
-
ebs: Optional[pulumi.Input[
|
|
901
|
-
ec2: Optional[pulumi.Input[
|
|
902
|
-
elastic_search: Optional[pulumi.Input[
|
|
903
|
-
elb: Optional[pulumi.Input[
|
|
904
|
-
emr: Optional[pulumi.Input[
|
|
905
|
-
iam: Optional[pulumi.Input[
|
|
906
|
-
lambda_: Optional[pulumi.Input[
|
|
907
|
-
linked_account_id: Optional[pulumi.Input[
|
|
908
|
-
rds: Optional[pulumi.Input[
|
|
909
|
-
red_shift: Optional[pulumi.Input[
|
|
910
|
-
route53: Optional[pulumi.Input[
|
|
911
|
-
s3: Optional[pulumi.Input[
|
|
912
|
-
sns: Optional[pulumi.Input[
|
|
913
|
-
sqs: Optional[pulumi.Input[
|
|
930
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
931
|
+
alb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']]] = None,
|
|
932
|
+
api_gateway: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']]] = None,
|
|
933
|
+
auto_scaling: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']]] = None,
|
|
934
|
+
aws_direct_connect: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAwsDirectConnectArgs', 'AwsGovcloudIntegrationsAwsDirectConnectArgsDict']]] = None,
|
|
935
|
+
aws_states: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsAwsStatesArgs', 'AwsGovcloudIntegrationsAwsStatesArgsDict']]] = None,
|
|
936
|
+
cloudtrail: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsCloudtrailArgs', 'AwsGovcloudIntegrationsCloudtrailArgsDict']]] = None,
|
|
937
|
+
dynamo_db: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsDynamoDbArgs', 'AwsGovcloudIntegrationsDynamoDbArgsDict']]] = None,
|
|
938
|
+
ebs: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEbsArgs', 'AwsGovcloudIntegrationsEbsArgsDict']]] = None,
|
|
939
|
+
ec2: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEc2Args', 'AwsGovcloudIntegrationsEc2ArgsDict']]] = None,
|
|
940
|
+
elastic_search: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsElasticSearchArgs', 'AwsGovcloudIntegrationsElasticSearchArgsDict']]] = None,
|
|
941
|
+
elb: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsElbArgs', 'AwsGovcloudIntegrationsElbArgsDict']]] = None,
|
|
942
|
+
emr: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']]] = None,
|
|
943
|
+
iam: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']]] = None,
|
|
944
|
+
lambda_: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']]] = None,
|
|
945
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
946
|
+
rds: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']]] = None,
|
|
947
|
+
red_shift: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']]] = None,
|
|
948
|
+
route53: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']]] = None,
|
|
949
|
+
s3: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsS3Args', 'AwsGovcloudIntegrationsS3ArgsDict']]] = None,
|
|
950
|
+
sns: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsSnsArgs', 'AwsGovcloudIntegrationsSnsArgsDict']]] = None,
|
|
951
|
+
sqs: Optional[pulumi.Input[Union['AwsGovcloudIntegrationsSqsArgs', 'AwsGovcloudIntegrationsSqsArgsDict']]] = None) -> 'AwsGovcloudIntegrations':
|
|
914
952
|
"""
|
|
915
953
|
Get an existing AwsGovcloudIntegrations resource's state with the given name, id, and optional extra
|
|
916
954
|
properties used to qualify the lookup.
|
|
@@ -918,28 +956,28 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
918
956
|
:param str resource_name: The unique name of the resulting resource.
|
|
919
957
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
920
958
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
921
|
-
:param pulumi.Input[
|
|
922
|
-
:param pulumi.Input[
|
|
923
|
-
:param pulumi.Input[
|
|
924
|
-
:param pulumi.Input[
|
|
925
|
-
:param pulumi.Input[
|
|
926
|
-
:param pulumi.Input[
|
|
927
|
-
:param pulumi.Input[
|
|
928
|
-
:param pulumi.Input[
|
|
929
|
-
:param pulumi.Input[
|
|
930
|
-
:param pulumi.Input[
|
|
931
|
-
:param pulumi.Input[
|
|
932
|
-
:param pulumi.Input[
|
|
933
|
-
:param pulumi.Input[
|
|
934
|
-
:param pulumi.Input[
|
|
935
|
-
:param pulumi.Input[
|
|
936
|
-
:param pulumi.Input[
|
|
937
|
-
:param pulumi.Input[
|
|
938
|
-
:param pulumi.Input[
|
|
939
|
-
:param pulumi.Input[
|
|
940
|
-
:param pulumi.Input[
|
|
941
|
-
:param pulumi.Input[
|
|
942
|
-
:param pulumi.Input[
|
|
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`.
|
|
960
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAlbArgs', 'AwsGovcloudIntegrationsAlbArgsDict']] alb: Application load balancer AwsGovCloud integration.See Integration blocks below for details.
|
|
961
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsApiGatewayArgs', 'AwsGovcloudIntegrationsApiGatewayArgsDict']] api_gateway: Api Gateway AwsGovCloud integration.See Integration blocks below for details.
|
|
962
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAutoScalingArgs', 'AwsGovcloudIntegrationsAutoScalingArgsDict']] auto_scaling: Autoscaling AwsGovCloud integration.See Integration blocks below for details.
|
|
963
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAwsDirectConnectArgs', 'AwsGovcloudIntegrationsAwsDirectConnectArgsDict']] aws_direct_connect: Aws Direct Connect AwsGovCloud integration.See Integration blocks below for details.
|
|
964
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsAwsStatesArgs', 'AwsGovcloudIntegrationsAwsStatesArgsDict']] aws_states: Aws States AwsGovCloud integration.See Integration blocks below for details.
|
|
965
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsCloudtrailArgs', 'AwsGovcloudIntegrationsCloudtrailArgsDict']] cloudtrail: Cloudtrail AwsGovCloud integration.See Integration blocks below for details.
|
|
966
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsDynamoDbArgs', 'AwsGovcloudIntegrationsDynamoDbArgsDict']] dynamo_db: Dynamo DB AwsGovCloud integration.See Integration blocks below for details.
|
|
967
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsEbsArgs', 'AwsGovcloudIntegrationsEbsArgsDict']] ebs: Elastic Beanstalk AwsGovCloud integration.See Integration blocks below for details.
|
|
968
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsEc2Args', 'AwsGovcloudIntegrationsEc2ArgsDict']] ec2: EC2 AwsGovCloud integration.See Integration blocks below for details.
|
|
969
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsElasticSearchArgs', 'AwsGovcloudIntegrationsElasticSearchArgsDict']] elastic_search: Elastic search AwsGovCloud integration.See Integration blocks below for details.
|
|
970
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsElbArgs', 'AwsGovcloudIntegrationsElbArgsDict']] elb: Elb AwsGovCloud integration.See Integration blocks below for details.
|
|
971
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsEmrArgs', 'AwsGovcloudIntegrationsEmrArgsDict']] emr: Emr AwsGovCloud integration.See Integration blocks below for details.
|
|
972
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsIamArgs', 'AwsGovcloudIntegrationsIamArgsDict']] iam: IAM AwsGovCloud integration.See Integration blocks below for details.
|
|
973
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsLambdaArgs', 'AwsGovcloudIntegrationsLambdaArgsDict']] lambda_: Lambda AwsGovCloud integration.See Integration blocks below for details.
|
|
974
|
+
:param pulumi.Input[_builtins.str] linked_account_id: The access key of the AwsGovCloud.
|
|
975
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsRdsArgs', 'AwsGovcloudIntegrationsRdsArgsDict']] rds: RDS AwsGovCloud integration.See Integration blocks below for details.
|
|
976
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsRedShiftArgs', 'AwsGovcloudIntegrationsRedShiftArgsDict']] red_shift: Redshift AwsGovCloud integration.See Integration blocks below for details.
|
|
977
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsRoute53Args', 'AwsGovcloudIntegrationsRoute53ArgsDict']] route53: Route53 AwsGovCloud integration.See Integration blocks below for details.
|
|
978
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsS3Args', 'AwsGovcloudIntegrationsS3ArgsDict']] s3: The s3 integration
|
|
979
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsSnsArgs', 'AwsGovcloudIntegrationsSnsArgsDict']] sns: SNS AwsGovCloud integration.See Integration blocks below for details.
|
|
980
|
+
:param pulumi.Input[Union['AwsGovcloudIntegrationsSqsArgs', 'AwsGovcloudIntegrationsSqsArgsDict']] sqs: SQS AwsGovCloud integration.See Integration blocks below for details.
|
|
943
981
|
"""
|
|
944
982
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
945
983
|
|
|
@@ -969,15 +1007,15 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
969
1007
|
__props__.__dict__["sqs"] = sqs
|
|
970
1008
|
return AwsGovcloudIntegrations(resource_name, opts=opts, __props__=__props__)
|
|
971
1009
|
|
|
972
|
-
@property
|
|
1010
|
+
@_builtins.property
|
|
973
1011
|
@pulumi.getter(name="accountId")
|
|
974
|
-
def account_id(self) -> pulumi.Output[
|
|
1012
|
+
def account_id(self) -> pulumi.Output[_builtins.str]:
|
|
975
1013
|
"""
|
|
976
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`.
|
|
977
1015
|
"""
|
|
978
1016
|
return pulumi.get(self, "account_id")
|
|
979
1017
|
|
|
980
|
-
@property
|
|
1018
|
+
@_builtins.property
|
|
981
1019
|
@pulumi.getter
|
|
982
1020
|
def alb(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAlb']]:
|
|
983
1021
|
"""
|
|
@@ -985,7 +1023,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
985
1023
|
"""
|
|
986
1024
|
return pulumi.get(self, "alb")
|
|
987
1025
|
|
|
988
|
-
@property
|
|
1026
|
+
@_builtins.property
|
|
989
1027
|
@pulumi.getter(name="apiGateway")
|
|
990
1028
|
def api_gateway(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsApiGateway']]:
|
|
991
1029
|
"""
|
|
@@ -993,7 +1031,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
993
1031
|
"""
|
|
994
1032
|
return pulumi.get(self, "api_gateway")
|
|
995
1033
|
|
|
996
|
-
@property
|
|
1034
|
+
@_builtins.property
|
|
997
1035
|
@pulumi.getter(name="autoScaling")
|
|
998
1036
|
def auto_scaling(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAutoScaling']]:
|
|
999
1037
|
"""
|
|
@@ -1001,7 +1039,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1001
1039
|
"""
|
|
1002
1040
|
return pulumi.get(self, "auto_scaling")
|
|
1003
1041
|
|
|
1004
|
-
@property
|
|
1042
|
+
@_builtins.property
|
|
1005
1043
|
@pulumi.getter(name="awsDirectConnect")
|
|
1006
1044
|
def aws_direct_connect(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAwsDirectConnect']]:
|
|
1007
1045
|
"""
|
|
@@ -1009,7 +1047,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1009
1047
|
"""
|
|
1010
1048
|
return pulumi.get(self, "aws_direct_connect")
|
|
1011
1049
|
|
|
1012
|
-
@property
|
|
1050
|
+
@_builtins.property
|
|
1013
1051
|
@pulumi.getter(name="awsStates")
|
|
1014
1052
|
def aws_states(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsAwsStates']]:
|
|
1015
1053
|
"""
|
|
@@ -1017,7 +1055,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1017
1055
|
"""
|
|
1018
1056
|
return pulumi.get(self, "aws_states")
|
|
1019
1057
|
|
|
1020
|
-
@property
|
|
1058
|
+
@_builtins.property
|
|
1021
1059
|
@pulumi.getter
|
|
1022
1060
|
def cloudtrail(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsCloudtrail']]:
|
|
1023
1061
|
"""
|
|
@@ -1025,7 +1063,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1025
1063
|
"""
|
|
1026
1064
|
return pulumi.get(self, "cloudtrail")
|
|
1027
1065
|
|
|
1028
|
-
@property
|
|
1066
|
+
@_builtins.property
|
|
1029
1067
|
@pulumi.getter(name="dynamoDb")
|
|
1030
1068
|
def dynamo_db(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsDynamoDb']]:
|
|
1031
1069
|
"""
|
|
@@ -1033,7 +1071,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1033
1071
|
"""
|
|
1034
1072
|
return pulumi.get(self, "dynamo_db")
|
|
1035
1073
|
|
|
1036
|
-
@property
|
|
1074
|
+
@_builtins.property
|
|
1037
1075
|
@pulumi.getter
|
|
1038
1076
|
def ebs(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEbs']]:
|
|
1039
1077
|
"""
|
|
@@ -1041,7 +1079,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1041
1079
|
"""
|
|
1042
1080
|
return pulumi.get(self, "ebs")
|
|
1043
1081
|
|
|
1044
|
-
@property
|
|
1082
|
+
@_builtins.property
|
|
1045
1083
|
@pulumi.getter
|
|
1046
1084
|
def ec2(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEc2']]:
|
|
1047
1085
|
"""
|
|
@@ -1049,7 +1087,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1049
1087
|
"""
|
|
1050
1088
|
return pulumi.get(self, "ec2")
|
|
1051
1089
|
|
|
1052
|
-
@property
|
|
1090
|
+
@_builtins.property
|
|
1053
1091
|
@pulumi.getter(name="elasticSearch")
|
|
1054
1092
|
def elastic_search(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsElasticSearch']]:
|
|
1055
1093
|
"""
|
|
@@ -1057,7 +1095,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1057
1095
|
"""
|
|
1058
1096
|
return pulumi.get(self, "elastic_search")
|
|
1059
1097
|
|
|
1060
|
-
@property
|
|
1098
|
+
@_builtins.property
|
|
1061
1099
|
@pulumi.getter
|
|
1062
1100
|
def elb(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsElb']]:
|
|
1063
1101
|
"""
|
|
@@ -1065,7 +1103,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1065
1103
|
"""
|
|
1066
1104
|
return pulumi.get(self, "elb")
|
|
1067
1105
|
|
|
1068
|
-
@property
|
|
1106
|
+
@_builtins.property
|
|
1069
1107
|
@pulumi.getter
|
|
1070
1108
|
def emr(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsEmr']]:
|
|
1071
1109
|
"""
|
|
@@ -1073,7 +1111,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1073
1111
|
"""
|
|
1074
1112
|
return pulumi.get(self, "emr")
|
|
1075
1113
|
|
|
1076
|
-
@property
|
|
1114
|
+
@_builtins.property
|
|
1077
1115
|
@pulumi.getter
|
|
1078
1116
|
def iam(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsIam']]:
|
|
1079
1117
|
"""
|
|
@@ -1081,7 +1119,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1081
1119
|
"""
|
|
1082
1120
|
return pulumi.get(self, "iam")
|
|
1083
1121
|
|
|
1084
|
-
@property
|
|
1122
|
+
@_builtins.property
|
|
1085
1123
|
@pulumi.getter(name="lambda")
|
|
1086
1124
|
def lambda_(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsLambda']]:
|
|
1087
1125
|
"""
|
|
@@ -1089,15 +1127,15 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1089
1127
|
"""
|
|
1090
1128
|
return pulumi.get(self, "lambda_")
|
|
1091
1129
|
|
|
1092
|
-
@property
|
|
1130
|
+
@_builtins.property
|
|
1093
1131
|
@pulumi.getter(name="linkedAccountId")
|
|
1094
|
-
def linked_account_id(self) -> pulumi.Output[
|
|
1132
|
+
def linked_account_id(self) -> pulumi.Output[_builtins.str]:
|
|
1095
1133
|
"""
|
|
1096
1134
|
The access key of the AwsGovCloud.
|
|
1097
1135
|
"""
|
|
1098
1136
|
return pulumi.get(self, "linked_account_id")
|
|
1099
1137
|
|
|
1100
|
-
@property
|
|
1138
|
+
@_builtins.property
|
|
1101
1139
|
@pulumi.getter
|
|
1102
1140
|
def rds(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRds']]:
|
|
1103
1141
|
"""
|
|
@@ -1105,7 +1143,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1105
1143
|
"""
|
|
1106
1144
|
return pulumi.get(self, "rds")
|
|
1107
1145
|
|
|
1108
|
-
@property
|
|
1146
|
+
@_builtins.property
|
|
1109
1147
|
@pulumi.getter(name="redShift")
|
|
1110
1148
|
def red_shift(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRedShift']]:
|
|
1111
1149
|
"""
|
|
@@ -1113,7 +1151,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1113
1151
|
"""
|
|
1114
1152
|
return pulumi.get(self, "red_shift")
|
|
1115
1153
|
|
|
1116
|
-
@property
|
|
1154
|
+
@_builtins.property
|
|
1117
1155
|
@pulumi.getter
|
|
1118
1156
|
def route53(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsRoute53']]:
|
|
1119
1157
|
"""
|
|
@@ -1121,7 +1159,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1121
1159
|
"""
|
|
1122
1160
|
return pulumi.get(self, "route53")
|
|
1123
1161
|
|
|
1124
|
-
@property
|
|
1162
|
+
@_builtins.property
|
|
1125
1163
|
@pulumi.getter
|
|
1126
1164
|
def s3(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsS3']]:
|
|
1127
1165
|
"""
|
|
@@ -1129,7 +1167,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1129
1167
|
"""
|
|
1130
1168
|
return pulumi.get(self, "s3")
|
|
1131
1169
|
|
|
1132
|
-
@property
|
|
1170
|
+
@_builtins.property
|
|
1133
1171
|
@pulumi.getter
|
|
1134
1172
|
def sns(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsSns']]:
|
|
1135
1173
|
"""
|
|
@@ -1137,7 +1175,7 @@ class AwsGovcloudIntegrations(pulumi.CustomResource):
|
|
|
1137
1175
|
"""
|
|
1138
1176
|
return pulumi.get(self, "sns")
|
|
1139
1177
|
|
|
1140
|
-
@property
|
|
1178
|
+
@_builtins.property
|
|
1141
1179
|
@pulumi.getter
|
|
1142
1180
|
def sqs(self) -> pulumi.Output[Optional['outputs.AwsGovcloudIntegrationsSqs']]:
|
|
1143
1181
|
"""
|