pulumi-newrelic 5.32.0a1726033931__py3-none-any.whl → 5.32.0a1726258199__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/cloud/aws_integrations.py +350 -1152
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/synthetics/monitor.py +148 -34
- pulumi_newrelic/synthetics/script_monitor.py +140 -26
- pulumi_newrelic/synthetics/step_monitor.py +136 -7
- {pulumi_newrelic-5.32.0a1726033931.dist-info → pulumi_newrelic-5.32.0a1726258199.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.32.0a1726033931.dist-info → pulumi_newrelic-5.32.0a1726258199.dist-info}/RECORD +9 -9
- {pulumi_newrelic-5.32.0a1726033931.dist-info → pulumi_newrelic-5.32.0a1726258199.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.32.0a1726033931.dist-info → pulumi_newrelic-5.32.0a1726258199.dist-info}/top_level.txt +0 -0
@@ -20,6 +20,8 @@ class StepMonitorArgs:
|
|
20
20
|
status: pulumi.Input[str],
|
21
21
|
steps: pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]],
|
22
22
|
account_id: Optional[pulumi.Input[str]] = None,
|
23
|
+
browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
24
|
+
devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
23
25
|
enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
|
24
26
|
location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]]] = None,
|
25
27
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -34,12 +36,15 @@ class StepMonitorArgs:
|
|
34
36
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
35
37
|
: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.
|
36
38
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
39
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
|
40
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
|
41
|
+
MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
|
37
42
|
:param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
|
38
43
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
|
39
44
|
: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.
|
40
45
|
:param pulumi.Input[str] name: The name for the monitor.
|
41
46
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
42
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
47
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
43
48
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
44
49
|
"""
|
45
50
|
pulumi.set(__self__, "period", period)
|
@@ -47,6 +52,10 @@ class StepMonitorArgs:
|
|
47
52
|
pulumi.set(__self__, "steps", steps)
|
48
53
|
if account_id is not None:
|
49
54
|
pulumi.set(__self__, "account_id", account_id)
|
55
|
+
if browsers is not None:
|
56
|
+
pulumi.set(__self__, "browsers", browsers)
|
57
|
+
if devices is not None:
|
58
|
+
pulumi.set(__self__, "devices", devices)
|
50
59
|
if enable_screenshot_on_failure_and_script is not None:
|
51
60
|
pulumi.set(__self__, "enable_screenshot_on_failure_and_script", enable_screenshot_on_failure_and_script)
|
52
61
|
if location_privates is not None:
|
@@ -112,6 +121,31 @@ class StepMonitorArgs:
|
|
112
121
|
def account_id(self, value: Optional[pulumi.Input[str]]):
|
113
122
|
pulumi.set(self, "account_id", value)
|
114
123
|
|
124
|
+
@property
|
125
|
+
@pulumi.getter
|
126
|
+
def browsers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
127
|
+
"""
|
128
|
+
The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "browsers")
|
131
|
+
|
132
|
+
@browsers.setter
|
133
|
+
def browsers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
134
|
+
pulumi.set(self, "browsers", value)
|
135
|
+
|
136
|
+
@property
|
137
|
+
@pulumi.getter
|
138
|
+
def devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
139
|
+
"""
|
140
|
+
The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
|
141
|
+
MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "devices")
|
144
|
+
|
145
|
+
@devices.setter
|
146
|
+
def devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
147
|
+
pulumi.set(self, "devices", value)
|
148
|
+
|
115
149
|
@property
|
116
150
|
@pulumi.getter(name="enableScreenshotOnFailureAndScript")
|
117
151
|
def enable_screenshot_on_failure_and_script(self) -> Optional[pulumi.Input[bool]]:
|
@@ -176,7 +210,7 @@ class StepMonitorArgs:
|
|
176
210
|
@pulumi.getter(name="runtimeTypeVersion")
|
177
211
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
178
212
|
"""
|
179
|
-
The specific
|
213
|
+
The specific version of the runtime type selected.
|
180
214
|
"""
|
181
215
|
return pulumi.get(self, "runtime_type_version")
|
182
216
|
|
@@ -210,6 +244,8 @@ class StepMonitorArgs:
|
|
210
244
|
class _StepMonitorState:
|
211
245
|
def __init__(__self__, *,
|
212
246
|
account_id: Optional[pulumi.Input[str]] = None,
|
247
|
+
browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
248
|
+
devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
213
249
|
enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
|
214
250
|
guid: Optional[pulumi.Input[str]] = None,
|
215
251
|
location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]]] = None,
|
@@ -226,6 +262,9 @@ class _StepMonitorState:
|
|
226
262
|
"""
|
227
263
|
Input properties used for looking up and filtering StepMonitor resources.
|
228
264
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
265
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
|
266
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
|
267
|
+
MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
|
229
268
|
:param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
|
230
269
|
:param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
|
231
270
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
|
@@ -234,13 +273,17 @@ class _StepMonitorState:
|
|
234
273
|
: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`.
|
235
274
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
236
275
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
237
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
276
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
238
277
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
239
278
|
: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.
|
240
279
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
241
280
|
"""
|
242
281
|
if account_id is not None:
|
243
282
|
pulumi.set(__self__, "account_id", account_id)
|
283
|
+
if browsers is not None:
|
284
|
+
pulumi.set(__self__, "browsers", browsers)
|
285
|
+
if devices is not None:
|
286
|
+
pulumi.set(__self__, "devices", devices)
|
244
287
|
if enable_screenshot_on_failure_and_script is not None:
|
245
288
|
pulumi.set(__self__, "enable_screenshot_on_failure_and_script", enable_screenshot_on_failure_and_script)
|
246
289
|
if guid is not None:
|
@@ -280,6 +323,31 @@ class _StepMonitorState:
|
|
280
323
|
def account_id(self, value: Optional[pulumi.Input[str]]):
|
281
324
|
pulumi.set(self, "account_id", value)
|
282
325
|
|
326
|
+
@property
|
327
|
+
@pulumi.getter
|
328
|
+
def browsers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
329
|
+
"""
|
330
|
+
The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "browsers")
|
333
|
+
|
334
|
+
@browsers.setter
|
335
|
+
def browsers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
336
|
+
pulumi.set(self, "browsers", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter
|
340
|
+
def devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
341
|
+
"""
|
342
|
+
The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
|
343
|
+
MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
|
344
|
+
"""
|
345
|
+
return pulumi.get(self, "devices")
|
346
|
+
|
347
|
+
@devices.setter
|
348
|
+
def devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
349
|
+
pulumi.set(self, "devices", value)
|
350
|
+
|
283
351
|
@property
|
284
352
|
@pulumi.getter(name="enableScreenshotOnFailureAndScript")
|
285
353
|
def enable_screenshot_on_failure_and_script(self) -> Optional[pulumi.Input[bool]]:
|
@@ -380,7 +448,7 @@ class _StepMonitorState:
|
|
380
448
|
@pulumi.getter(name="runtimeTypeVersion")
|
381
449
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
382
450
|
"""
|
383
|
-
The specific
|
451
|
+
The specific version of the runtime type selected.
|
384
452
|
"""
|
385
453
|
return pulumi.get(self, "runtime_type_version")
|
386
454
|
|
@@ -440,6 +508,8 @@ class StepMonitor(pulumi.CustomResource):
|
|
440
508
|
resource_name: str,
|
441
509
|
opts: Optional[pulumi.ResourceOptions] = None,
|
442
510
|
account_id: Optional[pulumi.Input[str]] = None,
|
511
|
+
browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
512
|
+
devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
443
513
|
enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
|
444
514
|
location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]]] = None,
|
445
515
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -470,6 +540,12 @@ class StepMonitor(pulumi.CustomResource):
|
|
470
540
|
status="ENABLED",
|
471
541
|
runtime_type="CHROME_BROWSER",
|
472
542
|
runtime_type_version="100",
|
543
|
+
devices=[
|
544
|
+
"DESKTOP",
|
545
|
+
"MOBILE_PORTRAIT",
|
546
|
+
"TABLET_LANDSCAPE",
|
547
|
+
],
|
548
|
+
browsers=["CHROME"],
|
473
549
|
steps=[{
|
474
550
|
"ordinal": 0,
|
475
551
|
"type": "NAVIGATE",
|
@@ -502,6 +578,14 @@ class StepMonitor(pulumi.CustomResource):
|
|
502
578
|
name="Sample Step Monitor",
|
503
579
|
period="EVERY_6_HOURS",
|
504
580
|
status="ENABLED",
|
581
|
+
runtime_type="CHROME_BROWSER",
|
582
|
+
runtime_type_version="100",
|
583
|
+
devices=[
|
584
|
+
"DESKTOP",
|
585
|
+
"MOBILE_PORTRAIT",
|
586
|
+
"TABLET_LANDSCAPE",
|
587
|
+
],
|
588
|
+
browsers=["CHROME"],
|
505
589
|
location_privates=[{
|
506
590
|
"guid": foo.id,
|
507
591
|
"vse_password": "secret",
|
@@ -530,13 +614,16 @@ class StepMonitor(pulumi.CustomResource):
|
|
530
614
|
:param str resource_name: The name of the resource.
|
531
615
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
532
616
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
617
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
|
618
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
|
619
|
+
MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
|
533
620
|
:param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
|
534
621
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
|
535
622
|
: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.
|
536
623
|
:param pulumi.Input[str] name: The name for the monitor.
|
537
624
|
: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`.
|
538
625
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
539
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
626
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
540
627
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
541
628
|
: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.
|
542
629
|
: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.
|
@@ -565,6 +652,12 @@ class StepMonitor(pulumi.CustomResource):
|
|
565
652
|
status="ENABLED",
|
566
653
|
runtime_type="CHROME_BROWSER",
|
567
654
|
runtime_type_version="100",
|
655
|
+
devices=[
|
656
|
+
"DESKTOP",
|
657
|
+
"MOBILE_PORTRAIT",
|
658
|
+
"TABLET_LANDSCAPE",
|
659
|
+
],
|
660
|
+
browsers=["CHROME"],
|
568
661
|
steps=[{
|
569
662
|
"ordinal": 0,
|
570
663
|
"type": "NAVIGATE",
|
@@ -597,6 +690,14 @@ class StepMonitor(pulumi.CustomResource):
|
|
597
690
|
name="Sample Step Monitor",
|
598
691
|
period="EVERY_6_HOURS",
|
599
692
|
status="ENABLED",
|
693
|
+
runtime_type="CHROME_BROWSER",
|
694
|
+
runtime_type_version="100",
|
695
|
+
devices=[
|
696
|
+
"DESKTOP",
|
697
|
+
"MOBILE_PORTRAIT",
|
698
|
+
"TABLET_LANDSCAPE",
|
699
|
+
],
|
700
|
+
browsers=["CHROME"],
|
600
701
|
location_privates=[{
|
601
702
|
"guid": foo.id,
|
602
703
|
"vse_password": "secret",
|
@@ -638,6 +739,8 @@ class StepMonitor(pulumi.CustomResource):
|
|
638
739
|
resource_name: str,
|
639
740
|
opts: Optional[pulumi.ResourceOptions] = None,
|
640
741
|
account_id: Optional[pulumi.Input[str]] = None,
|
742
|
+
browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
743
|
+
devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
641
744
|
enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
|
642
745
|
location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]]] = None,
|
643
746
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -659,6 +762,8 @@ class StepMonitor(pulumi.CustomResource):
|
|
659
762
|
__props__ = StepMonitorArgs.__new__(StepMonitorArgs)
|
660
763
|
|
661
764
|
__props__.__dict__["account_id"] = account_id
|
765
|
+
__props__.__dict__["browsers"] = browsers
|
766
|
+
__props__.__dict__["devices"] = devices
|
662
767
|
__props__.__dict__["enable_screenshot_on_failure_and_script"] = enable_screenshot_on_failure_and_script
|
663
768
|
__props__.__dict__["location_privates"] = location_privates
|
664
769
|
__props__.__dict__["locations_publics"] = locations_publics
|
@@ -689,6 +794,8 @@ class StepMonitor(pulumi.CustomResource):
|
|
689
794
|
id: pulumi.Input[str],
|
690
795
|
opts: Optional[pulumi.ResourceOptions] = None,
|
691
796
|
account_id: Optional[pulumi.Input[str]] = None,
|
797
|
+
browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
798
|
+
devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
692
799
|
enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
|
693
800
|
guid: Optional[pulumi.Input[str]] = None,
|
694
801
|
location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]]] = None,
|
@@ -710,6 +817,9 @@ class StepMonitor(pulumi.CustomResource):
|
|
710
817
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
711
818
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
712
819
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
820
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
|
821
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
|
822
|
+
MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
|
713
823
|
:param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
|
714
824
|
:param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
|
715
825
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
|
@@ -718,7 +828,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
718
828
|
: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
829
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
720
830
|
: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
|
831
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
722
832
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
723
833
|
: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.
|
724
834
|
: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.
|
@@ -728,6 +838,8 @@ class StepMonitor(pulumi.CustomResource):
|
|
728
838
|
__props__ = _StepMonitorState.__new__(_StepMonitorState)
|
729
839
|
|
730
840
|
__props__.__dict__["account_id"] = account_id
|
841
|
+
__props__.__dict__["browsers"] = browsers
|
842
|
+
__props__.__dict__["devices"] = devices
|
731
843
|
__props__.__dict__["enable_screenshot_on_failure_and_script"] = enable_screenshot_on_failure_and_script
|
732
844
|
__props__.__dict__["guid"] = guid
|
733
845
|
__props__.__dict__["location_privates"] = location_privates
|
@@ -751,6 +863,23 @@ class StepMonitor(pulumi.CustomResource):
|
|
751
863
|
"""
|
752
864
|
return pulumi.get(self, "account_id")
|
753
865
|
|
866
|
+
@property
|
867
|
+
@pulumi.getter
|
868
|
+
def browsers(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
869
|
+
"""
|
870
|
+
The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
|
871
|
+
"""
|
872
|
+
return pulumi.get(self, "browsers")
|
873
|
+
|
874
|
+
@property
|
875
|
+
@pulumi.getter
|
876
|
+
def devices(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
877
|
+
"""
|
878
|
+
The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
|
879
|
+
MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
|
880
|
+
"""
|
881
|
+
return pulumi.get(self, "devices")
|
882
|
+
|
754
883
|
@property
|
755
884
|
@pulumi.getter(name="enableScreenshotOnFailureAndScript")
|
756
885
|
def enable_screenshot_on_failure_and_script(self) -> pulumi.Output[Optional[bool]]:
|
@@ -819,7 +948,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
819
948
|
@pulumi.getter(name="runtimeTypeVersion")
|
820
949
|
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
821
950
|
"""
|
822
|
-
The specific
|
951
|
+
The specific version of the runtime type selected.
|
823
952
|
"""
|
824
953
|
return pulumi.get(self, "runtime_type_version")
|
825
954
|
|
{pulumi_newrelic-5.32.0a1726033931.dist-info → pulumi_newrelic-5.32.0a1726258199.dist-info}/RECORD
RENAMED
@@ -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=TdO-CuVJTKhSmIRRYYtL6L6i55OPM2XfwiamJrddutA,532114
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=SQI2CwMqghRMKv7EJsJHnj4hBGD3MYKWI2togjeavFY,85
|
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
|
@@ -50,7 +50,7 @@ pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8o
|
|
50
50
|
pulumi_newrelic/cloud/_inputs.py,sha256=PFxNJ_jznxsz2yI12uFYQMjQOI2SoHg0Q8CVieaq5SU,294585
|
51
51
|
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=dDgO1N5Jb05DM_ipxCf1Su5dxS93VBhjbsGKSexhdZQ,65239
|
52
52
|
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=_FJ8URQzEeNnkMCndsq7oKOe8gRIFWvsQ8HbGTvGNuc,20827
|
53
|
-
pulumi_newrelic/cloud/aws_integrations.py,sha256=
|
53
|
+
pulumi_newrelic/cloud/aws_integrations.py,sha256=ClRDs7m_jcJBBwXeV09e7AwgUzufG6-ioZ-CZsug5hY,128394
|
54
54
|
pulumi_newrelic/cloud/aws_link_account.py,sha256=ANyN1A7_TLGOcCwnMMX6RtXRAO53wLFUAI7c97osKNo,15495
|
55
55
|
pulumi_newrelic/cloud/azure_integrations.py,sha256=WX7ZRZwulmMGH9Ve_VJBZuWoBLURkAfFbxuwl1voh0k,114017
|
56
56
|
pulumi_newrelic/cloud/azure_link_account.py,sha256=QR7mViJ5B-ibn5vJg2Cgn0RddMDfYHWjRKzN7y19EoE,18559
|
@@ -76,14 +76,14 @@ pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=hyQem6uR9RmPaf4fedhk-H
|
|
76
76
|
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=FwRe7xXr_MG8sbICoM_w6CX4xUAJFFLe2W86zaVgyZg,39084
|
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=FhtdORIrPng501X3prRCI4FCK-AiKSJY2ASatm2OhGU,74804
|
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=qEsYg8-LF79kW4CTsYfisgghvPSKNwqqU5Vtcp44_Ws,65934
|
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.32.
|
87
|
-
pulumi_newrelic-5.32.
|
88
|
-
pulumi_newrelic-5.32.
|
89
|
-
pulumi_newrelic-5.32.
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=LfGNfqgZyQBRaA92a-kID9UNEsyFmuJxPgSWnk_Z5nQ,48788
|
86
|
+
pulumi_newrelic-5.32.0a1726258199.dist-info/METADATA,sha256=avUG-HPVS3UA_5025LAkteroKmhpPZDuJhScNYnd8AY,3900
|
87
|
+
pulumi_newrelic-5.32.0a1726258199.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
88
|
+
pulumi_newrelic-5.32.0a1726258199.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.32.0a1726258199.dist-info/RECORD,,
|
{pulumi_newrelic-5.32.0a1726033931.dist-info → pulumi_newrelic-5.32.0a1726258199.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|