pulumi-newrelic 5.29.1a1723714860__py3-none-any.whl → 5.29.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/synthetics/broken_links_monitor.py +7 -43
- pulumi_newrelic/synthetics/cert_check_monitor.py +0 -8
- pulumi_newrelic/synthetics/monitor.py +0 -8
- pulumi_newrelic/synthetics/script_monitor.py +0 -8
- pulumi_newrelic/synthetics/step_monitor.py +7 -43
- {pulumi_newrelic-5.29.1a1723714860.dist-info → pulumi_newrelic-5.29.2.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.29.1a1723714860.dist-info → pulumi_newrelic-5.29.2.dist-info}/RECORD +10 -10
- {pulumi_newrelic-5.29.1a1723714860.dist-info → pulumi_newrelic-5.29.2.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.29.1a1723714860.dist-info → pulumi_newrelic-5.29.2.dist-info}/top_level.txt +0 -0
| @@ -36,11 +36,7 @@ class BrokenLinksMonitorArgs: | |
| 36 36 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[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.
         | 
| 37 37 | 
             
                    :param pulumi.Input[str] name: The name for the monitor.
         | 
| 38 38 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 39 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 40 | 
            -
                           
         | 
| 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 | 
            -
                           
         | 
| 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.
         | 
| 39 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 44 40 | 
             
                    :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 41 | 
             
                    """
         | 
| 46 42 | 
             
                    pulumi.set(__self__, "period", period)
         | 
| @@ -161,11 +157,7 @@ class BrokenLinksMonitorArgs: | |
| 161 157 | 
             
                @pulumi.getter(name="runtimeTypeVersion")
         | 
| 162 158 | 
             
                def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
         | 
| 163 159 | 
             
                    """
         | 
| 164 | 
            -
                    The specific version of the runtime type | 
| 165 | 
            -
             | 
| 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 | 
            -
             | 
| 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.
         | 
| 160 | 
            +
                    The specific semver version of the runtime type.
         | 
| 169 161 | 
             
                    """
         | 
| 170 162 | 
             
                    return pulumi.get(self, "runtime_type_version")
         | 
| 171 163 |  | 
| @@ -211,11 +203,7 @@ class _BrokenLinksMonitorState: | |
| 211 203 | 
             
                    :param pulumi.Input[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`.
         | 
| 212 204 | 
             
                    :param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
         | 
| 213 205 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 214 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 215 | 
            -
                           
         | 
| 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 | 
            -
                           
         | 
| 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.
         | 
| 206 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 219 207 | 
             
                    :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
         | 
| 220 208 | 
             
                    :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 209 | 
             
                    :param pulumi.Input[str] uri: The URI the monitor runs against.
         | 
| @@ -345,11 +333,7 @@ class _BrokenLinksMonitorState: | |
| 345 333 | 
             
                @pulumi.getter(name="runtimeTypeVersion")
         | 
| 346 334 | 
             
                def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
         | 
| 347 335 | 
             
                    """
         | 
| 348 | 
            -
                    The specific version of the runtime type | 
| 349 | 
            -
             | 
| 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 | 
            -
             | 
| 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.
         | 
| 336 | 
            +
                    The specific semver version of the runtime type.
         | 
| 353 337 | 
             
                    """
         | 
| 354 338 | 
             
                    return pulumi.get(self, "runtime_type_version")
         | 
| 355 339 |  | 
| @@ -411,10 +395,6 @@ class BrokenLinksMonitor(pulumi.CustomResource): | |
| 411 395 | 
             
                             uri: Optional[pulumi.Input[str]] = None,
         | 
| 412 396 | 
             
                             __props__=None):
         | 
| 413 397 | 
             
                    """
         | 
| 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.
         | 
| 415 | 
            -
             | 
| 416 | 
            -
                    Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
         | 
| 417 | 
            -
             | 
| 418 398 | 
             
                    ## Example Usage
         | 
| 419 399 |  | 
| 420 400 | 
             
                    ```python
         | 
| @@ -482,11 +462,7 @@ class BrokenLinksMonitor(pulumi.CustomResource): | |
| 482 462 | 
             
                    :param pulumi.Input[str] name: The name for the monitor.
         | 
| 483 463 | 
             
                    :param pulumi.Input[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`.
         | 
| 484 464 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 485 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 486 | 
            -
                           
         | 
| 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 | 
            -
                           
         | 
| 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.
         | 
| 465 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 490 466 | 
             
                    :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
         | 
| 491 467 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
         | 
| 492 468 | 
             
                    :param pulumi.Input[str] uri: The URI the monitor runs against.
         | 
| @@ -498,10 +474,6 @@ class BrokenLinksMonitor(pulumi.CustomResource): | |
| 498 474 | 
             
                             args: BrokenLinksMonitorArgs,
         | 
| 499 475 | 
             
                             opts: Optional[pulumi.ResourceOptions] = None):
         | 
