pulumi-newrelic 5.26.0__py3-none-any.whl → 5.26.0a1717135317__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.
@@ -368,11 +368,13 @@ class NrqlAlertConditionArgs:
368
368
 
369
369
  @property
370
370
  @pulumi.getter
371
- @_utilities.deprecated("""use `critical` and `warning` attributes instead""")
372
371
  def terms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NrqlAlertConditionTermArgs']]]]:
373
372
  """
374
373
  **DEPRECATED** Use `critical`, and `warning` instead. A list of terms for this condition. See Terms below for details.
375
374
  """
375
+ warnings.warn("""use `critical` and `warning` attributes instead""", DeprecationWarning)
376
+ pulumi.log.warn("""terms is deprecated: use `critical` and `warning` attributes instead""")
377
+
376
378
  return pulumi.get(self, "terms")
377
379
 
378
380
  @terms.setter
@@ -393,12 +395,14 @@ class NrqlAlertConditionArgs:
393
395
 
394
396
  @property
395
397
  @pulumi.getter(name="violationTimeLimit")
396
- @_utilities.deprecated("""use `violation_time_limit_seconds` attribute instead""")
397
398
  def violation_time_limit(self) -> Optional[pulumi.Input[str]]:
398
399
  """
399
400
  **DEPRECATED:** Use `violation_time_limit_seconds` instead. Sets a time limit, in hours, that will automatically force-close a long-lasting incident after the time limit you select. Possible values are `ONE_HOUR`, `TWO_HOURS`, `FOUR_HOURS`, `EIGHT_HOURS`, `TWELVE_HOURS`, `TWENTY_FOUR_HOURS`, `THIRTY_DAYS` (case insensitive).<br>
400
401
  <small>\\***Note**: One of `violation_time_limit` _or_ `violation_time_limit_seconds` must be set, but not both.</small>
401
402
  """
403
+ warnings.warn("""use `violation_time_limit_seconds` attribute instead""", DeprecationWarning)
404
+ pulumi.log.warn("""violation_time_limit is deprecated: use `violation_time_limit_seconds` attribute instead""")
405
+
402
406
  return pulumi.get(self, "violation_time_limit")
403
407
 
404
408
  @violation_time_limit.setter
@@ -804,11 +808,13 @@ class _NrqlAlertConditionState:
804
808
 
805
809
  @property
806
810
  @pulumi.getter
807
- @_utilities.deprecated("""use `critical` and `warning` attributes instead""")
808
811
  def terms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NrqlAlertConditionTermArgs']]]]:
809
812
  """
810
813
  **DEPRECATED** Use `critical`, and `warning` instead. A list of terms for this condition. See Terms below for details.
811
814
  """
815
+ warnings.warn("""use `critical` and `warning` attributes instead""", DeprecationWarning)
816
+ pulumi.log.warn("""terms is deprecated: use `critical` and `warning` attributes instead""")
817
+
812
818
  return pulumi.get(self, "terms")
813
819
 
814
820
  @terms.setter
@@ -829,12 +835,14 @@ class _NrqlAlertConditionState:
829
835
 
830
836
  @property
831
837
  @pulumi.getter(name="violationTimeLimit")
832
- @_utilities.deprecated("""use `violation_time_limit_seconds` attribute instead""")
833
838
  def violation_time_limit(self) -> Optional[pulumi.Input[str]]:
834
839
  """
835
840
  **DEPRECATED:** Use `violation_time_limit_seconds` instead. Sets a time limit, in hours, that will automatically force-close a long-lasting incident after the time limit you select. Possible values are `ONE_HOUR`, `TWO_HOURS`, `FOUR_HOURS`, `EIGHT_HOURS`, `TWELVE_HOURS`, `TWENTY_FOUR_HOURS`, `THIRTY_DAYS` (case insensitive).<br>
836
841
  <small>\\***Note**: One of `violation_time_limit` _or_ `violation_time_limit_seconds` must be set, but not both.</small>
837
842
  """
