pulumi-newrelic 5.20.0a1709643785__py3-none-any.whl → 5.39.0a1736834464__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_newrelic/__init__.py +9 -0
- pulumi_newrelic/_inputs.py +7153 -461
- pulumi_newrelic/_utilities.py +41 -5
- pulumi_newrelic/account_management.py +13 -4
- pulumi_newrelic/alert_channel.py +122 -101
- pulumi_newrelic/alert_condition.py +120 -109
- pulumi_newrelic/alert_muting_rule.py +130 -74
- pulumi_newrelic/alert_policy.py +88 -67
- pulumi_newrelic/alert_policy_channel.py +81 -68
- pulumi_newrelic/api_access_key.py +49 -52
- pulumi_newrelic/browser_application.py +79 -76
- pulumi_newrelic/cloud/_inputs.py +2527 -1082
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +135 -130
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +25 -18
- pulumi_newrelic/cloud/aws_integrations.py +300 -1324
- pulumi_newrelic/cloud/aws_link_account.py +25 -18
- pulumi_newrelic/cloud/azure_integrations.py +523 -481
- pulumi_newrelic/cloud/azure_link_account.py +36 -29
- pulumi_newrelic/cloud/gcp_integrations.py +343 -320
- pulumi_newrelic/cloud/gcp_link_account.py +25 -18
- pulumi_newrelic/cloud/outputs.py +327 -1072
- pulumi_newrelic/config/__init__.pyi +6 -1
- pulumi_newrelic/config/vars.py +7 -2
- pulumi_newrelic/data_partition_rule.py +23 -16
- pulumi_newrelic/entity_tags.py +36 -31
- pulumi_newrelic/events_to_metrics_rule.py +27 -20
- pulumi_newrelic/get_account.py +24 -12
- pulumi_newrelic/get_alert_channel.py +26 -13
- pulumi_newrelic/get_alert_policy.py +35 -12
- pulumi_newrelic/get_application.py +39 -27
- pulumi_newrelic/get_authentication_domain.py +17 -9
- pulumi_newrelic/get_cloud_account.py +26 -14
- pulumi_newrelic/get_entity.py +90 -85
- pulumi_newrelic/get_group.py +58 -9
- pulumi_newrelic/get_key_transaction.py +109 -30
- pulumi_newrelic/get_notification_destination.py +64 -14
- pulumi_newrelic/get_obfuscation_expression.py +36 -24
- pulumi_newrelic/get_service_level_alert_helper.py +135 -105
- pulumi_newrelic/get_test_grok_pattern.py +29 -14
- pulumi_newrelic/get_user.py +17 -5
- pulumi_newrelic/group.py +5 -132
- pulumi_newrelic/infra_alert_condition.py +157 -140
- pulumi_newrelic/insights/_inputs.py +43 -0
- pulumi_newrelic/insights/event.py +50 -43
- pulumi_newrelic/insights/outputs.py +5 -0
- pulumi_newrelic/key_transaction.py +464 -0
- pulumi_newrelic/log_parsing_rule.py +29 -18
- pulumi_newrelic/monitor_downtime.py +215 -203
- pulumi_newrelic/notification_channel.py +387 -326
- pulumi_newrelic/notification_destination.py +248 -118
- pulumi_newrelic/nrql_alert_condition.py +353 -246
- pulumi_newrelic/nrql_drop_rule.py +57 -30
- pulumi_newrelic/obfuscation_expression.py +25 -18
- pulumi_newrelic/obfuscation_rule.py +40 -31
- pulumi_newrelic/one_dashboard.py +31 -26
- pulumi_newrelic/one_dashboard_json.py +21 -16
- pulumi_newrelic/one_dashboard_raw.py +112 -101
- pulumi_newrelic/outputs.py +2446 -245
- pulumi_newrelic/plugins/_inputs.py +145 -10
- pulumi_newrelic/plugins/application_settings.py +29 -20
- pulumi_newrelic/plugins/outputs.py +15 -10
- pulumi_newrelic/plugins/workload.py +285 -54
- pulumi_newrelic/provider.py +27 -33
- pulumi_newrelic/pulumi-plugin.json +2 -1
- pulumi_newrelic/service_level.py +193 -180
- pulumi_newrelic/synthetics/_inputs.py +159 -2
- pulumi_newrelic/synthetics/alert_condition.py +91 -78
- pulumi_newrelic/synthetics/broken_links_monitor.py +220 -93
- pulumi_newrelic/synthetics/cert_check_monitor.py +223 -94
- pulumi_newrelic/synthetics/get_private_location.py +34 -22
- pulumi_newrelic/synthetics/get_secure_credential.py +24 -12
- pulumi_newrelic/synthetics/monitor.py +352 -179
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +109 -96
- pulumi_newrelic/synthetics/outputs.py +7 -2
- pulumi_newrelic/synthetics/private_location.py +27 -18
- pulumi_newrelic/synthetics/script_monitor.py +321 -168
- pulumi_newrelic/synthetics/secure_credential.py +25 -20
- pulumi_newrelic/synthetics/step_monitor.py +409 -98
- pulumi_newrelic/user.py +13 -6
- pulumi_newrelic/workflow.py +215 -184
- {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.39.0a1736834464.dist-info}/METADATA +7 -6
- pulumi_newrelic-5.39.0a1736834464.dist-info/RECORD +90 -0
- {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.39.0a1736834464.dist-info}/WHEEL +1 -1
- pulumi_newrelic-5.20.0a1709643785.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.39.0a1736834464.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
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 *
|
@@ -17,14 +22,14 @@ __all__ = ['OneDashboardRawArgs', 'OneDashboardRaw']
|
|
17
22
|
class OneDashboardRawArgs:
|
18
23
|
def __init__(__self__, *,
|
19
24
|
pages: pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]],
|
20
|
-
account_id: Optional[pulumi.Input[
|
25
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
21
26
|
description: Optional[pulumi.Input[str]] = None,
|
22
27
|
name: Optional[pulumi.Input[str]] = None,
|
23
28
|
permissions: Optional[pulumi.Input[str]] = None):
|
24
29
|
"""
|
25
30
|
The set of arguments for constructing a OneDashboardRaw resource.
|
26
31
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
|
27
|
-
:param pulumi.Input[
|
32
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
28
33
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
29
34
|
:param pulumi.Input[str] name: The title of the dashboard.
|
30
35
|
:param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
|
@@ -53,14 +58,14 @@ class OneDashboardRawArgs:
|
|
53
58
|
|
54
59
|
@property
|
55
60
|
@pulumi.getter(name="accountId")
|
56
|
-
def account_id(self) -> Optional[pulumi.Input[
|
61
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
57
62
|
"""
|
58
63
|
Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
59
64
|
"""
|
60
65
|
return pulumi.get(self, "account_id")
|
61
66
|
|
62
67
|
@account_id.setter
|
63
|
-
def account_id(self, value: Optional[pulumi.Input[
|
68
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
64
69
|
pulumi.set(self, "account_id", value)
|
65
70
|
|
66
71
|
@property
|
@@ -103,7 +108,7 @@ class OneDashboardRawArgs:
|
|
103
108
|
@pulumi.input_type
|
104
109
|
class _OneDashboardRawState:
|
105
110
|
def __init__(__self__, *,
|
106
|
-
account_id: Optional[pulumi.Input[
|
111
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
107
112
|
description: Optional[pulumi.Input[str]] = None,
|
108
113
|
guid: Optional[pulumi.Input[str]] = None,
|
109
114
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -112,7 +117,7 @@ class _OneDashboardRawState:
|
|
112
117
|
permissions: Optional[pulumi.Input[str]] = None):
|
113
118
|
"""
|
114
119
|
Input properties used for looking up and filtering OneDashboardRaw resources.
|
115
|
-
:param pulumi.Input[
|
120
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
116
121
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
117
122
|
:param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
|
118
123
|
:param pulumi.Input[str] name: The title of the dashboard.
|
@@ -137,14 +142,14 @@ class _OneDashboardRawState:
|
|
137
142
|
|
138
143
|
@property
|
139
144
|
@pulumi.getter(name="accountId")
|
140
|
-
def account_id(self) -> Optional[pulumi.Input[
|
145
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
141
146
|
"""
|
142
147
|
Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
143
148
|
"""
|
144
149
|
return pulumi.get(self, "account_id")
|
145
150
|
|
146
151
|
@account_id.setter
|
147
|
-
def account_id(self, value: Optional[pulumi.Input[
|
152
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
148
153
|
pulumi.set(self, "account_id", value)
|
149
154
|
|
150
155
|
@property
|
@@ -225,16 +230,17 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
225
230
|
def __init__(__self__,
|
226
231
|
resource_name: str,
|
227
232
|
opts: Optional[pulumi.ResourceOptions] = None,
|
228
|
-
account_id: Optional[pulumi.Input[
|
233
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
229
234
|
description: Optional[pulumi.Input[str]] = None,
|
230
235
|
name: Optional[pulumi.Input[str]] = None,
|
231
|
-
pages: Optional[pulumi.Input[Sequence[pulumi.Input[
|
236
|
+
pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
|
232
237
|
permissions: Optional[pulumi.Input[str]] = None,
|
233
238
|
__props__=None):
|
234
239
|
"""
|
235
240
|
> **NOTE:** The OneDashboardJson resource is preferred for configuring dashboards in New Relic. This resource does not support the latest dashboard features and will receive less investment compared to newrelic_one_dashboard_json.
|
236
241
|
|
237
242
|
## Example Usage
|
243
|
+
|
238
244
|
### Create A New Relic One Dashboard With RawConfiguration
|
239
245
|
|
240
246
|
```python
|
@@ -242,17 +248,19 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
242
248
|
import json
|
243
249
|
import pulumi_newrelic as newrelic
|
244
250
|
|
245
|
-
exampledash = newrelic.OneDashboardRaw("exampledash",
|
246
|
-
name="
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
251
|
+
exampledash = newrelic.OneDashboardRaw("exampledash",
|
252
|
+
name="New Relic Terraform Example",
|
253
|
+
pages=[{
|
254
|
+
"name": "Page Name",
|
255
|
+
"widgets": [
|
256
|
+
{
|
257
|
+
"title": "Custom widget",
|
258
|
+
"row": 1,
|
259
|
+
"column": 1,
|
260
|
+
"width": 1,
|
261
|
+
"height": 1,
|
262
|
+
"visualization_id": "viz.custom",
|
263
|
+
"configuration": \"\"\" {
|
256
264
|
"legend": {
|
257
265
|
"enabled": false
|
258
266
|
},
|
@@ -269,15 +277,15 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
269
277
|
}
|
270
278
|
}
|
271
279
|
\"\"\",
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"title": "Server CPU",
|
283
|
+
"row": 1,
|
284
|
+
"column": 2,
|
285
|
+
"width": 1,
|
286
|
+
"height": 1,
|
287
|
+
"visualization_id": "viz.testing",
|
288
|
+
"configuration": \"\"\" {
|
281
289
|
"nrqlQueries": [
|
282
290
|
{
|
283
291
|
"accountId": ` + accountID + `,
|
@@ -286,35 +294,35 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
286
294
|
]
|
287
295
|
}
|
288
296
|
\"\"\",
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"title": "Docker Server CPU",
|
300
|
+
"row": 1,
|
301
|
+
"column": 3,
|
302
|
+
"height": 1,
|
303
|
+
"width": 1,
|
304
|
+
"visualization_id": "viz.bar",
|
305
|
+
"configuration": json.dumps({
|
306
|
+
"facet": {
|
307
|
+
"showOtherSeries": False,
|
308
|
+
},
|
309
|
+
"nrqlQueries": [{
|
310
|
+
"accountId": account_id,
|
311
|
+
"query": "SELECT average(cpuPercent) FROM SystemSample since 3 hours ago facet hostname limit 400",
|
312
|
+
}],
|
313
|
+
}),
|
314
|
+
"linked_entity_guids": ["MzI5ODAxNnxWSVp8REFTSEJPQVJEfDI2MTcxNDc"],
|
315
|
+
},
|
316
|
+
],
|
317
|
+
}])
|
310
318
|
```
|
311
319
|
|
312
320
|
:param str resource_name: The name of the resource.
|
313
321
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
314
|
-
:param pulumi.Input[
|
322
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
315
323
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
316
324
|
:param pulumi.Input[str] name: The title of the dashboard.
|
317
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
325
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
|
318
326
|
:param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
|
319
327
|
"""
|
320
328
|
...
|
@@ -327,6 +335,7 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
327
335
|
> **NOTE:** The OneDashboardJson resource is preferred for configuring dashboards in New Relic. This resource does not support the latest dashboard features and will receive less investment compared to newrelic_one_dashboard_json.
|
328
336
|
|
329
337
|
## Example Usage
|
338
|
+
|
330
339
|
### Create A New Relic One Dashboard With RawConfiguration
|
331
340
|
|
332
341
|
```python
|
@@ -334,17 +343,19 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
334
343
|
import json
|
335
344
|
import pulumi_newrelic as newrelic
|
336
345
|
|
337
|
-
exampledash = newrelic.OneDashboardRaw("exampledash",
|
338
|
-
name="
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
346
|
+
exampledash = newrelic.OneDashboardRaw("exampledash",
|
347
|
+
name="New Relic Terraform Example",
|
348
|
+
pages=[{
|
349
|
+
"name": "Page Name",
|
350
|
+
"widgets": [
|
351
|
+
{
|
352
|
+
"title": "Custom widget",
|
353
|
+
"row": 1,
|
354
|
+
"column": 1,
|
355
|
+
"width": 1,
|
356
|
+
"height": 1,
|
357
|
+
"visualization_id": "viz.custom",
|
358
|
+
"configuration": \"\"\" {
|
348
359
|
"legend": {
|
349
360
|
"enabled": false
|
350
361
|
},
|
@@ -361,15 +372,15 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
361
372
|
}
|
362
373
|
}
|
363
374
|
\"\"\",
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
375
|
+
},
|
376
|
+
{
|
377
|
+
"title": "Server CPU",
|
378
|
+
"row": 1,
|
379
|
+
"column": 2,
|
380
|
+
"width": 1,
|
381
|
+
"height": 1,
|
382
|
+
"visualization_id": "viz.testing",
|
383
|
+
"configuration": \"\"\" {
|
373
384
|
"nrqlQueries": [
|
374
385
|
{
|
375
386
|
"accountId": ` + accountID + `,
|
@@ -378,27 +389,27 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
378
389
|
]
|
379
390
|
}
|
380
391
|
\"\"\",
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
392
|
+
},
|
393
|
+
{
|
394
|
+
"title": "Docker Server CPU",
|
395
|
+
"row": 1,
|
396
|
+
"column": 3,
|
397
|
+
"height": 1,
|
398
|
+
"width": 1,
|
399
|
+
"visualization_id": "viz.bar",
|
400
|
+
"configuration": json.dumps({
|
401
|
+
"facet": {
|
402
|
+
"showOtherSeries": False,
|
403
|
+
},
|
404
|
+
"nrqlQueries": [{
|
405
|
+
"accountId": account_id,
|
406
|
+
"query": "SELECT average(cpuPercent) FROM SystemSample since 3 hours ago facet hostname limit 400",
|
407
|
+
}],
|
408
|
+
}),
|
409
|
+
"linked_entity_guids": ["MzI5ODAxNnxWSVp8REFTSEJPQVJEfDI2MTcxNDc"],
|
410
|
+
},
|
411
|
+
],
|
412
|
+
}])
|
402
413
|
```
|
403
414
|
|
404
415
|
:param str resource_name: The name of the resource.
|
@@ -416,10 +427,10 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
416
427
|
def _internal_init(__self__,
|
417
428
|
resource_name: str,
|
418
429
|
opts: Optional[pulumi.ResourceOptions] = None,
|
419
|
-
account_id: Optional[pulumi.Input[
|
430
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
420
431
|
description: Optional[pulumi.Input[str]] = None,
|
421
432
|
name: Optional[pulumi.Input[str]] = None,
|
422
|
-
pages: Optional[pulumi.Input[Sequence[pulumi.Input[
|
433
|
+
pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
|
423
434
|
permissions: Optional[pulumi.Input[str]] = None,
|
424
435
|
__props__=None):
|
425
436
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -449,11 +460,11 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
449
460
|
def get(resource_name: str,
|
450
461
|
id: pulumi.Input[str],
|
451
462
|
opts: Optional[pulumi.ResourceOptions] = None,
|
452
|
-
account_id: Optional[pulumi.Input[
|
463
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
453
464
|
description: Optional[pulumi.Input[str]] = None,
|
454
465
|
guid: Optional[pulumi.Input[str]] = None,
|
455
466
|
name: Optional[pulumi.Input[str]] = None,
|
456
|
-
pages: Optional[pulumi.Input[Sequence[pulumi.Input[
|
467
|
+
pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
|
457
468
|
permalink: Optional[pulumi.Input[str]] = None,
|
458
469
|
permissions: Optional[pulumi.Input[str]] = None) -> 'OneDashboardRaw':
|
459
470
|
"""
|
@@ -463,11 +474,11 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
463
474
|
:param str resource_name: The unique name of the resulting resource.
|
464
475
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
465
476
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
466
|
-
:param pulumi.Input[
|
477
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
467
478
|
:param pulumi.Input[str] description: Brief text describing the dashboard.
|
468
479
|
:param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
|
469
480
|
:param pulumi.Input[str] name: The title of the dashboard.
|
470
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
481
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
|
471
482
|
:param pulumi.Input[str] permalink: The URL for viewing the dashboard.
|
472
483
|
:param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
|
473
484
|
"""
|
@@ -486,7 +497,7 @@ class OneDashboardRaw(pulumi.CustomResource):
|
|
486
497
|
|
487
498
|
@property
|
488
499
|
@pulumi.getter(name="accountId")
|
489
|
-
def account_id(self) -> pulumi.Output[
|
500
|
+
def account_id(self) -> pulumi.Output[str]:
|
490
501
|
"""
|
491
502
|
Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
|
492
503
|
"""
|