| 500 476 | 
             
                    """
         | 
| 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.
         | 
| 502 | 
            -
             | 
| 503 | 
            -
                    Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
         | 
| 504 | 
            -
             | 
| 505 477 | 
             
                    ## Example Usage
         | 
| 506 478 |  | 
| 507 479 | 
             
                    ```python
         | 
| @@ -650,11 +622,7 @@ class BrokenLinksMonitor(pulumi.CustomResource): | |
| 650 622 | 
             
                    :param pulumi.Input[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`.
         | 
| 651 623 | 
             
                    :param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
         | 
| 652 624 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 653 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 654 | 
            -
                           
         | 
| 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 | 
            -
                           
         | 
| 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.
         | 
| 625 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 658 626 | 
             
                    :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
         | 
| 659 627 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
         | 
| 660 628 | 
             
                    :param pulumi.Input[str] uri: The URI the monitor runs against.
         | 
| @@ -745,11 +713,7 @@ class BrokenLinksMonitor(pulumi.CustomResource): | |
| 745 713 | 
             
                @pulumi.getter(name="runtimeTypeVersion")
         | 
| 746 714 | 
             
                def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
         | 
| 747 715 | 
             
                    """
         | 
| 748 | 
            -
                    The specific version of the runtime type | 
| 749 | 
            -
             | 
| 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 | 
            -
             | 
| 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.
         | 
| 716 | 
            +
                    The specific semver version of the runtime type.
         | 
| 753 717 | 
             
                    """
         | 
| 754 718 | 
             
                    return pulumi.get(self, "runtime_type_version")
         | 
| 755 719 |  | 
| @@ -427,10 +427,6 @@ class CertCheckMonitor(pulumi.CustomResource): | |
| 427 427 | 
             
                             tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = 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.
         | 
| 431 | 
            -
             | 
| 432 | 
            -
                    Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
         | 
| 433 | 
            -
             | 
| 434 430 | 
             
                    ## Example Usage
         | 
| 435 431 |  | 
| 436 432 | 
             
                    ```python
         | 
| @@ -517,10 +513,6 @@ class CertCheckMonitor(pulumi.CustomResource): | |
| 517 513 | 
             
                             args: CertCheckMonitorArgs,
         | 
| 518 514 | 
             
                             opts: Optional[pulumi.ResourceOptions] = None):
         | 
| 519 515 | 
             
                    """
         | 
| 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.
         | 
| 521 | 
            -
             | 
| 522 | 
            -
                    Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
         | 
| 523 | 
            -
             | 
| 524 516 | 
             
                    ## Example Usage
         | 
| 525 517 |  | 
| 526 518 | 
             
                    ```python
         | 
| @@ -726,10 +726,6 @@ 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.
         | 
| 730 | 
            -
             | 
| 731 | 
            -
                    Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
         | 
| 732 | 
            -
             | 
| 733 729 | 
             
                    ## Example Usage
         | 
| 734 730 |  | 
| 735 731 | 
             
                    ```python
         | 
| @@ -903,10 +899,6 @@ class Monitor(pulumi.CustomResource): | |
| 903 899 | 
             
                             args: MonitorArgs,
         | 
| 904 900 | 
             
                             opts: Optional[pulumi.ResourceOptions] = None):
         | 
