pulumi-newrelic 5.18.0a1706747659__py3-none-any.whl → 5.18.0a1706830028__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.
- pulumi_newrelic/_inputs.py +422 -0
- pulumi_newrelic/_utilities.py +6 -2
- pulumi_newrelic/insights/_inputs.py +28 -0
- pulumi_newrelic/insights/outputs.py +28 -0
- pulumi_newrelic/outputs.py +440 -0
- pulumi_newrelic/synthetics/_inputs.py +12 -0
- pulumi_newrelic/synthetics/outputs.py +12 -0
- {pulumi_newrelic-5.18.0a1706747659.dist-info → pulumi_newrelic-5.18.0a1706830028.dist-info}/METADATA +2 -1
- {pulumi_newrelic-5.18.0a1706747659.dist-info → pulumi_newrelic-5.18.0a1706830028.dist-info}/RECORD +11 -11
- {pulumi_newrelic-5.18.0a1706747659.dist-info → pulumi_newrelic-5.18.0a1706830028.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.18.0a1706747659.dist-info → pulumi_newrelic-5.18.0a1706830028.dist-info}/top_level.txt +0 -0
pulumi_newrelic/outputs.py
CHANGED
@@ -255,6 +255,7 @@ class AlertChannelConfig(dict):
|
|
255
255
|
:param str tags: A set of tags for targeting notifications. Multiple values are comma separated.
|
256
256
|
:param str teams: A set of teams for targeting notifications. Multiple values are comma separated.
|
257
257
|
:param str url: [Slack Webhook URL](https://slack.com/intl/en-es/help/articles/115005265063-Incoming-webhooks-for-Slack).
|
258
|
+
:param str user_id: The user ID for use with the user channel type.
|
258
259
|
"""
|
259
260
|
if api_key is not None:
|
260
261
|
pulumi.set(__self__, "api_key", api_key)
|
@@ -462,6 +463,9 @@ class AlertChannelConfig(dict):
|
|
462
463
|
@property
|
463
464
|
@pulumi.getter(name="userId")
|
464
465
|
def user_id(self) -> Optional[str]:
|
466
|
+
"""
|
467
|
+
The user ID for use with the user channel type.
|
468
|
+
"""
|
465
469
|
return pulumi.get(self, "user_id")
|
466
470
|
|
467
471
|
|
@@ -490,6 +494,13 @@ class AlertConditionTerm(dict):
|
|
490
494
|
time_function: str,
|
491
495
|
operator: Optional[str] = None,
|
492
496
|
priority: Optional[str] = None):
|
497
|
+
"""
|
498
|
+
:param int duration: In minutes, must be in the range of 5 to 120, inclusive.
|
499
|
+
:param float threshold: Must be 0 or greater.
|
500
|
+
:param str time_function: One of (all, any).
|
501
|
+
:param str operator: One of (above, below, equal). Defaults to equal.
|
502
|
+
:param str priority: One of (critical, warning). Defaults to critical.
|
503
|
+
"""
|
493
504
|
pulumi.set(__self__, "duration", duration)
|
494
505
|
pulumi.set(__self__, "threshold", threshold)
|
495
506
|
pulumi.set(__self__, "time_function", time_function)
|
@@ -501,26 +512,41 @@ class AlertConditionTerm(dict):
|
|
501
512
|
@property
|
502
513
|
@pulumi.getter
|
503
514
|
def duration(self) -> int:
|
515
|
+
"""
|
516
|
+
In minutes, must be in the range of 5 to 120, inclusive.
|
517
|
+
"""
|
504
518
|
return pulumi.get(self, "duration")
|
505
519
|
|
506
520
|
@property
|
507
521
|
@pulumi.getter
|
508
522
|
def threshold(self) -> float:
|
523
|
+
"""
|
524
|
+
Must be 0 or greater.
|
525
|
+
"""
|
509
526
|
return pulumi.get(self, "threshold")
|
510
527
|
|
511
528
|
@property
|
512
529
|
@pulumi.getter(name="timeFunction")
|
513
530
|
def time_function(self) -> str:
|
531
|
+
"""
|
532
|
+
One of (all, any).
|
533
|
+
"""
|
514
534
|
return pulumi.get(self, "time_function")
|
515
535
|
|
516
536
|
@property
|
517
537
|
@pulumi.getter
|
518
538
|
def operator(self) -> Optional[str]:
|
539
|
+
"""
|
540
|
+
One of (above, below, equal). Defaults to equal.
|
541
|
+
"""
|
519
542
|
return pulumi.get(self, "operator")
|
520
543
|
|
521
544
|
@property
|
522
545
|
@pulumi.getter
|
523
546
|
def priority(self) -> Optional[str]:
|
547
|
+
"""
|
548
|
+
One of (critical, warning). Defaults to critical.
|
549
|
+
"""
|
524
550
|
return pulumi.get(self, "priority")
|
525
551
|
|
526
552
|
|
@@ -631,6 +657,7 @@ class AlertMutingRuleSchedule(dict):
|
|
631
657
|
start_time: Optional[str] = None,
|
632
658
|
weekly_repeat_days: Optional[Sequence[str]] = None):
|
633
659
|
"""
|
660
|
+
:param str time_zone: The time zone that applies to the MutingRule schedule.
|
634
661
|
:param str end_repeat: The datetime stamp when the muting rule schedule stops repeating. This is in local ISO 8601 format without an offset. Example: '2020-07-10T15:00:00'. Conflicts with `repeat_count`
|
635
662
|
:param str end_time: The datetime stamp that represents when the muting rule ends. This is in local ISO 8601 format without an offset. Example: '2020-07-15T14:30:00'
|
636
663
|
:param str repeat: The frequency the muting rule schedule repeats. If it does not repeat, omit this field. Options are DAILY, WEEKLY, MONTHLY
|
@@ -655,6 +682,9 @@ class AlertMutingRuleSchedule(dict):
|
|
655
682
|
@property
|
656
683
|
@pulumi.getter(name="timeZone")
|
657
684
|
def time_zone(self) -> str:
|
685
|
+
"""
|
686
|
+
The time zone that applies to the MutingRule schedule.
|
687
|
+
"""
|
658
688
|
return pulumi.get(self, "time_zone")
|
659
689
|
|
660
690
|
@property
|
@@ -1214,6 +1244,14 @@ class NrqlAlertConditionCritical(dict):
|
|
1214
1244
|
threshold_duration: Optional[int] = None,
|
1215
1245
|
threshold_occurrences: Optional[str] = None,
|
1216
1246
|
time_function: Optional[str] = None):
|
1247
|
+
"""
|
1248
|
+
:param float threshold: For baseline conditions must be in range [1, 1000].
|
1249
|
+
:param int duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
1250
|
+
:param str operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1251
|
+
:param int threshold_duration: The duration, in seconds, that the threshold must violate in order to create an incident. Value must be a multiple of the 'aggregation_window' (which has a default of 60 seconds). Value must be within 120-86400 seconds for baseline conditions, and within 60-86400 seconds for static conditions
|
1252
|
+
:param str threshold_occurrences: The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: 'ALL' or 'AT_LEAST_ONCE' (case insensitive).
|
1253
|
+
:param str time_function: Valid values are: 'all' or 'any'
|
1254
|
+
"""
|
1217
1255
|
pulumi.set(__self__, "threshold", threshold)
|
1218
1256
|
if duration is not None:
|
1219
1257
|
pulumi.set(__self__, "duration", duration)
|
@@ -1229,11 +1267,17 @@ class NrqlAlertConditionCritical(dict):
|
|
1229
1267
|
@property
|
1230
1268
|
@pulumi.getter
|
1231
1269
|
def threshold(self) -> float:
|
1270
|
+
"""
|
1271
|
+
For baseline conditions must be in range [1, 1000].
|
1272
|
+
"""
|
1232
1273
|
return pulumi.get(self, "threshold")
|
1233
1274
|
|
1234
1275
|
@property
|
1235
1276
|
@pulumi.getter
|
1236
1277
|
def duration(self) -> Optional[int]:
|
1278
|
+
"""
|
1279
|
+
In minutes, must be in the range of 1 to 120 (inclusive).
|
1280
|
+
"""
|
1237
1281
|
warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
|
1238
1282
|
pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
|
1239
1283
|
|
@@ -1242,21 +1286,33 @@ class NrqlAlertConditionCritical(dict):
|
|
1242
1286
|
@property
|
1243
1287
|
@pulumi.getter
|
1244
1288
|
def operator(self) -> Optional[str]:
|
1289
|
+
"""
|
1290
|
+
One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1291
|
+
"""
|
1245
1292
|
return pulumi.get(self, "operator")
|
1246
1293
|
|
1247
1294
|
@property
|
1248
1295
|
@pulumi.getter(name="thresholdDuration")
|
1249
1296
|
def threshold_duration(self) -> Optional[int]:
|
1297
|
+
"""
|
1298
|
+
The duration, in seconds, that the threshold must violate in order to create an incident. Value must be a multiple of the 'aggregation_window' (which has a default of 60 seconds). Value must be within 120-86400 seconds for baseline conditions, and within 60-86400 seconds for static conditions
|
1299
|
+
"""
|
1250
1300
|
return pulumi.get(self, "threshold_duration")
|
1251
1301
|
|
1252
1302
|
@property
|
1253
1303
|
@pulumi.getter(name="thresholdOccurrences")
|
1254
1304
|
def threshold_occurrences(self) -> Optional[str]:
|
1305
|
+
"""
|
1306
|
+
The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: 'ALL' or 'AT_LEAST_ONCE' (case insensitive).
|
1307
|
+
"""
|
1255
1308
|
return pulumi.get(self, "threshold_occurrences")
|
1256
1309
|
|
1257
1310
|
@property
|
1258
1311
|
@pulumi.getter(name="timeFunction")
|
1259
1312
|
def time_function(self) -> Optional[str]:
|
1313
|
+
"""
|
1314
|
+
Valid values are: 'all' or 'any'
|
1315
|
+
"""
|
1260
1316
|
warnings.warn("""use `threshold_occurrences` attribute instead""", DeprecationWarning)
|
1261
1317
|
pulumi.log.warn("""time_function is deprecated: use `threshold_occurrences` attribute instead""")
|
1262
1318
|
|
@@ -1288,6 +1344,10 @@ class NrqlAlertConditionNrql(dict):
|
|
1288
1344
|
query: str,
|
1289
1345
|
evaluation_offset: Optional[int] = None,
|
1290
1346
|
since_value: Optional[str] = None):
|
1347
|
+
"""
|
1348
|
+
:param int evaluation_offset: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `evaluation_offset`.
|
1349
|
+
:param str since_value: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `since_value`.
|
1350
|
+
"""
|
1291
1351
|
pulumi.set(__self__, "query", query)
|
1292
1352
|
if evaluation_offset is not None:
|
1293
1353
|
pulumi.set(__self__, "evaluation_offset", evaluation_offset)
|
@@ -1302,6 +1362,9 @@ class NrqlAlertConditionNrql(dict):
|
|
1302
1362
|
@property
|
1303
1363
|
@pulumi.getter(name="evaluationOffset")
|
1304
1364
|
def evaluation_offset(self) -> Optional[int]:
|
1365
|
+
"""
|
1366
|
+
NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `evaluation_offset`.
|
1367
|
+
"""
|
1305
1368
|
warnings.warn("""use `aggregation_method` attribute instead""", DeprecationWarning)
|
1306
1369
|
pulumi.log.warn("""evaluation_offset is deprecated: use `aggregation_method` attribute instead""")
|
1307
1370
|
|
@@ -1310,6 +1373,9 @@ class NrqlAlertConditionNrql(dict):
|
|
1310
1373
|
@property
|
1311
1374
|
@pulumi.getter(name="sinceValue")
|
1312
1375
|
def since_value(self) -> Optional[str]:
|
1376
|
+
"""
|
1377
|
+
NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `since_value`.
|
1378
|
+
"""
|
1313
1379
|
warnings.warn("""use `aggregation_method` attribute instead""", DeprecationWarning)
|
1314
1380
|
pulumi.log.warn("""since_value is deprecated: use `aggregation_method` attribute instead""")
|
1315
1381
|
|
@@ -1347,6 +1413,15 @@ class NrqlAlertConditionTerm(dict):
|
|
1347
1413
|
threshold_duration: Optional[int] = None,
|
1348
1414
|
threshold_occurrences: Optional[str] = None,
|
1349
1415
|
time_function: Optional[str] = None):
|
1416
|
+
"""
|
1417
|
+
:param float threshold: For baseline conditions must be in range [1, 1000].
|
1418
|
+
:param int duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
1419
|
+
:param str operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1420
|
+
:param str priority: One of (critical, warning). Defaults to 'critical'. At least one condition term must have priority set to 'critical'.
|
1421
|
+
:param int threshold_duration: The duration, in seconds, that the threshold must violate in order to create an incident. Value must be a multiple of the 'aggregation_window' (which has a default of 60 seconds). Value must be within 120-86400 seconds for baseline conditions, and within 60-86400 seconds for static conditions
|
1422
|
+
:param str threshold_occurrences: The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: 'ALL' or 'AT_LEAST_ONCE' (case insensitive).
|
1423
|
+
:param str time_function: Valid values are: 'all' or 'any'
|
1424
|
+
"""
|
1350
1425
|
pulumi.set(__self__, "threshold", threshold)
|
1351
1426
|
if duration is not None:
|
1352
1427
|
pulumi.set(__self__, "duration", duration)
|
@@ -1364,11 +1439,17 @@ class NrqlAlertConditionTerm(dict):
|
|
1364
1439
|
@property
|
1365
1440
|
@pulumi.getter
|
1366
1441
|
def threshold(self) -> float:
|
1442
|
+
"""
|
1443
|
+
For baseline conditions must be in range [1, 1000].
|
1444
|
+
"""
|
1367
1445
|
return pulumi.get(self, "threshold")
|
1368
1446
|
|
1369
1447
|
@property
|
1370
1448
|
@pulumi.getter
|
1371
1449
|
def duration(self) -> Optional[int]:
|
1450
|
+
"""
|
1451
|
+
In minutes, must be in the range of 1 to 120 (inclusive).
|
1452
|
+
"""
|
1372
1453
|
warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
|
1373
1454
|
pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
|
1374
1455
|
|
@@ -1377,26 +1458,41 @@ class NrqlAlertConditionTerm(dict):
|
|
1377
1458
|
@property
|
1378
1459
|
@pulumi.getter
|
1379
1460
|
def operator(self) -> Optional[str]:
|
1461
|
+
"""
|
1462
|
+
One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1463
|
+
"""
|
1380
1464
|
return pulumi.get(self, "operator")
|
1381
1465
|
|
1382
1466
|
@property
|
1383
1467
|
@pulumi.getter
|
1384
1468
|
def priority(self) -> Optional[str]:
|
1469
|
+
"""
|
1470
|
+
One of (critical, warning). Defaults to 'critical'. At least one condition term must have priority set to 'critical'.
|
1471
|
+
"""
|
1385
1472
|
return pulumi.get(self, "priority")
|
1386
1473
|
|
1387
1474
|
@property
|
1388
1475
|
@pulumi.getter(name="thresholdDuration")
|
1389
1476
|
def threshold_duration(self) -> Optional[int]:
|
1477
|
+
"""
|
1478
|
+
The duration, in seconds, that the threshold must violate in order to create an incident. Value must be a multiple of the 'aggregation_window' (which has a default of 60 seconds). Value must be within 120-86400 seconds for baseline conditions, and within 60-86400 seconds for static conditions
|
1479
|
+
"""
|
1390
1480
|
return pulumi.get(self, "threshold_duration")
|
1391
1481
|
|
1392
1482
|
@property
|
1393
1483
|
@pulumi.getter(name="thresholdOccurrences")
|
1394
1484
|
def threshold_occurrences(self) -> Optional[str]:
|
1485
|
+
"""
|
1486
|
+
The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: 'ALL' or 'AT_LEAST_ONCE' (case insensitive).
|
1487
|
+
"""
|
1395
1488
|
return pulumi.get(self, "threshold_occurrences")
|
1396
1489
|
|
1397
1490
|
@property
|
1398
1491
|
@pulumi.getter(name="timeFunction")
|
1399
1492
|
def time_function(self) -> Optional[str]:
|
1493
|
+
"""
|
1494
|
+
Valid values are: 'all' or 'any'
|
1495
|
+
"""
|
1400
1496
|
warnings.warn("""use `threshold_occurrences` attribute instead""", DeprecationWarning)
|
1401
1497
|
pulumi.log.warn("""time_function is deprecated: use `threshold_occurrences` attribute instead""")
|
1402
1498
|
|
@@ -1433,6 +1529,14 @@ class NrqlAlertConditionWarning(dict):
|
|
1433
1529
|
threshold_duration: Optional[int] = None,
|
1434
1530
|
threshold_occurrences: Optional[str] = None,
|
1435
1531
|
time_function: Optional[str] = None):
|
1532
|
+
"""
|
1533
|
+
:param float threshold: For baseline conditions must be in range [1, 1000].
|
1534
|
+
:param int duration: In minutes, must be in the range of 1 to 120 (inclusive).
|
1535
|
+
:param str operator: One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1536
|
+
:param int threshold_duration: The duration, in seconds, that the threshold must violate in order to create an incident. Value must be a multiple of the 'aggregation_window' (which has a default of 60 seconds). Value must be within 120-86400 seconds for baseline conditions, and within 60-86400 seconds for static conditions
|
1537
|
+
:param str threshold_occurrences: The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: 'ALL' or 'AT_LEAST_ONCE' (case insensitive).
|
1538
|
+
:param str time_function: Valid values are: 'all' or 'any'
|
1539
|
+
"""
|
1436
1540
|
pulumi.set(__self__, "threshold", threshold)
|
1437
1541
|
if duration is not None:
|
1438
1542
|
pulumi.set(__self__, "duration", duration)
|
@@ -1448,11 +1552,17 @@ class NrqlAlertConditionWarning(dict):
|
|
1448
1552
|
@property
|
1449
1553
|
@pulumi.getter
|
1450
1554
|
def threshold(self) -> float:
|
1555
|
+
"""
|
1556
|
+
For baseline conditions must be in range [1, 1000].
|
1557
|
+
"""
|
1451
1558
|
return pulumi.get(self, "threshold")
|
1452
1559
|
|
1453
1560
|
@property
|
1454
1561
|
@pulumi.getter
|
1455
1562
|
def duration(self) -> Optional[int]:
|
1563
|
+
"""
|
1564
|
+
In minutes, must be in the range of 1 to 120 (inclusive).
|
1565
|
+
"""
|
1456
1566
|
warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
|
1457
1567
|
pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
|
1458
1568
|
|
@@ -1461,21 +1571,33 @@ class NrqlAlertConditionWarning(dict):
|
|
1461
1571
|
@property
|
1462
1572
|
@pulumi.getter
|
1463
1573
|
def operator(self) -> Optional[str]:
|
1574
|
+
"""
|
1575
|
+
One of (above, above_or_equals, below, below_or_equals, equals, not_equals). Defaults to 'equals'.
|
1576
|
+
"""
|
1464
1577
|
return pulumi.get(self, "operator")
|
1465
1578
|
|
1466
1579
|
@property
|
1467
1580
|
@pulumi.getter(name="thresholdDuration")
|
1468
1581
|
def threshold_duration(self) -> Optional[int]:
|
1582
|
+
"""
|
1583
|
+
The duration, in seconds, that the threshold must violate in order to create an incident. Value must be a multiple of the 'aggregation_window' (which has a default of 60 seconds). Value must be within 120-86400 seconds for baseline conditions, and within 60-86400 seconds for static conditions
|
1584
|
+
"""
|
1469
1585
|
return pulumi.get(self, "threshold_duration")
|
1470
1586
|
|
1471
1587
|
@property
|
1472
1588
|
@pulumi.getter(name="thresholdOccurrences")
|
1473
1589
|
def threshold_occurrences(self) -> Optional[str]:
|
1590
|
+
"""
|
1591
|
+
The criteria for how many data points must be in violation for the specified threshold duration. Valid values are: 'ALL' or 'AT_LEAST_ONCE' (case insensitive).
|
1592
|
+
"""
|
1474
1593
|
return pulumi.get(self, "threshold_occurrences")
|
1475
1594
|
|
1476
1595
|
@property
|
1477
1596
|
@pulumi.getter(name="timeFunction")
|
1478
1597
|
def time_function(self) -> Optional[str]:
|
1598
|
+
"""
|
1599
|
+
Valid values are: 'all' or 'any'
|
1600
|
+
"""
|
1479
1601
|
warnings.warn("""use `threshold_occurrences` attribute instead""", DeprecationWarning)
|
1480
1602
|
pulumi.log.warn("""time_function is deprecated: use `threshold_occurrences` attribute instead""")
|
1481
1603
|
|
@@ -1606,6 +1728,20 @@ class OneDashboardPage(dict):
|
|
1606
1728
|
:param str name: The title of the dashboard.
|
1607
1729
|
:param str description: Brief text describing the dashboard.
|
1608
1730
|
:param str guid: The unique entity identifier of the dashboard page in New Relic.
|
1731
|
+
:param Sequence['OneDashboardPageWidgetAreaArgs'] widget_areas: An area widget.
|
1732
|
+
:param Sequence['OneDashboardPageWidgetBarArgs'] widget_bars: A bar widget.
|
1733
|
+
:param Sequence['OneDashboardPageWidgetBillboardArgs'] widget_billboards: A billboard widget.
|
1734
|
+
:param Sequence['OneDashboardPageWidgetBulletArgs'] widget_bullets: A bullet widget.
|
1735
|
+
:param Sequence['OneDashboardPageWidgetFunnelArgs'] widget_funnels: A funnel widget.
|
1736
|
+
:param Sequence['OneDashboardPageWidgetHeatmapArgs'] widget_heatmaps: A heatmap widget.
|
1737
|
+
:param Sequence['OneDashboardPageWidgetHistogramArgs'] widget_histograms: A histogram widget.
|
1738
|
+
:param Sequence['OneDashboardPageWidgetJsonArgs'] widget_jsons: A JSON widget.
|
1739
|
+
:param Sequence['OneDashboardPageWidgetLineArgs'] widget_lines: A line widget.
|
1740
|
+
:param Sequence['OneDashboardPageWidgetLogTableArgs'] widget_log_tables: A log table widget.
|
1741
|
+
:param Sequence['OneDashboardPageWidgetMarkdownArgs'] widget_markdowns: A markdown widget.
|
1742
|
+
:param Sequence['OneDashboardPageWidgetPyArgs'] widget_pies: A pie widget.
|
1743
|
+
:param Sequence['OneDashboardPageWidgetStackedBarArgs'] widget_stacked_bars: A stacked bar widget.
|
1744
|
+
:param Sequence['OneDashboardPageWidgetTableArgs'] widget_tables: A table widget.
|
1609
1745
|
"""
|
1610
1746
|
pulumi.set(__self__, "name", name)
|
1611
1747
|
if description is not None:
|
@@ -1668,71 +1804,113 @@ class OneDashboardPage(dict):
|
|
1668
1804
|
@property
|
1669
1805
|
@pulumi.getter(name="widgetAreas")
|
1670
1806
|
def widget_areas(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetArea']]:
|
1807
|
+
"""
|
1808
|
+
An area widget.
|
1809
|
+
"""
|
1671
1810
|
return pulumi.get(self, "widget_areas")
|
1672
1811
|
|
1673
1812
|
@property
|
1674
1813
|
@pulumi.getter(name="widgetBars")
|
1675
1814
|
def widget_bars(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetBar']]:
|
1815
|
+
"""
|
1816
|
+
A bar widget.
|
1817
|
+
"""
|
1676
1818
|
return pulumi.get(self, "widget_bars")
|
1677
1819
|
|
1678
1820
|
@property
|
1679
1821
|
@pulumi.getter(name="widgetBillboards")
|
1680
1822
|
def widget_billboards(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetBillboard']]:
|
1823
|
+
"""
|
1824
|
+
A billboard widget.
|
1825
|
+
"""
|
1681
1826
|
return pulumi.get(self, "widget_billboards")
|
1682
1827
|
|
1683
1828
|
@property
|
1684
1829
|
@pulumi.getter(name="widgetBullets")
|
1685
1830
|
def widget_bullets(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetBullet']]:
|
1831
|
+
"""
|
1832
|
+
A bullet widget.
|
1833
|
+
"""
|
1686
1834
|
return pulumi.get(self, "widget_bullets")
|
1687
1835
|
|
1688
1836
|
@property
|
1689
1837
|
@pulumi.getter(name="widgetFunnels")
|
1690
1838
|
def widget_funnels(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetFunnel']]:
|
1839
|
+
"""
|
1840
|
+
A funnel widget.
|
1841
|
+
"""
|
1691
1842
|
return pulumi.get(self, "widget_funnels")
|
1692
1843
|
|
1693
1844
|
@property
|
1694
1845
|
@pulumi.getter(name="widgetHeatmaps")
|
1695
1846
|
def widget_heatmaps(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetHeatmap']]:
|
1847
|
+
"""
|
1848
|
+
A heatmap widget.
|
1849
|
+
"""
|
1696
1850
|
return pulumi.get(self, "widget_heatmaps")
|
1697
1851
|
|
1698
1852
|
@property
|
1699
1853
|
@pulumi.getter(name="widgetHistograms")
|
1700
1854
|
def widget_histograms(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetHistogram']]:
|
1855
|
+
"""
|
1856
|
+
A histogram widget.
|
1857
|
+
"""
|
1701
1858
|
return pulumi.get(self, "widget_histograms")
|
1702
1859
|
|
1703
1860
|
@property
|
1704
1861
|
@pulumi.getter(name="widgetJsons")
|
1705
1862
|
def widget_jsons(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetJson']]:
|
1863
|
+
"""
|
1864
|
+
A JSON widget.
|
1865
|
+
"""
|
1706
1866
|
return pulumi.get(self, "widget_jsons")
|
1707
1867
|
|
1708
1868
|
@property
|
1709
1869
|
@pulumi.getter(name="widgetLines")
|
1710
1870
|
def widget_lines(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetLine']]:
|
1871
|
+
"""
|
1872
|
+
A line widget.
|
1873
|
+
"""
|
1711
1874
|
return pulumi.get(self, "widget_lines")
|
1712
1875
|
|
1713
1876
|
@property
|
1714
1877
|
@pulumi.getter(name="widgetLogTables")
|
1715
1878
|
def widget_log_tables(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetLogTable']]:
|
1879
|
+
"""
|
1880
|
+
A log table widget.
|
1881
|
+
"""
|
1716
1882
|
return pulumi.get(self, "widget_log_tables")
|
1717
1883
|
|
1718
1884
|
@property
|
1719
1885
|
@pulumi.getter(name="widgetMarkdowns")
|
1720
1886
|
def widget_markdowns(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetMarkdown']]:
|
1887
|
+
"""
|
1888
|
+
A markdown widget.
|
1889
|
+
"""
|
1721
1890
|
return pulumi.get(self, "widget_markdowns")
|
1722
1891
|
|
1723
1892
|
@property
|
1724
1893
|
@pulumi.getter(name="widgetPies")
|
1725
1894
|
def widget_pies(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetPy']]:
|
1895
|
+
"""
|
1896
|
+
A pie widget.
|
1897
|
+
"""
|
1726
1898
|
return pulumi.get(self, "widget_pies")
|
1727
1899
|
|
1728
1900
|
@property
|
1729
1901
|
@pulumi.getter(name="widgetStackedBars")
|
1730
1902
|
def widget_stacked_bars(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetStackedBar']]:
|
1903
|
+
"""
|
1904
|
+
A stacked bar widget.
|
1905
|
+
"""
|
1731
1906
|
return pulumi.get(self, "widget_stacked_bars")
|
1732
1907
|
|
1733
1908
|
@property
|
1734
1909
|
@pulumi.getter(name="widgetTables")
|
1735
1910
|
def widget_tables(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetTable']]:
|
1911
|
+
"""
|
1912
|
+
A table widget.
|
1913
|
+
"""
|
1736
1914
|
return pulumi.get(self, "widget_tables")
|
1737
1915
|
|
1738
1916
|
|
@@ -1791,6 +1969,7 @@ class OneDashboardPageWidgetArea(dict):
|
|
1791
1969
|
:param Sequence['OneDashboardPageWidgetAreaColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
1792
1970
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
1793
1971
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
1972
|
+
:param str id: The ID of the widget.
|
1794
1973
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
1795
1974
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
1796
1975
|
:param Sequence['OneDashboardPageWidgetAreaNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -1884,6 +2063,9 @@ class OneDashboardPageWidgetArea(dict):
|
|
1884
2063
|
@property
|
1885
2064
|
@pulumi.getter
|
1886
2065
|
def id(self) -> Optional[str]:
|
2066
|
+
"""
|
2067
|
+
The ID of the widget.
|
2068
|
+
"""
|
1887
2069
|
return pulumi.get(self, "id")
|
1888
2070
|
|
1889
2071
|
@property
|
@@ -2012,6 +2194,7 @@ class OneDashboardPageWidgetAreaColorSeriesOverride(dict):
|
|
2012
2194
|
series_name: Optional[str] = None):
|
2013
2195
|
"""
|
2014
2196
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
2197
|
+
:param str series_name: Series name
|
2015
2198
|
"""
|
2016
2199
|
if color is not None:
|
2017
2200
|
pulumi.set(__self__, "color", color)
|
@@ -2029,6 +2212,9 @@ class OneDashboardPageWidgetAreaColorSeriesOverride(dict):
|
|
2029
2212
|
@property
|
2030
2213
|
@pulumi.getter(name="seriesName")
|
2031
2214
|
def series_name(self) -> Optional[str]:
|
2215
|
+
"""
|
2216
|
+
Series name
|
2217
|
+
"""
|
2032
2218
|
return pulumi.get(self, "series_name")
|
2033
2219
|
|
2034
2220
|
|
@@ -2155,6 +2341,7 @@ class OneDashboardPageWidgetAreaNullValueSeriesOverride(dict):
|
|
2155
2341
|
series_name: Optional[str] = None):
|
2156
2342
|
"""
|
2157
2343
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
2344
|
+
:param str series_name: Series name
|
2158
2345
|
"""
|
2159
2346
|
if null_value is not None:
|
2160
2347
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -2172,6 +2359,9 @@ class OneDashboardPageWidgetAreaNullValueSeriesOverride(dict):
|
|
2172
2359
|
@property
|
2173
2360
|
@pulumi.getter(name="seriesName")
|
2174
2361
|
def series_name(self) -> Optional[str]:
|
2362
|
+
"""
|
2363
|
+
Series name
|
2364
|
+
"""
|
2175
2365
|
return pulumi.get(self, "series_name")
|
2176
2366
|
|
2177
2367
|
|
@@ -2246,6 +2436,7 @@ class OneDashboardPageWidgetAreaUnitSeriesOverride(dict):
|
|
2246
2436
|
series_name: Optional[str] = None,
|
2247
2437
|
unit: Optional[str] = None):
|
2248
2438
|
"""
|
2439
|
+
:param str series_name: Series name
|
2249
2440
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
2250
2441
|
"""
|
2251
2442
|
if series_name is not None:
|
@@ -2256,6 +2447,9 @@ class OneDashboardPageWidgetAreaUnitSeriesOverride(dict):
|
|
2256
2447
|
@property
|
2257
2448
|
@pulumi.getter(name="seriesName")
|
2258
2449
|
def series_name(self) -> Optional[str]:
|
2450
|
+
"""
|
2451
|
+
Series name
|
2452
|
+
"""
|
2259
2453
|
return pulumi.get(self, "series_name")
|
2260
2454
|
|
2261
2455
|
@property
|
@@ -2329,6 +2523,7 @@ class OneDashboardPageWidgetBar(dict):
|
|
2329
2523
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
2330
2524
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
2331
2525
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
2526
|
+
:param str id: The ID of the widget.
|
2332
2527
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
2333
2528
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
2334
2529
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
@@ -2435,6 +2630,9 @@ class OneDashboardPageWidgetBar(dict):
|
|
2435
2630
|
@property
|
2436
2631
|
@pulumi.getter
|
2437
2632
|
def id(self) -> Optional[str]:
|
2633
|
+
"""
|
2634
|
+
The ID of the widget.
|
2635
|
+
"""
|
2438
2636
|
return pulumi.get(self, "id")
|
2439
2637
|
|
2440
2638
|
@property
|
@@ -2571,6 +2769,7 @@ class OneDashboardPageWidgetBarColorSeriesOverride(dict):
|
|
2571
2769
|
series_name: Optional[str] = None):
|
2572
2770
|
"""
|
2573
2771
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
2772
|
+
:param str series_name: Series name
|
2574
2773
|
"""
|
2575
2774
|
if color is not None:
|
2576
2775
|
pulumi.set(__self__, "color", color)
|
@@ -2588,6 +2787,9 @@ class OneDashboardPageWidgetBarColorSeriesOverride(dict):
|
|
2588
2787
|
@property
|
2589
2788
|
@pulumi.getter(name="seriesName")
|
2590
2789
|
def series_name(self) -> Optional[str]:
|
2790
|
+
"""
|
2791
|
+
Series name
|
2792
|
+
"""
|
2591
2793
|
return pulumi.get(self, "series_name")
|
2592
2794
|
|
2593
2795
|
|
@@ -2714,6 +2916,7 @@ class OneDashboardPageWidgetBarNullValueSeriesOverride(dict):
|
|
2714
2916
|
series_name: Optional[str] = None):
|
2715
2917
|
"""
|
2716
2918
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
2919
|
+
:param str series_name: Series name
|
2717
2920
|
"""
|
2718
2921
|
if null_value is not None:
|
2719
2922
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -2731,6 +2934,9 @@ class OneDashboardPageWidgetBarNullValueSeriesOverride(dict):
|
|
2731
2934
|
@property
|
2732
2935
|
@pulumi.getter(name="seriesName")
|
2733
2936
|
def series_name(self) -> Optional[str]:
|
2937
|
+
"""
|
2938
|
+
Series name
|
2939
|
+
"""
|
2734
2940
|
return pulumi.get(self, "series_name")
|
2735
2941
|
|
2736
2942
|
|
@@ -2805,6 +3011,7 @@ class OneDashboardPageWidgetBarUnitSeriesOverride(dict):
|
|
2805
3011
|
series_name: Optional[str] = None,
|
2806
3012
|
unit: Optional[str] = None):
|
2807
3013
|
"""
|
3014
|
+
:param str series_name: Series name
|
2808
3015
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
2809
3016
|
"""
|
2810
3017
|
if series_name is not None:
|
@@ -2815,6 +3022,9 @@ class OneDashboardPageWidgetBarUnitSeriesOverride(dict):
|
|
2815
3022
|
@property
|
2816
3023
|
@pulumi.getter(name="seriesName")
|
2817
3024
|
def series_name(self) -> Optional[str]:
|
3025
|
+
"""
|
3026
|
+
Series name
|
3027
|
+
"""
|
2818
3028
|
return pulumi.get(self, "series_name")
|
2819
3029
|
|
2820
3030
|
@property
|
@@ -2884,6 +3094,7 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
2884
3094
|
:param str critical: (Optional) Threshold above which the displayed value will be styled with a red color.
|
2885
3095
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
2886
3096
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
3097
|
+
:param str id: The ID of the widget.
|
2887
3098
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
2888
3099
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
2889
3100
|
:param Sequence['OneDashboardPageWidgetBillboardNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -2990,6 +3201,9 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
2990
3201
|
@property
|
2991
3202
|
@pulumi.getter
|
2992
3203
|
def id(self) -> Optional[str]:
|
3204
|
+
"""
|
3205
|
+
The ID of the widget.
|
3206
|
+
"""
|
2993
3207
|
return pulumi.get(self, "id")
|
2994
3208
|
|
2995
3209
|
@property
|
@@ -3126,6 +3340,7 @@ class OneDashboardPageWidgetBillboardColorSeriesOverride(dict):
|
|
3126
3340
|
series_name: Optional[str] = None):
|
3127
3341
|
"""
|
3128
3342
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
3343
|
+
:param str series_name: Series name
|
3129
3344
|
"""
|
3130
3345
|
if color is not None:
|
3131
3346
|
pulumi.set(__self__, "color", color)
|
@@ -3143,6 +3358,9 @@ class OneDashboardPageWidgetBillboardColorSeriesOverride(dict):
|
|
3143
3358
|
@property
|
3144
3359
|
@pulumi.getter(name="seriesName")
|
3145
3360
|
def series_name(self) -> Optional[str]:
|
3361
|
+
"""
|
3362
|
+
Series name
|
3363
|
+
"""
|
3146
3364
|
return pulumi.get(self, "series_name")
|
3147
3365
|
|
3148
3366
|
|
@@ -3269,6 +3487,7 @@ class OneDashboardPageWidgetBillboardNullValueSeriesOverride(dict):
|
|
3269
3487
|
series_name: Optional[str] = None):
|
3270
3488
|
"""
|
3271
3489
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
3490
|
+
:param str series_name: Series name
|
3272
3491
|
"""
|
3273
3492
|
if null_value is not None:
|
3274
3493
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -3286,6 +3505,9 @@ class OneDashboardPageWidgetBillboardNullValueSeriesOverride(dict):
|
|
3286
3505
|
@property
|
3287
3506
|
@pulumi.getter(name="seriesName")
|
3288
3507
|
def series_name(self) -> Optional[str]:
|
3508
|
+
"""
|
3509
|
+
Series name
|
3510
|
+
"""
|
3289
3511
|
return pulumi.get(self, "series_name")
|
3290
3512
|
|
3291
3513
|
|
@@ -3360,6 +3582,7 @@ class OneDashboardPageWidgetBillboardUnitSeriesOverride(dict):
|
|
3360
3582
|
series_name: Optional[str] = None,
|
3361
3583
|
unit: Optional[str] = None):
|
3362
3584
|
"""
|
3585
|
+
:param str series_name: Series name
|
3363
3586
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
3364
3587
|
"""
|
3365
3588
|
if series_name is not None:
|
@@ -3370,6 +3593,9 @@ class OneDashboardPageWidgetBillboardUnitSeriesOverride(dict):
|
|
3370
3593
|
@property
|
3371
3594
|
@pulumi.getter(name="seriesName")
|
3372
3595
|
def series_name(self) -> Optional[str]:
|
3596
|
+
"""
|
3597
|
+
Series name
|
3598
|
+
"""
|
3373
3599
|
return pulumi.get(self, "series_name")
|
3374
3600
|
|
3375
3601
|
@property
|
@@ -3438,6 +3664,7 @@ class OneDashboardPageWidgetBullet(dict):
|
|
3438
3664
|
:param Sequence['OneDashboardPageWidgetBulletColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
3439
3665
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
3440
3666
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
3667
|
+
:param str id: The ID of the widget.
|
3441
3668
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
3442
3669
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
3443
3670
|
:param Sequence['OneDashboardPageWidgetBulletNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -3540,6 +3767,9 @@ class OneDashboardPageWidgetBullet(dict):
|
|
3540
3767
|
@property
|
3541
3768
|
@pulumi.getter
|
3542
3769
|
def id(self) -> Optional[str]:
|
3770
|
+
"""
|
3771
|
+
The ID of the widget.
|
3772
|
+
"""
|
3543
3773
|
return pulumi.get(self, "id")
|
3544
3774
|
|
3545
3775
|
@property
|
@@ -3668,6 +3898,7 @@ class OneDashboardPageWidgetBulletColorSeriesOverride(dict):
|
|
3668
3898
|
series_name: Optional[str] = None):
|
3669
3899
|
"""
|
3670
3900
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
3901
|
+
:param str series_name: Series name
|
3671
3902
|
"""
|
3672
3903
|
if color is not None:
|
3673
3904
|
pulumi.set(__self__, "color", color)
|
@@ -3685,6 +3916,9 @@ class OneDashboardPageWidgetBulletColorSeriesOverride(dict):
|
|
3685
3916
|
@property
|
3686
3917
|
@pulumi.getter(name="seriesName")
|
3687
3918
|
def series_name(self) -> Optional[str]:
|
3919
|
+
"""
|
3920
|
+
Series name
|
3921
|
+
"""
|
3688
3922
|
return pulumi.get(self, "series_name")
|
3689
3923
|
|
3690
3924
|
|
@@ -3811,6 +4045,7 @@ class OneDashboardPageWidgetBulletNullValueSeriesOverride(dict):
|
|
3811
4045
|
series_name: Optional[str] = None):
|
3812
4046
|
"""
|
3813
4047
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
4048
|
+
:param str series_name: Series name
|
3814
4049
|
"""
|
3815
4050
|
if null_value is not None:
|
3816
4051
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -3828,6 +4063,9 @@ class OneDashboardPageWidgetBulletNullValueSeriesOverride(dict):
|
|
3828
4063
|
@property
|
3829
4064
|
@pulumi.getter(name="seriesName")
|
3830
4065
|
def series_name(self) -> Optional[str]:
|
4066
|
+
"""
|
4067
|
+
Series name
|
4068
|
+
"""
|
3831
4069
|
return pulumi.get(self, "series_name")
|
3832
4070
|
|
3833
4071
|
|
@@ -3902,6 +4140,7 @@ class OneDashboardPageWidgetBulletUnitSeriesOverride(dict):
|
|
3902
4140
|
series_name: Optional[str] = None,
|
3903
4141
|
unit: Optional[str] = None):
|
3904
4142
|
"""
|
4143
|
+
:param str series_name: Series name
|
3905
4144
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
3906
4145
|
"""
|
3907
4146
|
if series_name is not None:
|
@@ -3912,6 +4151,9 @@ class OneDashboardPageWidgetBulletUnitSeriesOverride(dict):
|
|
3912
4151
|
@property
|
3913
4152
|
@pulumi.getter(name="seriesName")
|
3914
4153
|
def series_name(self) -> Optional[str]:
|
4154
|
+
"""
|
4155
|
+
Series name
|
4156
|
+
"""
|
3915
4157
|
return pulumi.get(self, "series_name")
|
3916
4158
|
|
3917
4159
|
@property
|
@@ -3978,6 +4220,7 @@ class OneDashboardPageWidgetFunnel(dict):
|
|
3978
4220
|
:param Sequence['OneDashboardPageWidgetFunnelColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
3979
4221
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
3980
4222
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
4223
|
+
:param str id: The ID of the widget.
|
3981
4224
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
3982
4225
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
3983
4226
|
:param Sequence['OneDashboardPageWidgetFunnelNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -4071,6 +4314,9 @@ class OneDashboardPageWidgetFunnel(dict):
|
|
4071
4314
|
@property
|
4072
4315
|
@pulumi.getter
|
4073
4316
|
def id(self) -> Optional[str]:
|
4317
|
+
"""
|
4318
|
+
The ID of the widget.
|
4319
|
+
"""
|
4074
4320
|
return pulumi.get(self, "id")
|
4075
4321
|
|
4076
4322
|
@property
|
@@ -4199,6 +4445,7 @@ class OneDashboardPageWidgetFunnelColorSeriesOverride(dict):
|
|
4199
4445
|
series_name: Optional[str] = None):
|
4200
4446
|
"""
|
4201
4447
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
4448
|
+
:param str series_name: Series name
|
4202
4449
|
"""
|
4203
4450
|
if color is not None:
|
4204
4451
|
pulumi.set(__self__, "color", color)
|
@@ -4216,6 +4463,9 @@ class OneDashboardPageWidgetFunnelColorSeriesOverride(dict):
|
|
4216
4463
|
@property
|
4217
4464
|
@pulumi.getter(name="seriesName")
|
4218
4465
|
def series_name(self) -> Optional[str]:
|
4466
|
+
"""
|
4467
|
+
Series name
|
4468
|
+
"""
|
4219
4469
|
return pulumi.get(self, "series_name")
|
4220
4470
|
|
4221
4471
|
|
@@ -4342,6 +4592,7 @@ class OneDashboardPageWidgetFunnelNullValueSeriesOverride(dict):
|
|
4342
4592
|
series_name: Optional[str] = None):
|
4343
4593
|
"""
|
4344
4594
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
4595
|
+
:param str series_name: Series name
|
4345
4596
|
"""
|
4346
4597
|
if null_value is not None:
|
4347
4598
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -4359,6 +4610,9 @@ class OneDashboardPageWidgetFunnelNullValueSeriesOverride(dict):
|
|
4359
4610
|
@property
|
4360
4611
|
@pulumi.getter(name="seriesName")
|
4361
4612
|
def series_name(self) -> Optional[str]:
|
4613
|
+
"""
|
4614
|
+
Series name
|
4615
|
+
"""
|
4362
4616
|
return pulumi.get(self, "series_name")
|
4363
4617
|
|
4364
4618
|
|
@@ -4433,6 +4687,7 @@ class OneDashboardPageWidgetFunnelUnitSeriesOverride(dict):
|
|
4433
4687
|
series_name: Optional[str] = None,
|
4434
4688
|
unit: Optional[str] = None):
|
4435
4689
|
"""
|
4690
|
+
:param str series_name: Series name
|
4436
4691
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
4437
4692
|
"""
|
4438
4693
|
if series_name is not None:
|
@@ -4443,6 +4698,9 @@ class OneDashboardPageWidgetFunnelUnitSeriesOverride(dict):
|
|
4443
4698
|
@property
|
4444
4699
|
@pulumi.getter(name="seriesName")
|
4445
4700
|
def series_name(self) -> Optional[str]:
|
4701
|
+
"""
|
4702
|
+
Series name
|
4703
|
+
"""
|
4446
4704
|
return pulumi.get(self, "series_name")
|
4447
4705
|
|
4448
4706
|
@property
|
@@ -4516,6 +4774,7 @@ class OneDashboardPageWidgetHeatmap(dict):
|
|
4516
4774
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
4517
4775
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
4518
4776
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
4777
|
+
:param str id: The ID of the widget.
|
4519
4778
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
4520
4779
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
4521
4780
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
@@ -4622,6 +4881,9 @@ class OneDashboardPageWidgetHeatmap(dict):
|
|
4622
4881
|
@property
|
4623
4882
|
@pulumi.getter
|
4624
4883
|
def id(self) -> Optional[str]:
|
4884
|
+
"""
|
4885
|
+
The ID of the widget.
|
4886
|
+
"""
|
4625
4887
|
return pulumi.get(self, "id")
|
4626
4888
|
|
4627
4889
|
@property
|
@@ -4758,6 +5020,7 @@ class OneDashboardPageWidgetHeatmapColorSeriesOverride(dict):
|
|
4758
5020
|
series_name: Optional[str] = None):
|
4759
5021
|
"""
|
4760
5022
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
5023
|
+
:param str series_name: Series name
|
4761
5024
|
"""
|
4762
5025
|
if color is not None:
|
4763
5026
|
pulumi.set(__self__, "color", color)
|
@@ -4775,6 +5038,9 @@ class OneDashboardPageWidgetHeatmapColorSeriesOverride(dict):
|
|
4775
5038
|
@property
|
4776
5039
|
@pulumi.getter(name="seriesName")
|
4777
5040
|
def series_name(self) -> Optional[str]:
|
5041
|
+
"""
|
5042
|
+
Series name
|
5043
|
+
"""
|
4778
5044
|
return pulumi.get(self, "series_name")
|
4779
5045
|
|
4780
5046
|
|
@@ -4901,6 +5167,7 @@ class OneDashboardPageWidgetHeatmapNullValueSeriesOverride(dict):
|
|
4901
5167
|
series_name: Optional[str] = None):
|
4902
5168
|
"""
|
4903
5169
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
5170
|
+
:param str series_name: Series name
|
4904
5171
|
"""
|
4905
5172
|
if null_value is not None:
|
4906
5173
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -4918,6 +5185,9 @@ class OneDashboardPageWidgetHeatmapNullValueSeriesOverride(dict):
|
|
4918
5185
|
@property
|
4919
5186
|
@pulumi.getter(name="seriesName")
|
4920
5187
|
def series_name(self) -> Optional[str]:
|
5188
|
+
"""
|
5189
|
+
Series name
|
5190
|
+
"""
|
4921
5191
|
return pulumi.get(self, "series_name")
|
4922
5192
|
|
4923
5193
|
|
@@ -4992,6 +5262,7 @@ class OneDashboardPageWidgetHeatmapUnitSeriesOverride(dict):
|
|
4992
5262
|
series_name: Optional[str] = None,
|
4993
5263
|
unit: Optional[str] = None):
|
4994
5264
|
"""
|
5265
|
+
:param str series_name: Series name
|
4995
5266
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
4996
5267
|
"""
|
4997
5268
|
if series_name is not None:
|
@@ -5002,6 +5273,9 @@ class OneDashboardPageWidgetHeatmapUnitSeriesOverride(dict):
|
|
5002
5273
|
@property
|
5003
5274
|
@pulumi.getter(name="seriesName")
|
5004
5275
|
def series_name(self) -> Optional[str]:
|
5276
|
+
"""
|
5277
|
+
Series name
|
5278
|
+
"""
|
5005
5279
|
return pulumi.get(self, "series_name")
|
5006
5280
|
|
5007
5281
|
@property
|
@@ -5068,6 +5342,7 @@ class OneDashboardPageWidgetHistogram(dict):
|
|
5068
5342
|
:param Sequence['OneDashboardPageWidgetHistogramColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
5069
5343
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
5070
5344
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
5345
|
+
:param str id: The ID of the widget.
|
5071
5346
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
5072
5347
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
5073
5348
|
:param Sequence['OneDashboardPageWidgetHistogramNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -5161,6 +5436,9 @@ class OneDashboardPageWidgetHistogram(dict):
|
|
5161
5436
|
@property
|
5162
5437
|
@pulumi.getter
|
5163
5438
|
def id(self) -> Optional[str]:
|
5439
|
+
"""
|
5440
|
+
The ID of the widget.
|
5441
|
+
"""
|
5164
5442
|
return pulumi.get(self, "id")
|
5165
5443
|
|
5166
5444
|
@property
|
@@ -5289,6 +5567,7 @@ class OneDashboardPageWidgetHistogramColorSeriesOverride(dict):
|
|
5289
5567
|
series_name: Optional[str] = None):
|
5290
5568
|
"""
|
5291
5569
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
5570
|
+
:param str series_name: Series name
|
5292
5571
|
"""
|
5293
5572
|
if color is not None:
|
5294
5573
|
pulumi.set(__self__, "color", color)
|
@@ -5306,6 +5585,9 @@ class OneDashboardPageWidgetHistogramColorSeriesOverride(dict):
|
|
5306
5585
|
@property
|
5307
5586
|
@pulumi.getter(name="seriesName")
|
5308
5587
|
def series_name(self) -> Optional[str]:
|
5588
|
+
"""
|
5589
|
+
Series name
|
5590
|
+
"""
|
5309
5591
|
return pulumi.get(self, "series_name")
|
5310
5592
|
|
5311
5593
|
|
@@ -5432,6 +5714,7 @@ class OneDashboardPageWidgetHistogramNullValueSeriesOverride(dict):
|
|
5432
5714
|
series_name: Optional[str] = None):
|
5433
5715
|
"""
|
5434
5716
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
5717
|
+
:param str series_name: Series name
|
5435
5718
|
"""
|
5436
5719
|
if null_value is not None:
|
5437
5720
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -5449,6 +5732,9 @@ class OneDashboardPageWidgetHistogramNullValueSeriesOverride(dict):
|
|
5449
5732
|
@property
|
5450
5733
|
@pulumi.getter(name="seriesName")
|
5451
5734
|
def series_name(self) -> Optional[str]:
|
5735
|
+
"""
|
5736
|
+
Series name
|
5737
|
+
"""
|
5452
5738
|
return pulumi.get(self, "series_name")
|
5453
5739
|
|
5454
5740
|
|
@@ -5523,6 +5809,7 @@ class OneDashboardPageWidgetHistogramUnitSeriesOverride(dict):
|
|
5523
5809
|
series_name: Optional[str] = None,
|
5524
5810
|
unit: Optional[str] = None):
|
5525
5811
|
"""
|
5812
|
+
:param str series_name: Series name
|
5526
5813
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
5527
5814
|
"""
|
5528
5815
|
if series_name is not None:
|
@@ -5533,6 +5820,9 @@ class OneDashboardPageWidgetHistogramUnitSeriesOverride(dict):
|
|
5533
5820
|
@property
|
5534
5821
|
@pulumi.getter(name="seriesName")
|
5535
5822
|
def series_name(self) -> Optional[str]:
|
5823
|
+
"""
|
5824
|
+
Series name
|
5825
|
+
"""
|
5536
5826
|
return pulumi.get(self, "series_name")
|
5537
5827
|
|
5538
5828
|
@property
|
@@ -5599,6 +5889,7 @@ class OneDashboardPageWidgetJson(dict):
|
|
5599
5889
|
:param Sequence['OneDashboardPageWidgetJsonColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
5600
5890
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
5601
5891
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
5892
|
+
:param str id: The ID of the widget.
|
5602
5893
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
5603
5894
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
5604
5895
|
:param Sequence['OneDashboardPageWidgetJsonNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -5692,6 +5983,9 @@ class OneDashboardPageWidgetJson(dict):
|
|
5692
5983
|
@property
|
5693
5984
|
@pulumi.getter
|
5694
5985
|
def id(self) -> Optional[str]:
|
5986
|
+
"""
|
5987
|
+
The ID of the widget.
|
5988
|
+
"""
|
5695
5989
|
return pulumi.get(self, "id")
|
5696
5990
|
|
5697
5991
|
@property
|
@@ -5820,6 +6114,7 @@ class OneDashboardPageWidgetJsonColorSeriesOverride(dict):
|
|
5820
6114
|
series_name: Optional[str] = None):
|
5821
6115
|
"""
|
5822
6116
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
6117
|
+
:param str series_name: Series name
|
5823
6118
|
"""
|
5824
6119
|
if color is not None:
|
5825
6120
|
pulumi.set(__self__, "color", color)
|
@@ -5837,6 +6132,9 @@ class OneDashboardPageWidgetJsonColorSeriesOverride(dict):
|
|
5837
6132
|
@property
|
5838
6133
|
@pulumi.getter(name="seriesName")
|
5839
6134
|
def series_name(self) -> Optional[str]:
|
6135
|
+
"""
|
6136
|
+
Series name
|
6137
|
+
"""
|
5840
6138
|
return pulumi.get(self, "series_name")
|
5841
6139
|
|
5842
6140
|
|
@@ -5963,6 +6261,7 @@ class OneDashboardPageWidgetJsonNullValueSeriesOverride(dict):
|
|
5963
6261
|
series_name: Optional[str] = None):
|
5964
6262
|
"""
|
5965
6263
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
6264
|
+
:param str series_name: Series name
|
5966
6265
|
"""
|
5967
6266
|
if null_value is not None:
|
5968
6267
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -5980,6 +6279,9 @@ class OneDashboardPageWidgetJsonNullValueSeriesOverride(dict):
|
|
5980
6279
|
@property
|
5981
6280
|
@pulumi.getter(name="seriesName")
|
5982
6281
|
def series_name(self) -> Optional[str]:
|
6282
|
+
"""
|
6283
|
+
Series name
|
6284
|
+
"""
|
5983
6285
|
return pulumi.get(self, "series_name")
|
5984
6286
|
|
5985
6287
|
|
@@ -6054,6 +6356,7 @@ class OneDashboardPageWidgetJsonUnitSeriesOverride(dict):
|
|
6054
6356
|
series_name: Optional[str] = None,
|
6055
6357
|
unit: Optional[str] = None):
|
6056
6358
|
"""
|
6359
|
+
:param str series_name: Series name
|
6057
6360
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
6058
6361
|
"""
|
6059
6362
|
if series_name is not None:
|
@@ -6064,6 +6367,9 @@ class OneDashboardPageWidgetJsonUnitSeriesOverride(dict):
|
|
6064
6367
|
@property
|
6065
6368
|
@pulumi.getter(name="seriesName")
|
6066
6369
|
def series_name(self) -> Optional[str]:
|
6370
|
+
"""
|
6371
|
+
Series name
|
6372
|
+
"""
|
6067
6373
|
return pulumi.get(self, "series_name")
|
6068
6374
|
|
6069
6375
|
@property
|
@@ -6133,6 +6439,7 @@ class OneDashboardPageWidgetLine(dict):
|
|
6133
6439
|
:param Sequence['OneDashboardPageWidgetLineColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
6134
6440
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
6135
6441
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
6442
|
+
:param str id: The ID of the widget.
|
6136
6443
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
6137
6444
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
6138
6445
|
:param Sequence['OneDashboardPageWidgetLineNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -6229,6 +6536,9 @@ class OneDashboardPageWidgetLine(dict):
|
|
6229
6536
|
@property
|
6230
6537
|
@pulumi.getter
|
6231
6538
|
def id(self) -> Optional[str]:
|
6539
|
+
"""
|
6540
|
+
The ID of the widget.
|
6541
|
+
"""
|
6232
6542
|
return pulumi.get(self, "id")
|
6233
6543
|
|
6234
6544
|
@property
|
@@ -6365,6 +6675,7 @@ class OneDashboardPageWidgetLineColorSeriesOverride(dict):
|
|
6365
6675
|
series_name: Optional[str] = None):
|
6366
6676
|
"""
|
6367
6677
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
6678
|
+
:param str series_name: Series name
|
6368
6679
|
"""
|
6369
6680
|
if color is not None:
|
6370
6681
|
pulumi.set(__self__, "color", color)
|
@@ -6382,6 +6693,9 @@ class OneDashboardPageWidgetLineColorSeriesOverride(dict):
|
|
6382
6693
|
@property
|
6383
6694
|
@pulumi.getter(name="seriesName")
|
6384
6695
|
def series_name(self) -> Optional[str]:
|
6696
|
+
"""
|
6697
|
+
Series name
|
6698
|
+
"""
|
6385
6699
|
return pulumi.get(self, "series_name")
|
6386
6700
|
|
6387
6701
|
|
@@ -6508,6 +6822,7 @@ class OneDashboardPageWidgetLineNullValueSeriesOverride(dict):
|
|
6508
6822
|
series_name: Optional[str] = None):
|
6509
6823
|
"""
|
6510
6824
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
6825
|
+
:param str series_name: Series name
|
6511
6826
|
"""
|
6512
6827
|
if null_value is not None:
|
6513
6828
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -6525,6 +6840,9 @@ class OneDashboardPageWidgetLineNullValueSeriesOverride(dict):
|
|
6525
6840
|
@property
|
6526
6841
|
@pulumi.getter(name="seriesName")
|
6527
6842
|
def series_name(self) -> Optional[str]:
|
6843
|
+
"""
|
6844
|
+
Series name
|
6845
|
+
"""
|
6528
6846
|
return pulumi.get(self, "series_name")
|
6529
6847
|
|
6530
6848
|
|
@@ -6599,6 +6917,7 @@ class OneDashboardPageWidgetLineUnitSeriesOverride(dict):
|
|
6599
6917
|
series_name: Optional[str] = None,
|
6600
6918
|
unit: Optional[str] = None):
|
6601
6919
|
"""
|
6920
|
+
:param str series_name: Series name
|
6602
6921
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
6603
6922
|
"""
|
6604
6923
|
if series_name is not None:
|
@@ -6609,6 +6928,9 @@ class OneDashboardPageWidgetLineUnitSeriesOverride(dict):
|
|
6609
6928
|
@property
|
6610
6929
|
@pulumi.getter(name="seriesName")
|
6611
6930
|
def series_name(self) -> Optional[str]:
|
6931
|
+
"""
|
6932
|
+
Series name
|
6933
|
+
"""
|
6612
6934
|
return pulumi.get(self, "series_name")
|
6613
6935
|
|
6614
6936
|
@property
|
@@ -6675,6 +6997,7 @@ class OneDashboardPageWidgetLogTable(dict):
|
|
6675
6997
|
:param Sequence['OneDashboardPageWidgetLogTableColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
6676
6998
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
6677
6999
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
7000
|
+
:param str id: The ID of the widget.
|
6678
7001
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
6679
7002
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
6680
7003
|
:param Sequence['OneDashboardPageWidgetLogTableNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -6768,6 +7091,9 @@ class OneDashboardPageWidgetLogTable(dict):
|
|
6768
7091
|
@property
|
6769
7092
|
@pulumi.getter
|
6770
7093
|
def id(self) -> Optional[str]:
|
7094
|
+
"""
|
7095
|
+
The ID of the widget.
|
7096
|
+
"""
|
6771
7097
|
return pulumi.get(self, "id")
|
6772
7098
|
|
6773
7099
|
@property
|
@@ -6896,6 +7222,7 @@ class OneDashboardPageWidgetLogTableColorSeriesOverride(dict):
|
|
6896
7222
|
series_name: Optional[str] = None):
|
6897
7223
|
"""
|
6898
7224
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
7225
|
+
:param str series_name: Series name
|
6899
7226
|
"""
|
6900
7227
|
if color is not None:
|
6901
7228
|
pulumi.set(__self__, "color", color)
|
@@ -6913,6 +7240,9 @@ class OneDashboardPageWidgetLogTableColorSeriesOverride(dict):
|
|
6913
7240
|
@property
|
6914
7241
|
@pulumi.getter(name="seriesName")
|
6915
7242
|
def series_name(self) -> Optional[str]:
|
7243
|
+
"""
|
7244
|
+
Series name
|
7245
|
+
"""
|
6916
7246
|
return pulumi.get(self, "series_name")
|
6917
7247
|
|
6918
7248
|
|
@@ -7039,6 +7369,7 @@ class OneDashboardPageWidgetLogTableNullValueSeriesOverride(dict):
|
|
7039
7369
|
series_name: Optional[str] = None):
|
7040
7370
|
"""
|
7041
7371
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
7372
|
+
:param str series_name: Series name
|
7042
7373
|
"""
|
7043
7374
|
if null_value is not None:
|
7044
7375
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -7056,6 +7387,9 @@ class OneDashboardPageWidgetLogTableNullValueSeriesOverride(dict):
|
|
7056
7387
|
@property
|
7057
7388
|
@pulumi.getter(name="seriesName")
|
7058
7389
|
def series_name(self) -> Optional[str]:
|
7390
|
+
"""
|
7391
|
+
Series name
|
7392
|
+
"""
|
7059
7393
|
return pulumi.get(self, "series_name")
|
7060
7394
|
|
7061
7395
|
|
@@ -7130,6 +7464,7 @@ class OneDashboardPageWidgetLogTableUnitSeriesOverride(dict):
|
|
7130
7464
|
series_name: Optional[str] = None,
|
7131
7465
|
unit: Optional[str] = None):
|
7132
7466
|
"""
|
7467
|
+
:param str series_name: Series name
|
7133
7468
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
7134
7469
|
"""
|
7135
7470
|
if series_name is not None:
|
@@ -7140,6 +7475,9 @@ class OneDashboardPageWidgetLogTableUnitSeriesOverride(dict):
|
|
7140
7475
|
@property
|
7141
7476
|
@pulumi.getter(name="seriesName")
|
7142
7477
|
def series_name(self) -> Optional[str]:
|
7478
|
+
"""
|
7479
|
+
Series name
|
7480
|
+
"""
|
7143
7481
|
return pulumi.get(self, "series_name")
|
7144
7482
|
|
7145
7483
|
@property
|
@@ -7204,6 +7542,7 @@ class OneDashboardPageWidgetMarkdown(dict):
|
|
7204
7542
|
:param Sequence['OneDashboardPageWidgetMarkdownColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
7205
7543
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
7206
7544
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
7545
|
+
:param str id: The ID of the widget.
|
7207
7546
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
7208
7547
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
7209
7548
|
:param Sequence['OneDashboardPageWidgetMarkdownNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -7297,6 +7636,9 @@ class OneDashboardPageWidgetMarkdown(dict):
|
|
7297
7636
|
@property
|
7298
7637
|
@pulumi.getter
|
7299
7638
|
def id(self) -> Optional[str]:
|
7639
|
+
"""
|
7640
|
+
The ID of the widget.
|
7641
|
+
"""
|
7300
7642
|
return pulumi.get(self, "id")
|
7301
7643
|
|
7302
7644
|
@property
|
@@ -7425,6 +7767,7 @@ class OneDashboardPageWidgetMarkdownColorSeriesOverride(dict):
|
|
7425
7767
|
series_name: Optional[str] = None):
|
7426
7768
|
"""
|
7427
7769
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
7770
|
+
:param str series_name: Series name
|
7428
7771
|
"""
|
7429
7772
|
if color is not None:
|
7430
7773
|
pulumi.set(__self__, "color", color)
|
@@ -7442,6 +7785,9 @@ class OneDashboardPageWidgetMarkdownColorSeriesOverride(dict):
|
|
7442
7785
|
@property
|
7443
7786
|
@pulumi.getter(name="seriesName")
|
7444
7787
|
def series_name(self) -> Optional[str]:
|
7788
|
+
"""
|
7789
|
+
Series name
|
7790
|
+
"""
|
7445
7791
|
return pulumi.get(self, "series_name")
|
7446
7792
|
|
7447
7793
|
|
@@ -7521,6 +7867,7 @@ class OneDashboardPageWidgetMarkdownNullValueSeriesOverride(dict):
|
|
7521
7867
|
series_name: Optional[str] = None):
|
7522
7868
|
"""
|
7523
7869
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
7870
|
+
:param str series_name: Series name
|
7524
7871
|
"""
|
7525
7872
|
if null_value is not None:
|
7526
7873
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -7538,6 +7885,9 @@ class OneDashboardPageWidgetMarkdownNullValueSeriesOverride(dict):
|
|
7538
7885
|
@property
|
7539
7886
|
@pulumi.getter(name="seriesName")
|
7540
7887
|
def series_name(self) -> Optional[str]:
|
7888
|
+
"""
|
7889
|
+
Series name
|
7890
|
+
"""
|
7541
7891
|
return pulumi.get(self, "series_name")
|
7542
7892
|
|
7543
7893
|
|
@@ -7612,6 +7962,7 @@ class OneDashboardPageWidgetMarkdownUnitSeriesOverride(dict):
|
|
7612
7962
|
series_name: Optional[str] = None,
|
7613
7963
|
unit: Optional[str] = None):
|
7614
7964
|
"""
|
7965
|
+
:param str series_name: Series name
|
7615
7966
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
7616
7967
|
"""
|
7617
7968
|
if series_name is not None:
|
@@ -7622,6 +7973,9 @@ class OneDashboardPageWidgetMarkdownUnitSeriesOverride(dict):
|
|
7622
7973
|
@property
|
7623
7974
|
@pulumi.getter(name="seriesName")
|
7624
7975
|
def series_name(self) -> Optional[str]:
|
7976
|
+
"""
|
7977
|
+
Series name
|
7978
|
+
"""
|
7625
7979
|
return pulumi.get(self, "series_name")
|
7626
7980
|
|
7627
7981
|
@property
|
@@ -7695,6 +8049,7 @@ class OneDashboardPageWidgetPy(dict):
|
|
7695
8049
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
7696
8050
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
7697
8051
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
8052
|
+
:param str id: The ID of the widget.
|
7698
8053
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
7699
8054
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
7700
8055
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
@@ -7801,6 +8156,9 @@ class OneDashboardPageWidgetPy(dict):
|
|
7801
8156
|
@property
|
7802
8157
|
@pulumi.getter
|
7803
8158
|
def id(self) -> Optional[str]:
|
8159
|
+
"""
|
8160
|
+
The ID of the widget.
|
8161
|
+
"""
|
7804
8162
|
return pulumi.get(self, "id")
|
7805
8163
|
|
7806
8164
|
@property
|
@@ -7937,6 +8295,7 @@ class OneDashboardPageWidgetPyColorSeriesOverride(dict):
|
|
7937
8295
|
series_name: Optional[str] = None):
|
7938
8296
|
"""
|
7939
8297
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
8298
|
+
:param str series_name: Series name
|
7940
8299
|
"""
|
7941
8300
|
if color is not None:
|
7942
8301
|
pulumi.set(__self__, "color", color)
|
@@ -7954,6 +8313,9 @@ class OneDashboardPageWidgetPyColorSeriesOverride(dict):
|
|
7954
8313
|
@property
|
7955
8314
|
@pulumi.getter(name="seriesName")
|
7956
8315
|
def series_name(self) -> Optional[str]:
|
8316
|
+
"""
|
8317
|
+
Series name
|
8318
|
+
"""
|
7957
8319
|
return pulumi.get(self, "series_name")
|
7958
8320
|
|
7959
8321
|
|
@@ -8080,6 +8442,7 @@ class OneDashboardPageWidgetPyNullValueSeriesOverride(dict):
|
|
8080
8442
|
series_name: Optional[str] = None):
|
8081
8443
|
"""
|
8082
8444
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
8445
|
+
:param str series_name: Series name
|
8083
8446
|
"""
|
8084
8447
|
if null_value is not None:
|
8085
8448
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -8097,6 +8460,9 @@ class OneDashboardPageWidgetPyNullValueSeriesOverride(dict):
|
|
8097
8460
|
@property
|
8098
8461
|
@pulumi.getter(name="seriesName")
|
8099
8462
|
def series_name(self) -> Optional[str]:
|
8463
|
+
"""
|
8464
|
+
Series name
|
8465
|
+
"""
|
8100
8466
|
return pulumi.get(self, "series_name")
|
8101
8467
|
|
8102
8468
|
|
@@ -8171,6 +8537,7 @@ class OneDashboardPageWidgetPyUnitSeriesOverride(dict):
|
|
8171
8537
|
series_name: Optional[str] = None,
|
8172
8538
|
unit: Optional[str] = None):
|
8173
8539
|
"""
|
8540
|
+
:param str series_name: Series name
|
8174
8541
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
8175
8542
|
"""
|
8176
8543
|
if series_name is not None:
|
@@ -8181,6 +8548,9 @@ class OneDashboardPageWidgetPyUnitSeriesOverride(dict):
|
|
8181
8548
|
@property
|
8182
8549
|
@pulumi.getter(name="seriesName")
|
8183
8550
|
def series_name(self) -> Optional[str]:
|
8551
|
+
"""
|
8552
|
+
Series name
|
8553
|
+
"""
|
8184
8554
|
return pulumi.get(self, "series_name")
|
8185
8555
|
|
8186
8556
|
@property
|
@@ -8247,6 +8617,7 @@ class OneDashboardPageWidgetStackedBar(dict):
|
|
8247
8617
|
:param Sequence['OneDashboardPageWidgetStackedBarColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
8248
8618
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
8249
8619
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
8620
|
+
:param str id: The ID of the widget.
|
8250
8621
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
8251
8622
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
8252
8623
|
:param Sequence['OneDashboardPageWidgetStackedBarNullValueArgs'] null_values: (Optional) A nested block that describes a Null Values. See Nested Null Values blocks below for details.
|
@@ -8340,6 +8711,9 @@ class OneDashboardPageWidgetStackedBar(dict):
|
|
8340
8711
|
@property
|
8341
8712
|
@pulumi.getter
|
8342
8713
|
def id(self) -> Optional[str]:
|
8714
|
+
"""
|
8715
|
+
The ID of the widget.
|
8716
|
+
"""
|
8343
8717
|
return pulumi.get(self, "id")
|
8344
8718
|
|
8345
8719
|
@property
|
@@ -8468,6 +8842,7 @@ class OneDashboardPageWidgetStackedBarColorSeriesOverride(dict):
|
|
8468
8842
|
series_name: Optional[str] = None):
|
8469
8843
|
"""
|
8470
8844
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
8845
|
+
:param str series_name: Series name
|
8471
8846
|
"""
|
8472
8847
|
if color is not None:
|
8473
8848
|
pulumi.set(__self__, "color", color)
|
@@ -8485,6 +8860,9 @@ class OneDashboardPageWidgetStackedBarColorSeriesOverride(dict):
|
|
8485
8860
|
@property
|
8486
8861
|
@pulumi.getter(name="seriesName")
|
8487
8862
|
def series_name(self) -> Optional[str]:
|
8863
|
+
"""
|
8864
|
+
Series name
|
8865
|
+
"""
|
8488
8866
|
return pulumi.get(self, "series_name")
|
8489
8867
|
|
8490
8868
|
|
@@ -8611,6 +8989,7 @@ class OneDashboardPageWidgetStackedBarNullValueSeriesOverride(dict):
|
|
8611
8989
|
series_name: Optional[str] = None):
|
8612
8990
|
"""
|
8613
8991
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
8992
|
+
:param str series_name: Series name
|
8614
8993
|
"""
|
8615
8994
|
if null_value is not None:
|
8616
8995
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -8628,6 +9007,9 @@ class OneDashboardPageWidgetStackedBarNullValueSeriesOverride(dict):
|
|
8628
9007
|
@property
|
8629
9008
|
@pulumi.getter(name="seriesName")
|
8630
9009
|
def series_name(self) -> Optional[str]:
|
9010
|
+
"""
|
9011
|
+
Series name
|
9012
|
+
"""
|
8631
9013
|
return pulumi.get(self, "series_name")
|
8632
9014
|
|
8633
9015
|
|
@@ -8702,6 +9084,7 @@ class OneDashboardPageWidgetStackedBarUnitSeriesOverride(dict):
|
|
8702
9084
|
series_name: Optional[str] = None,
|
8703
9085
|
unit: Optional[str] = None):
|
8704
9086
|
"""
|
9087
|
+
:param str series_name: Series name
|
8705
9088
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
8706
9089
|
"""
|
8707
9090
|
if series_name is not None:
|
@@ -8712,6 +9095,9 @@ class OneDashboardPageWidgetStackedBarUnitSeriesOverride(dict):
|
|
8712
9095
|
@property
|
8713
9096
|
@pulumi.getter(name="seriesName")
|
8714
9097
|
def series_name(self) -> Optional[str]:
|
9098
|
+
"""
|
9099
|
+
Series name
|
9100
|
+
"""
|
8715
9101
|
return pulumi.get(self, "series_name")
|
8716
9102
|
|
8717
9103
|
@property
|
@@ -8785,6 +9171,7 @@ class OneDashboardPageWidgetTable(dict):
|
|
8785
9171
|
:param bool facet_show_other_series: (Optional) Enable or disable the Other group in visualisations. The other group is used if a facet on a query returns more than 2000 items for bar charts, pie charts, and tables. The other group aggregates the rest of the facets. Defaults to `false`
|
8786
9172
|
:param bool filter_current_dashboard: (Optional) Use this item to filter the current dashboard.
|
8787
9173
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
9174
|
+
:param str id: The ID of the widget.
|
8788
9175
|
:param bool ignore_time_range: (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages. Defaults to `false`.
|
8789
9176
|
:param bool legend_enabled: (Optional) With this turned on, the legend will be displayed. Defaults to `true`.
|
8790
9177
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
|
@@ -8891,6 +9278,9 @@ class OneDashboardPageWidgetTable(dict):
|
|
8891
9278
|
@property
|
8892
9279
|
@pulumi.getter
|
8893
9280
|
def id(self) -> Optional[str]:
|
9281
|
+
"""
|
9282
|
+
The ID of the widget.
|
9283
|
+
"""
|
8894
9284
|
return pulumi.get(self, "id")
|
8895
9285
|
|
8896
9286
|
@property
|
@@ -9027,6 +9417,7 @@ class OneDashboardPageWidgetTableColorSeriesOverride(dict):
|
|
9027
9417
|
series_name: Optional[str] = None):
|
9028
9418
|
"""
|
9029
9419
|
:param str color: (Optional) Choose a color to customize the color of your charts per series in area, bar, line, pie, and stacked bar charts. Accepted values are RGB, HEX, or HSL code.
|
9420
|
+
:param str series_name: Series name
|
9030
9421
|
"""
|
9031
9422
|
if color is not None:
|
9032
9423
|
pulumi.set(__self__, "color", color)
|
@@ -9044,6 +9435,9 @@ class OneDashboardPageWidgetTableColorSeriesOverride(dict):
|
|
9044
9435
|
@property
|
9045
9436
|
@pulumi.getter(name="seriesName")
|
9046
9437
|
def series_name(self) -> Optional[str]:
|
9438
|
+
"""
|
9439
|
+
Series name
|
9440
|
+
"""
|
9047
9441
|
return pulumi.get(self, "series_name")
|
9048
9442
|
|
9049
9443
|
|
@@ -9170,6 +9564,7 @@ class OneDashboardPageWidgetTableNullValueSeriesOverride(dict):
|
|
9170
9564
|
series_name: Optional[str] = None):
|
9171
9565
|
"""
|
9172
9566
|
:param str null_value: Choose an option in displaying null values. Accepted values are `default`, `remove`, `preserve`, or `zero`.
|
9567
|
+
:param str series_name: Series name
|
9173
9568
|
"""
|
9174
9569
|
if null_value is not None:
|
9175
9570
|
pulumi.set(__self__, "null_value", null_value)
|
@@ -9187,6 +9582,9 @@ class OneDashboardPageWidgetTableNullValueSeriesOverride(dict):
|
|
9187
9582
|
@property
|
9188
9583
|
@pulumi.getter(name="seriesName")
|
9189
9584
|
def series_name(self) -> Optional[str]:
|
9585
|
+
"""
|
9586
|
+
Series name
|
9587
|
+
"""
|
9190
9588
|
return pulumi.get(self, "series_name")
|
9191
9589
|
|
9192
9590
|
|
@@ -9261,6 +9659,7 @@ class OneDashboardPageWidgetTableUnitSeriesOverride(dict):
|
|
9261
9659
|
series_name: Optional[str] = None,
|
9262
9660
|
unit: Optional[str] = None):
|
9263
9661
|
"""
|
9662
|
+
:param str series_name: Series name
|
9264
9663
|
:param str unit: (Optional) Choose a unit to customize the unit on your Y axis and in each of your series.
|
9265
9664
|
"""
|
9266
9665
|
if series_name is not None:
|
@@ -9271,6 +9670,9 @@ class OneDashboardPageWidgetTableUnitSeriesOverride(dict):
|
|
9271
9670
|
@property
|
9272
9671
|
@pulumi.getter(name="seriesName")
|
9273
9672
|
def series_name(self) -> Optional[str]:
|
9673
|
+
"""
|
9674
|
+
Series name
|
9675
|
+
"""
|
9274
9676
|
return pulumi.get(self, "series_name")
|
9275
9677
|
|
9276
9678
|
@property
|
@@ -9374,6 +9776,7 @@ class OneDashboardRawPageWidget(dict):
|
|
9374
9776
|
:param str title: (Required) A title for the widget.
|
9375
9777
|
:param str visualization_id: (Required) The visualization ID of the widget
|
9376
9778
|
:param int height: (Optional) Height of the widget. Valid values are `1` to `12` inclusive. Defaults to `3`.
|
9779
|
+
:param str id: The ID of the widget.
|
9377
9780
|
:param Sequence[str] linked_entity_guids: (Optional) Related entity GUIDs.
|
9378
9781
|
:param int width: (Optional) Width of the widget. Valid values are `1` to `12` inclusive. Defaults to `4`.
|
9379
9782
|
"""
|
@@ -9442,6 +9845,9 @@ class OneDashboardRawPageWidget(dict):
|
|
9442
9845
|
@property
|
9443
9846
|
@pulumi.getter
|
9444
9847
|
def id(self) -> Optional[str]:
|
9848
|
+
"""
|
9849
|
+
The ID of the widget.
|
9850
|
+
"""
|
9445
9851
|
return pulumi.get(self, "id")
|
9446
9852
|
|
9447
9853
|
@property
|
@@ -9637,6 +10043,7 @@ class OneDashboardVariableNrqlQuery(dict):
|
|
9637
10043
|
account_ids: Optional[Sequence[int]] = None):
|
9638
10044
|
"""
|
9639
10045
|
:param str query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
10046
|
+
:param Sequence[int] account_ids: New Relic account ID(s) to issue the query against.
|
9640
10047
|
"""
|
9641
10048
|
pulumi.set(__self__, "query", query)
|
9642
10049
|
if account_ids is not None:
|
@@ -9653,6 +10060,9 @@ class OneDashboardVariableNrqlQuery(dict):
|
|
9653
10060
|
@property
|
9654
10061
|
@pulumi.getter(name="accountIds")
|
9655
10062
|
def account_ids(self) -> Optional[Sequence[int]]:
|
10063
|
+
"""
|
10064
|
+
New Relic account ID(s) to issue the query against.
|
10065
|
+
"""
|
9656
10066
|
return pulumi.get(self, "account_ids")
|
9657
10067
|
|
9658
10068
|
|
@@ -10284,6 +10694,7 @@ class WorkflowEnrichmentsNrql(dict):
|
|
10284
10694
|
:param Sequence['WorkflowEnrichmentsNrqlConfigurationArgs'] configurations: Another wrapper block
|
10285
10695
|
:param str name: The name of the workflow.
|
10286
10696
|
:param int account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
|
10697
|
+
:param str enrichment_id: Enrichment's id.
|
10287
10698
|
:param str type: Type of the filter. Please just set this field to `FILTER`. The field is likely to be deprecated/removed in the near future.
|
10288
10699
|
"""
|
10289
10700
|
pulumi.set(__self__, "configurations", configurations)
|
@@ -10322,6 +10733,9 @@ class WorkflowEnrichmentsNrql(dict):
|
|
10322
10733
|
@property
|
10323
10734
|
@pulumi.getter(name="enrichmentId")
|
10324
10735
|
def enrichment_id(self) -> Optional[str]:
|
10736
|
+
"""
|
10737
|
+
Enrichment's id.
|
10738
|
+
"""
|
10325
10739
|
return pulumi.get(self, "enrichment_id")
|
10326
10740
|
|
10327
10741
|
@property
|
@@ -10376,7 +10790,9 @@ class WorkflowIssuesFilter(dict):
|
|
10376
10790
|
filter_id: Optional[str] = None,
|
10377
10791
|
predicates: Optional[Sequence['outputs.WorkflowIssuesFilterPredicate']] = None):
|
10378
10792
|
"""
|
10793
|
+
:param str name: (Required) Filter's name.
|
10379
10794
|
:param str type: Type of the filter. Please just set this field to `FILTER`. The field is likely to be deprecated/removed in the near future.
|
10795
|
+
:param str filter_id: filter id.
|
10380
10796
|
:param Sequence['WorkflowIssuesFilterPredicateArgs'] predicates: A condition an issue event should satisfy to be processed by the workflow
|
10381
10797
|
"""
|
10382
10798
|
pulumi.set(__self__, "name", name)
|
@@ -10389,6 +10805,9 @@ class WorkflowIssuesFilter(dict):
|
|
10389
10805
|
@property
|
10390
10806
|
@pulumi.getter
|
10391
10807
|
def name(self) -> str:
|
10808
|
+
"""
|
10809
|
+
(Required) Filter's name.
|
10810
|
+
"""
|
10392
10811
|
return pulumi.get(self, "name")
|
10393
10812
|
|
10394
10813
|
@property
|
@@ -10402,6 +10821,9 @@ class WorkflowIssuesFilter(dict):
|
|
10402
10821
|
@property
|
10403
10822
|
@pulumi.getter(name="filterId")
|
10404
10823
|
def filter_id(self) -> Optional[str]:
|
10824
|
+
"""
|
10825
|
+
filter id.
|
10826
|
+
"""
|
10405
10827
|
return pulumi.get(self, "filter_id")
|
10406
10828
|
|
10407
10829
|
@property
|
@@ -10654,6 +11076,12 @@ class GetNotificationDestinationPropertyResult(dict):
|
|
10654
11076
|
value: str,
|
10655
11077
|
display_value: Optional[str] = None,
|
10656
11078
|
label: Optional[str] = None):
|
11079
|
+
"""
|
11080
|
+
:param str key: Notification property key.
|
11081
|
+
:param str value: Notification property value.
|
11082
|
+
:param str display_value: Notification property display key.
|
11083
|
+
:param str label: Notification property label.
|
11084
|
+
"""
|
10657
11085
|
pulumi.set(__self__, "key", key)
|
10658
11086
|
pulumi.set(__self__, "value", value)
|
10659
11087
|
if display_value is not None:
|
@@ -10664,21 +11092,33 @@ class GetNotificationDestinationPropertyResult(dict):
|
|
10664
11092
|
@property
|
10665
11093
|
@pulumi.getter
|
10666
11094
|
def key(self) -> str:
|
11095
|
+
"""
|
11096
|
+
Notification property key.
|
11097
|
+
"""
|
10667
11098
|
return pulumi.get(self, "key")
|
10668
11099
|
|
10669
11100
|
@property
|
10670
11101
|
@pulumi.getter
|
10671
11102
|
def value(self) -> str:
|
11103
|
+
"""
|
11104
|
+
Notification property value.
|
11105
|
+
"""
|
10672
11106
|
return pulumi.get(self, "value")
|
10673
11107
|
|
10674
11108
|
@property
|
10675
11109
|
@pulumi.getter(name="displayValue")
|
10676
11110
|
def display_value(self) -> Optional[str]:
|
11111
|
+
"""
|
11112
|
+
Notification property display key.
|
11113
|
+
"""
|
10677
11114
|
return pulumi.get(self, "display_value")
|
10678
11115
|
|
10679
11116
|
@property
|
10680
11117
|
@pulumi.getter
|
10681
11118
|
def label(self) -> Optional[str]:
|
11119
|
+
"""
|
11120
|
+
Notification property label.
|
11121
|
+
"""
|
10682
11122
|
return pulumi.get(self, "label")
|
10683
11123
|
|
10684
11124
|
|