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