| 905 901 | 
             
                    """
         | 
| 906 | 
            -
                    > **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.
         | 
| 907 | 
            -
             | 
| 908 | 
            -
                    Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
         | 
| 909 | 
            -
             | 
| 910 902 | 
             
                    ## Example Usage
         | 
| 911 903 |  | 
| 912 904 | 
             
                    ```python
         | 
| @@ -568,10 +568,6 @@ class ScriptMonitor(pulumi.CustomResource): | |
| 568 568 | 
             
                             type: Optional[pulumi.Input[str]] = None,
         | 
| 569 569 | 
             
                             __props__=None):
         | 
| 570 570 | 
             
                    """
         | 
| 571 | 
            -
                    > **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.
         | 
| 572 | 
            -
             | 
| 573 | 
            -
                    Use this resource to create update, and delete a Script API or Script Browser Synthetics Monitor in New Relic.
         | 
| 574 | 
            -
             | 
| 575 571 | 
             
                    ## Example Usage
         | 
| 576 572 |  | 
| 577 573 | 
             
                    ##### Type: `SCRIPT_API`
         | 
| @@ -730,10 +726,6 @@ class ScriptMonitor(pulumi.CustomResource): | |
| 730 726 | 
             
                             args: ScriptMonitorArgs,
         | 
| 731 727 | 
             
                             opts: Optional[pulumi.ResourceOptions] = None):
         | 
| 732 728 | 
             
                    """
         | 
| 733 | 
            -
                    > **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.
         | 
| 734 | 
            -
             | 
| 735 | 
            -
                    Use this resource to create update, and delete a Script API or Script Browser Synthetics Monitor in New Relic.
         | 
| 736 | 
            -
             | 
| 737 729 | 
             
                    ## Example Usage
         | 
| 738 730 |  | 
| 739 731 | 
             
                    ##### Type: `SCRIPT_API`
         | 
| @@ -38,11 +38,7 @@ class StepMonitorArgs: | |
| 38 38 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[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.
         | 
| 39 39 | 
             
                    :param pulumi.Input[str] name: The name for the monitor.
         | 
| 40 40 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 41 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 42 | 
            -
                           
         | 
| 43 | 
            -
                           > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` 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 | 
            -
                           
         | 
| 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.
         | 
| 41 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 46 42 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
         | 
| 47 43 | 
             
                    """
         | 
| 48 44 | 
             
                    pulumi.set(__self__, "period", period)
         | 
| @@ -177,11 +173,7 @@ class StepMonitorArgs: | |
| 177 173 | 
             
                @pulumi.getter(name="runtimeTypeVersion")
         | 
| 178 174 | 
             
                def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
         | 
| 179 175 | 
             
                    """
         | 
| 180 | 
            -
                    The specific version of the runtime type | 
| 181 | 
            -
             | 
| 182 | 
            -
                    > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` 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.
         | 
| 183 | 
            -
             | 
| 184 | 
            -
                    > **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.
         | 
| 176 | 
            +
                    The specific semver version of the runtime type.
         | 
| 185 177 | 
             
                    """
         | 
| 186 178 | 
             
                    return pulumi.get(self, "runtime_type_version")
         | 
| 187 179 |  | 
| @@ -229,11 +221,7 @@ class _StepMonitorState: | |
| 229 221 | 
             
                    :param pulumi.Input[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`.
         | 
| 230 222 | 
             
                    :param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
         | 
| 231 223 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 232 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 233 | 
            -
                           
         | 
| 234 | 
            -
                           > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` 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.
         | 
| 235 | 
            -
                           
         | 
| 236 | 
            -
                           > **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.
         | 
| 224 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 237 225 | 
             
                    :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
         | 
| 238 226 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
         | 
| 239 227 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
         | 
| @@ -377,11 +365,7 @@ class _StepMonitorState: | |
| 377 365 | 
             
                @pulumi.getter(name="runtimeTypeVersion")
         | 
| 378 366 | 
             
                def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
         | 
| 379 367 | 
             
                    """
         | 
| 380 | 
            -
                    The specific version of the runtime type | 
| 381 | 
            -
             | 
| 382 | 
            -
                    > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` 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.
         | 
| 383 | 
            -
             | 
| 384 | 
            -
                    > **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.
         | 
| 368 | 
            +
                    The specific semver version of the runtime type.
         | 
| 385 369 | 
             
                    """
         | 
| 386 370 | 
             
                    return pulumi.get(self, "runtime_type_version")
         | 
| 387 371 |  | 
| @@ -444,10 +428,6 @@ class StepMonitor(pulumi.CustomResource): | |
| 444 428 | 
             
                             tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
         | 
| 445 429 | 
             
                             __props__=None):
         | 
| 446 430 | 
             
                    """
         | 
| 447 | 
            -
                    > **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.
         | 
| 448 | 
            -
             | 
| 449 | 
            -
                    Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
         | 
| 450 | 
            -
             | 
| 451 431 | 
             
                    ## Example Usage
         | 
| 452 432 |  | 
| 453 433 | 
             
                    ```python
         | 
| @@ -531,11 +511,7 @@ class StepMonitor(pulumi.CustomResource): | |
| 531 511 | 
             
                    :param pulumi.Input[str] name: The name for the monitor.
         | 
| 532 512 | 
             
                    :param pulumi.Input[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`.
         | 
| 533 513 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 534 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 535 | 
            -
                           
         | 
| 536 | 
            -
                           > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` 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.
         | 
| 537 | 
            -
                           
         | 
| 538 | 
            -
                           > **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.
         | 
| 514 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 539 515 | 
             
                    :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
         | 
| 540 516 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
         | 
| 541 517 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
         | 
| @@ -547,10 +523,6 @@ class StepMonitor(pulumi.CustomResource): | |
| 547 523 | 
             
                             args: StepMonitorArgs,
         | 
| 548 524 | 
             
                             opts: Optional[pulumi.ResourceOptions] = None):
         | 
| 549 525 | 
             
                    """
         | 
| 550 | 
            -
                    > **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.
         | 
| 551 | 
            -
             | 
| 552 | 
            -
                    Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
         | 
| 553 | 
            -
             | 
| 554 526 | 
             
                    ## Example Usage
         | 
| 555 527 |  | 
| 556 528 | 
             
                    ```python
         | 
| @@ -718,11 +690,7 @@ class StepMonitor(pulumi.CustomResource): | |
| 718 690 | 
             
                    :param pulumi.Input[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`.
         | 
| 719 691 | 
             
                    :param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
         | 
| 720 692 | 
             
                    :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
         | 
| 721 | 
            -
                    :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type | 
| 722 | 
            -
                           
         | 
| 723 | 
            -
                           > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` 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.
         | 
| 724 | 
            -
                           
         | 
| 725 | 
            -
                           > **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.
         | 
| 693 | 
            +
                    :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
         | 
| 726 694 | 
             
                    :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
         | 
| 727 695 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
         | 
| 728 696 | 
             
                    :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
         | 
| @@ -822,11 +790,7 @@ class StepMonitor(pulumi.CustomResource): | |
| 822 790 | 
             
                @pulumi.getter(name="runtimeTypeVersion")
         | 
| 823 791 | 
             
                def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
         | 
| 824 792 | 
             
                    """
         | 
| 825 | 
            -
                    The specific version of the runtime type | 
| 826 | 
            -
             | 
| 827 | 
            -
                    > **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` 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.
         | 
| 828 | 
            -
             | 
| 829 | 
            -
                    > **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.
         | 
| 793 | 
            +
                    The specific semver version of the runtime type.
         | 
| 830 794 | 
             
                    """
         | 
| 831 795 | 
             
                    return pulumi.get(self, "runtime_type_version")
         | 
| 832 796 |  | 
| @@ -41,7 +41,7 @@ pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0 | |
| 41 41 | 
             
            pulumi_newrelic/one_dashboard_raw.py,sha256=_5CWA6p6_tCfI135mTysVo0qjQf1xnYBNEZBDNmKqsw,23502
         | 
| 42 42 | 
             
            pulumi_newrelic/outputs.py,sha256=l-PV80TdUbyoWHCI0a6urYAo0BGQyA0AIcipGHyho34,489353
         | 
| 43 43 | 
             
            pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
         | 
| 44 | 
            -
            pulumi_newrelic/pulumi-plugin.json,sha256= | 
| 44 | 
            +
            pulumi_newrelic/pulumi-plugin.json,sha256=p7jRmtq2RokJZQjAiTGdjAa2mXhidXuqsDjc1OoypJ8,68
         | 
| 45 45 | 
             
            pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         | 
| 46 46 | 
             
            pulumi_newrelic/service_level.py,sha256=1MA3qQw6Y6d-HA6TIckt0B7FLZIhNCH8GuWhn0f246M,28806
         | 
| 47 47 | 
             
            pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
         | 
| @@ -72,18 +72,18 @@ pulumi_newrelic/plugins/workload.py,sha256=P5cneA0nvHde5bwvn7588axMm_HW6EEtNTtRo | |
| 72 72 | 
             
            pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
         | 
| 73 73 | 
             
            pulumi_newrelic/synthetics/_inputs.py,sha256=wG65bo-G3IZqpM38sGqptmaKOxJSSmCySyhbUJLPZt4,13645
         | 
| 74 74 | 
             
            pulumi_newrelic/synthetics/alert_condition.py,sha256=czvLt2PDjY-db9FHF9uBzPYGGE9NBfoLuJtjyT0-VEY,21063
         | 
| 75 | 
            -
            pulumi_newrelic/synthetics/broken_links_monitor.py,sha256= | 
| 76 | 
            -
            pulumi_newrelic/synthetics/cert_check_monitor.py,sha256= | 
| 75 | 
            +
            pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=khHjZDQcsWJRO9dujzb1ele3EHMtYgUeHcUgUroE7U4,35054
         | 
| 76 | 
            +
            pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=Guzwjugp-03GRBC1tv0rs0BQdKwE01-JcdTr1BeyNc0,45958
         | 
| 77 77 | 
             
            pulumi_newrelic/synthetics/get_private_location.py,sha256=qgChL7uKmcMLxrjvYGZ9Duh6zbdgX80TKHaF-7_LLBc,5701
         | 
| 78 78 | 
             
            pulumi_newrelic/synthetics/get_secure_credential.py,sha256=xexkDSteNi9kn0UuucFUSTIbz_NaHOzw6HTsg2yGoEU,5479
         | 
| 79 | 
            -
            pulumi_newrelic/synthetics/monitor.py,sha256= | 
| 79 | 
            +
            pulumi_newrelic/synthetics/monitor.py,sha256=9HPsEDGaIIeKSfsyxgQ_8gCP1f_SZKJ34Qapohr992E,64270
         | 
| 80 80 | 
             
            pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=0CKd3lqK2-vL7mXXWM5LfSyxjbYLg7XFXwJyAwyvYOM,34660
         | 
| 81 81 | 
             
            pulumi_newrelic/synthetics/outputs.py,sha256=z5-aR2wEr5nl36oFpcxI1ICSDWzci3KRU5G_OAz9MUM,11217
         | 
| 82 82 | 
             
            pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
         | 
| 83 | 
            -
            pulumi_newrelic/synthetics/script_monitor.py,sha256= | 
| 83 | 
            +
            pulumi_newrelic/synthetics/script_monitor.py,sha256=5uhIX-JD26CrSqTTXF0cPnOZkFkCH48VjUruewtPWH4,55400
         | 
| 84 84 | 
             
            pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
         | 
| 85 | 
            -
            pulumi_newrelic/synthetics/step_monitor.py,sha256 | 
| 86 | 
            -
            pulumi_newrelic-5.29. | 
| 87 | 
            -
            pulumi_newrelic-5.29. | 
| 88 | 
            -
            pulumi_newrelic-5.29. | 
| 89 | 
            -
            pulumi_newrelic-5.29. | 
| 85 | 
            +
            pulumi_newrelic/synthetics/step_monitor.py,sha256=-TL4j3hju0vI60NzXGl4DcwlmdZEjJZ2v7qdZBUvukQ,40326
         | 
| 86 | 
            +
            pulumi_newrelic-5.29.2.dist-info/METADATA,sha256=qZ7_lfSAvMmusuaQ10CGPFGRvFRSowLF4okWgnMBoKU,3889
         | 
| 87 | 
            +
            pulumi_newrelic-5.29.2.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
         | 
| 88 | 
            +
            pulumi_newrelic-5.29.2.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
         | 
| 89 | 
            +
            pulumi_newrelic-5.29.2.dist-info/RECORD,,
         | 
| 
            File without changes
         | 
    
        {pulumi_newrelic-5.29.1a1723714860.dist-info → pulumi_newrelic-5.29.2.dist-info}/top_level.txt
    RENAMED
    
    | 
            File without changes
         |