pulumi-newrelic 5.32.0__py3-none-any.whl → 5.32.0a1725644781__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.
@@ -20,10 +20,8 @@ class ScriptMonitorArgs:
20
20
  status: pulumi.Input[str],
21
21
  type: pulumi.Input[str],
22
22
  account_id: Optional[pulumi.Input[str]] = None,
23
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
24
23
  device_orientation: Optional[pulumi.Input[str]] = None,
25
24
  device_type: Optional[pulumi.Input[str]] = None,
26
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
27
25
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
28
26
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptMonitorLocationPrivateArgs']]]] = None,
29
27
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -40,10 +38,8 @@ class ScriptMonitorArgs:
40
38
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
41
39
  :param pulumi.Input[str] type: The plaintext representing the monitor script. Valid values are SCRIPT_BROWSER or SCRIPT_API
42
40
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
43
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
44
- :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
45
- :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
46
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are `DESKTOP`, `MOBILE_LANDSCAPE`, `MOBILE_PORTRAIT`, `TABLET_LANDSCAPE` and `TABLET_PORTRAIT`.
41
+ :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
42
+ :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`.
47
43
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
48
44
  :param pulumi.Input[Sequence[pulumi.Input['ScriptMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. See Nested location_private blocks below for details. **At least one of either** `locations_public` **or** `location_private` **is required**.
49
45
  :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. The `AWS_` prefix is not needed, as the provider uses NerdGraph. **At least one of either** `locations_public` **or** `location_private` **is required**.
@@ -61,14 +57,10 @@ class ScriptMonitorArgs:
61
57
  pulumi.set(__self__, "type", type)
62
58
  if account_id is not None:
63
59
  pulumi.set(__self__, "account_id", account_id)
64
- if browsers is not None:
65
- pulumi.set(__self__, "browsers", browsers)
66
60
  if device_orientation is not None:
67
61
  pulumi.set(__self__, "device_orientation", device_orientation)
68
62
  if device_type is not None:
69
63
  pulumi.set(__self__, "device_type", device_type)
70
- if devices is not None:
71
- pulumi.set(__self__, "devices", devices)
72
64
  if enable_screenshot_on_failure_and_script is not None:
73
65
  pulumi.set(__self__, "enable_screenshot_on_failure_and_script", enable_screenshot_on_failure_and_script)
74
66
  if location_privates is not None:
@@ -138,23 +130,11 @@ class ScriptMonitorArgs:
138
130
  def account_id(self, value: Optional[pulumi.Input[str]]):
139
131
  pulumi.set(self, "account_id", value)
140
132
 
141
- @property
142
- @pulumi.getter
143
- def browsers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
144
- """
145
- The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
146
- """
147
- return pulumi.get(self, "browsers")
148
-
149
- @browsers.setter
150
- def browsers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
151
- pulumi.set(self, "browsers", value)
152
-
153
133
  @property
154
134
  @pulumi.getter(name="deviceOrientation")
155
135
  def device_orientation(self) -> Optional[pulumi.Input[str]]:
156
136
  """
157
- Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
137
+ Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
158
138
  """
159
139
  return pulumi.get(self, "device_orientation")
160
140
 
@@ -166,7 +146,7 @@ class ScriptMonitorArgs:
166
146
  @pulumi.getter(name="deviceType")
167
147
  def device_type(self) -> Optional[pulumi.Input[str]]:
168
148
  """
169
- Device emulation type field. Valid values are `MOBILE` and `TABLET`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
149
+ Device emulation type field. Valid values are `MOBILE` and `TABLET`.
170
150
  """
171
151
  return pulumi.get(self, "device_type")
172
152
 
@@ -174,18 +154,6 @@ class ScriptMonitorArgs:
174
154
  def device_type(self, value: Optional[pulumi.Input[str]]):
175
155
  pulumi.set(self, "device_type", value)
176
156
 
177
- @property
178
- @pulumi.getter
179
- def devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
180
- """
181
- The multiple devices list on which synthetic monitors will run. Valid values are `DESKTOP`, `MOBILE_LANDSCAPE`, `MOBILE_PORTRAIT`, `TABLET_LANDSCAPE` and `TABLET_PORTRAIT`.
182
- """
183
- return pulumi.get(self, "devices")
184
-
185
- @devices.setter
186
- def devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
187
- pulumi.set(self, "devices", value)
188
-
189
157
  @property
190
158
  @pulumi.getter(name="enableScreenshotOnFailureAndScript")
191
159
  def enable_screenshot_on_failure_and_script(self) -> Optional[pulumi.Input[bool]]:
@@ -310,10 +278,8 @@ class ScriptMonitorArgs:
310
278
  class _ScriptMonitorState:
311
279
  def __init__(__self__, *,
312
280
  account_id: Optional[pulumi.Input[str]] = None,
313
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
314
281
  device_orientation: Optional[pulumi.Input[str]] = None,
315
282
  device_type: Optional[pulumi.Input[str]] = None,
316
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
317
283
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
318
284
  guid: Optional[pulumi.Input[str]] = None,
319
285
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptMonitorLocationPrivateArgs']]]] = None,
@@ -332,10 +298,8 @@ class _ScriptMonitorState:
332
298
  """
333
299
  Input properties used for looking up and filtering ScriptMonitor resources.
334
300
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
335
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
336
- :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
337
- :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
338
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are `DESKTOP`, `MOBILE_LANDSCAPE`, `MOBILE_PORTRAIT`, `TABLET_LANDSCAPE` and `TABLET_PORTRAIT`.
301
+ :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
302
+ :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`.
339
303
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
340
304
  :param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