843
+ warnings.warn("""use `violation_time_limit_seconds` attribute instead""", DeprecationWarning)
844
+ pulumi.log.warn("""violation_time_limit is deprecated: use `violation_time_limit_seconds` attribute instead""")
845
+
838
846
  return pulumi.get(self, "violation_time_limit")
839
847
 
840
848
  @violation_time_limit.setter
@@ -950,7 +958,6 @@ class NrqlAlertCondition(pulumi.CustomResource):
950
958
  The `nrql` block supports the following arguments:
951
959
 
952
960
  - `query` - (Required) The NRQL query to execute for the condition.
953
- - `data_account_id` - (Optional) **BETA PREVIEW: the `data_account_id` field is in limited release and only enabled for preview on a per-account basis.** The account ID to use for the alert condition's query as specified in the the `query` field. If `data_account_id` is not specified, then the condition's query will be evaluated against the `account_id`. Note that the `account_id` must have read privileges for the `data_account_id` or else the condition will be invalid.
954
961
  - `evaluation_offset` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. Represented in minutes and must be within 1-20 minutes (inclusive). NRQL queries are evaluated based on their `aggregation_window` size. The start time depends on this value. It's recommended to set this to 3 windows. An offset of less than 3 windows will trigger incidents sooner, but you may see more false positives and negatives due to data latency. With `evaluation_offset` set to 3 windows and an `aggregation_window` of 60 seconds, the NRQL time window applied to your query will be: `SINCE 3 minutes ago UNTIL 2 minutes ago`. `evaluation_offset` cannot be set with `aggregation_method`, `aggregation_delay`, or `aggregation_timer`.<br>
955
962
  - `since_value` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. The value to be used in the `SINCE <X> minutes ago` clause for the NRQL query. Must be between 1-20 (inclusive). <br>
956
963
 
@@ -1245,7 +1252,6 @@ class NrqlAlertCondition(pulumi.CustomResource):
1245
1252
  The `nrql` block supports the following arguments:
1246
1253
 
1247
1254
  - `query` - (Required) The NRQL query to execute for the condition.
1248
- - `data_account_id` - (Optional) **BETA PREVIEW: the `data_account_id` field is in limited release and only enabled for preview on a per-account basis.** The account ID to use for the alert condition's query as specified in the the `query` field. If `data_account_id` is not specified, then the condition's query will be evaluated against the `account_id`. Note that the `account_id` must have read privileges for the `data_account_id` or else the condition will be invalid.
1249
1255
  - `evaluation_offset` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. Represented in minutes and must be within 1-20 minutes (inclusive). NRQL queries are evaluated based on their `aggregation_window` size. The start time depends on this value. It's recommended to set this to 3 windows. An offset of less than 3 windows will trigger incidents sooner, but you may see more false positives and negatives due to data latency. With `evaluation_offset` set to 3 windows and an `aggregation_window` of 60 seconds, the NRQL time window applied to your query will be: `SINCE 3 minutes ago UNTIL 2 minutes ago`. `evaluation_offset` cannot be set with `aggregation_method`, `aggregation_delay`, or `aggregation_timer`.<br>
1250
1256
  - `since_value` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. The value to be used in the `SINCE <X> minutes ago` clause for the NRQL query. Must be between 1-20 (inclusive). <br>
1251
1257
 
@@ -1805,11 +1811,13 @@ class NrqlAlertCondition(pulumi.CustomResource):
1805
1811
 
1806
1812
  @property
1807
1813
  @pulumi.getter
1808
- @_utilities.deprecated("""use `critical` and `warning` attributes instead""")
1809
1814
  def terms(self) -> pulumi.Output[Optional[Sequence['outputs.NrqlAlertConditionTerm']]]:
1810
1815
  """
1811
1816
  **DEPRECATED** Use `critical`, and `warning` instead. A list of terms for this condition. See Terms below for details.
1812
1817
  """
