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__ = ['GcpIntegrationsArgs', 'GcpIntegrations']
|
|
|
16
21
|
@pulumi.input_type
|
|
17
22
|
class GcpIntegrationsArgs:
|
|
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
|
alloy_db: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']] = None,
|
|
22
27
|
app_engine: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']] = None,
|
|
23
28
|
big_query: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']] = None,
|
|
@@ -46,8 +51,10 @@ class GcpIntegrationsArgs:
|
|
|
46
51
|
vpc_access: Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']] = None):
|
|
47
52
|
"""
|
|
48
53
|
The set of arguments for constructing a GcpIntegrations resource.
|
|
49
|
-
:param pulumi.Input[
|
|
50
|
-
|
|
54
|
+
:param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
|
|
55
|
+
|
|
56
|
+
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
|
57
|
+
:param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
51
58
|
:param pulumi.Input['GcpIntegrationsAlloyDbArgs'] alloy_db: Alloy DB integration. See Integration blocks below for details.
|
|
52
59
|
:param pulumi.Input['GcpIntegrationsAppEngineArgs'] app_engine: App Engine integration. See Integration blocks below for details.
|
|
53
60
|
:param pulumi.Input['GcpIntegrationsBigQueryArgs'] big_query: Biq Query integration. See Integration blocks below for details.
|
|
@@ -131,31 +138,33 @@ class GcpIntegrationsArgs:
|
|
|
131
138
|
if vpc_access is not None:
|
|
132
139
|
pulumi.set(__self__, "vpc_access", vpc_access)
|
|
133
140
|
|
|
134
|
-
@property
|
|
141
|
+
@_builtins.property
|
|
135
142
|
@pulumi.getter(name="linkedAccountId")
|
|
136
|
-
def linked_account_id(self) -> pulumi.Input[
|
|
143
|
+
def linked_account_id(self) -> pulumi.Input[_builtins.str]:
|
|
137
144
|
"""
|
|
138
145
|
The ID of the linked GCP account in New Relic.
|
|
146
|
+
|
|
147
|
+
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
|
139
148
|
"""
|
|
140
149
|
return pulumi.get(self, "linked_account_id")
|
|
141
150
|
|
|
142
151
|
@linked_account_id.setter
|
|
143
|
-
def linked_account_id(self, value: pulumi.Input[
|
|
152
|
+
def linked_account_id(self, value: pulumi.Input[_builtins.str]):
|
|
144
153
|
pulumi.set(self, "linked_account_id", value)
|
|
145
154
|
|
|
146
|
-
@property
|
|
155
|
+
@_builtins.property
|
|
147
156
|
@pulumi.getter(name="accountId")
|
|
148
|
-
def account_id(self) -> Optional[pulumi.Input[
|
|
157
|
+
def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
149
158
|
"""
|
|
150
159
|
The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
151
160
|
"""
|
|
152
161
|
return pulumi.get(self, "account_id")
|
|
153
162
|
|
|
154
163
|
@account_id.setter
|
|
155
|
-
def account_id(self, value: Optional[pulumi.Input[
|
|
164
|
+
def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
156
165
|
pulumi.set(self, "account_id", value)
|
|
157
166
|
|
|
158
|
-
@property
|
|
167
|
+
@_builtins.property
|
|
159
168
|
@pulumi.getter(name="alloyDb")
|
|
160
169
|
def alloy_db(self) -> Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]:
|
|
161
170
|
"""
|
|
@@ -167,7 +176,7 @@ class GcpIntegrationsArgs:
|
|
|
167
176
|
def alloy_db(self, value: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]):
|
|
168
177
|
pulumi.set(self, "alloy_db", value)
|
|
169
178
|
|
|
170
|
-
@property
|
|
179
|
+
@_builtins.property
|
|
171
180
|
@pulumi.getter(name="appEngine")
|
|
172
181
|
def app_engine(self) -> Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]:
|
|
173
182
|
"""
|
|
@@ -179,7 +188,7 @@ class GcpIntegrationsArgs:
|
|
|
179
188
|
def app_engine(self, value: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]):
|
|
180
189
|
pulumi.set(self, "app_engine", value)
|
|
181
190
|
|
|
182
|
-
@property
|
|
191
|
+
@_builtins.property
|
|
183
192
|
@pulumi.getter(name="bigQuery")
|
|
184
193
|
def big_query(self) -> Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]:
|
|
185
194
|
"""
|
|
@@ -191,7 +200,7 @@ class GcpIntegrationsArgs:
|
|
|
191
200
|
def big_query(self, value: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]):
|
|
192
201
|
pulumi.set(self, "big_query", value)
|
|
193
202
|
|
|
194
|
-
@property
|
|
203
|
+
@_builtins.property
|
|
195
204
|
@pulumi.getter(name="bigTable")
|
|
196
205
|
def big_table(self) -> Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]:
|
|
197
206
|
"""
|
|
@@ -203,7 +212,7 @@ class GcpIntegrationsArgs:
|
|
|
203
212
|
def big_table(self, value: Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]):
|
|
204
213
|
pulumi.set(self, "big_table", value)
|
|
205
214
|
|
|
206
|
-
@property
|
|
215
|
+
@_builtins.property
|
|
207
216
|
@pulumi.getter
|
|
208
217
|
def composer(self) -> Optional[pulumi.Input['GcpIntegrationsComposerArgs']]:
|
|
209
218
|
"""
|
|
@@ -215,7 +224,7 @@ class GcpIntegrationsArgs:
|
|
|
215
224
|
def composer(self, value: Optional[pulumi.Input['GcpIntegrationsComposerArgs']]):
|
|
216
225
|
pulumi.set(self, "composer", value)
|
|
217
226
|
|
|
218
|
-
@property
|
|
227
|
+
@_builtins.property
|
|
219
228
|
@pulumi.getter(name="dataFlow")
|
|
220
229
|
def data_flow(self) -> Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]:
|
|
221
230
|
"""
|
|
@@ -227,7 +236,7 @@ class GcpIntegrationsArgs:
|
|
|
227
236
|
def data_flow(self, value: Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]):
|
|
228
237
|
pulumi.set(self, "data_flow", value)
|
|
229
238
|
|
|
230
|
-
@property
|
|
239
|
+
@_builtins.property
|
|
231
240
|
@pulumi.getter(name="dataProc")
|
|
232
241
|
def data_proc(self) -> Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]:
|
|
233
242
|
"""
|
|
@@ -239,7 +248,7 @@ class GcpIntegrationsArgs:
|
|
|
239
248
|
def data_proc(self, value: Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]):
|
|
240
249
|
pulumi.set(self, "data_proc", value)
|
|
241
250
|
|
|
242
|
-
@property
|
|
251
|
+
@_builtins.property
|
|
243
252
|
@pulumi.getter(name="dataStore")
|
|
244
253
|
def data_store(self) -> Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]:
|
|
245
254
|
"""
|
|
@@ -251,7 +260,7 @@ class GcpIntegrationsArgs:
|
|
|
251
260
|
def data_store(self, value: Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]):
|
|
252
261
|
pulumi.set(self, "data_store", value)
|
|
253
262
|
|
|
254
|
-
@property
|
|
263
|
+
@_builtins.property
|
|
255
264
|
@pulumi.getter(name="fireBaseDatabase")
|
|
256
265
|
def fire_base_database(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]:
|
|
257
266
|
"""
|
|
@@ -263,7 +272,7 @@ class GcpIntegrationsArgs:
|
|
|
263
272
|
def fire_base_database(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]):
|
|
264
273
|
pulumi.set(self, "fire_base_database", value)
|
|
265
274
|
|
|
266
|
-
@property
|
|
275
|
+
@_builtins.property
|
|
267
276
|
@pulumi.getter(name="fireBaseHosting")
|
|
268
277
|
def fire_base_hosting(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]:
|
|
269
278
|
"""
|
|
@@ -275,7 +284,7 @@ class GcpIntegrationsArgs:
|
|
|
275
284
|
def fire_base_hosting(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]):
|
|
276
285
|
pulumi.set(self, "fire_base_hosting", value)
|
|
277
286
|
|
|
278
|
-
@property
|
|
287
|
+
@_builtins.property
|
|
279
288
|
@pulumi.getter(name="fireBaseStorage")
|
|
280
289
|
def fire_base_storage(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]:
|
|
281
290
|
"""
|
|
@@ -287,7 +296,7 @@ class GcpIntegrationsArgs:
|
|
|
287
296
|
def fire_base_storage(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]):
|
|
288
297
|
pulumi.set(self, "fire_base_storage", value)
|
|
289
298
|
|
|
290
|
-
@property
|
|
299
|
+
@_builtins.property
|
|
291
300
|
@pulumi.getter(name="fireStore")
|
|
292
301
|
def fire_store(self) -> Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]:
|
|
293
302
|
"""
|
|
@@ -299,7 +308,7 @@ class GcpIntegrationsArgs:
|
|
|
299
308
|
def fire_store(self, value: Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]):
|
|
300
309
|
pulumi.set(self, "fire_store", value)
|
|
301
310
|
|
|
302
|
-
@property
|
|
311
|
+
@_builtins.property
|
|
303
312
|
@pulumi.getter
|
|
304
313
|
def functions(self) -> Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]:
|
|
305
314
|
"""
|
|
@@ -311,7 +320,7 @@ class GcpIntegrationsArgs:
|
|
|
311
320
|
def functions(self, value: Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]):
|
|
312
321
|
pulumi.set(self, "functions", value)
|
|
313
322
|
|
|
314
|
-
@property
|
|
323
|
+
@_builtins.property
|
|
315
324
|
@pulumi.getter
|
|
316
325
|
def interconnect(self) -> Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]:
|
|
317
326
|
"""
|
|
@@ -323,7 +332,7 @@ class GcpIntegrationsArgs:
|
|
|
323
332
|
def interconnect(self, value: Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]):
|
|
324
333
|
pulumi.set(self, "interconnect", value)
|
|
325
334
|
|
|
326
|
-
@property
|
|
335
|
+
@_builtins.property
|
|
327
336
|
@pulumi.getter
|
|
328
337
|
def kubernetes(self) -> Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]:
|
|
329
338
|
"""
|
|
@@ -335,7 +344,7 @@ class GcpIntegrationsArgs:
|
|
|
335
344
|
def kubernetes(self, value: Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]):
|
|
336
345
|
pulumi.set(self, "kubernetes", value)
|
|
337
346
|
|
|
338
|
-
@property
|
|
347
|
+
@_builtins.property
|
|
339
348
|
@pulumi.getter(name="loadBalancing")
|
|
340
349
|
def load_balancing(self) -> Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]:
|
|
341
350
|
"""
|
|
@@ -347,7 +356,7 @@ class GcpIntegrationsArgs:
|
|
|
347
356
|
def load_balancing(self, value: Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]):
|
|
348
357
|
pulumi.set(self, "load_balancing", value)
|
|
349
358
|
|
|
350
|
-
@property
|
|
359
|
+
@_builtins.property
|
|
351
360
|
@pulumi.getter(name="memCache")
|
|
352
361
|
def mem_cache(self) -> Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]:
|
|
353
362
|
"""
|
|
@@ -359,7 +368,7 @@ class GcpIntegrationsArgs:
|
|
|
359
368
|
def mem_cache(self, value: Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]):
|
|
360
369
|
pulumi.set(self, "mem_cache", value)
|
|
361
370
|
|
|
362
|
-
@property
|
|
371
|
+
@_builtins.property
|
|
363
372
|
@pulumi.getter(name="pubSub")
|
|
364
373
|
def pub_sub(self) -> Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]:
|
|
365
374
|
"""
|
|
@@ -371,7 +380,7 @@ class GcpIntegrationsArgs:
|
|
|
371
380
|
def pub_sub(self, value: Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]):
|
|
372
381
|
pulumi.set(self, "pub_sub", value)
|
|
373
382
|
|
|
374
|
-
@property
|
|
383
|
+
@_builtins.property
|
|
375
384
|
@pulumi.getter
|
|
376
385
|
def redis(self) -> Optional[pulumi.Input['GcpIntegrationsRedisArgs']]:
|
|
377
386
|
"""
|
|
@@ -383,7 +392,7 @@ class GcpIntegrationsArgs:
|
|
|
383
392
|
def redis(self, value: Optional[pulumi.Input['GcpIntegrationsRedisArgs']]):
|
|
384
393
|
pulumi.set(self, "redis", value)
|
|
385
394
|
|
|
386
|
-
@property
|
|
395
|
+
@_builtins.property
|
|
387
396
|
@pulumi.getter
|
|
388
397
|
def router(self) -> Optional[pulumi.Input['GcpIntegrationsRouterArgs']]:
|
|
389
398
|
"""
|
|
@@ -395,7 +404,7 @@ class GcpIntegrationsArgs:
|
|
|
395
404
|
def router(self, value: Optional[pulumi.Input['GcpIntegrationsRouterArgs']]):
|
|
396
405
|
pulumi.set(self, "router", value)
|
|
397
406
|
|
|
398
|
-
@property
|
|
407
|
+
@_builtins.property
|
|
399
408
|
@pulumi.getter
|
|
400
409
|
def run(self) -> Optional[pulumi.Input['GcpIntegrationsRunArgs']]:
|
|
401
410
|
"""
|
|
@@ -407,7 +416,7 @@ class GcpIntegrationsArgs:
|
|
|
407
416
|
def run(self, value: Optional[pulumi.Input['GcpIntegrationsRunArgs']]):
|
|
408
417
|
pulumi.set(self, "run", value)
|
|
409
418
|
|
|
410
|
-
@property
|
|
419
|
+
@_builtins.property
|
|
411
420
|
@pulumi.getter
|
|
412
421
|
def spanner(self) -> Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]:
|
|
413
422
|
"""
|
|
@@ -419,7 +428,7 @@ class GcpIntegrationsArgs:
|
|
|
419
428
|
def spanner(self, value: Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]):
|
|
420
429
|
pulumi.set(self, "spanner", value)
|
|
421
430
|
|
|
422
|
-
@property
|
|
431
|
+
@_builtins.property
|
|
423
432
|
@pulumi.getter
|
|
424
433
|
def sql(self) -> Optional[pulumi.Input['GcpIntegrationsSqlArgs']]:
|
|
425
434
|
"""
|
|
@@ -431,7 +440,7 @@ class GcpIntegrationsArgs:
|
|
|
431
440
|
def sql(self, value: Optional[pulumi.Input['GcpIntegrationsSqlArgs']]):
|
|
432
441
|
pulumi.set(self, "sql", value)
|
|
433
442
|
|
|
434
|
-
@property
|
|
443
|
+
@_builtins.property
|
|
435
444
|
@pulumi.getter
|
|
436
445
|
def storage(self) -> Optional[pulumi.Input['GcpIntegrationsStorageArgs']]:
|
|
437
446
|
"""
|
|
@@ -443,7 +452,7 @@ class GcpIntegrationsArgs:
|
|
|
443
452
|
def storage(self, value: Optional[pulumi.Input['GcpIntegrationsStorageArgs']]):
|
|
444
453
|
pulumi.set(self, "storage", value)
|
|
445
454
|
|
|
446
|
-
@property
|
|
455
|
+
@_builtins.property
|
|
447
456
|
@pulumi.getter(name="virtualMachines")
|
|
448
457
|
def virtual_machines(self) -> Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]:
|
|
449
458
|
"""
|
|
@@ -455,7 +464,7 @@ class GcpIntegrationsArgs:
|
|
|
455
464
|
def virtual_machines(self, value: Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]):
|
|
456
465
|
pulumi.set(self, "virtual_machines", value)
|
|
457
466
|
|
|
458
|
-
@property
|
|
467
|
+
@_builtins.property
|
|
459
468
|
@pulumi.getter(name="vpcAccess")
|
|
460
469
|
def vpc_access(self) -> Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']]:
|
|
461
470
|
"""
|
|
@@ -471,7 +480,7 @@ class GcpIntegrationsArgs:
|
|
|
471
480
|
@pulumi.input_type
|
|
472
481
|
class _GcpIntegrationsState:
|
|
473
482
|
def __init__(__self__, *,
|
|
474
|
-
account_id: Optional[pulumi.Input[
|
|
483
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
475
484
|
alloy_db: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']] = None,
|
|
476
485
|
app_engine: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']] = None,
|
|
477
486
|
big_query: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']] = None,
|
|
@@ -487,7 +496,7 @@ class _GcpIntegrationsState:
|
|
|
487
496
|
functions: Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']] = None,
|
|
488
497
|
interconnect: Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']] = None,
|
|
489
498
|
kubernetes: Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']] = None,
|
|
490
|
-
linked_account_id: Optional[pulumi.Input[
|
|
499
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
491
500
|
load_balancing: Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']] = None,
|
|
492
501
|
mem_cache: Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']] = None,
|
|
493
502
|
pub_sub: Optional[pulumi.Input['GcpIntegrationsPubSubArgs']] = None,
|
|
@@ -501,7 +510,7 @@ class _GcpIntegrationsState:
|
|
|
501
510
|
vpc_access: Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']] = None):
|
|
502
511
|
"""
|
|
503
512
|
Input properties used for looking up and filtering GcpIntegrations resources.
|
|
504
|
-
:param pulumi.Input[
|
|
513
|
+
:param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
505
514
|
:param pulumi.Input['GcpIntegrationsAlloyDbArgs'] alloy_db: Alloy DB integration. See Integration blocks below for details.
|
|
506
515
|
:param pulumi.Input['GcpIntegrationsAppEngineArgs'] app_engine: App Engine integration. See Integration blocks below for details.
|
|
507
516
|
:param pulumi.Input['GcpIntegrationsBigQueryArgs'] big_query: Biq Query integration. See Integration blocks below for details.
|
|
@@ -517,7 +526,9 @@ class _GcpIntegrationsState:
|
|
|
517
526
|
:param pulumi.Input['GcpIntegrationsFunctionsArgs'] functions: Functions integration. See Integration blocks below for details.
|
|
518
527
|
:param pulumi.Input['GcpIntegrationsInterconnectArgs'] interconnect: Interconnect integration. See Integration blocks below for details.
|
|
519
528
|
:param pulumi.Input['GcpIntegrationsKubernetesArgs'] kubernetes: Kubernetes integration. See Integration blocks below for details.
|
|
520
|
-
:param pulumi.Input[
|
|
529
|
+
:param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
|
|
530
|
+
|
|
531
|
+
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
|
521
532
|
:param pulumi.Input['GcpIntegrationsLoadBalancingArgs'] load_balancing: Load Balancing integration. See Integration blocks below for details.
|
|
522
533
|
:param pulumi.Input['GcpIntegrationsMemCacheArgs'] mem_cache: Mem cache integration. See Integration blocks below for details.
|
|
523
534
|
:param pulumi.Input['GcpIntegrationsPubSubArgs'] pub_sub: Pub/Sub integration. See Integration blocks below for details.
|
|
@@ -587,19 +598,19 @@ class _GcpIntegrationsState:
|
|
|
587
598
|
if vpc_access is not None:
|
|
588
599
|
pulumi.set(__self__, "vpc_access", vpc_access)
|
|
589
600
|
|
|
590
|
-
@property
|
|
601
|
+
@_builtins.property
|
|
591
602
|
@pulumi.getter(name="accountId")
|
|
592
|
-
def account_id(self) -> Optional[pulumi.Input[
|
|
603
|
+
def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
593
604
|
"""
|
|
594
605
|
The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
595
606
|
"""
|
|
596
607
|
return pulumi.get(self, "account_id")
|
|
597
608
|
|
|
598
609
|
@account_id.setter
|
|
599
|
-
def account_id(self, value: Optional[pulumi.Input[
|
|
610
|
+
def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
600
611
|
pulumi.set(self, "account_id", value)
|
|
601
612
|
|
|
602
|
-
@property
|
|
613
|
+
@_builtins.property
|
|
603
614
|
@pulumi.getter(name="alloyDb")
|
|
604
615
|
def alloy_db(self) -> Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]:
|
|
605
616
|
"""
|
|
@@ -611,7 +622,7 @@ class _GcpIntegrationsState:
|
|
|
611
622
|
def alloy_db(self, value: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']]):
|
|
612
623
|
pulumi.set(self, "alloy_db", value)
|
|
613
624
|
|
|
614
|
-
@property
|
|
625
|
+
@_builtins.property
|
|
615
626
|
@pulumi.getter(name="appEngine")
|
|
616
627
|
def app_engine(self) -> Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]:
|
|
617
628
|
"""
|
|
@@ -623,7 +634,7 @@ class _GcpIntegrationsState:
|
|
|
623
634
|
def app_engine(self, value: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']]):
|
|
624
635
|
pulumi.set(self, "app_engine", value)
|
|
625
636
|
|
|
626
|
-
@property
|
|
637
|
+
@_builtins.property
|
|
627
638
|
@pulumi.getter(name="bigQuery")
|
|
628
639
|
def big_query(self) -> Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]:
|
|
629
640
|
"""
|
|
@@ -635,7 +646,7 @@ class _GcpIntegrationsState:
|
|
|
635
646
|
def big_query(self, value: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']]):
|
|
636
647
|
pulumi.set(self, "big_query", value)
|
|
637
648
|
|
|
638
|
-
@property
|
|
649
|
+
@_builtins.property
|
|
639
650
|
@pulumi.getter(name="bigTable")
|
|
640
651
|
def big_table(self) -> Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]:
|
|
641
652
|
"""
|
|
@@ -647,7 +658,7 @@ class _GcpIntegrationsState:
|
|
|
647
658
|
def big_table(self, value: Optional[pulumi.Input['GcpIntegrationsBigTableArgs']]):
|
|
648
659
|
pulumi.set(self, "big_table", value)
|
|
649
660
|
|
|
650
|
-
@property
|
|
661
|
+
@_builtins.property
|
|
651
662
|
@pulumi.getter
|
|
652
663
|
def composer(self) -> Optional[pulumi.Input['GcpIntegrationsComposerArgs']]:
|
|
653
664
|
"""
|
|
@@ -659,7 +670,7 @@ class _GcpIntegrationsState:
|
|
|
659
670
|
def composer(self, value: Optional[pulumi.Input['GcpIntegrationsComposerArgs']]):
|
|
660
671
|
pulumi.set(self, "composer", value)
|
|
661
672
|
|
|
662
|
-
@property
|
|
673
|
+
@_builtins.property
|
|
663
674
|
@pulumi.getter(name="dataFlow")
|
|
664
675
|
def data_flow(self) -> Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]:
|
|
665
676
|
"""
|
|
@@ -671,7 +682,7 @@ class _GcpIntegrationsState:
|
|
|
671
682
|
def data_flow(self, value: Optional[pulumi.Input['GcpIntegrationsDataFlowArgs']]):
|
|
672
683
|
pulumi.set(self, "data_flow", value)
|
|
673
684
|
|
|
674
|
-
@property
|
|
685
|
+
@_builtins.property
|
|
675
686
|
@pulumi.getter(name="dataProc")
|
|
676
687
|
def data_proc(self) -> Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]:
|
|
677
688
|
"""
|
|
@@ -683,7 +694,7 @@ class _GcpIntegrationsState:
|
|
|
683
694
|
def data_proc(self, value: Optional[pulumi.Input['GcpIntegrationsDataProcArgs']]):
|
|
684
695
|
pulumi.set(self, "data_proc", value)
|
|
685
696
|
|
|
686
|
-
@property
|
|
697
|
+
@_builtins.property
|
|
687
698
|
@pulumi.getter(name="dataStore")
|
|
688
699
|
def data_store(self) -> Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]:
|
|
689
700
|
"""
|
|
@@ -695,7 +706,7 @@ class _GcpIntegrationsState:
|
|
|
695
706
|
def data_store(self, value: Optional[pulumi.Input['GcpIntegrationsDataStoreArgs']]):
|
|
696
707
|
pulumi.set(self, "data_store", value)
|
|
697
708
|
|
|
698
|
-
@property
|
|
709
|
+
@_builtins.property
|
|
699
710
|
@pulumi.getter(name="fireBaseDatabase")
|
|
700
711
|
def fire_base_database(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]:
|
|
701
712
|
"""
|
|
@@ -707,7 +718,7 @@ class _GcpIntegrationsState:
|
|
|
707
718
|
def fire_base_database(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseDatabaseArgs']]):
|
|
708
719
|
pulumi.set(self, "fire_base_database", value)
|
|
709
720
|
|
|
710
|
-
@property
|
|
721
|
+
@_builtins.property
|
|
711
722
|
@pulumi.getter(name="fireBaseHosting")
|
|
712
723
|
def fire_base_hosting(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]:
|
|
713
724
|
"""
|
|
@@ -719,7 +730,7 @@ class _GcpIntegrationsState:
|
|
|
719
730
|
def fire_base_hosting(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseHostingArgs']]):
|
|
720
731
|
pulumi.set(self, "fire_base_hosting", value)
|
|
721
732
|
|
|
722
|
-
@property
|
|
733
|
+
@_builtins.property
|
|
723
734
|
@pulumi.getter(name="fireBaseStorage")
|
|
724
735
|
def fire_base_storage(self) -> Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]:
|
|
725
736
|
"""
|
|
@@ -731,7 +742,7 @@ class _GcpIntegrationsState:
|
|
|
731
742
|
def fire_base_storage(self, value: Optional[pulumi.Input['GcpIntegrationsFireBaseStorageArgs']]):
|
|
732
743
|
pulumi.set(self, "fire_base_storage", value)
|
|
733
744
|
|
|
734
|
-
@property
|
|
745
|
+
@_builtins.property
|
|
735
746
|
@pulumi.getter(name="fireStore")
|
|
736
747
|
def fire_store(self) -> Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]:
|
|
737
748
|
"""
|
|
@@ -743,7 +754,7 @@ class _GcpIntegrationsState:
|
|
|
743
754
|
def fire_store(self, value: Optional[pulumi.Input['GcpIntegrationsFireStoreArgs']]):
|
|
744
755
|
pulumi.set(self, "fire_store", value)
|
|
745
756
|
|
|
746
|
-
@property
|
|
757
|
+
@_builtins.property
|
|
747
758
|
@pulumi.getter
|
|
748
759
|
def functions(self) -> Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]:
|
|
749
760
|
"""
|
|
@@ -755,7 +766,7 @@ class _GcpIntegrationsState:
|
|
|
755
766
|
def functions(self, value: Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']]):
|
|
756
767
|
pulumi.set(self, "functions", value)
|
|
757
768
|
|
|
758
|
-
@property
|
|
769
|
+
@_builtins.property
|
|
759
770
|
@pulumi.getter
|
|
760
771
|
def interconnect(self) -> Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]:
|
|
761
772
|
"""
|
|
@@ -767,7 +778,7 @@ class _GcpIntegrationsState:
|
|
|
767
778
|
def interconnect(self, value: Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']]):
|
|
768
779
|
pulumi.set(self, "interconnect", value)
|
|
769
780
|
|
|
770
|
-
@property
|
|
781
|
+
@_builtins.property
|
|
771
782
|
@pulumi.getter
|
|
772
783
|
def kubernetes(self) -> Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]:
|
|
773
784
|
"""
|
|
@@ -779,19 +790,21 @@ class _GcpIntegrationsState:
|
|
|
779
790
|
def kubernetes(self, value: Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']]):
|
|
780
791
|
pulumi.set(self, "kubernetes", value)
|
|
781
792
|
|
|
782
|
-
@property
|
|
793
|
+
@_builtins.property
|
|
783
794
|
@pulumi.getter(name="linkedAccountId")
|
|
784
|
-
def linked_account_id(self) -> Optional[pulumi.Input[
|
|
795
|
+
def linked_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
785
796
|
"""
|
|
786
797
|
The ID of the linked GCP account in New Relic.
|
|
798
|
+
|
|
799
|
+
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
|
787
800
|
"""
|
|
788
801
|
return pulumi.get(self, "linked_account_id")
|
|
789
802
|
|
|
790
803
|
@linked_account_id.setter
|
|
791
|
-
def linked_account_id(self, value: Optional[pulumi.Input[
|
|
804
|
+
def linked_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
792
805
|
pulumi.set(self, "linked_account_id", value)
|
|
793
806
|
|
|
794
|
-
@property
|
|
807
|
+
@_builtins.property
|
|
795
808
|
@pulumi.getter(name="loadBalancing")
|
|
796
809
|
def load_balancing(self) -> Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]:
|
|
797
810
|
"""
|
|
@@ -803,7 +816,7 @@ class _GcpIntegrationsState:
|
|
|
803
816
|
def load_balancing(self, value: Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']]):
|
|
804
817
|
pulumi.set(self, "load_balancing", value)
|
|
805
818
|
|
|
806
|
-
@property
|
|
819
|
+
@_builtins.property
|
|
807
820
|
@pulumi.getter(name="memCache")
|
|
808
821
|
def mem_cache(self) -> Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]:
|
|
809
822
|
"""
|
|
@@ -815,7 +828,7 @@ class _GcpIntegrationsState:
|
|
|
815
828
|
def mem_cache(self, value: Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']]):
|
|
816
829
|
pulumi.set(self, "mem_cache", value)
|
|
817
830
|
|
|
818
|
-
@property
|
|
831
|
+
@_builtins.property
|
|
819
832
|
@pulumi.getter(name="pubSub")
|
|
820
833
|
def pub_sub(self) -> Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]:
|
|
821
834
|
"""
|
|
@@ -827,7 +840,7 @@ class _GcpIntegrationsState:
|
|
|
827
840
|
def pub_sub(self, value: Optional[pulumi.Input['GcpIntegrationsPubSubArgs']]):
|
|
828
841
|
pulumi.set(self, "pub_sub", value)
|
|
829
842
|
|
|
830
|
-
@property
|
|
843
|
+
@_builtins.property
|
|
831
844
|
@pulumi.getter
|
|
832
845
|
def redis(self) -> Optional[pulumi.Input['GcpIntegrationsRedisArgs']]:
|
|
833
846
|
"""
|
|
@@ -839,7 +852,7 @@ class _GcpIntegrationsState:
|
|
|
839
852
|
def redis(self, value: Optional[pulumi.Input['GcpIntegrationsRedisArgs']]):
|
|
840
853
|
pulumi.set(self, "redis", value)
|
|
841
854
|
|
|
842
|
-
@property
|
|
855
|
+
@_builtins.property
|
|
843
856
|
@pulumi.getter
|
|
844
857
|
def router(self) -> Optional[pulumi.Input['GcpIntegrationsRouterArgs']]:
|
|
845
858
|
"""
|
|
@@ -851,7 +864,7 @@ class _GcpIntegrationsState:
|
|
|
851
864
|
def router(self, value: Optional[pulumi.Input['GcpIntegrationsRouterArgs']]):
|
|
852
865
|
pulumi.set(self, "router", value)
|
|
853
866
|
|
|
854
|
-
@property
|
|
867
|
+
@_builtins.property
|
|
855
868
|
@pulumi.getter
|
|
856
869
|
def run(self) -> Optional[pulumi.Input['GcpIntegrationsRunArgs']]:
|
|
857
870
|
"""
|
|
@@ -863,7 +876,7 @@ class _GcpIntegrationsState:
|
|
|
863
876
|
def run(self, value: Optional[pulumi.Input['GcpIntegrationsRunArgs']]):
|
|
864
877
|
pulumi.set(self, "run", value)
|
|
865
878
|
|
|
866
|
-
@property
|
|
879
|
+
@_builtins.property
|
|
867
880
|
@pulumi.getter
|
|
868
881
|
def spanner(self) -> Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]:
|
|
869
882
|
"""
|
|
@@ -875,7 +888,7 @@ class _GcpIntegrationsState:
|
|
|
875
888
|
def spanner(self, value: Optional[pulumi.Input['GcpIntegrationsSpannerArgs']]):
|
|
876
889
|
pulumi.set(self, "spanner", value)
|
|
877
890
|
|
|
878
|
-
@property
|
|
891
|
+
@_builtins.property
|
|
879
892
|
@pulumi.getter
|
|
880
893
|
def sql(self) -> Optional[pulumi.Input['GcpIntegrationsSqlArgs']]:
|
|
881
894
|
"""
|
|
@@ -887,7 +900,7 @@ class _GcpIntegrationsState:
|
|
|
887
900
|
def sql(self, value: Optional[pulumi.Input['GcpIntegrationsSqlArgs']]):
|
|
888
901
|
pulumi.set(self, "sql", value)
|
|
889
902
|
|
|
890
|
-
@property
|
|
903
|
+
@_builtins.property
|
|
891
904
|
@pulumi.getter
|
|
892
905
|
def storage(self) -> Optional[pulumi.Input['GcpIntegrationsStorageArgs']]:
|
|
893
906
|
"""
|
|
@@ -899,7 +912,7 @@ class _GcpIntegrationsState:
|
|
|
899
912
|
def storage(self, value: Optional[pulumi.Input['GcpIntegrationsStorageArgs']]):
|
|
900
913
|
pulumi.set(self, "storage", value)
|
|
901
914
|
|
|
902
|
-
@property
|
|
915
|
+
@_builtins.property
|
|
903
916
|
@pulumi.getter(name="virtualMachines")
|
|
904
917
|
def virtual_machines(self) -> Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]:
|
|
905
918
|
"""
|
|
@@ -911,7 +924,7 @@ class _GcpIntegrationsState:
|
|
|
911
924
|
def virtual_machines(self, value: Optional[pulumi.Input['GcpIntegrationsVirtualMachinesArgs']]):
|
|
912
925
|
pulumi.set(self, "virtual_machines", value)
|
|
913
926
|
|
|
914
|
-
@property
|
|
927
|
+
@_builtins.property
|
|
915
928
|
@pulumi.getter(name="vpcAccess")
|
|
916
929
|
def vpc_access(self) -> Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']]:
|
|
917
930
|
"""
|
|
@@ -924,39 +937,40 @@ class _GcpIntegrationsState:
|
|
|
924
937
|
pulumi.set(self, "vpc_access", value)
|
|
925
938
|
|
|
926
939
|
|
|
940
|
+
@pulumi.type_token("newrelic:cloud/gcpIntegrations:GcpIntegrations")
|
|
927
941
|
class GcpIntegrations(pulumi.CustomResource):
|
|
928
942
|
@overload
|
|
929
943
|
def __init__(__self__,
|
|
930
944
|
resource_name: str,
|
|
931
945
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
932
|
-
account_id: Optional[pulumi.Input[
|
|
933
|
-
alloy_db: Optional[pulumi.Input[
|
|
934
|
-
app_engine: Optional[pulumi.Input[
|
|
935
|
-
big_query: Optional[pulumi.Input[
|
|
936
|
-
big_table: Optional[pulumi.Input[
|
|
937
|
-
composer: Optional[pulumi.Input[
|
|
938
|
-
data_flow: Optional[pulumi.Input[
|
|
939
|
-
data_proc: Optional[pulumi.Input[
|
|
940
|
-
data_store: Optional[pulumi.Input[
|
|
941
|
-
fire_base_database: Optional[pulumi.Input[
|
|
942
|
-
fire_base_hosting: Optional[pulumi.Input[
|
|
943
|
-
fire_base_storage: Optional[pulumi.Input[
|
|
944
|
-
fire_store: Optional[pulumi.Input[
|
|
945
|
-
functions: Optional[pulumi.Input[
|
|
946
|
-
interconnect: Optional[pulumi.Input[
|
|
947
|
-
kubernetes: Optional[pulumi.Input[
|
|
948
|
-
linked_account_id: Optional[pulumi.Input[
|
|
949
|
-
load_balancing: Optional[pulumi.Input[
|
|
950
|
-
mem_cache: Optional[pulumi.Input[
|
|
951
|
-
pub_sub: Optional[pulumi.Input[
|
|
952
|
-
redis: Optional[pulumi.Input[
|
|
953
|
-
router: Optional[pulumi.Input[
|
|
954
|
-
run: Optional[pulumi.Input[
|
|
955
|
-
spanner: Optional[pulumi.Input[
|
|
956
|
-
sql: Optional[pulumi.Input[
|
|
957
|
-
storage: Optional[pulumi.Input[
|
|
958
|
-
virtual_machines: Optional[pulumi.Input[
|
|
959
|
-
vpc_access: Optional[pulumi.Input[
|
|
946
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
947
|
+
alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
|
|
948
|
+
app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
|
|
949
|
+
big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
|
|
950
|
+
big_table: Optional[pulumi.Input[Union['GcpIntegrationsBigTableArgs', 'GcpIntegrationsBigTableArgsDict']]] = None,
|
|
951
|
+
composer: Optional[pulumi.Input[Union['GcpIntegrationsComposerArgs', 'GcpIntegrationsComposerArgsDict']]] = None,
|
|
952
|
+
data_flow: Optional[pulumi.Input[Union['GcpIntegrationsDataFlowArgs', 'GcpIntegrationsDataFlowArgsDict']]] = None,
|
|
953
|
+
data_proc: Optional[pulumi.Input[Union['GcpIntegrationsDataProcArgs', 'GcpIntegrationsDataProcArgsDict']]] = None,
|
|
954
|
+
data_store: Optional[pulumi.Input[Union['GcpIntegrationsDataStoreArgs', 'GcpIntegrationsDataStoreArgsDict']]] = None,
|
|
955
|
+
fire_base_database: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseDatabaseArgs', 'GcpIntegrationsFireBaseDatabaseArgsDict']]] = None,
|
|
956
|
+
fire_base_hosting: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseHostingArgs', 'GcpIntegrationsFireBaseHostingArgsDict']]] = None,
|
|
957
|
+
fire_base_storage: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseStorageArgs', 'GcpIntegrationsFireBaseStorageArgsDict']]] = None,
|
|
958
|
+
fire_store: Optional[pulumi.Input[Union['GcpIntegrationsFireStoreArgs', 'GcpIntegrationsFireStoreArgsDict']]] = None,
|
|
959
|
+
functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
|
|
960
|
+
interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
|
|
961
|
+
kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
|
|
962
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
963
|
+
load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
|
|
964
|
+
mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
|
|
965
|
+
pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
|
|
966
|
+
redis: Optional[pulumi.Input[Union['GcpIntegrationsRedisArgs', 'GcpIntegrationsRedisArgsDict']]] = None,
|
|
967
|
+
router: Optional[pulumi.Input[Union['GcpIntegrationsRouterArgs', 'GcpIntegrationsRouterArgsDict']]] = None,
|
|
968
|
+
run: Optional[pulumi.Input[Union['GcpIntegrationsRunArgs', 'GcpIntegrationsRunArgsDict']]] = None,
|
|
969
|
+
spanner: Optional[pulumi.Input[Union['GcpIntegrationsSpannerArgs', 'GcpIntegrationsSpannerArgsDict']]] = None,
|
|
970
|
+
sql: Optional[pulumi.Input[Union['GcpIntegrationsSqlArgs', 'GcpIntegrationsSqlArgsDict']]] = None,
|
|
971
|
+
storage: Optional[pulumi.Input[Union['GcpIntegrationsStorageArgs', 'GcpIntegrationsStorageArgsDict']]] = None,
|
|
972
|
+
virtual_machines: Optional[pulumi.Input[Union['GcpIntegrationsVirtualMachinesArgs', 'GcpIntegrationsVirtualMachinesArgsDict']]] = None,
|
|
973
|
+
vpc_access: Optional[pulumi.Input[Union['GcpIntegrationsVpcAccessArgs', 'GcpIntegrationsVpcAccessArgsDict']]] = None,
|
|
960
974
|
__props__=None):
|
|
961
975
|
"""
|
|
962
976
|
Use this resource to integrate GCP services with New Relic.
|
|
@@ -975,128 +989,134 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
975
989
|
import pulumi
|
|
976
990
|
import pulumi_newrelic as newrelic
|
|
977
991
|
|
|
978
|
-
foo = newrelic.cloud.GcpLinkAccount("foo",
|
|
992
|
+
foo = newrelic.cloud.GcpLinkAccount("foo",
|
|
993
|
+
name="example",
|
|
994
|
+
project_id="<Your GCP project ID>")
|
|
979
995
|
foo1 = newrelic.cloud.GcpIntegrations("foo1",
|
|
980
996
|
linked_account_id=foo.id,
|
|
981
|
-
app_engine=
|
|
982
|
-
metrics_polling_interval
|
|
983
|
-
|
|
984
|
-
big_query=
|
|
985
|
-
metrics_polling_interval
|
|
986
|
-
fetch_tags
|
|
987
|
-
|
|
988
|
-
big_table=
|
|
989
|
-
metrics_polling_interval
|
|
990
|
-
|
|
991
|
-
composer=
|
|
992
|
-
metrics_polling_interval
|
|
993
|
-
|
|
994
|
-
data_flow=
|
|
995
|
-
metrics_polling_interval
|
|
996
|
-
|
|
997
|
-
data_proc=
|
|
998
|
-
metrics_polling_interval
|
|
999
|
-
|
|
1000
|
-
data_store=
|
|
1001
|
-
metrics_polling_interval
|
|
1002
|
-
|
|
1003
|
-
fire_base_database=
|
|
1004
|
-
metrics_polling_interval
|
|
1005
|
-
|
|
1006
|
-
fire_base_hosting=
|
|
1007
|
-
metrics_polling_interval
|
|
1008
|
-
|
|
1009
|
-
fire_base_storage=
|
|
1010
|
-
metrics_polling_interval
|
|
1011
|
-
|
|
1012
|
-
fire_store=
|
|
1013
|
-
metrics_polling_interval
|
|
1014
|
-
|
|
1015
|
-
functions=
|
|
1016
|
-
metrics_polling_interval
|
|
1017
|
-
|
|
1018
|
-
interconnect=
|
|
1019
|
-
metrics_polling_interval
|
|
1020
|
-
|
|
1021
|
-
kubernetes=
|
|
1022
|
-
metrics_polling_interval
|
|
1023
|
-
|
|
1024
|
-
load_balancing=
|
|
1025
|
-
metrics_polling_interval
|
|
1026
|
-
|
|
1027
|
-
mem_cache=
|
|
1028
|
-
metrics_polling_interval
|
|
1029
|
-
|
|
1030
|
-
pub_sub=
|
|
1031
|
-
metrics_polling_interval
|
|
1032
|
-
fetch_tags
|
|
1033
|
-
|
|
1034
|
-
redis=
|
|
1035
|
-
metrics_polling_interval
|
|
1036
|
-
|
|
1037
|
-
router=
|
|
1038
|
-
metrics_polling_interval
|
|
1039
|
-
|
|
1040
|
-
run=
|
|
1041
|
-
metrics_polling_interval
|
|
1042
|
-
|
|
1043
|
-
spanner=
|
|
1044
|
-
metrics_polling_interval
|
|
1045
|
-
fetch_tags
|
|
1046
|
-
|
|
1047
|
-
sql=
|
|
1048
|
-
metrics_polling_interval
|
|
1049
|
-
|
|
1050
|
-
storage=
|
|
1051
|
-
metrics_polling_interval
|
|
1052
|
-
fetch_tags
|
|
1053
|
-
|
|
1054
|
-
virtual_machines=
|
|
1055
|
-
metrics_polling_interval
|
|
1056
|
-
|
|
1057
|
-
vpc_access=
|
|
1058
|
-
metrics_polling_interval
|
|
1059
|
-
)
|
|
997
|
+
app_engine={
|
|
998
|
+
"metrics_polling_interval": 300,
|
|
999
|
+
},
|
|
1000
|
+
big_query={
|
|
1001
|
+
"metrics_polling_interval": 300,
|
|
1002
|
+
"fetch_tags": True,
|
|
1003
|
+
},
|
|
1004
|
+
big_table={
|
|
1005
|
+
"metrics_polling_interval": 300,
|
|
1006
|
+
},
|
|
1007
|
+
composer={
|
|
1008
|
+
"metrics_polling_interval": 300,
|
|
1009
|
+
},
|
|
1010
|
+
data_flow={
|
|
1011
|
+
"metrics_polling_interval": 300,
|
|
1012
|
+
},
|
|
1013
|
+
data_proc={
|
|
1014
|
+
"metrics_polling_interval": 300,
|
|
1015
|
+
},
|
|
1016
|
+
data_store={
|
|
1017
|
+
"metrics_polling_interval": 300,
|
|
1018
|
+
},
|
|
1019
|
+
fire_base_database={
|
|
1020
|
+
"metrics_polling_interval": 300,
|
|
1021
|
+
},
|
|
1022
|
+
fire_base_hosting={
|
|
1023
|
+
"metrics_polling_interval": 300,
|
|
1024
|
+
},
|
|
1025
|
+
fire_base_storage={
|
|
1026
|
+
"metrics_polling_interval": 300,
|
|
1027
|
+
},
|
|
1028
|
+
fire_store={
|
|
1029
|
+
"metrics_polling_interval": 300,
|
|
1030
|
+
},
|
|
1031
|
+
functions={
|
|
1032
|
+
"metrics_polling_interval": 300,
|
|
1033
|
+
},
|
|
1034
|
+
interconnect={
|
|
1035
|
+
"metrics_polling_interval": 300,
|
|
1036
|
+
},
|
|
1037
|
+
kubernetes={
|
|
1038
|
+
"metrics_polling_interval": 300,
|
|
1039
|
+
},
|
|
1040
|
+
load_balancing={
|
|
1041
|
+
"metrics_polling_interval": 300,
|
|
1042
|
+
},
|
|
1043
|
+
mem_cache={
|
|
1044
|
+
"metrics_polling_interval": 300,
|
|
1045
|
+
},
|
|
1046
|
+
pub_sub={
|
|
1047
|
+
"metrics_polling_interval": 300,
|
|
1048
|
+
"fetch_tags": True,
|
|
1049
|
+
},
|
|
1050
|
+
redis={
|
|
1051
|
+
"metrics_polling_interval": 300,
|
|
1052
|
+
},
|
|
1053
|
+
router={
|
|
1054
|
+
"metrics_polling_interval": 300,
|
|
1055
|
+
},
|
|
1056
|
+
run={
|
|
1057
|
+
"metrics_polling_interval": 300,
|
|
1058
|
+
},
|
|
1059
|
+
spanner={
|
|
1060
|
+
"metrics_polling_interval": 300,
|
|
1061
|
+
"fetch_tags": True,
|
|
1062
|
+
},
|
|
1063
|
+
sql={
|
|
1064
|
+
"metrics_polling_interval": 300,
|
|
1065
|
+
},
|
|
1066
|
+
storage={
|
|
1067
|
+
"metrics_polling_interval": 300,
|
|
1068
|
+
"fetch_tags": True,
|
|
1069
|
+
},
|
|
1070
|
+
virtual_machines={
|
|
1071
|
+
"metrics_polling_interval": 300,
|
|
1072
|
+
},
|
|
1073
|
+
vpc_access={
|
|
1074
|
+
"metrics_polling_interval": 300,
|
|
1075
|
+
})
|
|
1060
1076
|
```
|
|
1061
1077
|
|
|
1062
1078
|
## Import
|
|
1063
1079
|
|
|
1064
|
-
Linked GCP account integrations can be imported using the `id`, e.g.
|
|
1080
|
+
Linked GCP account integrations can be imported using the `id`, e.g.
|
|
1081
|
+
|
|
1082
|
+
bash
|
|
1065
1083
|
|
|
1066
1084
|
```sh
|
|
1067
|
-
|
|
1085
|
+
$ pulumi import newrelic:cloud/gcpIntegrations:GcpIntegrations foo <id>
|
|
1068
1086
|
```
|
|
1069
1087
|
|
|
1070
1088
|
:param str resource_name: The name of the resource.
|
|
1071
1089
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1072
|
-
:param pulumi.Input[
|
|
1073
|
-
:param pulumi.Input[
|
|
1074
|
-
:param pulumi.Input[
|
|
1075
|
-
:param pulumi.Input[
|
|
1076
|
-
:param pulumi.Input[
|
|
1077
|
-
:param pulumi.Input[
|
|
1078
|
-
:param pulumi.Input[
|
|
1079
|
-
:param pulumi.Input[
|
|
1080
|
-
:param pulumi.Input[
|
|
1081
|
-
:param pulumi.Input[
|
|
1082
|
-
:param pulumi.Input[
|
|
1083
|
-
:param pulumi.Input[
|
|
1084
|
-
:param pulumi.Input[
|
|
1085
|
-
:param pulumi.Input[
|
|
1086
|
-
:param pulumi.Input[
|
|
1087
|
-
:param pulumi.Input[
|
|
1088
|
-
:param pulumi.Input[
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
:param pulumi.Input[
|
|
1092
|
-
:param pulumi.Input[
|
|
1093
|
-
:param pulumi.Input[
|
|
1094
|
-
:param pulumi.Input[
|
|
1095
|
-
:param pulumi.Input[
|
|
1096
|
-
:param pulumi.Input[
|
|
1097
|
-
:param pulumi.Input[
|
|
1098
|
-
:param pulumi.Input[
|
|
1099
|
-
:param pulumi.Input[
|
|
1090
|
+
:param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
1091
|
+
:param pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']] alloy_db: Alloy DB integration. See Integration blocks below for details.
|
|
1092
|
+
:param pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']] app_engine: App Engine integration. See Integration blocks below for details.
|
|
1093
|
+
:param pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']] big_query: Biq Query integration. See Integration blocks below for details.
|
|
1094
|
+
:param pulumi.Input[Union['GcpIntegrationsBigTableArgs', 'GcpIntegrationsBigTableArgsDict']] big_table: Big Table. See Integration blocks below for details.
|
|
1095
|
+
:param pulumi.Input[Union['GcpIntegrationsComposerArgs', 'GcpIntegrationsComposerArgsDict']] composer: Composer integration. See Integration blocks below for details.
|
|
1096
|
+
:param pulumi.Input[Union['GcpIntegrationsDataFlowArgs', 'GcpIntegrationsDataFlowArgsDict']] data_flow: Data Flow integration. See Integration blocks below for details.
|
|
1097
|
+
:param pulumi.Input[Union['GcpIntegrationsDataProcArgs', 'GcpIntegrationsDataProcArgsDict']] data_proc: Data Proc integration. See Integration blocks below for details.
|
|
1098
|
+
:param pulumi.Input[Union['GcpIntegrationsDataStoreArgs', 'GcpIntegrationsDataStoreArgsDict']] data_store: Data Store integration. See Integration blocks below for details.
|
|
1099
|
+
:param pulumi.Input[Union['GcpIntegrationsFireBaseDatabaseArgs', 'GcpIntegrationsFireBaseDatabaseArgsDict']] fire_base_database: Fire Base Database integration. See Integration blocks below for details.
|
|
1100
|
+
:param pulumi.Input[Union['GcpIntegrationsFireBaseHostingArgs', 'GcpIntegrationsFireBaseHostingArgsDict']] fire_base_hosting: Fire Base Hosting integration. See Integration blocks below for details.
|
|
1101
|
+
:param pulumi.Input[Union['GcpIntegrationsFireBaseStorageArgs', 'GcpIntegrationsFireBaseStorageArgsDict']] fire_base_storage: Fire Base Storage integration. See Integration blocks below for details.
|
|
1102
|
+
:param pulumi.Input[Union['GcpIntegrationsFireStoreArgs', 'GcpIntegrationsFireStoreArgsDict']] fire_store: Fire Store integration. See Integration blocks below for details.
|
|
1103
|
+
:param pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']] functions: Functions integration. See Integration blocks below for details.
|
|
1104
|
+
:param pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']] interconnect: Interconnect integration. See Integration blocks below for details.
|
|
1105
|
+
:param pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']] kubernetes: Kubernetes integration. See Integration blocks below for details.
|
|
1106
|
+
:param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
|
|
1107
|
+
|
|
1108
|
+
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
|
1109
|
+
:param pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']] load_balancing: Load Balancing integration. See Integration blocks below for details.
|
|
1110
|
+
:param pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']] mem_cache: Mem cache integration. See Integration blocks below for details.
|
|
1111
|
+
:param pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']] pub_sub: Pub/Sub integration. See Integration blocks below for details.
|
|
1112
|
+
:param pulumi.Input[Union['GcpIntegrationsRedisArgs', 'GcpIntegrationsRedisArgsDict']] redis: Redis integration. See Integration blocks below for details.
|
|
1113
|
+
:param pulumi.Input[Union['GcpIntegrationsRouterArgs', 'GcpIntegrationsRouterArgsDict']] router: Router integration. See Integration blocks below for details.
|
|
1114
|
+
:param pulumi.Input[Union['GcpIntegrationsRunArgs', 'GcpIntegrationsRunArgsDict']] run: Run integration. See Integration blocks below for details.
|
|
1115
|
+
:param pulumi.Input[Union['GcpIntegrationsSpannerArgs', 'GcpIntegrationsSpannerArgsDict']] spanner: Spanner integration. See Integration blocks below for details.
|
|
1116
|
+
:param pulumi.Input[Union['GcpIntegrationsSqlArgs', 'GcpIntegrationsSqlArgsDict']] sql: SQL integration. See Integration blocks below for details.
|
|
1117
|
+
:param pulumi.Input[Union['GcpIntegrationsStorageArgs', 'GcpIntegrationsStorageArgsDict']] storage: Storage integration. See Integration blocks below for details.
|
|
1118
|
+
:param pulumi.Input[Union['GcpIntegrationsVirtualMachinesArgs', 'GcpIntegrationsVirtualMachinesArgsDict']] virtual_machines: Virtual machines integration. See Integration blocks below for details.
|
|
1119
|
+
:param pulumi.Input[Union['GcpIntegrationsVpcAccessArgs', 'GcpIntegrationsVpcAccessArgsDict']] vpc_access: VPC Access integration. See Integration blocks below for details.
|
|
1100
1120
|
"""
|
|
1101
1121
|
...
|
|
1102
1122
|
@overload
|
|
@@ -1121,96 +1141,100 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1121
1141
|
import pulumi
|
|
1122
1142
|
import pulumi_newrelic as newrelic
|
|
1123
1143
|
|
|
1124
|
-
foo = newrelic.cloud.GcpLinkAccount("foo",
|
|
1144
|
+
foo = newrelic.cloud.GcpLinkAccount("foo",
|
|
1145
|
+
name="example",
|
|
1146
|
+
project_id="<Your GCP project ID>")
|
|
1125
1147
|
foo1 = newrelic.cloud.GcpIntegrations("foo1",
|
|
1126
1148
|
linked_account_id=foo.id,
|
|
1127
|
-
app_engine=
|
|
1128
|
-
metrics_polling_interval
|
|
1129
|
-
|
|
1130
|
-
big_query=
|
|
1131
|
-
metrics_polling_interval
|
|
1132
|
-
fetch_tags
|
|
1133
|
-
|
|
1134
|
-
big_table=
|
|
1135
|
-
metrics_polling_interval
|
|
1136
|
-
|
|
1137
|
-
composer=
|
|
1138
|
-
metrics_polling_interval
|
|
1139
|
-
|
|
1140
|
-
data_flow=
|
|
1141
|
-
metrics_polling_interval
|
|
1142
|
-
|
|
1143
|
-
data_proc=
|
|
1144
|
-
metrics_polling_interval
|
|
1145
|
-
|
|
1146
|
-
data_store=
|
|
1147
|
-
metrics_polling_interval
|
|
1148
|
-
|
|
1149
|
-
fire_base_database=
|
|
1150
|
-
metrics_polling_interval
|
|
1151
|
-
|
|
1152
|
-
fire_base_hosting=
|
|
1153
|
-
metrics_polling_interval
|
|
1154
|
-
|
|
1155
|
-
fire_base_storage=
|
|
1156
|
-
metrics_polling_interval
|
|
1157
|
-
|
|
1158
|
-
fire_store=
|
|
1159
|
-
metrics_polling_interval
|
|
1160
|
-
|
|
1161
|
-
functions=
|
|
1162
|
-
metrics_polling_interval
|
|
1163
|
-
|
|
1164
|
-
interconnect=
|
|
1165
|
-
metrics_polling_interval
|
|
1166
|
-
|
|
1167
|
-
kubernetes=
|
|
1168
|
-
metrics_polling_interval
|
|
1169
|
-
|
|
1170
|
-
load_balancing=
|
|
1171
|
-
metrics_polling_interval
|
|
1172
|
-
|
|
1173
|
-
mem_cache=
|
|
1174
|
-
metrics_polling_interval
|
|
1175
|
-
|
|
1176
|
-
pub_sub=
|
|
1177
|
-
metrics_polling_interval
|
|
1178
|
-
fetch_tags
|
|
1179
|
-
|
|
1180
|
-
redis=
|
|
1181
|
-
metrics_polling_interval
|
|
1182
|
-
|
|
1183
|
-
router=
|
|
1184
|
-
metrics_polling_interval
|
|
1185
|
-
|
|
1186
|
-
run=
|
|
1187
|
-
metrics_polling_interval
|
|
1188
|
-
|
|
1189
|
-
spanner=
|
|
1190
|
-
metrics_polling_interval
|
|
1191
|
-
fetch_tags
|
|
1192
|
-
|
|
1193
|
-
sql=
|
|
1194
|
-
metrics_polling_interval
|
|
1195
|
-
|
|
1196
|
-
storage=
|
|
1197
|
-
metrics_polling_interval
|
|
1198
|
-
fetch_tags
|
|
1199
|
-
|
|
1200
|
-
virtual_machines=
|
|
1201
|
-
metrics_polling_interval
|
|
1202
|
-
|
|
1203
|
-
vpc_access=
|
|
1204
|
-
metrics_polling_interval
|
|
1205
|
-
)
|
|
1149
|
+
app_engine={
|
|
1150
|
+
"metrics_polling_interval": 300,
|
|
1151
|
+
},
|
|
1152
|
+
big_query={
|
|
1153
|
+
"metrics_polling_interval": 300,
|
|
1154
|
+
"fetch_tags": True,
|
|
1155
|
+
},
|
|
1156
|
+
big_table={
|
|
1157
|
+
"metrics_polling_interval": 300,
|
|
1158
|
+
},
|
|
1159
|
+
composer={
|
|
1160
|
+
"metrics_polling_interval": 300,
|
|
1161
|
+
},
|
|
1162
|
+
data_flow={
|
|
1163
|
+
"metrics_polling_interval": 300,
|
|
1164
|
+
},
|
|
1165
|
+
data_proc={
|
|
1166
|
+
"metrics_polling_interval": 300,
|
|
1167
|
+
},
|
|
1168
|
+
data_store={
|
|
1169
|
+
"metrics_polling_interval": 300,
|
|
1170
|
+
},
|
|
1171
|
+
fire_base_database={
|
|
1172
|
+
"metrics_polling_interval": 300,
|
|
1173
|
+
},
|
|
1174
|
+
fire_base_hosting={
|
|
1175
|
+
"metrics_polling_interval": 300,
|
|
1176
|
+
},
|
|
1177
|
+
fire_base_storage={
|
|
1178
|
+
"metrics_polling_interval": 300,
|
|
1179
|
+
},
|
|
1180
|
+
fire_store={
|
|
1181
|
+
"metrics_polling_interval": 300,
|
|
1182
|
+
},
|
|
1183
|
+
functions={
|
|
1184
|
+
"metrics_polling_interval": 300,
|
|
1185
|
+
},
|
|
1186
|
+
interconnect={
|
|
1187
|
+
"metrics_polling_interval": 300,
|
|
1188
|
+
},
|
|
1189
|
+
kubernetes={
|
|
1190
|
+
"metrics_polling_interval": 300,
|
|
1191
|
+
},
|
|
1192
|
+
load_balancing={
|
|
1193
|
+
"metrics_polling_interval": 300,
|
|
1194
|
+
},
|
|
1195
|
+
mem_cache={
|
|
1196
|
+
"metrics_polling_interval": 300,
|
|
1197
|
+
},
|
|
1198
|
+
pub_sub={
|
|
1199
|
+
"metrics_polling_interval": 300,
|
|
1200
|
+
"fetch_tags": True,
|
|
1201
|
+
},
|
|
1202
|
+
redis={
|
|
1203
|
+
"metrics_polling_interval": 300,
|
|
1204
|
+
},
|
|
1205
|
+
router={
|
|
1206
|
+
"metrics_polling_interval": 300,
|
|
1207
|
+
},
|
|
1208
|
+
run={
|
|
1209
|
+
"metrics_polling_interval": 300,
|
|
1210
|
+
},
|
|
1211
|
+
spanner={
|
|
1212
|
+
"metrics_polling_interval": 300,
|
|
1213
|
+
"fetch_tags": True,
|
|
1214
|
+
},
|
|
1215
|
+
sql={
|
|
1216
|
+
"metrics_polling_interval": 300,
|
|
1217
|
+
},
|
|
1218
|
+
storage={
|
|
1219
|
+
"metrics_polling_interval": 300,
|
|
1220
|
+
"fetch_tags": True,
|
|
1221
|
+
},
|
|
1222
|
+
virtual_machines={
|
|
1223
|
+
"metrics_polling_interval": 300,
|
|
1224
|
+
},
|
|
1225
|
+
vpc_access={
|
|
1226
|
+
"metrics_polling_interval": 300,
|
|
1227
|
+
})
|
|
1206
1228
|
```
|
|
1207
1229
|
|
|
1208
1230
|
## Import
|
|
1209
1231
|
|
|
1210
|
-
Linked GCP account integrations can be imported using the `id`, e.g.
|
|
1232
|
+
Linked GCP account integrations can be imported using the `id`, e.g.
|
|
1233
|
+
|
|
1234
|
+
bash
|
|
1211
1235
|
|
|
1212
1236
|
```sh
|
|
1213
|
-
|
|
1237
|
+
$ pulumi import newrelic:cloud/gcpIntegrations:GcpIntegrations foo <id>
|
|
1214
1238
|
```
|
|
1215
1239
|
|
|
1216
1240
|
:param str resource_name: The name of the resource.
|
|
@@ -1228,34 +1252,34 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1228
1252
|
def _internal_init(__self__,
|
|
1229
1253
|
resource_name: str,
|
|
1230
1254
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1231
|
-
account_id: Optional[pulumi.Input[
|
|
1232
|
-
alloy_db: Optional[pulumi.Input[
|
|
1233
|
-
app_engine: Optional[pulumi.Input[
|
|
1234
|
-
big_query: Optional[pulumi.Input[
|
|
1235
|
-
big_table: Optional[pulumi.Input[
|
|
1236
|
-
composer: Optional[pulumi.Input[
|
|
1237
|
-
data_flow: Optional[pulumi.Input[
|
|
1238
|
-
data_proc: Optional[pulumi.Input[
|
|
1239
|
-
data_store: Optional[pulumi.Input[
|
|
1240
|
-
fire_base_database: Optional[pulumi.Input[
|
|
1241
|
-
fire_base_hosting: Optional[pulumi.Input[
|
|
1242
|
-
fire_base_storage: Optional[pulumi.Input[
|
|
1243
|
-
fire_store: Optional[pulumi.Input[
|
|
1244
|
-
functions: Optional[pulumi.Input[
|
|
1245
|
-
interconnect: Optional[pulumi.Input[
|
|
1246
|
-
kubernetes: Optional[pulumi.Input[
|
|
1247
|
-
linked_account_id: Optional[pulumi.Input[
|
|
1248
|
-
load_balancing: Optional[pulumi.Input[
|
|
1249
|
-
mem_cache: Optional[pulumi.Input[
|
|
1250
|
-
pub_sub: Optional[pulumi.Input[
|
|
1251
|
-
redis: Optional[pulumi.Input[
|
|
1252
|
-
router: Optional[pulumi.Input[
|
|
1253
|
-
run: Optional[pulumi.Input[
|
|
1254
|
-
spanner: Optional[pulumi.Input[
|
|
1255
|
-
sql: Optional[pulumi.Input[
|
|
1256
|
-
storage: Optional[pulumi.Input[
|
|
1257
|
-
virtual_machines: Optional[pulumi.Input[
|
|
1258
|
-
vpc_access: Optional[pulumi.Input[
|
|
1255
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1256
|
+
alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
|
|
1257
|
+
app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
|
|
1258
|
+
big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
|
|
1259
|
+
big_table: Optional[pulumi.Input[Union['GcpIntegrationsBigTableArgs', 'GcpIntegrationsBigTableArgsDict']]] = None,
|
|
1260
|
+
composer: Optional[pulumi.Input[Union['GcpIntegrationsComposerArgs', 'GcpIntegrationsComposerArgsDict']]] = None,
|
|
1261
|
+
data_flow: Optional[pulumi.Input[Union['GcpIntegrationsDataFlowArgs', 'GcpIntegrationsDataFlowArgsDict']]] = None,
|
|
1262
|
+
data_proc: Optional[pulumi.Input[Union['GcpIntegrationsDataProcArgs', 'GcpIntegrationsDataProcArgsDict']]] = None,
|
|
1263
|
+
data_store: Optional[pulumi.Input[Union['GcpIntegrationsDataStoreArgs', 'GcpIntegrationsDataStoreArgsDict']]] = None,
|
|
1264
|
+
fire_base_database: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseDatabaseArgs', 'GcpIntegrationsFireBaseDatabaseArgsDict']]] = None,
|
|
1265
|
+
fire_base_hosting: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseHostingArgs', 'GcpIntegrationsFireBaseHostingArgsDict']]] = None,
|
|
1266
|
+
fire_base_storage: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseStorageArgs', 'GcpIntegrationsFireBaseStorageArgsDict']]] = None,
|
|
1267
|
+
fire_store: Optional[pulumi.Input[Union['GcpIntegrationsFireStoreArgs', 'GcpIntegrationsFireStoreArgsDict']]] = None,
|
|
1268
|
+
functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
|
|
1269
|
+
interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
|
|
1270
|
+
kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
|
|
1271
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1272
|
+
load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
|
|
1273
|
+
mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
|
|
1274
|
+
pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
|
|
1275
|
+
redis: Optional[pulumi.Input[Union['GcpIntegrationsRedisArgs', 'GcpIntegrationsRedisArgsDict']]] = None,
|
|
1276
|
+
router: Optional[pulumi.Input[Union['GcpIntegrationsRouterArgs', 'GcpIntegrationsRouterArgsDict']]] = None,
|
|
1277
|
+
run: Optional[pulumi.Input[Union['GcpIntegrationsRunArgs', 'GcpIntegrationsRunArgsDict']]] = None,
|
|
1278
|
+
spanner: Optional[pulumi.Input[Union['GcpIntegrationsSpannerArgs', 'GcpIntegrationsSpannerArgsDict']]] = None,
|
|
1279
|
+
sql: Optional[pulumi.Input[Union['GcpIntegrationsSqlArgs', 'GcpIntegrationsSqlArgsDict']]] = None,
|
|
1280
|
+
storage: Optional[pulumi.Input[Union['GcpIntegrationsStorageArgs', 'GcpIntegrationsStorageArgsDict']]] = None,
|
|
1281
|
+
virtual_machines: Optional[pulumi.Input[Union['GcpIntegrationsVirtualMachinesArgs', 'GcpIntegrationsVirtualMachinesArgsDict']]] = None,
|
|
1282
|
+
vpc_access: Optional[pulumi.Input[Union['GcpIntegrationsVpcAccessArgs', 'GcpIntegrationsVpcAccessArgsDict']]] = None,
|
|
1259
1283
|
__props__=None):
|
|
1260
1284
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
1261
1285
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -1305,34 +1329,34 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1305
1329
|
def get(resource_name: str,
|
|
1306
1330
|
id: pulumi.Input[str],
|
|
1307
1331
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1308
|
-
account_id: Optional[pulumi.Input[
|
|
1309
|
-
alloy_db: Optional[pulumi.Input[
|
|
1310
|
-
app_engine: Optional[pulumi.Input[
|
|
1311
|
-
big_query: Optional[pulumi.Input[
|
|
1312
|
-
big_table: Optional[pulumi.Input[
|
|
1313
|
-
composer: Optional[pulumi.Input[
|
|
1314
|
-
data_flow: Optional[pulumi.Input[
|
|
1315
|
-
data_proc: Optional[pulumi.Input[
|
|
1316
|
-
data_store: Optional[pulumi.Input[
|
|
1317
|
-
fire_base_database: Optional[pulumi.Input[
|
|
1318
|
-
fire_base_hosting: Optional[pulumi.Input[
|
|
1319
|
-
fire_base_storage: Optional[pulumi.Input[
|
|
1320
|
-
fire_store: Optional[pulumi.Input[
|
|
1321
|
-
functions: Optional[pulumi.Input[
|
|
1322
|
-
interconnect: Optional[pulumi.Input[
|
|
1323
|
-
kubernetes: Optional[pulumi.Input[
|
|
1324
|
-
linked_account_id: Optional[pulumi.Input[
|
|
1325
|
-
load_balancing: Optional[pulumi.Input[
|
|
1326
|
-
mem_cache: Optional[pulumi.Input[
|
|
1327
|
-
pub_sub: Optional[pulumi.Input[
|
|
1328
|
-
redis: Optional[pulumi.Input[
|
|
1329
|
-
router: Optional[pulumi.Input[
|
|
1330
|
-
run: Optional[pulumi.Input[
|
|
1331
|
-
spanner: Optional[pulumi.Input[
|
|
1332
|
-
sql: Optional[pulumi.Input[
|
|
1333
|
-
storage: Optional[pulumi.Input[
|
|
1334
|
-
virtual_machines: Optional[pulumi.Input[
|
|
1335
|
-
vpc_access: Optional[pulumi.Input[
|
|
1332
|
+
account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1333
|
+
alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
|
|
1334
|
+
app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
|
|
1335
|
+
big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
|
|
1336
|
+
big_table: Optional[pulumi.Input[Union['GcpIntegrationsBigTableArgs', 'GcpIntegrationsBigTableArgsDict']]] = None,
|
|
1337
|
+
composer: Optional[pulumi.Input[Union['GcpIntegrationsComposerArgs', 'GcpIntegrationsComposerArgsDict']]] = None,
|
|
1338
|
+
data_flow: Optional[pulumi.Input[Union['GcpIntegrationsDataFlowArgs', 'GcpIntegrationsDataFlowArgsDict']]] = None,
|
|
1339
|
+
data_proc: Optional[pulumi.Input[Union['GcpIntegrationsDataProcArgs', 'GcpIntegrationsDataProcArgsDict']]] = None,
|
|
1340
|
+
data_store: Optional[pulumi.Input[Union['GcpIntegrationsDataStoreArgs', 'GcpIntegrationsDataStoreArgsDict']]] = None,
|
|
1341
|
+
fire_base_database: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseDatabaseArgs', 'GcpIntegrationsFireBaseDatabaseArgsDict']]] = None,
|
|
1342
|
+
fire_base_hosting: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseHostingArgs', 'GcpIntegrationsFireBaseHostingArgsDict']]] = None,
|
|
1343
|
+
fire_base_storage: Optional[pulumi.Input[Union['GcpIntegrationsFireBaseStorageArgs', 'GcpIntegrationsFireBaseStorageArgsDict']]] = None,
|
|
1344
|
+
fire_store: Optional[pulumi.Input[Union['GcpIntegrationsFireStoreArgs', 'GcpIntegrationsFireStoreArgsDict']]] = None,
|
|
1345
|
+
functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
|
|
1346
|
+
interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
|
|
1347
|
+
kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
|
|
1348
|
+
linked_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1349
|
+
load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
|
|
1350
|
+
mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
|
|
1351
|
+
pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
|
|
1352
|
+
redis: Optional[pulumi.Input[Union['GcpIntegrationsRedisArgs', 'GcpIntegrationsRedisArgsDict']]] = None,
|
|
1353
|
+
router: Optional[pulumi.Input[Union['GcpIntegrationsRouterArgs', 'GcpIntegrationsRouterArgsDict']]] = None,
|
|
1354
|
+
run: Optional[pulumi.Input[Union['GcpIntegrationsRunArgs', 'GcpIntegrationsRunArgsDict']]] = None,
|
|
1355
|
+
spanner: Optional[pulumi.Input[Union['GcpIntegrationsSpannerArgs', 'GcpIntegrationsSpannerArgsDict']]] = None,
|
|
1356
|
+
sql: Optional[pulumi.Input[Union['GcpIntegrationsSqlArgs', 'GcpIntegrationsSqlArgsDict']]] = None,
|
|
1357
|
+
storage: Optional[pulumi.Input[Union['GcpIntegrationsStorageArgs', 'GcpIntegrationsStorageArgsDict']]] = None,
|
|
1358
|
+
virtual_machines: Optional[pulumi.Input[Union['GcpIntegrationsVirtualMachinesArgs', 'GcpIntegrationsVirtualMachinesArgsDict']]] = None,
|
|
1359
|
+
vpc_access: Optional[pulumi.Input[Union['GcpIntegrationsVpcAccessArgs', 'GcpIntegrationsVpcAccessArgsDict']]] = None) -> 'GcpIntegrations':
|
|
1336
1360
|
"""
|
|
1337
1361
|
Get an existing GcpIntegrations resource's state with the given name, id, and optional extra
|
|
1338
1362
|
properties used to qualify the lookup.
|
|
@@ -1340,34 +1364,36 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1340
1364
|
:param str resource_name: The unique name of the resulting resource.
|
|
1341
1365
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1342
1366
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1343
|
-
:param pulumi.Input[
|
|
1344
|
-
:param pulumi.Input[
|
|
1345
|
-
:param pulumi.Input[
|
|
1346
|
-
:param pulumi.Input[
|
|
1347
|
-
:param pulumi.Input[
|
|
1348
|
-
:param pulumi.Input[
|
|
1349
|
-
:param pulumi.Input[
|
|
1350
|
-
:param pulumi.Input[
|
|
1351
|
-
:param pulumi.Input[
|
|
1352
|
-
:param pulumi.Input[
|
|
1353
|
-
:param pulumi.Input[
|
|
1354
|
-
:param pulumi.Input[
|
|
1355
|
-
:param pulumi.Input[
|
|
1356
|
-
:param pulumi.Input[
|
|
1357
|
-
:param pulumi.Input[
|
|
1358
|
-
:param pulumi.Input[
|
|
1359
|
-
:param pulumi.Input[
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
:param pulumi.Input[
|
|
1363
|
-
:param pulumi.Input[
|
|
1364
|
-
:param pulumi.Input[
|
|
1365
|
-
:param pulumi.Input[
|
|
1366
|
-
:param pulumi.Input[
|
|
1367
|
-
:param pulumi.Input[
|
|
1368
|
-
:param pulumi.Input[
|
|
1369
|
-
:param pulumi.Input[
|
|
1370
|
-
:param pulumi.Input[
|
|
1367
|
+
:param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
1368
|
+
:param pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']] alloy_db: Alloy DB integration. See Integration blocks below for details.
|
|
1369
|
+
:param pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']] app_engine: App Engine integration. See Integration blocks below for details.
|
|
1370
|
+
:param pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']] big_query: Biq Query integration. See Integration blocks below for details.
|
|
1371
|
+
:param pulumi.Input[Union['GcpIntegrationsBigTableArgs', 'GcpIntegrationsBigTableArgsDict']] big_table: Big Table. See Integration blocks below for details.
|
|
1372
|
+
:param pulumi.Input[Union['GcpIntegrationsComposerArgs', 'GcpIntegrationsComposerArgsDict']] composer: Composer integration. See Integration blocks below for details.
|
|
1373
|
+
:param pulumi.Input[Union['GcpIntegrationsDataFlowArgs', 'GcpIntegrationsDataFlowArgsDict']] data_flow: Data Flow integration. See Integration blocks below for details.
|
|
1374
|
+
:param pulumi.Input[Union['GcpIntegrationsDataProcArgs', 'GcpIntegrationsDataProcArgsDict']] data_proc: Data Proc integration. See Integration blocks below for details.
|
|
1375
|
+
:param pulumi.Input[Union['GcpIntegrationsDataStoreArgs', 'GcpIntegrationsDataStoreArgsDict']] data_store: Data Store integration. See Integration blocks below for details.
|
|
1376
|
+
:param pulumi.Input[Union['GcpIntegrationsFireBaseDatabaseArgs', 'GcpIntegrationsFireBaseDatabaseArgsDict']] fire_base_database: Fire Base Database integration. See Integration blocks below for details.
|
|
1377
|
+
:param pulumi.Input[Union['GcpIntegrationsFireBaseHostingArgs', 'GcpIntegrationsFireBaseHostingArgsDict']] fire_base_hosting: Fire Base Hosting integration. See Integration blocks below for details.
|
|
1378
|
+
:param pulumi.Input[Union['GcpIntegrationsFireBaseStorageArgs', 'GcpIntegrationsFireBaseStorageArgsDict']] fire_base_storage: Fire Base Storage integration. See Integration blocks below for details.
|
|
1379
|
+
:param pulumi.Input[Union['GcpIntegrationsFireStoreArgs', 'GcpIntegrationsFireStoreArgsDict']] fire_store: Fire Store integration. See Integration blocks below for details.
|
|
1380
|
+
:param pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']] functions: Functions integration. See Integration blocks below for details.
|
|
1381
|
+
:param pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']] interconnect: Interconnect integration. See Integration blocks below for details.
|
|
1382
|
+
:param pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']] kubernetes: Kubernetes integration. See Integration blocks below for details.
|
|
1383
|
+
:param pulumi.Input[_builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
|
|
1384
|
+
|
|
1385
|
+
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
|
1386
|
+
:param pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']] load_balancing: Load Balancing integration. See Integration blocks below for details.
|
|
1387
|
+
:param pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']] mem_cache: Mem cache integration. See Integration blocks below for details.
|
|
1388
|
+
:param pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']] pub_sub: Pub/Sub integration. See Integration blocks below for details.
|
|
1389
|
+
:param pulumi.Input[Union['GcpIntegrationsRedisArgs', 'GcpIntegrationsRedisArgsDict']] redis: Redis integration. See Integration blocks below for details.
|
|
1390
|
+
:param pulumi.Input[Union['GcpIntegrationsRouterArgs', 'GcpIntegrationsRouterArgsDict']] router: Router integration. See Integration blocks below for details.
|
|
1391
|
+
:param pulumi.Input[Union['GcpIntegrationsRunArgs', 'GcpIntegrationsRunArgsDict']] run: Run integration. See Integration blocks below for details.
|
|
1392
|
+
:param pulumi.Input[Union['GcpIntegrationsSpannerArgs', 'GcpIntegrationsSpannerArgsDict']] spanner: Spanner integration. See Integration blocks below for details.
|
|
1393
|
+
:param pulumi.Input[Union['GcpIntegrationsSqlArgs', 'GcpIntegrationsSqlArgsDict']] sql: SQL integration. See Integration blocks below for details.
|
|
1394
|
+
:param pulumi.Input[Union['GcpIntegrationsStorageArgs', 'GcpIntegrationsStorageArgsDict']] storage: Storage integration. See Integration blocks below for details.
|
|
1395
|
+
:param pulumi.Input[Union['GcpIntegrationsVirtualMachinesArgs', 'GcpIntegrationsVirtualMachinesArgsDict']] virtual_machines: Virtual machines integration. See Integration blocks below for details.
|
|
1396
|
+
:param pulumi.Input[Union['GcpIntegrationsVpcAccessArgs', 'GcpIntegrationsVpcAccessArgsDict']] vpc_access: VPC Access integration. See Integration blocks below for details.
|
|
1371
1397
|
"""
|
|
1372
1398
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1373
1399
|
|
|
@@ -1403,15 +1429,15 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1403
1429
|
__props__.__dict__["vpc_access"] = vpc_access
|
|
1404
1430
|
return GcpIntegrations(resource_name, opts=opts, __props__=__props__)
|
|
1405
1431
|
|
|
1406
|
-
@property
|
|
1432
|
+
@_builtins.property
|
|
1407
1433
|
@pulumi.getter(name="accountId")
|
|
1408
|
-
def account_id(self) -> pulumi.Output[
|
|
1434
|
+
def account_id(self) -> pulumi.Output[_builtins.str]:
|
|
1409
1435
|
"""
|
|
1410
1436
|
The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
1411
1437
|
"""
|
|
1412
1438
|
return pulumi.get(self, "account_id")
|
|
1413
1439
|
|
|
1414
|
-
@property
|
|
1440
|
+
@_builtins.property
|
|
1415
1441
|
@pulumi.getter(name="alloyDb")
|
|
1416
1442
|
def alloy_db(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsAlloyDb']]:
|
|
1417
1443
|
"""
|
|
@@ -1419,7 +1445,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1419
1445
|
"""
|
|
1420
1446
|
return pulumi.get(self, "alloy_db")
|
|
1421
1447
|
|
|
1422
|
-
@property
|
|
1448
|
+
@_builtins.property
|
|
1423
1449
|
@pulumi.getter(name="appEngine")
|
|
1424
1450
|
def app_engine(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsAppEngine']]:
|
|
1425
1451
|
"""
|
|
@@ -1427,7 +1453,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1427
1453
|
"""
|
|
1428
1454
|
return pulumi.get(self, "app_engine")
|
|
1429
1455
|
|
|
1430
|
-
@property
|
|
1456
|
+
@_builtins.property
|
|
1431
1457
|
@pulumi.getter(name="bigQuery")
|
|
1432
1458
|
def big_query(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsBigQuery']]:
|
|
1433
1459
|
"""
|
|
@@ -1435,7 +1461,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1435
1461
|
"""
|
|
1436
1462
|
return pulumi.get(self, "big_query")
|
|
1437
1463
|
|
|
1438
|
-
@property
|
|
1464
|
+
@_builtins.property
|
|
1439
1465
|
@pulumi.getter(name="bigTable")
|
|
1440
1466
|
def big_table(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsBigTable']]:
|
|
1441
1467
|
"""
|
|
@@ -1443,7 +1469,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1443
1469
|
"""
|
|
1444
1470
|
return pulumi.get(self, "big_table")
|
|
1445
1471
|
|
|
1446
|
-
@property
|
|
1472
|
+
@_builtins.property
|
|
1447
1473
|
@pulumi.getter
|
|
1448
1474
|
def composer(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsComposer']]:
|
|
1449
1475
|
"""
|
|
@@ -1451,7 +1477,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1451
1477
|
"""
|
|
1452
1478
|
return pulumi.get(self, "composer")
|
|
1453
1479
|
|
|
1454
|
-
@property
|
|
1480
|
+
@_builtins.property
|
|
1455
1481
|
@pulumi.getter(name="dataFlow")
|
|
1456
1482
|
def data_flow(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsDataFlow']]:
|
|
1457
1483
|
"""
|
|
@@ -1459,7 +1485,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1459
1485
|
"""
|
|
1460
1486
|
return pulumi.get(self, "data_flow")
|
|
1461
1487
|
|
|
1462
|
-
@property
|
|
1488
|
+
@_builtins.property
|
|
1463
1489
|
@pulumi.getter(name="dataProc")
|
|
1464
1490
|
def data_proc(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsDataProc']]:
|
|
1465
1491
|
"""
|
|
@@ -1467,7 +1493,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1467
1493
|
"""
|
|
1468
1494
|
return pulumi.get(self, "data_proc")
|
|
1469
1495
|
|
|
1470
|
-
@property
|
|
1496
|
+
@_builtins.property
|
|
1471
1497
|
@pulumi.getter(name="dataStore")
|
|
1472
1498
|
def data_store(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsDataStore']]:
|
|
1473
1499
|
"""
|
|
@@ -1475,7 +1501,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1475
1501
|
"""
|
|
1476
1502
|
return pulumi.get(self, "data_store")
|
|
1477
1503
|
|
|
1478
|
-
@property
|
|
1504
|
+
@_builtins.property
|
|
1479
1505
|
@pulumi.getter(name="fireBaseDatabase")
|
|
1480
1506
|
def fire_base_database(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireBaseDatabase']]:
|
|
1481
1507
|
"""
|
|
@@ -1483,7 +1509,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1483
1509
|
"""
|
|
1484
1510
|
return pulumi.get(self, "fire_base_database")
|
|
1485
1511
|
|
|
1486
|
-
@property
|
|
1512
|
+
@_builtins.property
|
|
1487
1513
|
@pulumi.getter(name="fireBaseHosting")
|
|
1488
1514
|
def fire_base_hosting(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireBaseHosting']]:
|
|
1489
1515
|
"""
|
|
@@ -1491,7 +1517,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1491
1517
|
"""
|
|
1492
1518
|
return pulumi.get(self, "fire_base_hosting")
|
|
1493
1519
|
|
|
1494
|
-
@property
|
|
1520
|
+
@_builtins.property
|
|
1495
1521
|
@pulumi.getter(name="fireBaseStorage")
|
|
1496
1522
|
def fire_base_storage(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireBaseStorage']]:
|
|
1497
1523
|
"""
|
|
@@ -1499,7 +1525,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1499
1525
|
"""
|
|
1500
1526
|
return pulumi.get(self, "fire_base_storage")
|
|
1501
1527
|
|
|
1502
|
-
@property
|
|
1528
|
+
@_builtins.property
|
|
1503
1529
|
@pulumi.getter(name="fireStore")
|
|
1504
1530
|
def fire_store(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFireStore']]:
|
|
1505
1531
|
"""
|
|
@@ -1507,7 +1533,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1507
1533
|
"""
|
|
1508
1534
|
return pulumi.get(self, "fire_store")
|
|
1509
1535
|
|
|
1510
|
-
@property
|
|
1536
|
+
@_builtins.property
|
|
1511
1537
|
@pulumi.getter
|
|
1512
1538
|
def functions(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsFunctions']]:
|
|
1513
1539
|
"""
|
|
@@ -1515,7 +1541,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1515
1541
|
"""
|
|
1516
1542
|
return pulumi.get(self, "functions")
|
|
1517
1543
|
|
|
1518
|
-
@property
|
|
1544
|
+
@_builtins.property
|
|
1519
1545
|
@pulumi.getter
|
|
1520
1546
|
def interconnect(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsInterconnect']]:
|
|
1521
1547
|
"""
|
|
@@ -1523,7 +1549,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1523
1549
|
"""
|
|
1524
1550
|
return pulumi.get(self, "interconnect")
|
|
1525
1551
|
|
|
1526
|
-
@property
|
|
1552
|
+
@_builtins.property
|
|
1527
1553
|
@pulumi.getter
|
|
1528
1554
|
def kubernetes(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsKubernetes']]:
|
|
1529
1555
|
"""
|
|
@@ -1531,15 +1557,17 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1531
1557
|
"""
|
|
1532
1558
|
return pulumi.get(self, "kubernetes")
|
|
1533
1559
|
|
|
1534
|
-
@property
|
|
1560
|
+
@_builtins.property
|
|
1535
1561
|
@pulumi.getter(name="linkedAccountId")
|
|
1536
|
-
def linked_account_id(self) -> pulumi.Output[
|
|
1562
|
+
def linked_account_id(self) -> pulumi.Output[_builtins.str]:
|
|
1537
1563
|
"""
|
|
1538
1564
|
The ID of the linked GCP account in New Relic.
|
|
1565
|
+
|
|
1566
|
+
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
|
1539
1567
|
"""
|
|
1540
1568
|
return pulumi.get(self, "linked_account_id")
|
|
1541
1569
|
|
|
1542
|
-
@property
|
|
1570
|
+
@_builtins.property
|
|
1543
1571
|
@pulumi.getter(name="loadBalancing")
|
|
1544
1572
|
def load_balancing(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsLoadBalancing']]:
|
|
1545
1573
|
"""
|
|
@@ -1547,7 +1575,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1547
1575
|
"""
|
|
1548
1576
|
return pulumi.get(self, "load_balancing")
|
|
1549
1577
|
|
|
1550
|
-
@property
|
|
1578
|
+
@_builtins.property
|
|
1551
1579
|
@pulumi.getter(name="memCache")
|
|
1552
1580
|
def mem_cache(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsMemCache']]:
|
|
1553
1581
|
"""
|
|
@@ -1555,7 +1583,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1555
1583
|
"""
|
|
1556
1584
|
return pulumi.get(self, "mem_cache")
|
|
1557
1585
|
|
|
1558
|
-
@property
|
|
1586
|
+
@_builtins.property
|
|
1559
1587
|
@pulumi.getter(name="pubSub")
|
|
1560
1588
|
def pub_sub(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsPubSub']]:
|
|
1561
1589
|
"""
|
|
@@ -1563,7 +1591,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1563
1591
|
"""
|
|
1564
1592
|
return pulumi.get(self, "pub_sub")
|
|
1565
1593
|
|
|
1566
|
-
@property
|
|
1594
|
+
@_builtins.property
|
|
1567
1595
|
@pulumi.getter
|
|
1568
1596
|
def redis(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsRedis']]:
|
|
1569
1597
|
"""
|
|
@@ -1571,7 +1599,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1571
1599
|
"""
|
|
1572
1600
|
return pulumi.get(self, "redis")
|
|
1573
1601
|
|
|
1574
|
-
@property
|
|
1602
|
+
@_builtins.property
|
|
1575
1603
|
@pulumi.getter
|
|
1576
1604
|
def router(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsRouter']]:
|
|
1577
1605
|
"""
|
|
@@ -1579,7 +1607,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1579
1607
|
"""
|
|
1580
1608
|
return pulumi.get(self, "router")
|
|
1581
1609
|
|
|
1582
|
-
@property
|
|
1610
|
+
@_builtins.property
|
|
1583
1611
|
@pulumi.getter
|
|
1584
1612
|
def run(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsRun']]:
|
|
1585
1613
|
"""
|
|
@@ -1587,7 +1615,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1587
1615
|
"""
|
|
1588
1616
|
return pulumi.get(self, "run")
|
|
1589
1617
|
|
|
1590
|
-
@property
|
|
1618
|
+
@_builtins.property
|
|
1591
1619
|
@pulumi.getter
|
|
1592
1620
|
def spanner(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsSpanner']]:
|
|
1593
1621
|
"""
|
|
@@ -1595,7 +1623,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1595
1623
|
"""
|
|
1596
1624
|
return pulumi.get(self, "spanner")
|
|
1597
1625
|
|
|
1598
|
-
@property
|
|
1626
|
+
@_builtins.property
|
|
1599
1627
|
@pulumi.getter
|
|
1600
1628
|
def sql(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsSql']]:
|
|
1601
1629
|
"""
|
|
@@ -1603,7 +1631,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1603
1631
|
"""
|
|
1604
1632
|
return pulumi.get(self, "sql")
|
|
1605
1633
|
|
|
1606
|
-
@property
|
|
1634
|
+
@_builtins.property
|
|
1607
1635
|
@pulumi.getter
|
|
1608
1636
|
def storage(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsStorage']]:
|
|
1609
1637
|
"""
|
|
@@ -1611,7 +1639,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1611
1639
|
"""
|
|
1612
1640
|
return pulumi.get(self, "storage")
|
|
1613
1641
|
|
|
1614
|
-
@property
|
|
1642
|
+
@_builtins.property
|
|
1615
1643
|
@pulumi.getter(name="virtualMachines")
|
|
1616
1644
|
def virtual_machines(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsVirtualMachines']]:
|
|
1617
1645
|
"""
|
|
@@ -1619,7 +1647,7 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
|
1619
1647
|
"""
|
|
1620
1648
|
return pulumi.get(self, "virtual_machines")
|
|
1621
1649
|
|
|
1622
|
-
@property
|
|
1650
|
+
@_builtins.property
|
|
1623
1651
|
@pulumi.getter(name="vpcAccess")
|
|
1624
1652
|
def vpc_access(self) -> pulumi.Output[Optional['outputs.GcpIntegrationsVpcAccess']]:
|
|
1625
1653
|
"""
|