pulumi-newrelic 5.28.0a1721333308__py3-none-any.whl → 5.28.0a1721715318__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 +22 -18
- pulumi_newrelic/outputs.py +18 -14
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.28.0a1721333308.dist-info → pulumi_newrelic-5.28.0a1721715318.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.28.0a1721333308.dist-info → pulumi_newrelic-5.28.0a1721715318.dist-info}/RECORD +7 -7
- {pulumi_newrelic-5.28.0a1721333308.dist-info → pulumi_newrelic-5.28.0a1721715318.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.28.0a1721333308.dist-info → pulumi_newrelic-5.28.0a1721715318.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
@@ -815,7 +815,9 @@ class EntityTagsTagArgs:
|
|
815
815
|
key: pulumi.Input[str],
|
816
816
|
values: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
817
817
|
"""
|
818
|
-
:param pulumi.Input[str] key: The tag
|
818
|
+
:param pulumi.Input[str] key: The key of the tag.
|
819
|
+
|
820
|
+
> **NOTE:** One should not use reserved (immutable) keys with this resource. It is recommended to choose unique and descriptive keys which do not conflict with existing reserved keys.
|
819
821
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] values: The tag values.
|
820
822
|
"""
|
821
823
|
pulumi.set(__self__, "key", key)
|
@@ -825,7 +827,9 @@ class EntityTagsTagArgs:
|
|
825
827
|
@pulumi.getter
|
826
828
|
def key(self) -> pulumi.Input[str]:
|
827
829
|
"""
|
828
|
-
The tag
|
830
|
+
The key of the tag.
|
831
|
+
|
832
|
+
> **NOTE:** One should not use reserved (immutable) keys with this resource. It is recommended to choose unique and descriptive keys which do not conflict with existing reserved keys.
|
829
833
|
"""
|
830
834
|
return pulumi.get(self, "key")
|
831
835
|
|
@@ -6777,15 +6781,15 @@ class OneDashboardPageWidgetLineNullValueSeriesOverrideArgs:
|
|
6777
6781
|
@pulumi.input_type
|
6778
6782
|
class OneDashboardPageWidgetLineThresholdArgs:
|
6779
6783
|
def __init__(__self__, *,
|
6780
|
-
from_: Optional[pulumi.Input[
|
6784
|
+
from_: Optional[pulumi.Input[float]] = None,
|
6781
6785
|
name: Optional[pulumi.Input[str]] = None,
|
6782
6786
|
severity: Optional[pulumi.Input[str]] = None,
|
6783
|
-
to: Optional[pulumi.Input[
|
6787
|
+
to: Optional[pulumi.Input[float]] = None):
|
6784
6788
|
"""
|
6785
|
-
:param pulumi.Input[
|
6789
|
+
:param pulumi.Input[float] from_: The value 'from' which the threshold would need to be applied.
|
6786
6790
|
:param pulumi.Input[str] name: The title of the dashboard.
|
6787
6791
|
:param pulumi.Input[str] severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
6788
|
-
:param pulumi.Input[
|
6792
|
+
:param pulumi.Input[float] to: The value until which the threshold would need to be applied.
|
6789
6793
|
"""
|
6790
6794
|
if from_ is not None:
|
6791
6795
|
pulumi.set(__self__, "from_", from_)
|
@@ -6798,14 +6802,14 @@ class OneDashboardPageWidgetLineThresholdArgs:
|
|
6798
6802
|
|
6799
6803
|
@property
|
6800
6804
|
@pulumi.getter(name="from")
|
6801
|
-
def from_(self) -> Optional[pulumi.Input[
|
6805
|
+
def from_(self) -> Optional[pulumi.Input[float]]:
|
6802
6806
|
"""
|
6803
6807
|
The value 'from' which the threshold would need to be applied.
|
6804
6808
|
"""
|
6805
6809
|
return pulumi.get(self, "from_")
|
6806
6810
|
|
6807
6811
|
@from_.setter
|
6808
|
-
def from_(self, value: Optional[pulumi.Input[
|
6812
|
+
def from_(self, value: Optional[pulumi.Input[float]]):
|
6809
6813
|
pulumi.set(self, "from_", value)
|
6810
6814
|
|
6811
6815
|
@property
|
@@ -6834,14 +6838,14 @@ class OneDashboardPageWidgetLineThresholdArgs:
|
|
6834
6838
|
|
6835
6839
|
@property
|
6836
6840
|
@pulumi.getter
|
6837
|
-
def to(self) -> Optional[pulumi.Input[
|
6841
|
+
def to(self) -> Optional[pulumi.Input[float]]:
|
6838
6842
|
"""
|
6839
6843
|
The value until which the threshold would need to be applied.
|
6840
6844
|
"""
|
6841
6845
|
return pulumi.get(self, "to")
|
6842
6846
|
|
6843
6847
|
@to.setter
|
6844
|
-
def to(self, value: Optional[pulumi.Input[
|
6848
|
+
def to(self, value: Optional[pulumi.Input[float]]):
|
6845
6849
|
pulumi.set(self, "to", value)
|
6846
6850
|
|
6847
6851
|
|
@@ -9517,14 +9521,14 @@ class OneDashboardPageWidgetTableNullValueSeriesOverrideArgs:
|
|
9517
9521
|
class OneDashboardPageWidgetTableThresholdArgs:
|
9518
9522
|
def __init__(__self__, *,
|
9519
9523
|
column_name: Optional[pulumi.Input[str]] = None,
|
9520
|
-
from_: Optional[pulumi.Input[
|
9524
|
+
from_: Optional[pulumi.Input[float]] = None,
|
9521
9525
|
severity: Optional[pulumi.Input[str]] = None,
|
9522
|
-
to: Optional[pulumi.Input[
|
9526
|
+
to: Optional[pulumi.Input[float]] = None):
|
9523
9527
|
"""
|
9524
9528
|
:param pulumi.Input[str] column_name: The name of the column in the table, to which the threshold would need to be applied.
|
9525
|
-
:param pulumi.Input[
|
9529
|
+
:param pulumi.Input[float] from_: The value 'from' which the threshold would need to be applied.
|
9526
9530
|
:param pulumi.Input[str] severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
9527
|
-
:param pulumi.Input[
|
9531
|
+
:param pulumi.Input[float] to: The value until which the threshold would need to be applied.
|
9528
9532
|
"""
|
9529
9533
|
if column_name is not None:
|
9530
9534
|
pulumi.set(__self__, "column_name", column_name)
|
@@ -9549,14 +9553,14 @@ class OneDashboardPageWidgetTableThresholdArgs:
|
|
9549
9553
|
|
9550
9554
|
@property
|
9551
9555
|
@pulumi.getter(name="from")
|
9552
|
-
def from_(self) -> Optional[pulumi.Input[
|
9556
|
+
def from_(self) -> Optional[pulumi.Input[float]]:
|
9553
9557
|
"""
|
9554
9558
|
The value 'from' which the threshold would need to be applied.
|
9555
9559
|
"""
|
9556
9560
|
return pulumi.get(self, "from_")
|
9557
9561
|
|
9558
9562
|
@from_.setter
|
9559
|
-
def from_(self, value: Optional[pulumi.Input[
|
9563
|
+
def from_(self, value: Optional[pulumi.Input[float]]):
|
9560
9564
|
pulumi.set(self, "from_", value)
|
9561
9565
|
|
9562
9566
|
@property
|
@@ -9573,14 +9577,14 @@ class OneDashboardPageWidgetTableThresholdArgs:
|
|
9573
9577
|
|
9574
9578
|
@property
|
9575
9579
|
@pulumi.getter
|
9576
|
-
def to(self) -> Optional[pulumi.Input[
|
9580
|
+
def to(self) -> Optional[pulumi.Input[float]]:
|
9577
9581
|
"""
|
9578
9582
|
The value until which the threshold would need to be applied.
|
9579
9583
|
"""
|
9580
9584
|
return pulumi.get(self, "to")
|
9581
9585
|
|
9582
9586
|
@to.setter
|
9583
|
-
def to(self, value: Optional[pulumi.Input[
|
9587
|
+
def to(self, value: Optional[pulumi.Input[float]]):
|
9584
9588
|
pulumi.set(self, "to", value)
|
9585
9589
|
|
9586
9590
|
|
pulumi_newrelic/outputs.py
CHANGED
@@ -751,7 +751,9 @@ class EntityTagsTag(dict):
|
|
751
751
|
key: str,
|
752
752
|
values: Sequence[str]):
|
753
753
|
"""
|
754
|
-
:param str key: The tag
|
754
|
+
:param str key: The key of the tag.
|
755
|
+
|
756
|
+
> **NOTE:** One should not use reserved (immutable) keys with this resource. It is recommended to choose unique and descriptive keys which do not conflict with existing reserved keys.
|
755
757
|
:param Sequence[str] values: The tag values.
|
756
758
|
"""
|
757
759
|
pulumi.set(__self__, "key", key)
|
@@ -761,7 +763,9 @@ class EntityTagsTag(dict):
|
|
761
763
|
@pulumi.getter
|
762
764
|
def key(self) -> str:
|
763
765
|
"""
|
764
|
-
The tag
|
766
|
+
The key of the tag.
|
767
|
+
|
768
|
+
> **NOTE:** One should not use reserved (immutable) keys with this resource. It is recommended to choose unique and descriptive keys which do not conflict with existing reserved keys.
|
765
769
|
"""
|
766
770
|
return pulumi.get(self, "key")
|
767
771
|
|
@@ -6976,15 +6980,15 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
6976
6980
|
return super().get(key, default)
|
6977
6981
|
|
6978
6982
|
def __init__(__self__, *,
|
6979
|
-
from_: Optional[
|
6983
|
+
from_: Optional[float] = None,
|
6980
6984
|
name: Optional[str] = None,
|
6981
6985
|
severity: Optional[str] = None,
|
6982
|
-
to: Optional[
|
6986
|
+
to: Optional[float] = None):
|
6983
6987
|
"""
|
6984
|
-
:param
|
6988
|
+
:param float from_: The value 'from' which the threshold would need to be applied.
|
6985
6989
|
:param str name: The title of the dashboard.
|
6986
6990
|
:param str severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
6987
|
-
:param
|
6991
|
+
:param float to: The value until which the threshold would need to be applied.
|
6988
6992
|
"""
|
6989
6993
|
if from_ is not None:
|
6990
6994
|
pulumi.set(__self__, "from_", from_)
|
@@ -6997,7 +7001,7 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
6997
7001
|
|
6998
7002
|
@property
|
6999
7003
|
@pulumi.getter(name="from")
|
7000
|
-
def from_(self) -> Optional[
|
7004
|
+
def from_(self) -> Optional[float]:
|
7001
7005
|
"""
|
7002
7006
|
The value 'from' which the threshold would need to be applied.
|
7003
7007
|
"""
|
@@ -7021,7 +7025,7 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
7021
7025
|
|
7022
7026
|
@property
|
7023
7027
|
@pulumi.getter
|
7024
|
-
def to(self) -> Optional[
|
7028
|
+
def to(self) -> Optional[float]:
|
7025
7029
|
"""
|
7026
7030
|
The value until which the threshold would need to be applied.
|
7027
7031
|
"""
|
@@ -9883,14 +9887,14 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9883
9887
|
|
9884
9888
|
def __init__(__self__, *,
|
9885
9889
|
column_name: Optional[str] = None,
|
9886
|
-
from_: Optional[
|
9890
|
+
from_: Optional[float] = None,
|
9887
9891
|
severity: Optional[str] = None,
|
9888
|
-
to: Optional[
|
9892
|
+
to: Optional[float] = None):
|
9889
9893
|
"""
|
9890
9894
|
:param str column_name: The name of the column in the table, to which the threshold would need to be applied.
|
9891
|
-
:param
|
9895
|
+
:param float from_: The value 'from' which the threshold would need to be applied.
|
9892
9896
|
:param str severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
9893
|
-
:param
|
9897
|
+
:param float to: The value until which the threshold would need to be applied.
|
9894
9898
|
"""
|
9895
9899
|
if column_name is not None:
|
9896
9900
|
pulumi.set(__self__, "column_name", column_name)
|
@@ -9911,7 +9915,7 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9911
9915
|
|
9912
9916
|
@property
|
9913
9917
|
@pulumi.getter(name="from")
|
9914
|
-
def from_(self) -> Optional[
|
9918
|
+
def from_(self) -> Optional[float]:
|
9915
9919
|
"""
|
9916
9920
|
The value 'from' which the threshold would need to be applied.
|
9917
9921
|
"""
|
@@ -9927,7 +9931,7 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9927
9931
|
|
9928
9932
|
@property
|
9929
9933
|
@pulumi.getter
|
9930
|
-
def to(self) -> Optional[
|
9934
|
+
def to(self) -> Optional[float]:
|
9931
9935
|
"""
|
9932
9936
|
The value until which the threshold would need to be applied.
|
9933
9937
|
"""
|
{pulumi_newrelic-5.28.0a1721333308.dist-info → pulumi_newrelic-5.28.0a1721715318.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=nPezJw0kkuU5rQfUyd5KxbHNWIL6V4BE5ZLc7z16uCQ,497294
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=ebJyWyMCMYLpnVkJVRkMiyEceWyxZ09ZYhxd1W7MWxs,10446
|
4
4
|
pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=Ivzcqqc2Up7fAgwOeu7yhcwuR64gbI2XjzZ9Lbd-J70,21618
|
@@ -39,9 +39,9 @@ pulumi_newrelic/obfuscation_rule.py,sha256=J1951kAaBWDlmFWEQsSASz7PmjGSpQYxvqV8w
|
|
39
39
|
pulumi_newrelic/one_dashboard.py,sha256=b3DpP1ryeGV6WYUghTaAN6963nMrVeWHvLeInBE42rM,20490
|
40
40
|
pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0qg-NVT-s,12622
|
41
41
|
pulumi_newrelic/one_dashboard_raw.py,sha256=M9TgRdqEwEDFwJtzN2retbMG3b8aNih10hL0n0MihUY,23542
|
42
|
-
pulumi_newrelic/outputs.py,sha256=
|
42
|
+
pulumi_newrelic/outputs.py,sha256=JpXWUYvtGIcDBsy2RnZPDx-i9cAU6-JldoKRAUSbdBk,489343
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=lRa2V0SMV84Juwqb9tXp340KsqtcpjfQn1STuMI_Y4k,85
|
45
45
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
46
|
pulumi_newrelic/service_level.py,sha256=HGA0UqZYKEzclHATagPnyDpvsrQodHrjvewC6EkACHc,30071
|
47
47
|
pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
|
@@ -83,7 +83,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ
|
|
83
83
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=xmjPoTtX4UeAoL9BsArSXYrw3k1eZXQXTJuuYYrHevU,57186
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
|
85
85
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=uI8y4YcsXHaTWwk3_iEfrT2myPwiA3_isIN5nvQMftc,50742
|
86
|
-
pulumi_newrelic-5.28.
|
87
|
-
pulumi_newrelic-5.28.
|
88
|
-
pulumi_newrelic-5.28.
|
89
|
-
pulumi_newrelic-5.28.
|
86
|
+
pulumi_newrelic-5.28.0a1721715318.dist-info/METADATA,sha256=5Wwk4g-ILvfExbUAmkt90RmVUg0SLvkho91zAAc8POs,3900
|
87
|
+
pulumi_newrelic-5.28.0a1721715318.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
88
|
+
pulumi_newrelic-5.28.0a1721715318.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.28.0a1721715318.dist-info/RECORD,,
|
File without changes
|