1818
+ warnings.warn("""use `critical` and `warning` attributes instead""", DeprecationWarning)
1819
+ pulumi.log.warn("""terms is deprecated: use `critical` and `warning` attributes instead""")
1820
+
1813
1821
  return pulumi.get(self, "terms")
1814
1822
 
1815
1823
  @property
@@ -1822,12 +1830,14 @@ class NrqlAlertCondition(pulumi.CustomResource):
1822
1830
 
1823
1831
  @property
1824
1832
  @pulumi.getter(name="violationTimeLimit")
1825
- @_utilities.deprecated("""use `violation_time_limit_seconds` attribute instead""")
1826
1833
  def violation_time_limit(self) -> pulumi.Output[str]:
1827
1834
  """
1828
1835
  **DEPRECATED:** Use `violation_time_limit_seconds` instead. Sets a time limit, in hours, that will automatically force-close a long-lasting incident after the time limit you select. Possible values are `ONE_HOUR`, `TWO_HOURS`, `FOUR_HOURS`, `EIGHT_HOURS`, `TWELVE_HOURS`, `TWENTY_FOUR_HOURS`, `THIRTY_DAYS` (case insensitive).<br>
1829
1836
  <small>\\***Note**: One of `violation_time_limit` _or_ `violation_time_limit_seconds` must be set, but not both.</small>
1830
1837
  """
1838
+ warnings.warn("""use `violation_time_limit_seconds` attribute instead""", DeprecationWarning)
1839
+ pulumi.log.warn("""violation_time_limit is deprecated: use `violation_time_limit_seconds` attribute instead""")
1840
+
1831
1841
  return pulumi.get(self, "violation_time_limit")
1832
1842
 
1833
1843
  @property
@@ -1306,11 +1306,13 @@ class NrqlAlertConditionCritical(dict):
1306
1306
 
1307
1307
  @property
1308
1308
  @pulumi.getter
1309
- @_utilities.deprecated("""use `threshold_duration` attribute instead""")
1310
1309
  def duration(self) -> Optional[int]:
1311
1310
  """
1312
1311
  In minutes, must be in the range of 1 to 120 (inclusive).
1313
1312
  """
1313
+ warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
1314
+ pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
1315
+
1314
1316
  return pulumi.get(self, "duration")
1315
1317
 
1316
1318
  @property
@@ -1339,11 +1341,13 @@ class NrqlAlertConditionCritical(dict):
1339
1341
 
1340
1342
  @property
1341
1343
  @pulumi.getter(name="timeFunction")
1342
- @_utilities.deprecated("""use `threshold_occurrences` attribute instead""")
1343
1344
  def time_function(self) -> Optional[str]:
1344
1345
  """
1345
1346
  Valid values are: 'all' or 'any'
1346
1347
  """
1348
+ warnings.warn("""use `threshold_occurrences` attribute instead""", DeprecationWarning)
1349
+ pulumi.log.warn("""time_function is deprecated: use `threshold_occurrences` attribute instead""")
1350
+
1347
1351
  return pulumi.get(self, "time_function")
1348
1352
 
1349
1353
 
@@ -1352,9 +1356,7 @@ class NrqlAlertConditionNrql(dict):
1352
1356
  @staticmethod
1353
1357
  def __key_warning(key: str):
1354
1358
  suggest = None
1355
- if key == "dataAccountId":
1356
- suggest = "data_account_id"
1357
- elif key == "evaluationOffset":
1359
+ if key == "evaluationOffset":
1358
1360
  suggest = "evaluation_offset"
1359
1361
  elif key == "sinceValue":
1360
1362
  suggest = "since_value"
@@ -1372,17 +1374,13 @@ class NrqlAlertConditionNrql(dict):
1372
1374
 
