pulumi-newrelic 5.28.0a1721190235__py3-none-any.whl → 5.28.0a1721333308__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.
@@ -1115,12 +1115,19 @@ class NotificationDestinationAuthBasicArgs:
1115
1115
  def __init__(__self__, *,
1116
1116
  password: pulumi.Input[str],
1117
1117
  user: pulumi.Input[str]):
1118
+ """
1119
+ :param pulumi.Input[str] password: Specifies an authentication password for use with a destination.
1120
+ :param pulumi.Input[str] user: The username of the basic auth.
1121
+ """
1118
1122
  pulumi.set(__self__, "password", password)
1119
1123
  pulumi.set(__self__, "user", user)
1120
1124
 
1121
1125
  @property
1122
1126
  @pulumi.getter
1123
1127
  def password(self) -> pulumi.Input[str]:
1128
+ """
1129
+ Specifies an authentication password for use with a destination.
1130
+ """
1124
1131
  return pulumi.get(self, "password")
1125
1132
 
1126
1133
  @password.setter
@@ -1130,6 +1137,9 @@ class NotificationDestinationAuthBasicArgs:
1130
1137
  @property
1131
1138
  @pulumi.getter
1132
1139
  def user(self) -> pulumi.Input[str]:
1140
+ """
1141
+ The username of the basic auth.
1142
+ """
1133
1143
  return pulumi.get(self, "user")
1134
1144
 
1135
1145
  @user.setter
@@ -1142,12 +1152,19 @@ class NotificationDestinationAuthCustomHeaderArgs:
1142
1152
  def __init__(__self__, *,
1143
1153
  key: pulumi.Input[str],
1144
1154
  value: pulumi.Input[str]):
1155
+ """
1156
+ :param pulumi.Input[str] key: The notification property key.
1157
+ :param pulumi.Input[str] value: The notification property value.
1158
+ """
1145
1159
  pulumi.set(__self__, "key", key)
1146
1160
  pulumi.set(__self__, "value", value)
1147
1161
 
1148
1162
  @property
1149
1163
  @pulumi.getter
1150
1164
  def key(self) -> pulumi.Input[str]:
1165
+ """
1166
+ The notification property key.
1167
+ """
1151
1168
  return pulumi.get(self, "key")
1152
1169
 
1153
1170
  @key.setter
@@ -1157,6 +1174,9 @@ class NotificationDestinationAuthCustomHeaderArgs:
1157
1174
  @property
1158
1175
  @pulumi.getter
1159
1176
  def value(self) -> pulumi.Input[str]:
1177
+ """
1178
+ The notification property value.
1179
+ """
1160
1180
  return pulumi.get(self, "value")
1161
1181
 
1162
1182
  @value.setter
@@ -1169,6 +1189,10 @@ class NotificationDestinationAuthTokenArgs:
1169
1189
  def __init__(__self__, *,
1170
1190
  token: pulumi.Input[str],
1171
1191
  prefix: Optional[pulumi.Input[str]] = None):
1192
+ """
1193
+ :param pulumi.Input[str] token: Specifies the token for integrating.
1194
+ :param pulumi.Input[str] prefix: The prefix of the URL.
1195
+ """
1172
1196
  pulumi.set(__self__, "token", token)
1173
1197
  if prefix is not None:
1174
1198
  pulumi.set(__self__, "prefix", prefix)
@@ -1176,6 +1200,9 @@ class NotificationDestinationAuthTokenArgs:
1176
1200
  @property
1177
1201
  @pulumi.getter
1178
1202
  def token(self) -> pulumi.Input[str]:
1203
+ """
1204
+ Specifies the token for integrating.
1205
+ """
1179
1206
  return pulumi.get(self, "token")
1180
1207
 
1181
1208
  @token.setter
@@ -1185,6 +1212,9 @@ class NotificationDestinationAuthTokenArgs:
1185
1212
  @property
1186
1213
  @pulumi.getter
1187
1214
  def prefix(self) -> Optional[pulumi.Input[str]]:
1215
+ """
1216
+ The prefix of the URL.
1217
+ """
1188
1218
  return pulumi.get(self, "prefix")
1189
1219
 
1190
1220
  @prefix.setter
@@ -1266,12 +1296,19 @@ class NotificationDestinationSecureUrlArgs:
1266
1296
  def __init__(__self__, *,
1267
1297
  prefix: pulumi.Input[str],
1268
1298
  secure_suffix: pulumi.Input[str]):
1299
+ """
1300
+ :param pulumi.Input[str] prefix: The prefix of the URL.
1301
+ :param pulumi.Input[str] secure_suffix: The suffix of the URL, which contains sensitive data.
1302
+ """
1269
1303
  pulumi.set(__self__, "prefix", prefix)
1270
1304
  pulumi.set(__self__, "secure_suffix", secure_suffix)
1271
1305
 
1272
1306
  @property
1273
1307
  @pulumi.getter
1274
1308
  def prefix(self) -> pulumi.Input[str]:
1309
+ """
1310
+ The prefix of the URL.
1311
+ """
1275
1312
  return pulumi.get(self, "prefix")
1276
1313
 
1277
1314
  @prefix.setter
@@ -1281,6 +1318,9 @@ class NotificationDestinationSecureUrlArgs:
1281
1318
  @property
1282
1319
  @pulumi.getter(name="secureSuffix")
1283
1320
  def secure_suffix(self) -> pulumi.Input[str]:
1321
+ """
1322
+ The suffix of the URL, which contains sensitive data.
1323
+ """
1284
1324
  return pulumi.get(self, "secure_suffix")
1285
1325
 
1286
1326
  @secure_suffix.setter
@@ -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
@@ -1087,17 +1087,27 @@ class NotificationDestinationAuthBasic(dict):
1087
1087
  def __init__(__self__, *,
1088
1088
  password: str,
1089
1089
  user: str):
1090
+ """
1091
+ :param str password: Specifies an authentication password for use with a destination.
1092
+ :param str user: The username of the basic auth.
1093
+ """
1090
1094
  pulumi.set(__self__, "password", password)
1091
1095
  pulumi.set(__self__, "user", user)
1092
1096
 
1093
1097
  @property
1094
1098
  @pulumi.getter
1095
1099
  def password(self) -> str:
1100
+ """
1101
+ Specifies an authentication password for use with a destination.
1102
+ """
1096
1103
  return pulumi.get(self, "password")
1097
1104
 
1098
1105
  @property
1099
1106
  @pulumi.getter
1100
1107
  def user(self) -> str:
1108
+ """
1109
+ The username of the basic auth.
1110
+ """
1101
1111
  return pulumi.get(self, "user")
1102
1112
 
1103
1113
 
@@ -1106,17 +1116,27 @@ class NotificationDestinationAuthCustomHeader(dict):
1106
1116
  def __init__(__self__, *,
1107
1117
  key: str,
1108
1118
  value: str):
1119
+ """
1120
+ :param str key: The notification property key.
1121
+ :param str value: The notification property value.
1122
+ """
1109
1123
  pulumi.set(__self__, "key", key)
1110
1124
  pulumi.set(__self__, "value", value)
1111
1125
 
1112
1126
  @property
1113
1127
  @pulumi.getter
1114
1128
  def key(self) -> str:
1129
+ """
1130
+ The notification property key.
1131
+ """
1115
1132
  return pulumi.get(self, "key")
1116
1133
 
1117
1134
  @property
1118
1135
  @pulumi.getter
1119
1136
  def value(self) -> str:
1137
+ """
1138
+ The notification property value.
1139
+ """
1120
1140
  return pulumi.get(self, "value")
1121
1141
 
1122
1142
 
@@ -1125,6 +1145,10 @@ class NotificationDestinationAuthToken(dict):
1125
1145
  def __init__(__self__, *,
1126
1146
  token: str,
1127
1147
  prefix: Optional[str] = None):
1148
+ """
1149
+ :param str token: Specifies the token for integrating.
1150
+ :param str prefix: The prefix of the URL.
1151
+ """
1128
1152
  pulumi.set(__self__, "token", token)
1129
1153
  if prefix is not None:
1130
1154
  pulumi.set(__self__, "prefix", prefix)
@@ -1132,11 +1156,17 @@ class NotificationDestinationAuthToken(dict):
1132
1156
  @property
1133
1157
  @pulumi.getter
1134
1158
  def token(self) -> str:
1159
+ """
1160
+ Specifies the token for integrating.
1161
+ """
1135
1162
  return pulumi.get(self, "token")
1136
1163
 
1137
1164
  @property
1138
1165
  @pulumi.getter
1139
1166
  def prefix(self) -> Optional[str]:
1167
+ """
1168
+ The prefix of the URL.
1169
+ """
1140
1170
  return pulumi.get(self, "prefix")
1141
1171
 
1142
1172
 
@@ -1232,17 +1262,27 @@ class NotificationDestinationSecureUrl(dict):
1232
1262
  def __init__(__self__, *,
1233
1263
  prefix: str,
1234
1264
  secure_suffix: str):
1265
+ """
1266
+ :param str prefix: The prefix of the URL.
1267
+ :param str secure_suffix: The suffix of the URL, which contains sensitive data.
1268
+ """
1235
1269
  pulumi.set(__self__, "prefix", prefix)
1236
1270
  pulumi.set(__self__, "secure_suffix", secure_suffix)
1237
1271
 
1238
1272
  @property
1239
1273
  @pulumi.getter
1240
1274
  def prefix(self) -> str:
1275
+ """
1276
+ The prefix of the URL.
1277
+ """
1241
1278
  return pulumi.get(self, "prefix")
1242
1279
 
1243
1280
  @property
1244
1281
  @pulumi.getter(name="secureSuffix")
1245
1282
  def secure_suffix(self) -> str:
1283
+ """
1284
+ The suffix of the URL, which contains sensitive data.
1285
+ """
1246
1286
  return pulumi.get(self, "secure_suffix")
1247
1287
 
1248
1288
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.28.0-alpha.1721190235"
4
+ "version": "5.28.0-alpha.1721333308"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.28.0a1721190235
3
+ Version: 5.28.0a1721333308
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=tlJAgkoO8bFeIgUCkD5OxDHWDvAK9nt3dCTF2aK4pr8,496840
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=oHb505qUY6HUbnJEcHAoHJqeeZQstYKndumP2dav5DE,488897
43
43
  pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
44
- pulumi_newrelic/pulumi-plugin.json,sha256=QWJs7CXJoT6k5SCuq0d8wsKheNwhSFY10zJUso9CKrk,85
44
+ pulumi_newrelic/pulumi-plugin.json,sha256=pwtLUcse7GcaczTIgAkpy1FHShJ3wpPFE3j1Znkr4YM,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.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,,
86
+ pulumi_newrelic-5.28.0a1721333308.dist-info/METADATA,sha256=VABFFXD7qv6uxFlTPDybtoxJo7KpQOJEOTjDrHvnwow,3900
87
+ pulumi_newrelic-5.28.0a1721333308.dist-info/WHEEL,sha256=-oYQCr74JF3a37z2nRlQays_SX2MqOANoqVjBBAP2yE,91
88
+ pulumi_newrelic-5.28.0a1721333308.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
+ pulumi_newrelic-5.28.0a1721333308.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