@pulumi/newrelic 4.16.0 → 4.17.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/newrelic",
3
- "version": "v4.16.0",
3
+ "version": "v4.17.0",
4
4
  "description": "A Pulumi package for creating and managing New Relic resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource newrelic v4.16.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource newrelic v4.17.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/newrelic",
3
- "version": "v4.16.0",
3
+ "version": "v4.17.0",
4
4
  "description": "A Pulumi package for creating and managing New Relic resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource newrelic v4.16.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource newrelic v4.17.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/types/input.d.ts CHANGED
@@ -420,6 +420,10 @@ export interface OneDashboardPageWidgetArea {
420
420
  */
421
421
  height?: pulumi.Input<number>;
422
422
  id?: pulumi.Input<string>;
423
+ /**
424
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
425
+ */
426
+ ignoreTimeRange?: pulumi.Input<boolean>;
423
427
  /**
424
428
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
425
429
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -460,6 +464,10 @@ export interface OneDashboardPageWidgetBar {
460
464
  */
461
465
  height?: pulumi.Input<number>;
462
466
  id?: pulumi.Input<string>;
467
+ /**
468
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
469
+ */
470
+ ignoreTimeRange?: pulumi.Input<boolean>;
463
471
  linkedEntityGuids?: pulumi.Input<pulumi.Input<string>[]>;
464
472
  /**
465
473
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
@@ -504,6 +512,10 @@ export interface OneDashboardPageWidgetBillboard {
504
512
  */
505
513
  height?: pulumi.Input<number>;
506
514
  id?: pulumi.Input<string>;
515
+ /**
516
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
517
+ */
518
+ ignoreTimeRange?: pulumi.Input<boolean>;
507
519
  /**
508
520
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
509
521
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -548,6 +560,10 @@ export interface OneDashboardPageWidgetBullet {
548
560
  */
549
561
  height?: pulumi.Input<number>;
550
562
  id?: pulumi.Input<string>;
563
+ /**
564
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
565
+ */
566
+ ignoreTimeRange?: pulumi.Input<boolean>;
551
567
  /**
552
568
  * (Required) Visualization limit for the widget.
553
569
  * * `widgetFunnel`
@@ -592,6 +608,10 @@ export interface OneDashboardPageWidgetFunnel {
592
608
  */
593
609
  height?: pulumi.Input<number>;
594
610
  id?: pulumi.Input<string>;
611
+ /**
612
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
613
+ */
614
+ ignoreTimeRange?: pulumi.Input<boolean>;
595
615
  /**
596
616
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
597
617
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -631,6 +651,10 @@ export interface OneDashboardPageWidgetHeatmap {
631
651
  */
632
652
  height?: pulumi.Input<number>;
633
653
  id?: pulumi.Input<string>;
654
+ /**
655
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
656
+ */
657
+ ignoreTimeRange?: pulumi.Input<boolean>;
634
658
  /**
635
659
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
636
660
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -670,6 +694,10 @@ export interface OneDashboardPageWidgetHistogram {
670
694
  */
671
695
  height?: pulumi.Input<number>;
672
696
  id?: pulumi.Input<string>;
697
+ /**
698
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
699
+ */
700
+ ignoreTimeRange?: pulumi.Input<boolean>;
673
701
  /**
674
702
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
675
703
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -709,6 +737,10 @@ export interface OneDashboardPageWidgetJson {
709
737
  */
710
738
  height?: pulumi.Input<number>;
711
739
  id?: pulumi.Input<string>;
740
+ /**
741
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
742
+ */
743
+ ignoreTimeRange?: pulumi.Input<boolean>;
712
744
  /**
713
745
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
714
746
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -748,6 +780,10 @@ export interface OneDashboardPageWidgetLine {
748
780
  */
749
781
  height?: pulumi.Input<number>;
750
782
  id?: pulumi.Input<string>;
783
+ /**
784
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
785
+ */
786
+ ignoreTimeRange?: pulumi.Input<boolean>;
751
787
  /**
752
788
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
753
789
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -787,6 +823,10 @@ export interface OneDashboardPageWidgetMarkdown {
787
823
  */
788
824
  height?: pulumi.Input<number>;
789
825
  id?: pulumi.Input<string>;
826
+ /**
827
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
828
+ */
829
+ ignoreTimeRange?: pulumi.Input<boolean>;
790
830
  /**
791
831
  * (Required) Row position of widget from top left, starting at `1`.
792
832
  */
@@ -816,6 +856,10 @@ export interface OneDashboardPageWidgetPy {
816
856
  */
817
857
  height?: pulumi.Input<number>;
818
858
  id?: pulumi.Input<string>;
859
+ /**
860
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
861
+ */
862
+ ignoreTimeRange?: pulumi.Input<boolean>;
819
863
  linkedEntityGuids?: pulumi.Input<pulumi.Input<string>[]>;
820
864
  /**
821
865
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
@@ -856,6 +900,10 @@ export interface OneDashboardPageWidgetStackedBar {
856
900
  */
857
901
  height?: pulumi.Input<number>;
858
902
  id?: pulumi.Input<string>;
903
+ /**
904
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
905
+ */
906
+ ignoreTimeRange?: pulumi.Input<boolean>;
859
907
  /**
860
908
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
861
909
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -896,6 +944,10 @@ export interface OneDashboardPageWidgetTable {
896
944
  */
897
945
  height?: pulumi.Input<number>;
898
946
  id?: pulumi.Input<string>;
947
+ /**
948
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
949
+ */
950
+ ignoreTimeRange?: pulumi.Input<boolean>;
899
951
  linkedEntityGuids?: pulumi.Input<pulumi.Input<string>[]>;
900
952
  /**
901
953
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
package/types/output.d.ts CHANGED
@@ -441,6 +441,10 @@ export interface OneDashboardPageWidgetArea {
441
441
  */
442
442
  height?: number;
443
443
  id: string;
444
+ /**
445
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
446
+ */
447
+ ignoreTimeRange?: boolean;
444
448
  /**
445
449
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
446
450
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -481,6 +485,10 @@ export interface OneDashboardPageWidgetBar {
481
485
  */
482
486
  height?: number;
483
487
  id: string;
488
+ /**
489
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
490
+ */
491
+ ignoreTimeRange?: boolean;
484
492
  linkedEntityGuids: string[];
485
493
  /**
486
494
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
@@ -525,6 +533,10 @@ export interface OneDashboardPageWidgetBillboard {
525
533
  */
526
534
  height?: number;
527
535
  id: string;
536
+ /**
537
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
538
+ */
539
+ ignoreTimeRange?: boolean;
528
540
  /**
529
541
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
530
542
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -569,6 +581,10 @@ export interface OneDashboardPageWidgetBullet {
569
581
  */
570
582
  height?: number;
571
583
  id: string;
584
+ /**
585
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
586
+ */
587
+ ignoreTimeRange?: boolean;
572
588
  /**
573
589
  * (Required) Visualization limit for the widget.
574
590
  * * `widgetFunnel`
@@ -613,6 +629,10 @@ export interface OneDashboardPageWidgetFunnel {
613
629
  */
614
630
  height?: number;
615
631
  id: string;
632
+ /**
633
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
634
+ */
635
+ ignoreTimeRange?: boolean;
616
636
  /**
617
637
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
618
638
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -652,6 +672,10 @@ export interface OneDashboardPageWidgetHeatmap {
652
672
  */
653
673
  height?: number;
654
674
  id: string;
675
+ /**
676
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
677
+ */
678
+ ignoreTimeRange?: boolean;
655
679
  /**
656
680
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
657
681
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -691,6 +715,10 @@ export interface OneDashboardPageWidgetHistogram {
691
715
  */
692
716
  height?: number;
693
717
  id: string;
718
+ /**
719
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
720
+ */
721
+ ignoreTimeRange?: boolean;
694
722
  /**
695
723
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
696
724
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -730,6 +758,10 @@ export interface OneDashboardPageWidgetJson {
730
758
  */
731
759
  height?: number;
732
760
  id: string;
761
+ /**
762
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
763
+ */
764
+ ignoreTimeRange?: boolean;
733
765
  /**
734
766
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
735
767
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -769,6 +801,10 @@ export interface OneDashboardPageWidgetLine {
769
801
  */
770
802
  height?: number;
771
803
  id: string;
804
+ /**
805
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
806
+ */
807
+ ignoreTimeRange?: boolean;
772
808
  /**
773
809
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
774
810
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -808,6 +844,10 @@ export interface OneDashboardPageWidgetMarkdown {
808
844
  */
809
845
  height?: number;
810
846
  id: string;
847
+ /**
848
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
849
+ */
850
+ ignoreTimeRange?: boolean;
811
851
  /**
812
852
  * (Required) Row position of widget from top left, starting at `1`.
813
853
  */
@@ -837,6 +877,10 @@ export interface OneDashboardPageWidgetPy {
837
877
  */
838
878
  height?: number;
839
879
  id: string;
880
+ /**
881
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
882
+ */
883
+ ignoreTimeRange?: boolean;
840
884
  linkedEntityGuids: string[];
841
885
  /**
842
886
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
@@ -877,6 +921,10 @@ export interface OneDashboardPageWidgetStackedBar {
877
921
  */
878
922
  height?: number;
879
923
  id: string;
924
+ /**
925
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
926
+ */
927
+ ignoreTimeRange?: boolean;
880
928
  /**
881
929
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.
882
930
  * * `linkedEntityGuids`: (Optional) Related entity GUIDs. Currently only supports Dashboard entity GUIDs.
@@ -917,6 +965,10 @@ export interface OneDashboardPageWidgetTable {
917
965
  */
918
966
  height?: number;
919
967
  id: string;
968
+ /**
969
+ * (Optional) With this turned on, the time range in this query will override the time picker on dashboards and other pages.
970
+ */
971
+ ignoreTimeRange?: boolean;
920
972
  linkedEntityGuids: string[];
921
973
  /**
922
974
  * (Required) A nested block that describes a NRQL Query. See Nested nrql\_query blocks below for details.