1373
1375
  def __init__(__self__, *,
1374
1376
  query: str,
1375
- data_account_id: Optional[str] = None,
1376
1377
  evaluation_offset: Optional[int] = None,
1377
1378
  since_value: Optional[str] = None):
1378
1379
  """
1379
- :param str data_account_id: BETA PREVIEW: the `data_account_id` field is in limited release and only enabled for preview on a per-account basis. - The New Relic account ID to use as the basis for the NRQL alert condition's `query`; will default to `account_id` if unspecified.
1380
1380
  :param int evaluation_offset: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `evaluation_offset`.
1381
1381
  :param str since_value: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `since_value`.
1382
1382
  """
1383
1383
  pulumi.set(__self__, "query", query)
1384
- if data_account_id is not None:
1385
- pulumi.set(__self__, "data_account_id", data_account_id)
1386
1384
  if evaluation_offset is not None:
1387
1385
  pulumi.set(__self__, "evaluation_offset", evaluation_offset)
1388
1386
  if since_value is not None:
@@ -1393,30 +1391,26 @@ class NrqlAlertConditionNrql(dict):
1393
1391
  def query(self) -> str:
1394
1392
  return pulumi.get(self, "query")
1395
1393
 
1396
- @property
1397
- @pulumi.getter(name="dataAccountId")
1398
- def data_account_id(self) -> Optional[str]:
1399
- """
1400
- BETA PREVIEW: the `data_account_id` field is in limited release and only enabled for preview on a per-account basis. - The New Relic account ID to use as the basis for the NRQL alert condition's `query`; will default to `account_id` if unspecified.
1401
- """
1402
- return pulumi.get(self, "data_account_id")
1403
-
1404
1394
  @property
1405
1395
  @pulumi.getter(name="evaluationOffset")
1406
- @_utilities.deprecated("""use `aggregation_method` attribute instead""")
1407
1396
  def evaluation_offset(self) -> Optional[int]:
1408
1397
  """
1409
1398
  NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `evaluation_offset`.
1410
1399
  """
1400
+ warnings.warn("""use `aggregation_method` attribute instead""", DeprecationWarning)
1401
+ pulumi.log.warn("""evaluation_offset is deprecated: use `aggregation_method` attribute instead""")
1402
+
1411
1403
  return pulumi.get(self, "evaluation_offset")
1412
1404
 
1413
1405
  @property
1414
1406
  @pulumi.getter(name="sinceValue")
1415
- @_utilities.deprecated("""use `aggregation_method` attribute instead""")
1416
1407
  def since_value(self) -> Optional[str]:
1417
1408
  """
1418
1409
  NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `since_value`.
1419
1410
  """
1411
+ warnings.warn("""use `aggregation_method` attribute instead""", DeprecationWarning)
1412
+ pulumi.log.warn("""since_value is deprecated: use `aggregation_method` attribute instead""")
1413
+
1420
1414
  return pulumi.get(self, "since_value")
1421
1415
 
1422
1416
 
@@ -1484,11 +1478,13 @@ class NrqlAlertConditionTerm(dict):
1484
1478
 
1485
1479
  @property
1486
1480
  @pulumi.getter
1487
- @_utilities.deprecated("""use `threshold_duration` attribute instead""")
1488
1481
  def duration(self) -> Optional[int]:
1489
1482
  """
1490
1483
  In minutes, must be in the range of 1 to 120 (inclusive).
1491
1484
  """
1485
+ warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
1486
+ pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
1487
+
1492
1488
  return pulumi.get(self, "duration")
1493
1489
 
1494
1490
  @property
@@ -1525,11 +1521,13 @@ class NrqlAlertConditionTerm(dict):
1525
1521
 
1526
1522
  @property
1527
1523
  @pulumi.getter(name="timeFunction")
1528
- @_utilities.deprecated("""use `threshold_occurrences` attribute instead""")
1529
1524
  def time_function(self) -> Optional[str]:
1530
1525
  """
1531
1526
  Valid values are: 'all' or 'any'
1532
1527
  """
1528
+ warnings.warn("""use `threshold_occurrences` attribute instead""", DeprecationWarning)
1529
+ pulumi.log.warn("""time_function is deprecated: use `threshold_occurrences` attribute instead""")
1530
+
1533
1531
  return pulumi.get(self, "time_function")
1534
1532
 
1535
1533
 
@@ -1593,11 +1591,13 @@ class NrqlAlertConditionWarning(dict):
1593
1591
 
1594
1592
  @property
1595
1593
  @pulumi.getter
1596
- @_utilities.deprecated("""use `threshold_duration` attribute instead""")
1597
1594
  def duration(self) -> Optional[int]:
1598
1595
  """
1599
1596
  In minutes, must be in the range of 1 to 120 (inclusive).
1600
1597
  """
1598
+ warnings.warn("""use `threshold_duration` attribute instead""", DeprecationWarning)
1599
+ pulumi.log.warn("""duration is deprecated: use `threshold_duration` attribute instead""")
1600
+
1601
1601
  return pulumi.get(self, "duration")
1602
1602
 
1603
1603
  @property
@@ -1626,11 +1626,13 @@ class NrqlAlertConditionWarning(dict):
1626
1626
 
1627
1627
  @property
1628
1628
  @pulumi.getter(name="timeFunction")
1629
- @_utilities.deprecated("""use `threshold_occurrences` attribute instead""")
1630
1629
  def time_function(self) -> Optional[str]:
1631
1630
  """
1632
1631
  Valid values are: 'all' or 'any'
1633
1632
  """
1633
+ warnings.warn("""use `threshold_occurrences` attribute instead""", DeprecationWarning)
1634
+ pulumi.log.warn("""time_function is deprecated: use `threshold_occurrences` attribute instead""")
1635
+
1634
1636
  return pulumi.get(self, "time_function")
1635
1637
 
1636
1638
 
@@ -102,8 +102,10 @@ class ProviderArgs:
102
102
 
103
103
  @property
104
104
  @pulumi.getter(name="apiUrl")
105
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
106
105
  def api_url(self) -> Optional[pulumi.Input[str]]:
106
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
107
+ pulumi.log.warn("""api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
108
+
107
109
  return pulumi.get(self, "api_url")
108
110
 
109
111
  @api_url.setter
@@ -121,8 +123,10 @@ class ProviderArgs:
121
123
 
122
124
  @property
123
125
  @pulumi.getter(name="infrastructureApiUrl")
124
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
125
126
  def infrastructure_api_url(self) -> Optional[pulumi.Input[str]]:
127
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
128
+ pulumi.log.warn("""infrastructure_api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
129
+
126
130
  return pulumi.get(self, "infrastructure_api_url")
127
131
 
128
132
  @infrastructure_api_url.setter
@@ -167,8 +171,10 @@ class ProviderArgs:
167
171
 
168
172
  @property
169
173
  @pulumi.getter(name="nerdgraphApiUrl")
170
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
171
174
  def nerdgraph_api_url(self) -> Optional[pulumi.Input[str]]:
175
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
176
+ pulumi.log.warn("""nerdgraph_api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
177
+
172
178
  return pulumi.get(self, "nerdgraph_api_url")
173
179
 
174
180
  @nerdgraph_api_url.setter
@@ -189,8 +195,10 @@ class ProviderArgs:
189
195
 
190
196
  @property
191
197
  @pulumi.getter(name="syntheticsApiUrl")
192
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
193
198
  def synthetics_api_url(self) -> Optional[pulumi.Input[str]]:
199
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
200
+ pulumi.log.warn("""synthetics_api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
201
+
194
202
  return pulumi.get(self, "synthetics_api_url")
195
203
 
196
204
  @synthetics_api_url.setter
@@ -320,8 +328,10 @@ class Provider(pulumi.ProviderResource):
320
328
 
321
329
  @property
322
330
  @pulumi.getter(name="apiUrl")
323
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
324
331
  def api_url(self) -> pulumi.Output[Optional[str]]:
332
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
333
+ pulumi.log.warn("""api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
334
+
325
335
  return pulumi.get(self, "api_url")
326
336
 
327
337
  @property
@@ -331,8 +341,10 @@ class Provider(pulumi.ProviderResource):
331
341
 
332
342
  @property
333
343
  @pulumi.getter(name="infrastructureApiUrl")
334
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
335
344
  def infrastructure_api_url(self) -> pulumi.Output[Optional[str]]:
345
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
346
+ pulumi.log.warn("""infrastructure_api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
347
+
336
348
  return pulumi.get(self, "infrastructure_api_url")
337
349
 
338
350
  @property
@@ -352,8 +364,10 @@ class Provider(pulumi.ProviderResource):
352
364
 
353
365
  @property
354
366
  @pulumi.getter(name="nerdgraphApiUrl")
355
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
356
367
  def nerdgraph_api_url(self) -> pulumi.Output[Optional[str]]:
368
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
369
+ pulumi.log.warn("""nerdgraph_api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
370
+
357
371
  return pulumi.get(self, "nerdgraph_api_url")
358
372
 
359
373
  @property
@@ -366,7 +380,9 @@ class Provider(pulumi.ProviderResource):
366
380
 
367
381
  @property
368
382
  @pulumi.getter(name="syntheticsApiUrl")
369
- @_utilities.deprecated("""New Relic internal use only. API URLs are now configured based on the configured region.""")
370
383
  def synthetics_api_url(self) -> pulumi.Output[Optional[str]]:
384
+ warnings.warn("""New Relic internal use only. API URLs are now configured based on the configured region.""", DeprecationWarning)
385
+ pulumi.log.warn("""synthetics_api_url is deprecated: New Relic internal use only. API URLs are now configured based on the configured region.""")
386
+
371
387
  return pulumi.get(self, "synthetics_api_url")
372
388
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.26.0"
4
+ "version": "5.26.0-alpha.1717135317"
5
5
  }
@@ -231,7 +231,7 @@ class AlertCondition(pulumi.CustomResource):
231
231
  """
232
232
  Use this resource to create and manage synthetics alert conditions in New Relic.
233
233
 
234
- > **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition example.
234
+ > **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition would be a preferred alternative to configure alert conditions - in most cases, feature parity can be achieved with a NRQL query.
235
235
 
236
236
  ## Example Usage
237
237
 
@@ -325,7 +325,7 @@ class AlertCondition(pulumi.CustomResource):
325
325
  """
326
326
  Use this resource to create and manage synthetics alert conditions in New Relic.
327
327
 
328
- > **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition example.
328
+ > **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition would be a preferred alternative to configure alert conditions - in most cases, feature parity can be achieved with a NRQL query.
329
329
 
330
330
  ## Example Usage
331
331
 
@@ -40,7 +40,7 @@ class BrokenLinksMonitorArgs:
40
40
 
41
41
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
42
42
 
43
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
43
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
44
44
  :param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
45
45
  """
46
46
  pulumi.set(__self__, "period", period)
@@ -165,7 +165,7 @@ class BrokenLinksMonitorArgs:
165
165
 
166
166
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
167
167
 
168
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
168
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
169
169
  """
170
170
  return pulumi.get(self, "runtime_type_version")
171
171
 
@@ -215,7 +215,7 @@ class _BrokenLinksMonitorState:
215
215
 
216
216
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
217
217
 
218
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
218
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
219
219
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
220
220
  :param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
221
221
  :param pulumi.Input[str] uri: The URI the monitor runs against.
@@ -349,7 +349,7 @@ class _BrokenLinksMonitorState:
349
349
 
350
350
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
351
351
 
352
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
352
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
353
353
  """
354
354
  return pulumi.get(self, "runtime_type_version")
355
355
 
@@ -411,7 +411,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
411
411
  uri: Optional[pulumi.Input[str]] = None,
412
412
  __props__=None):
413
413
  """
414
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
414
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
415
415
 
416
416
  Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
417
417
 
@@ -486,7 +486,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
486
486
 
487
487
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
488
488
 
489
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
489
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
490
490
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
491
491
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BrokenLinksMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
492
492
  :param pulumi.Input[str] uri: The URI the monitor runs against.
@@ -498,7 +498,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
498
498
  args: BrokenLinksMonitorArgs,
499
499
  opts: Optional[pulumi.ResourceOptions] = None):
500
500
  """
501
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
501
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
502
502
 
503
503
  Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
504
504
 
@@ -654,7 +654,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
654
654
 
655
655
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
656
656
 
657
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
657
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
658
658
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
659
659
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BrokenLinksMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
660
660
  :param pulumi.Input[str] uri: The URI the monitor runs against.
@@ -749,7 +749,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
749
749
 
750
750
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
751
751
 
752
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
752
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
753
753
  """
754
754
  return pulumi.get(self, "runtime_type_version")
755
755
 
@@ -42,7 +42,7 @@ class CertCheckMonitorArgs:
42
42
 
43
43
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
44
44
 
45
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
45
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
46
46
  :param pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
47
47
  """
48
48
  pulumi.set(__self__, "certificate_expiration", certificate_expiration)
@@ -180,7 +180,7 @@ class CertCheckMonitorArgs:
180
180
 
181
181
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
182
182
 
183
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
183
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
184
184
  """
185
185
  return pulumi.get(self, "runtime_type_version")
186
186
 
@@ -231,7 +231,7 @@ class _CertCheckMonitorState:
231
231
 
232
232
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
233
233
 
234
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
234
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
235
235
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
236
236
  :param pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
237
237
  """
@@ -376,7 +376,7 @@ class _CertCheckMonitorState:
376
376
 
377
377
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
378
378
 
379
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
379
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
380
380
  """
381
381
  return pulumi.get(self, "runtime_type_version")
382
382
 
@@ -427,7 +427,7 @@ class CertCheckMonitor(pulumi.CustomResource):
427
427
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]]] = None,
428
428
  __props__=None):
429
429
  """
430
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
430
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
431
431
 
432
432
  Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
433
433
 
@@ -506,7 +506,7 @@ class CertCheckMonitor(pulumi.CustomResource):
506
506
 
507
507
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
508
508
 
509
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
509
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
510
510
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
511
511
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
512
512
  """
@@ -517,7 +517,7 @@ class CertCheckMonitor(pulumi.CustomResource):
517
517
  args: CertCheckMonitorArgs,
518
518
  opts: Optional[pulumi.ResourceOptions] = None):
519
519
  """
520
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
520
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
521
521
 
522
522
  Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
523
523
 
@@ -679,7 +679,7 @@ class CertCheckMonitor(pulumi.CustomResource):
679
679
 
680
680
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
681
681
 
682
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
682
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
683
683
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
684
684
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
685
685
  """
@@ -781,7 +781,7 @@ class CertCheckMonitor(pulumi.CustomResource):
781
781
 
782
782
  > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
783
783
 
784
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
784
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
785
785
  """
786
786
  return pulumi.get(self, "runtime_type_version")
787
787
 
@@ -726,7 +726,7 @@ class Monitor(pulumi.CustomResource):
726
726
  verify_ssl: Optional[pulumi.Input[bool]] = None,
727
727
  __props__=None):
728
728
  """
729
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
729
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
730
730
 
731
731
  Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
732
732
 
@@ -898,7 +898,7 @@ class Monitor(pulumi.CustomResource):
898
898
  args: MonitorArgs,
899
899
  opts: Optional[pulumi.ResourceOptions] = None):
900
900
  """
901
- > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
901
+ > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
902
902
 
903
903
  Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
904
904