341
305
  :param pulumi.Input[Sequence[pulumi.Input['ScriptMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. See Nested location_private blocks below for details. **At least one of either** `locations_public` **or** `location_private` **is required**.
@@ -355,14 +319,10 @@ class _ScriptMonitorState:
355
319
  """
356
320
  if account_id is not None:
357
321
  pulumi.set(__self__, "account_id", account_id)
358
- if browsers is not None:
359
- pulumi.set(__self__, "browsers", browsers)
360
322
  if device_orientation is not None:
361
323
  pulumi.set(__self__, "device_orientation", device_orientation)
362
324
  if device_type is not None:
363
325
  pulumi.set(__self__, "device_type", device_type)
364
- if devices is not None:
365
- pulumi.set(__self__, "devices", devices)
366
326
  if enable_screenshot_on_failure_and_script is not None:
367
327
  pulumi.set(__self__, "enable_screenshot_on_failure_and_script", enable_screenshot_on_failure_and_script)
368
328
  if guid is not None:
@@ -406,23 +366,11 @@ class _ScriptMonitorState:
406
366
  def account_id(self, value: Optional[pulumi.Input[str]]):
407
367
  pulumi.set(self, "account_id", value)
408
368
 
409
- @property
410
- @pulumi.getter
411
- def browsers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
412
- """
413
- The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
414
- """
415
- return pulumi.get(self, "browsers")
416
-
417
- @browsers.setter
418
- def browsers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
419
- pulumi.set(self, "browsers", value)
420
-
421
369
  @property
422
370
  @pulumi.getter(name="deviceOrientation")
423
371
  def device_orientation(self) -> Optional[pulumi.Input[str]]:
424
372
  """
425
- Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
373
+ Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
426
374
  """
427
375
  return pulumi.get(self, "device_orientation")
428
376
 
@@ -434,7 +382,7 @@ class _ScriptMonitorState:
434
382
  @pulumi.getter(name="deviceType")
435
383
  def device_type(self) -> Optional[pulumi.Input[str]]:
436
384
  """
437
- Device emulation type field. Valid values are `MOBILE` and `TABLET`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
385
+ Device emulation type field. Valid values are `MOBILE` and `TABLET`.
438
386
  """
439
387
  return pulumi.get(self, "device_type")
440
388
 
@@ -442,18 +390,6 @@ class _ScriptMonitorState:
442
390
  def device_type(self, value: Optional[pulumi.Input[str]]):
443
391
  pulumi.set(self, "device_type", value)
444
392
 
445
- @property
446
- @pulumi.getter
447
- def devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
448
- """
449
- The multiple devices list on which synthetic monitors will run. Valid values are `DESKTOP`, `MOBILE_LANDSCAPE`, `MOBILE_PORTRAIT`, `TABLET_LANDSCAPE` and `TABLET_PORTRAIT`.
450
- """
451
- return pulumi.get(self, "devices")
452
-
453
- @devices.setter
454
- def devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
455
- pulumi.set(self, "devices", value)
456
-
457
393
  @property
458
394
  @pulumi.getter(name="enableScreenshotOnFailureAndScript")
459
395
  def enable_screenshot_on_failure_and_script(self) -> Optional[pulumi.Input[bool]]:
@@ -640,10 +576,8 @@ class ScriptMonitor(pulumi.CustomResource):
640
576
  resource_name: str,
641
577
  opts: Optional[pulumi.ResourceOptions] = None,
642
578
  account_id: Optional[pulumi.Input[str]] = None,
643
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
644
579
  device_orientation: Optional[pulumi.Input[str]] = None,
645
580
  device_type: Optional[pulumi.Input[str]] = None,
646
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
647
581
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
648
582
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorLocationPrivateArgs', 'ScriptMonitorLocationPrivateArgsDict']]]]] = None,
649
583
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -700,17 +634,11 @@ class ScriptMonitor(pulumi.CustomResource):
700
634
  "AP_EAST_1",
701
635
  ],
702
636
  period="EVERY_HOUR",
637
+ enable_screenshot_on_failure_and_script=False,
703
638
  script="$browser.get('https://one.newrelic.com')",
704
639
  runtime_type_version="100",
705
640
  runtime_type="CHROME_BROWSER",
706
641
  script_language="JAVASCRIPT",
707
- devices=[
708
- "DESKTOP",
709
- "MOBILE_PORTRAIT",
710
- "TABLET_LANDSCAPE",
711
- ],
712
- browsers=["CHROME"],
713
- enable_screenshot_on_failure_and_script=False,
714
642
  tags=[{
715
643
  "key": "some_key",
716
644
  "values": ["some_value"],
@@ -770,20 +698,16 @@ class ScriptMonitor(pulumi.CustomResource):
770
698
  type="SCRIPT_BROWSER",
771
699
  period="EVERY_HOUR",
772
700
  script="$browser.get('https://one.newrelic.com')",
773
- runtime_type_version="100",
774
- runtime_type="CHROME_BROWSER",
775
- script_language="JAVASCRIPT",
776
- devices=[
777
- "DESKTOP",
778
- "MOBILE_PORTRAIT",
779
- "TABLET_LANDSCAPE",
780
- ],
781
- browsers=["CHROME"],
782
701
  enable_screenshot_on_failure_and_script=False,
783
702
  location_privates=[{
784
703
  "guid": location.id,
785
704
  "vse_password": "secret",
786
705
  }],
706
+ runtime_type_version="100",
707
+ runtime_type="CHROME_BROWSER",
708
+ script_language="JAVASCRIPT",
709
+ device_type="MOBILE",
710
+ device_orientation="LANDSCAPE",
787
711
  tags=[{
788
712
  "key": "some_key",
789
713
  "values": ["some_value"],
@@ -803,10 +727,8 @@ class ScriptMonitor(pulumi.CustomResource):
803
727
  :param str resource_name: The name of the resource.
804
728
  :param pulumi.ResourceOptions opts: Options for the resource.
805
729
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
806
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
807
- :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
808
- :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
809
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are `DESKTOP`, `MOBILE_LANDSCAPE`, `MOBILE_PORTRAIT`, `TABLET_LANDSCAPE` and `TABLET_PORTRAIT`.
730
+ :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
731
+ :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`.
810
732
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
811
733
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorLocationPrivateArgs', 'ScriptMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. See Nested location_private blocks below for details. **At least one of either** `locations_public` **or** `location_private` **is required**.
812
734
  :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. The `AWS_` prefix is not needed, as the provider uses NerdGraph. **At least one of either** `locations_public` **or** `location_private` **is required**.
@@ -870,17 +792,11 @@ class ScriptMonitor(pulumi.CustomResource):
870
792
  "AP_EAST_1",
871
793
  ],
872
794
  period="EVERY_HOUR",
795
+ enable_screenshot_on_failure_and_script=False,
873
796
  script="$browser.get('https://one.newrelic.com')",
874
797
  runtime_type_version="100",
875
798
  runtime_type="CHROME_BROWSER",
876
799
  script_language="JAVASCRIPT",
877
- devices=[
878
- "DESKTOP",
879
- "MOBILE_PORTRAIT",
880
- "TABLET_LANDSCAPE",
881
- ],
882
- browsers=["CHROME"],
883
- enable_screenshot_on_failure_and_script=False,
884
800
  tags=[{
885
801
  "key": "some_key",
886
802
  "values": ["some_value"],
@@ -940,20 +856,16 @@ class ScriptMonitor(pulumi.CustomResource):
940
856
  type="SCRIPT_BROWSER",
941
857
  period="EVERY_HOUR",
942
858
  script="$browser.get('https://one.newrelic.com')",
943
- runtime_type_version="100",
944
- runtime_type="CHROME_BROWSER",
945
- script_language="JAVASCRIPT",
946
- devices=[
947
- "DESKTOP",
948
- "MOBILE_PORTRAIT",
949
- "TABLET_LANDSCAPE",
950
- ],
951
- browsers=["CHROME"],
952
859
  enable_screenshot_on_failure_and_script=False,
953
860
  location_privates=[{
954
861
  "guid": location.id,
955
862
  "vse_password": "secret",
956
863
  }],
864
+ runtime_type_version="100",
865
+ runtime_type="CHROME_BROWSER",
866
+ script_language="JAVASCRIPT",
867
+ device_type="MOBILE",
868
+ device_orientation="LANDSCAPE",
957
869
  tags=[{
958
870
  "key": "some_key",
959
871
  "values": ["some_value"],
@@ -986,10 +898,8 @@ class ScriptMonitor(pulumi.CustomResource):
986
898
  resource_name: str,
987
899
  opts: Optional[pulumi.ResourceOptions] = None,
988
900
  account_id: Optional[pulumi.Input[str]] = None,
989
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
990
901
  device_orientation: Optional[pulumi.Input[str]] = None,
991
902
  device_type: Optional[pulumi.Input[str]] = None,
992
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
993
903
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
994
904
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorLocationPrivateArgs', 'ScriptMonitorLocationPrivateArgsDict']]]]] = None,
995
905
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1013,10 +923,8 @@ class ScriptMonitor(pulumi.CustomResource):
1013
923
  __props__ = ScriptMonitorArgs.__new__(ScriptMonitorArgs)
1014
924
 
1015
925
  __props__.__dict__["account_id"] = account_id
1016
- __props__.__dict__["browsers"] = browsers
1017
926
  __props__.__dict__["device_orientation"] = device_orientation
1018
927
  __props__.__dict__["device_type"] = device_type
1019
- __props__.__dict__["devices"] = devices
1020
928
  __props__.__dict__["enable_screenshot_on_failure_and_script"] = enable_screenshot_on_failure_and_script
1021
929
  __props__.__dict__["location_privates"] = location_privates
1022
930
  __props__.__dict__["locations_publics"] = locations_publics
@@ -1049,10 +957,8 @@ class ScriptMonitor(pulumi.CustomResource):
1049
957
  id: pulumi.Input[str],
1050
958
  opts: Optional[pulumi.ResourceOptions] = None,
1051
959
  account_id: Optional[pulumi.Input[str]] = None,
1052
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1053
960
  device_orientation: Optional[pulumi.Input[str]] = None,
1054
961
  device_type: Optional[pulumi.Input[str]] = None,
1055
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1056
962
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
1057
963
  guid: Optional[pulumi.Input[str]] = None,
1058
964
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorLocationPrivateArgs', 'ScriptMonitorLocationPrivateArgsDict']]]]] = None,
@@ -1076,10 +982,8 @@ class ScriptMonitor(pulumi.CustomResource):
1076
982
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1077
983
  :param pulumi.ResourceOptions opts: Options for the resource.
1078
984
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
1079
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
1080
- :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
1081
- :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
1082
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are `DESKTOP`, `MOBILE_LANDSCAPE`, `MOBILE_PORTRAIT`, `TABLET_LANDSCAPE` and `TABLET_PORTRAIT`.
985
+ :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
986
+ :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`.
1083
987
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
1084
988
  :param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
1085
989
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorLocationPrivateArgs', 'ScriptMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. See Nested location_private blocks below for details. **At least one of either** `locations_public` **or** `location_private` **is required**.
@@ -1102,10 +1006,8 @@ class ScriptMonitor(pulumi.CustomResource):
1102
1006
  __props__ = _ScriptMonitorState.__new__(_ScriptMonitorState)
1103
1007
 
1104
1008
  __props__.__dict__["account_id"] = account_id
1105
- __props__.__dict__["browsers"] = browsers
1106
1009
  __props__.__dict__["device_orientation"] = device_orientation
1107
1010
  __props__.__dict__["device_type"] = device_type
1108
- __props__.__dict__["devices"] = devices
1109
1011
  __props__.__dict__["enable_screenshot_on_failure_and_script"] = enable_screenshot_on_failure_and_script
1110
1012
  __props__.__dict__["guid"] = guid
1111
1013
  __props__.__dict__["location_privates"] = location_privates
@@ -1131,19 +1033,11 @@ class ScriptMonitor(pulumi.CustomResource):
1131
1033
  """
1132
1034
  return pulumi.get(self, "account_id")
1133
1035
 
1134
- @property
1135
- @pulumi.getter
1136
- def browsers(self) -> pulumi.Output[Optional[Sequence[str]]]:
1137
- """
1138
- The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
1139
- """
1140
- return pulumi.get(self, "browsers")
1141
-
1142
1036
  @property
1143
1037
  @pulumi.getter(name="deviceOrientation")
1144
1038
  def device_orientation(self) -> pulumi.Output[Optional[str]]:
1145
1039
  """
1146
- Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
1040
+ Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
1147
1041
  """
1148
1042
  return pulumi.get(self, "device_orientation")
1149
1043
 
@@ -1151,18 +1045,10 @@ class ScriptMonitor(pulumi.CustomResource):
1151
1045
  @pulumi.getter(name="deviceType")
1152
1046
  def device_type(self) -> pulumi.Output[Optional[str]]:
1153
1047
  """
1154
- Device emulation type field. Valid values are `MOBILE` and `TABLET`. We recommend you to use `devices` field instead of `device_type`,`device_orientation` fields, as it allows you to select multiple combinations of device types and orientations.
1048
+ Device emulation type field. Valid values are `MOBILE` and `TABLET`.
1155
1049
  """
1156
1050
  return pulumi.get(self, "device_type")
1157
1051
 
1158
- @property
1159
- @pulumi.getter
1160
- def devices(self) -> pulumi.Output[Optional[Sequence[str]]]:
1161
- """
1162
- The multiple devices list on which synthetic monitors will run. Valid values are `DESKTOP`, `MOBILE_LANDSCAPE`, `MOBILE_PORTRAIT`, `TABLET_LANDSCAPE` and `TABLET_PORTRAIT`.
1163
- """
1164
- return pulumi.get(self, "devices")
1165
-
1166
1052
  @property
1167
1053
  @pulumi.getter(name="enableScreenshotOnFailureAndScript")
1168
1054
  def enable_screenshot_on_failure_and_script(self) -> pulumi.Output[Optional[bool]]: