pulumi-newrelic 5.45.0a1744438055__py3-none-any.whl → 5.45.0a1744697506__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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.45.0-alpha.1744438055"
4
+ "version": "5.45.0-alpha.1744697506"
5
5
  }
@@ -203,6 +203,7 @@ class _BrokenLinksMonitorState:
203
203
  guid: Optional[pulumi.Input[builtins.str]] = None,
204
204
  locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
205
205
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
206
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
206
207
  name: Optional[pulumi.Input[builtins.str]] = None,
207
208
  period: Optional[pulumi.Input[builtins.str]] = None,
208
209
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -218,6 +219,7 @@ class _BrokenLinksMonitorState:
218
219
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the monitor in New Relic.
219
220
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
220
221
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
222
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the synthetics broken links monitor, not to be confused with the GUID of the monitor.
221
223
  :param pulumi.Input[builtins.str] name: The name for the monitor.
222
224
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
223
225
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -235,6 +237,8 @@ class _BrokenLinksMonitorState:
235
237
  pulumi.set(__self__, "locations_privates", locations_privates)
236
238
  if locations_publics is not None:
237
239
  pulumi.set(__self__, "locations_publics", locations_publics)
240
+ if monitor_id is not None:
241
+ pulumi.set(__self__, "monitor_id", monitor_id)
238
242
  if name is not None:
239
243
  pulumi.set(__self__, "name", name)
240
244
  if period is not None:
@@ -302,6 +306,18 @@ class _BrokenLinksMonitorState:
302
306
  def locations_publics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
303
307
  pulumi.set(self, "locations_publics", value)
304
308
 
309
+ @property
310
+ @pulumi.getter(name="monitorId")
311
+ def monitor_id(self) -> Optional[pulumi.Input[builtins.str]]:
312
+ """
313
+ The monitor id of the synthetics broken links monitor, not to be confused with the GUID of the monitor.
314
+ """
315
+ return pulumi.get(self, "monitor_id")
316
+
317
+ @monitor_id.setter
318
+ def monitor_id(self, value: Optional[pulumi.Input[builtins.str]]):
319
+ pulumi.set(self, "monitor_id", value)
320
+
305
321
  @property
306
322
  @pulumi.getter
307
323
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -617,6 +633,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
617
633
  __props__.__dict__["uri"] = uri
618
634
  __props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
619
635
  __props__.__dict__["guid"] = None
636
+ __props__.__dict__["monitor_id"] = None
620
637
  __props__.__dict__["period_in_minutes"] = None
621
638
  super(BrokenLinksMonitor, __self__).__init__(
622
639
  'newrelic:synthetics/brokenLinksMonitor:BrokenLinksMonitor',
@@ -632,6 +649,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
632
649
  guid: Optional[pulumi.Input[builtins.str]] = None,
633
650
  locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
634
651
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
652
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
635
653
  name: Optional[pulumi.Input[builtins.str]] = None,
636
654
  period: Optional[pulumi.Input[builtins.str]] = None,
637
655
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -652,6 +670,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
652
670
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the monitor in New Relic.
653
671
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
654
672
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
673
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the synthetics broken links monitor, not to be confused with the GUID of the monitor.
655
674
  :param pulumi.Input[builtins.str] name: The name for the monitor.
656
675
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
657
676
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -669,6 +688,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
669
688
  __props__.__dict__["guid"] = guid
670
689
  __props__.__dict__["locations_privates"] = locations_privates
671
690
  __props__.__dict__["locations_publics"] = locations_publics
691
+ __props__.__dict__["monitor_id"] = monitor_id
672
692
  __props__.__dict__["name"] = name
673
693
  __props__.__dict__["period"] = period
674
694
  __props__.__dict__["period_in_minutes"] = period_in_minutes
@@ -712,6 +732,14 @@ class BrokenLinksMonitor(pulumi.CustomResource):
712
732
  """
713
733
  return pulumi.get(self, "locations_publics")
714
734
 
735
+ @property
736
+ @pulumi.getter(name="monitorId")
737
+ def monitor_id(self) -> pulumi.Output[builtins.str]:
738
+ """
739
+ The monitor id of the synthetics broken links monitor, not to be confused with the GUID of the monitor.
740
+ """
741
+ return pulumi.get(self, "monitor_id")
742
+
715
743
  @property
716
744
  @pulumi.getter
717
745
  def name(self) -> pulumi.Output[builtins.str]:
@@ -219,6 +219,7 @@ class _CertCheckMonitorState:
219
219
  domain: Optional[pulumi.Input[builtins.str]] = None,
220
220
  locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
221
221
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
222
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
222
223
  name: Optional[pulumi.Input[builtins.str]] = None,
223
224
  period: Optional[pulumi.Input[builtins.str]] = None,
224
225
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -234,6 +235,7 @@ class _CertCheckMonitorState:
234
235
  :param pulumi.Input[builtins.str] domain: The domain of the host that will have its certificate checked.
235
236
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
236
237
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
238
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the certificate check synthetics monitor (not to be confused with the GUID of the monitor).
237
239
  :param pulumi.Input[builtins.str] name: The name for the monitor.
238
240
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
239
241
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -252,6 +254,8 @@ class _CertCheckMonitorState:
252
254
  pulumi.set(__self__, "locations_privates", locations_privates)
253
255
  if locations_publics is not None:
254
256
  pulumi.set(__self__, "locations_publics", locations_publics)
257
+ if monitor_id is not None:
258
+ pulumi.set(__self__, "monitor_id", monitor_id)
255
259
  if name is not None:
256
260
  pulumi.set(__self__, "name", name)
257
261
  if period is not None:
@@ -329,6 +333,18 @@ class _CertCheckMonitorState:
329
333
  def locations_publics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
330
334
  pulumi.set(self, "locations_publics", value)
331
335
 
336
+ @property
337
+ @pulumi.getter(name="monitorId")
338
+ def monitor_id(self) -> Optional[pulumi.Input[builtins.str]]:
339
+ """
340
+ The monitor id of the certificate check synthetics monitor (not to be confused with the GUID of the monitor).
341
+ """
342
+ return pulumi.get(self, "monitor_id")
343
+
344
+ @monitor_id.setter
345
+ def monitor_id(self, value: Optional[pulumi.Input[builtins.str]]):
346
+ pulumi.set(self, "monitor_id", value)
347
+
332
348
  @property
333
349
  @pulumi.getter
334
350
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -641,6 +657,7 @@ class CertCheckMonitor(pulumi.CustomResource):
641
657
  __props__.__dict__["status"] = status
642
658
  __props__.__dict__["tags"] = tags
643
659
  __props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
660
+ __props__.__dict__["monitor_id"] = None
644
661
  __props__.__dict__["period_in_minutes"] = None
645
662
  super(CertCheckMonitor, __self__).__init__(
646
663
  'newrelic:synthetics/certCheckMonitor:CertCheckMonitor',
@@ -657,6 +674,7 @@ class CertCheckMonitor(pulumi.CustomResource):
657
674
  domain: Optional[pulumi.Input[builtins.str]] = None,
658
675
  locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
659
676
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
677
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
660
678
  name: Optional[pulumi.Input[builtins.str]] = None,
661
679
  period: Optional[pulumi.Input[builtins.str]] = None,
662
680
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -677,6 +695,7 @@ class CertCheckMonitor(pulumi.CustomResource):
677
695
  :param pulumi.Input[builtins.str] domain: The domain of the host that will have its certificate checked.
678
696
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
679
697
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
698
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the certificate check synthetics monitor (not to be confused with the GUID of the monitor).
680
699
  :param pulumi.Input[builtins.str] name: The name for the monitor.
681
700
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
682
701
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -694,6 +713,7 @@ class CertCheckMonitor(pulumi.CustomResource):
694
713
  __props__.__dict__["domain"] = domain
695
714
  __props__.__dict__["locations_privates"] = locations_privates
696
715
  __props__.__dict__["locations_publics"] = locations_publics
716
+ __props__.__dict__["monitor_id"] = monitor_id
697
717
  __props__.__dict__["name"] = name
698
718
  __props__.__dict__["period"] = period
699
719
  __props__.__dict__["period_in_minutes"] = period_in_minutes
@@ -744,6 +764,14 @@ class CertCheckMonitor(pulumi.CustomResource):
744
764
  """
745
765
  return pulumi.get(self, "locations_publics")
746
766
 
767
+ @property
768
+ @pulumi.getter(name="monitorId")
769
+ def monitor_id(self) -> pulumi.Output[builtins.str]:
770
+ """
771
+ The monitor id of the certificate check synthetics monitor (not to be confused with the GUID of the monitor).
772
+ """
773
+ return pulumi.get(self, "monitor_id")
774
+
747
775
  @property
748
776
  @pulumi.getter
749
777
  def name(self) -> pulumi.Output[builtins.str]:
@@ -414,6 +414,7 @@ class _MonitorState:
414
414
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[builtins.bool]] = None,
415
415
  locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
416
416
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
417
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
417
418
  name: Optional[pulumi.Input[builtins.str]] = None,
418
419
  period: Optional[pulumi.Input[builtins.str]] = None,
419
420
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -444,6 +445,7 @@ class _MonitorState:
444
445
  :param pulumi.Input[builtins.bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
445
446
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
446
447
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
448
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the Synthetics monitor (not to be confused with the GUID of the monitor).
447
449
  :param pulumi.Input[builtins.str] name: The human-readable identifier for the monitor.
448
450
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
449
451
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -480,6 +482,8 @@ class _MonitorState:
480
482
  pulumi.set(__self__, "locations_privates", locations_privates)
481
483
  if locations_publics is not None:
482
484
  pulumi.set(__self__, "locations_publics", locations_publics)
485
+ if monitor_id is not None:
486
+ pulumi.set(__self__, "monitor_id", monitor_id)
483
487
  if name is not None:
484
488
  pulumi.set(__self__, "name", name)
485
489
  if period is not None:
@@ -633,6 +637,18 @@ class _MonitorState:
633
637
  def locations_publics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
634
638
  pulumi.set(self, "locations_publics", value)
635
639
 
640
+ @property
641
+ @pulumi.getter(name="monitorId")
642
+ def monitor_id(self) -> Optional[pulumi.Input[builtins.str]]:
643
+ """
644
+ The monitor id of the Synthetics monitor (not to be confused with the GUID of the monitor).
645
+ """
646
+ return pulumi.get(self, "monitor_id")
647
+
648
+ @monitor_id.setter
649
+ def monitor_id(self, value: Optional[pulumi.Input[builtins.str]]):
650
+ pulumi.set(self, "monitor_id", value)
651
+
636
652
  @property
637
653
  @pulumi.getter
638
654
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -1241,6 +1257,7 @@ class Monitor(pulumi.CustomResource):
1241
1257
  __props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
1242
1258
  __props__.__dict__["validation_string"] = validation_string
1243
1259
  __props__.__dict__["verify_ssl"] = verify_ssl
1260
+ __props__.__dict__["monitor_id"] = None
1244
1261
  __props__.__dict__["period_in_minutes"] = None
1245
1262
  super(Monitor, __self__).__init__(
1246
1263
  'newrelic:synthetics/monitor:Monitor',
@@ -1262,6 +1279,7 @@ class Monitor(pulumi.CustomResource):
1262
1279
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[builtins.bool]] = None,
1263
1280
  locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1264
1281
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1282
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
1265
1283
  name: Optional[pulumi.Input[builtins.str]] = None,
1266
1284
  period: Optional[pulumi.Input[builtins.str]] = None,
1267
1285
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -1297,6 +1315,7 @@ class Monitor(pulumi.CustomResource):
1297
1315
  :param pulumi.Input[builtins.bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
1298
1316
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
1299
1317
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
1318
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the Synthetics monitor (not to be confused with the GUID of the monitor).
1300
1319
  :param pulumi.Input[builtins.str] name: The human-readable identifier for the monitor.
1301
1320
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
1302
1321
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -1327,6 +1346,7 @@ class Monitor(pulumi.CustomResource):
1327
1346
  __props__.__dict__["enable_screenshot_on_failure_and_script"] = enable_screenshot_on_failure_and_script
1328
1347
  __props__.__dict__["locations_privates"] = locations_privates
1329
1348
  __props__.__dict__["locations_publics"] = locations_publics
1349
+ __props__.__dict__["monitor_id"] = monitor_id
1330
1350
  __props__.__dict__["name"] = name
1331
1351
  __props__.__dict__["period"] = period
1332
1352
  __props__.__dict__["period_in_minutes"] = period_in_minutes
@@ -1427,6 +1447,14 @@ class Monitor(pulumi.CustomResource):
1427
1447
  """
1428
1448
  return pulumi.get(self, "locations_publics")
1429
1449
 
1450
+ @property
1451
+ @pulumi.getter(name="monitorId")
1452
+ def monitor_id(self) -> pulumi.Output[builtins.str]:
1453
+ """
1454
+ The monitor id of the Synthetics monitor (not to be confused with the GUID of the monitor).
1455
+ """
1456
+ return pulumi.get(self, "monitor_id")
1457
+
1430
1458
  @property
1431
1459
  @pulumi.getter
1432
1460
  def name(self) -> pulumi.Output[builtins.str]:
@@ -324,6 +324,7 @@ class _ScriptMonitorState:
324
324
  guid: Optional[pulumi.Input[builtins.str]] = None,
325
325
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptMonitorLocationPrivateArgs']]]] = None,
326
326
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
327
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
327
328
  name: Optional[pulumi.Input[builtins.str]] = None,
328
329
  period: Optional[pulumi.Input[builtins.str]] = None,
329
330
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -346,6 +347,7 @@ class _ScriptMonitorState:
346
347
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the monitor in New Relic.
347
348
  :param pulumi.Input[Sequence[pulumi.Input['ScriptMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. See Nested location_private blocks below for details. **At least one of either** `locations_public` **or** `location_private` **is required**.
348
349
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. The `AWS_` prefix is not needed, as the provider uses NerdGraph. **At least one of either** `locations_public` **or** `location_private` **is required**.
350
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the Synthetics script monitor (not to be confused with the GUID of the monitor).
349
351
  :param pulumi.Input[builtins.str] name: The name for the monitor.
350
352
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
351
353
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -377,6 +379,8 @@ class _ScriptMonitorState:
377
379
  pulumi.set(__self__, "location_privates", location_privates)
378
380
  if locations_publics is not None:
379
381
  pulumi.set(__self__, "locations_publics", locations_publics)
382
+ if monitor_id is not None:
383
+ pulumi.set(__self__, "monitor_id", monitor_id)
380
384
  if name is not None:
381
385
  pulumi.set(__self__, "name", name)
382
386
  if period is not None:
@@ -508,6 +512,18 @@ class _ScriptMonitorState:
508
512
  def locations_publics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
509
513
  pulumi.set(self, "locations_publics", value)
510
514
 
515
+ @property
516
+ @pulumi.getter(name="monitorId")
517
+ def monitor_id(self) -> Optional[pulumi.Input[builtins.str]]:
518
+ """
519
+ The monitor id of the Synthetics script monitor (not to be confused with the GUID of the monitor).
520
+ """
521
+ return pulumi.get(self, "monitor_id")
522
+
523
+ @monitor_id.setter
524
+ def monitor_id(self, value: Optional[pulumi.Input[builtins.str]]):
525
+ pulumi.set(self, "monitor_id", value)
526
+
511
527
  @property
512
528
  @pulumi.getter
513
529
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -1043,6 +1059,7 @@ class ScriptMonitor(pulumi.CustomResource):
1043
1059
  __props__.__dict__["type"] = type
1044
1060
  __props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
1045
1061
  __props__.__dict__["guid"] = None
1062
+ __props__.__dict__["monitor_id"] = None
1046
1063
  __props__.__dict__["period_in_minutes"] = None
1047
1064
  super(ScriptMonitor, __self__).__init__(
1048
1065
  'newrelic:synthetics/scriptMonitor:ScriptMonitor',
@@ -1063,6 +1080,7 @@ class ScriptMonitor(pulumi.CustomResource):
1063
1080
  guid: Optional[pulumi.Input[builtins.str]] = None,
1064
1081
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorLocationPrivateArgs', 'ScriptMonitorLocationPrivateArgsDict']]]]] = None,
1065
1082
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1083
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
1066
1084
  name: Optional[pulumi.Input[builtins.str]] = None,
1067
1085
  period: Optional[pulumi.Input[builtins.str]] = None,
1068
1086
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -1090,6 +1108,7 @@ class ScriptMonitor(pulumi.CustomResource):
1090
1108
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the monitor in New Relic.
1091
1109
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorLocationPrivateArgs', 'ScriptMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. See Nested location_private blocks below for details. **At least one of either** `locations_public` **or** `location_private` **is required**.
1092
1110
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. The `AWS_` prefix is not needed, as the provider uses NerdGraph. **At least one of either** `locations_public` **or** `location_private` **is required**.
1111
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the Synthetics script monitor (not to be confused with the GUID of the monitor).
1093
1112
  :param pulumi.Input[builtins.str] name: The name for the monitor.
1094
1113
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
1095
1114
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -1116,6 +1135,7 @@ class ScriptMonitor(pulumi.CustomResource):
1116
1135
  __props__.__dict__["guid"] = guid
1117
1136
  __props__.__dict__["location_privates"] = location_privates
1118
1137
  __props__.__dict__["locations_publics"] = locations_publics
1138
+ __props__.__dict__["monitor_id"] = monitor_id
1119
1139
  __props__.__dict__["name"] = name
1120
1140
  __props__.__dict__["period"] = period
1121
1141
  __props__.__dict__["period_in_minutes"] = period_in_minutes
@@ -1201,6 +1221,14 @@ class ScriptMonitor(pulumi.CustomResource):
1201
1221
  """
1202
1222
  return pulumi.get(self, "locations_publics")
1203
1223
 
1224
+ @property
1225
+ @pulumi.getter(name="monitorId")
1226
+ def monitor_id(self) -> pulumi.Output[builtins.str]:
1227
+ """
1228
+ The monitor id of the Synthetics script monitor (not to be confused with the GUID of the monitor).
1229
+ """
1230
+ return pulumi.get(self, "monitor_id")
1231
+
1204
1232
  @property
1205
1233
  @pulumi.getter
1206
1234
  def name(self) -> pulumi.Output[builtins.str]:
@@ -254,6 +254,7 @@ class _StepMonitorState:
254
254
  guid: Optional[pulumi.Input[builtins.str]] = None,
255
255
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]]] = None,
256
256
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
257
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
257
258
  name: Optional[pulumi.Input[builtins.str]] = None,
258
259
  period: Optional[pulumi.Input[builtins.str]] = None,
259
260
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -272,6 +273,7 @@ class _StepMonitorState:
272
273
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the monitor in New Relic.
273
274
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
274
275
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
276
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the synthetics step monitor (not to be confused with the GUID of the monitor).
275
277
  :param pulumi.Input[builtins.str] name: The name for the monitor.
276
278
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
277
279
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -295,6 +297,8 @@ class _StepMonitorState:
295
297
  pulumi.set(__self__, "location_privates", location_privates)
296
298
  if locations_publics is not None:
297
299
  pulumi.set(__self__, "locations_publics", locations_publics)
300
+ if monitor_id is not None:
301
+ pulumi.set(__self__, "monitor_id", monitor_id)
298
302
  if name is not None:
299
303
  pulumi.set(__self__, "name", name)
300
304
  if period is not None:
@@ -398,6 +402,18 @@ class _StepMonitorState:
398
402
  def locations_publics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
399
403
  pulumi.set(self, "locations_publics", value)
400
404
 
405
+ @property
406
+ @pulumi.getter(name="monitorId")
407
+ def monitor_id(self) -> Optional[pulumi.Input[builtins.str]]:
408
+ """
409
+ The monitor id of the synthetics step monitor (not to be confused with the GUID of the monitor).
410
+ """
411
+ return pulumi.get(self, "monitor_id")
412
+
413
+ @monitor_id.setter
414
+ def monitor_id(self, value: Optional[pulumi.Input[builtins.str]]):
415
+ pulumi.set(self, "monitor_id", value)
416
+
401
417
  @property
402
418
  @pulumi.getter
403
419
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -783,6 +799,7 @@ class StepMonitor(pulumi.CustomResource):
783
799
  __props__.__dict__["tags"] = tags
784
800
  __props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
785
801
  __props__.__dict__["guid"] = None
802
+ __props__.__dict__["monitor_id"] = None
786
803
  __props__.__dict__["period_in_minutes"] = None
787
804
  super(StepMonitor, __self__).__init__(
788
805
  'newrelic:synthetics/stepMonitor:StepMonitor',
@@ -801,6 +818,7 @@ class StepMonitor(pulumi.CustomResource):
801
818
  guid: Optional[pulumi.Input[builtins.str]] = None,
802
819
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]]] = None,
803
820
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
821
+ monitor_id: Optional[pulumi.Input[builtins.str]] = None,
804
822
  name: Optional[pulumi.Input[builtins.str]] = None,
805
823
  period: Optional[pulumi.Input[builtins.str]] = None,
806
824
  period_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
@@ -824,6 +842,7 @@ class StepMonitor(pulumi.CustomResource):
824
842
  :param pulumi.Input[builtins.str] guid: The unique entity identifier of the monitor in New Relic.
825
843
  :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
826
844
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
845
+ :param pulumi.Input[builtins.str] monitor_id: The monitor id of the synthetics step monitor (not to be confused with the GUID of the monitor).
827
846
  :param pulumi.Input[builtins.str] name: The name for the monitor.
828
847
  :param pulumi.Input[builtins.str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
829
848
  :param pulumi.Input[builtins.int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
@@ -844,6 +863,7 @@ class StepMonitor(pulumi.CustomResource):
844
863
  __props__.__dict__["guid"] = guid
845
864
  __props__.__dict__["location_privates"] = location_privates
846
865
  __props__.__dict__["locations_publics"] = locations_publics
866
+ __props__.__dict__["monitor_id"] = monitor_id
847
867
  __props__.__dict__["name"] = name
848
868
  __props__.__dict__["period"] = period
849
869
  __props__.__dict__["period_in_minutes"] = period_in_minutes
@@ -911,6 +931,14 @@ class StepMonitor(pulumi.CustomResource):
911
931
  """
912
932
  return pulumi.get(self, "locations_publics")
913
933
 
934
+ @property
935
+ @pulumi.getter(name="monitorId")
936
+ def monitor_id(self) -> pulumi.Output[builtins.str]:
937
+ """
938
+ The monitor id of the synthetics step monitor (not to be confused with the GUID of the monitor).
939
+ """
940
+ return pulumi.get(self, "monitor_id")
941
+
914
942
  @property
915
943
  @pulumi.getter
916
944
  def name(self) -> pulumi.Output[builtins.str]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_newrelic
3
- Version: 5.45.0a1744438055
3
+ Version: 5.45.0a1744697506
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
@@ -42,7 +42,7 @@ pulumi_newrelic/one_dashboard_json.py,sha256=SyY-wAgSxL1F0pcdW3QxVwzQjFTzn0_WNHu
42
42
  pulumi_newrelic/one_dashboard_raw.py,sha256=wclScb_x306vkpe1x2Je0nT4jsQmAx9L6atfkAKyTT0,24314
43
43
  pulumi_newrelic/outputs.py,sha256=IpwhOLBwcfvRHycFTaaoLneQcTWPWRwkeJ-HhvvJly4,605102
44
44
  pulumi_newrelic/provider.py,sha256=SggmvrccVnHfa8ylypIBe3UTufSg7xF3pJ5pGzcz0OQ,19220
45
- pulumi_newrelic/pulumi-plugin.json,sha256=AZ5vJWNcdIcU8ie5Bp-I0jM_TFibxIVVrXOytBzXQ3o,85
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=wEX8hBQgZgF_eMAS2Xcbj85QphsIUkBQiMyR2aGNEA4,85
46
46
  pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  pulumi_newrelic/service_level.py,sha256=atYukzatFuzkCsQ1SzFUsZuC2K7D9bL4BzKPqPe9_v8,29500
48
48
  pulumi_newrelic/user.py,sha256=vKkE7ZrvyojitScis3dGTjAG027KwOAX9D0qdBFK5Vk,19636
@@ -73,18 +73,18 @@ pulumi_newrelic/plugins/workload.py,sha256=BpHoCQw6NSy3HAaIHV-x43sjyuo_kEhGp4rJf
73
73
  pulumi_newrelic/synthetics/__init__.py,sha256=UeQRfGDlKrXvgqLw-6IxLZyYzeCqH_b86qSrFXihJO0,696
74
74
  pulumi_newrelic/synthetics/_inputs.py,sha256=Qdldup5YSWB3oghUonYgi3oo9kZ6EwXD1e2WkT3n1T0,19641
75
75
  pulumi_newrelic/synthetics/alert_condition.py,sha256=GP14RaQ35FJzepCGYawsAfkX26L4oFUpKEqsX8EAOgI,22468
76
- pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=GVBEcyhfCNx6XVst-f-2LRJR3w9xdzNXBrfjCMggAWU,38744
77
- pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=D_j59fC1ADjM-B1aVKSO68UCCCNHxAk8Gx2XmBlOVZ0,40883
76
+ pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=DfsLOUMjTZipg_KxF0G-qYCbgjYTLRVYRsyZn2FjfNI,40135
77
+ pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=2wRCihtSdPgxs1U2uvT-K_gjTzWpcKSz2j2DgnVc2KI,42298
78
78
  pulumi_newrelic/synthetics/get_private_location.py,sha256=2pel2R92y7oqINOhir-arDw9VgtxAmEWqHyV-9dI-zY,6639
79
79
  pulumi_newrelic/synthetics/get_secure_credential.py,sha256=NodFereL1rvsGBQzpK3yHNrugIzdy3iERWTi7nyKgnE,6438
80
- pulumi_newrelic/synthetics/monitor.py,sha256=1gLkI7J0b2Kq9g8hTwpFfsRkl3VnBKGcueh9u0_F6dI,77891
80
+ pulumi_newrelic/synthetics/monitor.py,sha256=X0qiIhUTb78UL8100YImhHYJaUX7qyYHOcQoQvy98vw,79234
81
81
  pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=n_iTb6OieWp_5N7YzgomuFjBKJtXp938qyeMScvNLPU,35669
82
82
  pulumi_newrelic/synthetics/outputs.py,sha256=830xXyikEURoCzFGzPhN3P24STqD6j-bHzqapGexWYE,11974
83
83
  pulumi_newrelic/synthetics/private_location.py,sha256=dsC0aFKDrcTh73BhTUht5MfSJddFvfQFDIHUApgiBoA,18245
84
- pulumi_newrelic/synthetics/script_monitor.py,sha256=iWgXoRSWniobmtpNE6h5X5gvCBKGqG-sKebUW2fqcKk,68342
84
+ pulumi_newrelic/synthetics/script_monitor.py,sha256=G8TEwL_PSTExY04iCQL37ZaUZWbpdlQjzi8JPTHpzUY,69713
85
85
  pulumi_newrelic/synthetics/secure_credential.py,sha256=eJT70RioesqYFZpp_mGZI1kGq86aGKrYVQ2ruxjyclU,16422
86
- pulumi_newrelic/synthetics/step_monitor.py,sha256=bDXR_1RS13VBZ1pR5ywtAOqDwAgLURHnUkHf4MSoz7I,50608
87
- pulumi_newrelic-5.45.0a1744438055.dist-info/METADATA,sha256=KVOh70vvAWnmmIPDv4nV_leWkckVCW1A0HG94o0jndk,3963
88
- pulumi_newrelic-5.45.0a1744438055.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
89
- pulumi_newrelic-5.45.0a1744438055.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
- pulumi_newrelic-5.45.0a1744438055.dist-info/RECORD,,
86
+ pulumi_newrelic/synthetics/step_monitor.py,sha256=ncDR1e_phoIm1rnpn5ETDuS534qnFt6KKoqAteh9ROg,51971
87
+ pulumi_newrelic-5.45.0a1744697506.dist-info/METADATA,sha256=7iPauHpGSusD6bftMqc6KqqCyNr5i1jTKJAX1eubYsc,3963
88
+ pulumi_newrelic-5.45.0a1744697506.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
89
+ pulumi_newrelic-5.45.0a1744697506.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.45.0a1744697506.dist-info/RECORD,,