pulumi-newrelic 5.27.1a1721406901__py3-none-any.whl → 5.28.0a1721190235__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 +18 -62
- pulumi_newrelic/_utilities.py +4 -3
- pulumi_newrelic/outputs.py +14 -58
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.27.1a1721406901.dist-info → pulumi_newrelic-5.28.0a1721190235.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.27.1a1721406901.dist-info → pulumi_newrelic-5.28.0a1721190235.dist-info}/RECORD +8 -8
- {pulumi_newrelic-5.27.1a1721406901.dist-info → pulumi_newrelic-5.28.0a1721190235.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.27.1a1721406901.dist-info → pulumi_newrelic-5.28.0a1721190235.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
@@ -815,9 +815,7 @@ 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 key
|
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.
|
818
|
+
:param pulumi.Input[str] key: The tag key.
|
821
819
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] values: The tag values.
|
822
820
|
"""
|
823
821
|
pulumi.set(__self__, "key", key)
|
@@ -827,9 +825,7 @@ class EntityTagsTagArgs:
|
|
827
825
|
@pulumi.getter
|
828
826
|
def key(self) -> pulumi.Input[str]:
|
829
827
|
"""
|
830
|
-
The key
|
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.
|
828
|
+
The tag key.
|
833
829
|
"""
|
834
830
|
return pulumi.get(self, "key")
|
835
831
|
|
@@ -1119,19 +1115,12 @@ class NotificationDestinationAuthBasicArgs:
|
|
1119
1115
|
def __init__(__self__, *,
|
1120
1116
|
password: pulumi.Input[str],
|
1121
1117
|
user: pulumi.Input[str]):
|
1122
|
-
"""
|
1123
|
-
:param pulumi.Input[str] password: Specifies an authentication password for use with a destination.
|
1124
|
-
:param pulumi.Input[str] user: The username of the basic auth.
|
1125
|
-
"""
|
1126
1118
|
pulumi.set(__self__, "password", password)
|
1127
1119
|
pulumi.set(__self__, "user", user)
|
1128
1120
|
|
1129
1121
|
@property
|
1130
1122
|
@pulumi.getter
|
1131
1123
|
def password(self) -> pulumi.Input[str]:
|
1132
|
-
"""
|
1133
|
-
Specifies an authentication password for use with a destination.
|
1134
|
-
"""
|
1135
1124
|
return pulumi.get(self, "password")
|
1136
1125
|
|
1137
1126
|
@password.setter
|
@@ -1141,9 +1130,6 @@ class NotificationDestinationAuthBasicArgs:
|
|
1141
1130
|
@property
|
1142
1131
|
@pulumi.getter
|
1143
1132
|
def user(self) -> pulumi.Input[str]:
|
1144
|
-
"""
|
1145
|
-
The username of the basic auth.
|
1146
|
-
"""
|
1147
1133
|
return pulumi.get(self, "user")
|
1148
1134
|
|
1149
1135
|
@user.setter
|
@@ -1156,19 +1142,12 @@ class NotificationDestinationAuthCustomHeaderArgs:
|
|
1156
1142
|
def __init__(__self__, *,
|
1157
1143
|
key: pulumi.Input[str],
|
1158
1144
|
value: pulumi.Input[str]):
|
1159
|
-
"""
|
1160
|
-
:param pulumi.Input[str] key: The notification property key.
|
1161
|
-
:param pulumi.Input[str] value: The notification property value.
|
1162
|
-
"""
|
1163
1145
|
pulumi.set(__self__, "key", key)
|
1164
1146
|
pulumi.set(__self__, "value", value)
|
1165
1147
|
|
1166
1148
|
@property
|
1167
1149
|
@pulumi.getter
|
1168
1150
|
def key(self) -> pulumi.Input[str]:
|
1169
|
-
"""
|
1170
|
-
The notification property key.
|
1171
|
-
"""
|
1172
1151
|
return pulumi.get(self, "key")
|
1173
1152
|
|
1174
1153
|
@key.setter
|
@@ -1178,9 +1157,6 @@ class NotificationDestinationAuthCustomHeaderArgs:
|
|
1178
1157
|
@property
|
1179
1158
|
@pulumi.getter
|
1180
1159
|
def value(self) -> pulumi.Input[str]:
|
1181
|
-
"""
|
1182
|
-
The notification property value.
|
1183
|
-
"""
|
1184
1160
|
return pulumi.get(self, "value")
|
1185
1161
|
|
1186
1162
|
@value.setter
|
@@ -1193,10 +1169,6 @@ class NotificationDestinationAuthTokenArgs:
|
|
1193
1169
|
def __init__(__self__, *,
|
1194
1170
|
token: pulumi.Input[str],
|
1195
1171
|
prefix: Optional[pulumi.Input[str]] = None):
|
1196
|
-
"""
|
1197
|
-
:param pulumi.Input[str] token: Specifies the token for integrating.
|
1198
|
-
:param pulumi.Input[str] prefix: The prefix of the URL.
|
1199
|
-
"""
|
1200
1172
|
pulumi.set(__self__, "token", token)
|
1201
1173
|
if prefix is not None:
|
1202
1174
|
pulumi.set(__self__, "prefix", prefix)
|
@@ -1204,9 +1176,6 @@ class NotificationDestinationAuthTokenArgs:
|
|
1204
1176
|
@property
|
1205
1177
|
@pulumi.getter
|
1206
1178
|
def token(self) -> pulumi.Input[str]:
|
1207
|
-
"""
|
1208
|
-
Specifies the token for integrating.
|
1209
|
-
"""
|
1210
1179
|
return pulumi.get(self, "token")
|
1211
1180
|
|
1212
1181
|
@token.setter
|
@@ -1216,9 +1185,6 @@ class NotificationDestinationAuthTokenArgs:
|
|
1216
1185
|
@property
|
1217
1186
|
@pulumi.getter
|
1218
1187
|
def prefix(self) -> Optional[pulumi.Input[str]]:
|
1219
|
-
"""
|
1220
|
-
The prefix of the URL.
|
1221
|
-
"""
|
1222
1188
|
return pulumi.get(self, "prefix")
|
1223
1189
|
|
1224
1190
|
@prefix.setter
|
@@ -1300,19 +1266,12 @@ class NotificationDestinationSecureUrlArgs:
|
|
1300
1266
|
def __init__(__self__, *,
|
1301
1267
|
prefix: pulumi.Input[str],
|
1302
1268
|
secure_suffix: pulumi.Input[str]):
|
1303
|
-
"""
|
1304
|
-
:param pulumi.Input[str] prefix: The prefix of the URL.
|
1305
|
-
:param pulumi.Input[str] secure_suffix: The suffix of the URL, which contains sensitive data.
|
1306
|
-
"""
|
1307
1269
|
pulumi.set(__self__, "prefix", prefix)
|
1308
1270
|
pulumi.set(__self__, "secure_suffix", secure_suffix)
|
1309
1271
|
|
1310
1272
|
@property
|
1311
1273
|
@pulumi.getter
|
1312
1274
|
def prefix(self) -> pulumi.Input[str]:
|
1313
|
-
"""
|
1314
|
-
The prefix of the URL.
|
1315
|
-
"""
|
1316
1275
|
return pulumi.get(self, "prefix")
|
1317
1276
|
|
1318
1277
|
@prefix.setter
|
@@ -1322,9 +1281,6 @@ class NotificationDestinationSecureUrlArgs:
|
|
1322
1281
|
@property
|
1323
1282
|
@pulumi.getter(name="secureSuffix")
|
1324
1283
|
def secure_suffix(self) -> pulumi.Input[str]:
|
1325
|
-
"""
|
1326
|
-
The suffix of the URL, which contains sensitive data.
|
1327
|
-
"""
|
1328
1284
|
return pulumi.get(self, "secure_suffix")
|
1329
1285
|
|
1330
1286
|
@secure_suffix.setter
|
@@ -6781,15 +6737,15 @@ class OneDashboardPageWidgetLineNullValueSeriesOverrideArgs:
|
|
6781
6737
|
@pulumi.input_type
|
6782
6738
|
class OneDashboardPageWidgetLineThresholdArgs:
|
6783
6739
|
def __init__(__self__, *,
|
6784
|
-
from_: Optional[pulumi.Input[
|
6740
|
+
from_: Optional[pulumi.Input[int]] = None,
|
6785
6741
|
name: Optional[pulumi.Input[str]] = None,
|
6786
6742
|
severity: Optional[pulumi.Input[str]] = None,
|
6787
|
-
to: Optional[pulumi.Input[
|
6743
|
+
to: Optional[pulumi.Input[int]] = None):
|
6788
6744
|
"""
|
6789
|
-
:param pulumi.Input[
|
6745
|
+
:param pulumi.Input[int] from_: The value 'from' which the threshold would need to be applied.
|
6790
6746
|
:param pulumi.Input[str] name: The title of the dashboard.
|
6791
6747
|
: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.
|
6792
|
-
:param pulumi.Input[
|
6748
|
+
:param pulumi.Input[int] to: The value until which the threshold would need to be applied.
|
6793
6749
|
"""
|
6794
6750
|
if from_ is not None:
|
6795
6751
|
pulumi.set(__self__, "from_", from_)
|
@@ -6802,14 +6758,14 @@ class OneDashboardPageWidgetLineThresholdArgs:
|
|
6802
6758
|
|
6803
6759
|
@property
|
6804
6760
|
@pulumi.getter(name="from")
|
6805
|
-
def from_(self) -> Optional[pulumi.Input[
|
6761
|
+
def from_(self) -> Optional[pulumi.Input[int]]:
|
6806
6762
|
"""
|
6807
6763
|
The value 'from' which the threshold would need to be applied.
|
6808
6764
|
"""
|
6809
6765
|
return pulumi.get(self, "from_")
|
6810
6766
|
|
6811
6767
|
@from_.setter
|
6812
|
-
def from_(self, value: Optional[pulumi.Input[
|
6768
|
+
def from_(self, value: Optional[pulumi.Input[int]]):
|
6813
6769
|
pulumi.set(self, "from_", value)
|
6814
6770
|
|
6815
6771
|
@property
|
@@ -6838,14 +6794,14 @@ class OneDashboardPageWidgetLineThresholdArgs:
|
|
6838
6794
|
|
6839
6795
|
@property
|
6840
6796
|
@pulumi.getter
|
6841
|
-
def to(self) -> Optional[pulumi.Input[
|
6797
|
+
def to(self) -> Optional[pulumi.Input[int]]:
|
6842
6798
|
"""
|
6843
6799
|
The value until which the threshold would need to be applied.
|
6844
6800
|
"""
|
6845
6801
|
return pulumi.get(self, "to")
|
6846
6802
|
|
6847
6803
|
@to.setter
|
6848
|
-
def to(self, value: Optional[pulumi.Input[
|
6804
|
+
def to(self, value: Optional[pulumi.Input[int]]):
|
6849
6805
|
pulumi.set(self, "to", value)
|
6850
6806
|
|
6851
6807
|
|
@@ -9521,14 +9477,14 @@ class OneDashboardPageWidgetTableNullValueSeriesOverrideArgs:
|
|
9521
9477
|
class OneDashboardPageWidgetTableThresholdArgs:
|
9522
9478
|
def __init__(__self__, *,
|
9523
9479
|
column_name: Optional[pulumi.Input[str]] = None,
|
9524
|
-
from_: Optional[pulumi.Input[
|
9480
|
+
from_: Optional[pulumi.Input[int]] = None,
|
9525
9481
|
severity: Optional[pulumi.Input[str]] = None,
|
9526
|
-
to: Optional[pulumi.Input[
|
9482
|
+
to: Optional[pulumi.Input[int]] = None):
|
9527
9483
|
"""
|
9528
9484
|
:param pulumi.Input[str] column_name: The name of the column in the table, to which the threshold would need to be applied.
|
9529
|
-
:param pulumi.Input[
|
9485
|
+
:param pulumi.Input[int] from_: The value 'from' which the threshold would need to be applied.
|
9530
9486
|
: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.
|
9531
|
-
:param pulumi.Input[
|
9487
|
+
:param pulumi.Input[int] to: The value until which the threshold would need to be applied.
|
9532
9488
|
"""
|
9533
9489
|
if column_name is not None:
|
9534
9490
|
pulumi.set(__self__, "column_name", column_name)
|
@@ -9553,14 +9509,14 @@ class OneDashboardPageWidgetTableThresholdArgs:
|
|
9553
9509
|
|
9554
9510
|
@property
|
9555
9511
|
@pulumi.getter(name="from")
|
9556
|
-
def from_(self) -> Optional[pulumi.Input[
|
9512
|
+
def from_(self) -> Optional[pulumi.Input[int]]:
|
9557
9513
|
"""
|
9558
9514
|
The value 'from' which the threshold would need to be applied.
|
9559
9515
|
"""
|
9560
9516
|
return pulumi.get(self, "from_")
|
9561
9517
|
|
9562
9518
|
@from_.setter
|
9563
|
-
def from_(self, value: Optional[pulumi.Input[
|
9519
|
+
def from_(self, value: Optional[pulumi.Input[int]]):
|
9564
9520
|
pulumi.set(self, "from_", value)
|
9565
9521
|
|
9566
9522
|
@property
|
@@ -9577,14 +9533,14 @@ class OneDashboardPageWidgetTableThresholdArgs:
|
|
9577
9533
|
|
9578
9534
|
@property
|
9579
9535
|
@pulumi.getter
|
9580
|
-
def to(self) -> Optional[pulumi.Input[
|
9536
|
+
def to(self) -> Optional[pulumi.Input[int]]:
|
9581
9537
|
"""
|
9582
9538
|
The value until which the threshold would need to be applied.
|
9583
9539
|
"""
|
9584
9540
|
return pulumi.get(self, "to")
|
9585
9541
|
|
9586
9542
|
@to.setter
|
9587
|
-
def to(self, value: Optional[pulumi.Input[
|
9543
|
+
def to(self, value: Optional[pulumi.Input[int]]):
|
9588
9544
|
pulumi.set(self, "to", value)
|
9589
9545
|
|
9590
9546
|
|
pulumi_newrelic/_utilities.py
CHANGED
@@ -100,6 +100,10 @@ def _get_semver_version():
|
|
100
100
|
_version = _get_semver_version()
|
101
101
|
_version_str = str(_version)
|
102
102
|
|
103
|
+
|
104
|
+
def get_version():
|
105
|
+
return _version_str
|
106
|
+
|
103
107
|
def get_resource_opts_defaults() -> pulumi.ResourceOptions:
|
104
108
|
return pulumi.ResourceOptions(
|
105
109
|
version=get_version(),
|
@@ -320,6 +324,3 @@ def deprecated(message: str) -> typing.Callable[[C], C]:
|
|
320
324
|
|
321
325
|
def get_plugin_download_url():
|
322
326
|
return None
|
323
|
-
|
324
|
-
def get_version():
|
325
|
-
return _version_str
|
pulumi_newrelic/outputs.py
CHANGED
@@ -751,9 +751,7 @@ class EntityTagsTag(dict):
|
|
751
751
|
key: str,
|
752
752
|
values: Sequence[str]):
|
753
753
|
"""
|
754
|
-
:param str key: The key
|
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.
|
754
|
+
:param str key: The tag key.
|
757
755
|
:param Sequence[str] values: The tag values.
|
758
756
|
"""
|
759
757
|
pulumi.set(__self__, "key", key)
|
@@ -763,9 +761,7 @@ class EntityTagsTag(dict):
|
|
763
761
|
@pulumi.getter
|
764
762
|
def key(self) -> str:
|
765
763
|
"""
|
766
|
-
The key
|
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.
|
764
|
+
The tag key.
|
769
765
|
"""
|
770
766
|
return pulumi.get(self, "key")
|
771
767
|
|
@@ -1091,27 +1087,17 @@ class NotificationDestinationAuthBasic(dict):
|
|
1091
1087
|
def __init__(__self__, *,
|
1092
1088
|
password: str,
|
1093
1089
|
user: str):
|
1094
|
-
"""
|
1095
|
-
:param str password: Specifies an authentication password for use with a destination.
|
1096
|
-
:param str user: The username of the basic auth.
|
1097
|
-
"""
|
1098
1090
|
pulumi.set(__self__, "password", password)
|
1099
1091
|
pulumi.set(__self__, "user", user)
|
1100
1092
|
|
1101
1093
|
@property
|
1102
1094
|
@pulumi.getter
|
1103
1095
|
def password(self) -> str:
|
1104
|
-
"""
|
1105
|
-
Specifies an authentication password for use with a destination.
|
1106
|
-
"""
|
1107
1096
|
return pulumi.get(self, "password")
|
1108
1097
|
|
1109
1098
|
@property
|
1110
1099
|
@pulumi.getter
|
1111
1100
|
def user(self) -> str:
|
1112
|
-
"""
|
1113
|
-
The username of the basic auth.
|
1114
|
-
"""
|
1115
1101
|
return pulumi.get(self, "user")
|
1116
1102
|
|
1117
1103
|
|
@@ -1120,27 +1106,17 @@ class NotificationDestinationAuthCustomHeader(dict):
|
|
1120
1106
|
def __init__(__self__, *,
|
1121
1107
|
key: str,
|
1122
1108
|
value: str):
|
1123
|
-
"""
|
1124
|
-
:param str key: The notification property key.
|
1125
|
-
:param str value: The notification property value.
|
1126
|
-
"""
|
1127
1109
|
pulumi.set(__self__, "key", key)
|
1128
1110
|
pulumi.set(__self__, "value", value)
|
1129
1111
|
|
1130
1112
|
@property
|
1131
1113
|
@pulumi.getter
|
1132
1114
|
def key(self) -> str:
|
1133
|
-
"""
|
1134
|
-
The notification property key.
|
1135
|
-
"""
|
1136
1115
|
return pulumi.get(self, "key")
|
1137
1116
|
|
1138
1117
|
@property
|
1139
1118
|
@pulumi.getter
|
1140
1119
|
def value(self) -> str:
|
1141
|
-
"""
|
1142
|
-
The notification property value.
|
1143
|
-
"""
|
1144
1120
|
return pulumi.get(self, "value")
|
1145
1121
|
|
1146
1122
|
|
@@ -1149,10 +1125,6 @@ class NotificationDestinationAuthToken(dict):
|
|
1149
1125
|
def __init__(__self__, *,
|
1150
1126
|
token: str,
|
1151
1127
|
prefix: Optional[str] = None):
|
1152
|
-
"""
|
1153
|
-
:param str token: Specifies the token for integrating.
|
1154
|
-
:param str prefix: The prefix of the URL.
|
1155
|
-
"""
|
1156
1128
|
pulumi.set(__self__, "token", token)
|
1157
1129
|
if prefix is not None:
|
1158
1130
|
pulumi.set(__self__, "prefix", prefix)
|
@@ -1160,17 +1132,11 @@ class NotificationDestinationAuthToken(dict):
|
|
1160
1132
|
@property
|
1161
1133
|
@pulumi.getter
|
1162
1134
|
def token(self) -> str:
|
1163
|
-
"""
|
1164
|
-
Specifies the token for integrating.
|
1165
|
-
"""
|
1166
1135
|
return pulumi.get(self, "token")
|
1167
1136
|
|
1168
1137
|
@property
|
1169
1138
|
@pulumi.getter
|
1170
1139
|
def prefix(self) -> Optional[str]:
|
1171
|
-
"""
|
1172
|
-
The prefix of the URL.
|
1173
|
-
"""
|
1174
1140
|
return pulumi.get(self, "prefix")
|
1175
1141
|
|
1176
1142
|
|
@@ -1266,27 +1232,17 @@ class NotificationDestinationSecureUrl(dict):
|
|
1266
1232
|
def __init__(__self__, *,
|
1267
1233
|
prefix: str,
|
1268
1234
|
secure_suffix: str):
|
1269
|
-
"""
|
1270
|
-
:param str prefix: The prefix of the URL.
|
1271
|
-
:param str secure_suffix: The suffix of the URL, which contains sensitive data.
|
1272
|
-
"""
|
1273
1235
|
pulumi.set(__self__, "prefix", prefix)
|
1274
1236
|
pulumi.set(__self__, "secure_suffix", secure_suffix)
|
1275
1237
|
|
1276
1238
|
@property
|
1277
1239
|
@pulumi.getter
|
1278
1240
|
def prefix(self) -> str:
|
1279
|
-
"""
|
1280
|
-
The prefix of the URL.
|
1281
|
-
"""
|
1282
1241
|
return pulumi.get(self, "prefix")
|
1283
1242
|
|
1284
1243
|
@property
|
1285
1244
|
@pulumi.getter(name="secureSuffix")
|
1286
1245
|
def secure_suffix(self) -> str:
|
1287
|
-
"""
|
1288
|
-
The suffix of the URL, which contains sensitive data.
|
1289
|
-
"""
|
1290
1246
|
return pulumi.get(self, "secure_suffix")
|
1291
1247
|
|
1292
1248
|
|
@@ -6980,15 +6936,15 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
6980
6936
|
return super().get(key, default)
|
6981
6937
|
|
6982
6938
|
def __init__(__self__, *,
|
6983
|
-
from_: Optional[
|
6939
|
+
from_: Optional[int] = None,
|
6984
6940
|
name: Optional[str] = None,
|
6985
6941
|
severity: Optional[str] = None,
|
6986
|
-
to: Optional[
|
6942
|
+
to: Optional[int] = None):
|
6987
6943
|
"""
|
6988
|
-
:param
|
6944
|
+
:param int from_: The value 'from' which the threshold would need to be applied.
|
6989
6945
|
:param str name: The title of the dashboard.
|
6990
6946
|
: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.
|
6991
|
-
:param
|
6947
|
+
:param int to: The value until which the threshold would need to be applied.
|
6992
6948
|
"""
|
6993
6949
|
if from_ is not None:
|
6994
6950
|
pulumi.set(__self__, "from_", from_)
|
@@ -7001,7 +6957,7 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
7001
6957
|
|
7002
6958
|
@property
|
7003
6959
|
@pulumi.getter(name="from")
|
7004
|
-
def from_(self) -> Optional[
|
6960
|
+
def from_(self) -> Optional[int]:
|
7005
6961
|
"""
|
7006
6962
|
The value 'from' which the threshold would need to be applied.
|
7007
6963
|
"""
|
@@ -7025,7 +6981,7 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
7025
6981
|
|
7026
6982
|
@property
|
7027
6983
|
@pulumi.getter
|
7028
|
-
def to(self) -> Optional[
|
6984
|
+
def to(self) -> Optional[int]:
|
7029
6985
|
"""
|
7030
6986
|
The value until which the threshold would need to be applied.
|
7031
6987
|
"""
|
@@ -9887,14 +9843,14 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9887
9843
|
|
9888
9844
|
def __init__(__self__, *,
|
9889
9845
|
column_name: Optional[str] = None,
|
9890
|
-
from_: Optional[
|
9846
|
+
from_: Optional[int] = None,
|
9891
9847
|
severity: Optional[str] = None,
|
9892
|
-
to: Optional[
|
9848
|
+
to: Optional[int] = None):
|
9893
9849
|
"""
|
9894
9850
|
:param str column_name: The name of the column in the table, to which the threshold would need to be applied.
|
9895
|
-
:param
|
9851
|
+
:param int from_: The value 'from' which the threshold would need to be applied.
|
9896
9852
|
: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.
|
9897
|
-
:param
|
9853
|
+
:param int to: The value until which the threshold would need to be applied.
|
9898
9854
|
"""
|
9899
9855
|
if column_name is not None:
|
9900
9856
|
pulumi.set(__self__, "column_name", column_name)
|
@@ -9915,7 +9871,7 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9915
9871
|
|
9916
9872
|
@property
|
9917
9873
|
@pulumi.getter(name="from")
|
9918
|
-
def from_(self) -> Optional[
|
9874
|
+
def from_(self) -> Optional[int]:
|
9919
9875
|
"""
|
9920
9876
|
The value 'from' which the threshold would need to be applied.
|
9921
9877
|
"""
|
@@ -9931,7 +9887,7 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9931
9887
|
|
9932
9888
|
@property
|
9933
9889
|
@pulumi.getter
|
9934
|
-
def to(self) -> Optional[
|
9890
|
+
def to(self) -> Optional[int]:
|
9935
9891
|
"""
|
9936
9892
|
The value until which the threshold would need to be applied.
|
9937
9893
|
"""
|
{pulumi_newrelic-5.27.1a1721406901.dist-info → pulumi_newrelic-5.28.0a1721190235.dist-info}/RECORD
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
3
|
-
pulumi_newrelic/_utilities.py,sha256=
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=SJcjf__UJMzSbFVCP8hpJugjE569vR0oiuD3g_3FMNA,495562
|
3
|
+
pulumi_newrelic/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
|
4
4
|
pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=Ivzcqqc2Up7fAgwOeu7yhcwuR64gbI2XjzZ9Lbd-J70,21618
|
6
6
|
pulumi_newrelic/alert_condition.py,sha256=JLgduj2oWsWi9NG89Ffvflzb_6W45MHNw1TJsTbX1Ng,46583
|
@@ -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=Grx8nFd7tVme3Bs9f1Op7z8PAE1QnqlP0NLJFKjwQuQ,487731
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=QWJs7CXJoT6k5SCuq0d8wsKheNwhSFY10zJUso9CKrk,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.
|
87
|
-
pulumi_newrelic-5.
|
88
|
-
pulumi_newrelic-5.
|
89
|
-
pulumi_newrelic-5.
|
86
|
+
pulumi_newrelic-5.28.0a1721190235.dist-info/METADATA,sha256=F3G6Ser2uFCcWbdewHdN154TPiv0ASS0LDkR8opi8O0,3900
|
87
|
+
pulumi_newrelic-5.28.0a1721190235.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
88
|
+
pulumi_newrelic-5.28.0a1721190235.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.28.0a1721190235.dist-info/RECORD,,
|
File without changes
|