pulumi-newrelic 5.28.0a1723107045__py3-none-any.whl → 5.29.0a1723454189__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.
Files changed (41) hide show
  1. pulumi_newrelic/alert_channel.py +69 -69
  2. pulumi_newrelic/alert_condition.py +49 -49
  3. pulumi_newrelic/alert_muting_rule.py +54 -54
  4. pulumi_newrelic/alert_policy.py +16 -16
  5. pulumi_newrelic/alert_policy_channel.py +16 -16
  6. pulumi_newrelic/cloud/aws_govcloud_integrations.py +100 -100
  7. pulumi_newrelic/cloud/aws_integrations.py +798 -798
  8. pulumi_newrelic/cloud/azure_integrations.py +424 -424
  9. pulumi_newrelic/cloud/gcp_integrations.py +288 -288
  10. pulumi_newrelic/entity_tags.py +21 -21
  11. pulumi_newrelic/get_application.py +14 -14
  12. pulumi_newrelic/get_entity.py +4 -4
  13. pulumi_newrelic/get_key_transaction.py +14 -14
  14. pulumi_newrelic/get_notification_destination.py +4 -4
  15. pulumi_newrelic/get_obfuscation_expression.py +10 -10
  16. pulumi_newrelic/get_service_level_alert_helper.py +76 -76
  17. pulumi_newrelic/infra_alert_condition.py +90 -90
  18. pulumi_newrelic/insights/event.py +43 -43
  19. pulumi_newrelic/monitor_downtime.py +52 -52
  20. pulumi_newrelic/notification_channel.py +187 -187
  21. pulumi_newrelic/notification_destination.py +25 -25
  22. pulumi_newrelic/nrql_alert_condition.py +164 -164
  23. pulumi_newrelic/obfuscation_rule.py +15 -15
  24. pulumi_newrelic/one_dashboard.py +10 -10
  25. pulumi_newrelic/one_dashboard_raw.py +75 -75
  26. pulumi_newrelic/plugins/workload.py +101 -101
  27. pulumi_newrelic/pulumi-plugin.json +1 -1
  28. pulumi_newrelic/service_level.py +164 -164
  29. pulumi_newrelic/synthetics/alert_condition.py +32 -32
  30. pulumi_newrelic/synthetics/broken_links_monitor.py +21 -21
  31. pulumi_newrelic/synthetics/cert_check_monitor.py +21 -21
  32. pulumi_newrelic/synthetics/get_private_location.py +6 -6
  33. pulumi_newrelic/synthetics/monitor.py +74 -74
  34. pulumi_newrelic/synthetics/multi_location_alert_condition.py +66 -66
  35. pulumi_newrelic/synthetics/script_monitor.py +58 -58
  36. pulumi_newrelic/synthetics/step_monitor.py +59 -59
  37. pulumi_newrelic/workflow.py +155 -155
  38. {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0a1723454189.dist-info}/METADATA +1 -1
  39. {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0a1723454189.dist-info}/RECORD +41 -41
  40. {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0a1723454189.dist-info}/WHEEL +0 -0
  41. {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0a1723454189.dist-info}/top_level.txt +0 -0
@@ -424,7 +424,7 @@ class CertCheckMonitor(pulumi.CustomResource):
424
424
  runtime_type: Optional[pulumi.Input[str]] = None,
425
425
  runtime_type_version: Optional[pulumi.Input[str]] = None,
426
426
  status: Optional[pulumi.Input[str]] = None,
427
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]]] = None,
427
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None,
428
428
  __props__=None):
429
429
  """
430
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.
@@ -446,10 +446,10 @@ class CertCheckMonitor(pulumi.CustomResource):
446
446
  status="ENABLED",
447
447
  runtime_type="NODE_API",
448
448
  runtime_type_version="16.10",
449
- tags=[newrelic.synthetics.CertCheckMonitorTagArgs(
450
- key="some_key",
451
- values=["some_value"],
452
- )])
449
+ tags=[{
450
+ "key": "some_key",
451
+ "values": ["some_value"],
452
+ }])
453
453
  ```
454
454
  See additional examples.
455
455
 
@@ -476,10 +476,10 @@ class CertCheckMonitor(pulumi.CustomResource):
476
476
  certificate_expiration=10,
477
477
  period="EVERY_6_HOURS",
478
478
  status="ENABLED",
479
- tags=[newrelic.synthetics.CertCheckMonitorTagArgs(
480
- key="some_key",
481
- values=["some_value"],
482
- )])
479
+ tags=[{
480
+ "key": "some_key",
481
+ "values": ["some_value"],
482
+ }])
483
483
  ```
484
484
 
485
485
  ## Import
@@ -508,7 +508,7 @@ class CertCheckMonitor(pulumi.CustomResource):
508
508
 
509
509
  > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
510
510
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
511
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
511
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
512
512
  """
513
513
  ...
514
514
  @overload
@@ -536,10 +536,10 @@ class CertCheckMonitor(pulumi.CustomResource):
536
536
  status="ENABLED",
537
537
  runtime_type="NODE_API",
538
538
  runtime_type_version="16.10",
539
- tags=[newrelic.synthetics.CertCheckMonitorTagArgs(
540
- key="some_key",
541
- values=["some_value"],
542
- )])
539
+ tags=[{
540
+ "key": "some_key",
541
+ "values": ["some_value"],
542
+ }])
543
543
  ```
544
544
  See additional examples.
545
545
 
@@ -566,10 +566,10 @@ class CertCheckMonitor(pulumi.CustomResource):
566
566
  certificate_expiration=10,
567
567
  period="EVERY_6_HOURS",
568
568
  status="ENABLED",
569
- tags=[newrelic.synthetics.CertCheckMonitorTagArgs(
570
- key="some_key",
571
- values=["some_value"],
572
- )])
569
+ tags=[{
570
+ "key": "some_key",
571
+ "values": ["some_value"],
572
+ }])
573
573
  ```
574
574
 
575
575
  ## Import
@@ -607,7 +607,7 @@ class CertCheckMonitor(pulumi.CustomResource):
607
607
  runtime_type: Optional[pulumi.Input[str]] = None,
608
608
  runtime_type_version: Optional[pulumi.Input[str]] = None,
609
609
  status: Optional[pulumi.Input[str]] = None,
610
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]]] = None,
610
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None,
611
611
  __props__=None):
612
612
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
613
613
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -658,7 +658,7 @@ class CertCheckMonitor(pulumi.CustomResource):
658
658
  runtime_type: Optional[pulumi.Input[str]] = None,
659
659
  runtime_type_version: Optional[pulumi.Input[str]] = None,
660
660
  status: Optional[pulumi.Input[str]] = None,
661
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]]] = None) -> 'CertCheckMonitor':
661
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None) -> 'CertCheckMonitor':
662
662
  """
663
663
  Get an existing CertCheckMonitor resource's state with the given name, id, and optional extra
664
664
  properties used to qualify the lookup.
@@ -681,7 +681,7 @@ class CertCheckMonitor(pulumi.CustomResource):
681
681
 
682
682
  > **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after August 26, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
683
683
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
684
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
684
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
685
685
  """
686
686
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
687
687
 
@@ -98,9 +98,9 @@ def get_private_location(account_id: Optional[str] = None,
98
98
 
99
99
  example = newrelic.synthetics.get_private_location(account_id="123456",
100
100
  name="My private location")
101
- foo = newrelic.synthetics.StepMonitor("foo", location_privates=[newrelic.synthetics.StepMonitorLocationPrivateArgs(
102
- guid=example.id,
103
- )])
101
+ foo = newrelic.synthetics.StepMonitor("foo", location_privates=[{
102
+ "guid": example.id,
103
+ }])
104
104
  ```
105
105
 
106
106
 
@@ -147,9 +147,9 @@ def get_private_location_output(account_id: Optional[pulumi.Input[Optional[str]]
147
147
 
148
148
  example = newrelic.synthetics.get_private_location(account_id="123456",
149
149
  name="My private location")
150
- foo = newrelic.synthetics.StepMonitor("foo", location_privates=[newrelic.synthetics.StepMonitorLocationPrivateArgs(
151
- guid=example.id,
152
- )])
150
+ foo = newrelic.synthetics.StepMonitor("foo", location_privates=[{
151
+ "guid": example.id,
152
+ }])
153
153
  ```
154
154
 
155
155
 
@@ -706,7 +706,7 @@ class Monitor(pulumi.CustomResource):
706
706
  opts: Optional[pulumi.ResourceOptions] = None,
707
707
  account_id: Optional[pulumi.Input[str]] = None,
708
708
  bypass_head_request: Optional[pulumi.Input[bool]] = None,
709
- custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorCustomHeaderArgs']]]]] = None,
709
+ custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MonitorCustomHeaderArgs', 'MonitorCustomHeaderArgsDict']]]]] = None,
710
710
  device_orientation: Optional[pulumi.Input[str]] = None,
711
711
  device_type: Optional[pulumi.Input[str]] = None,
712
712
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
@@ -718,7 +718,7 @@ class Monitor(pulumi.CustomResource):
718
718
  runtime_type_version: Optional[pulumi.Input[str]] = None,
719
719
  script_language: Optional[pulumi.Input[str]] = None,
720
720
  status: Optional[pulumi.Input[str]] = None,
721
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorTagArgs']]]]] = None,
721
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MonitorTagArgs', 'MonitorTagArgsDict']]]]] = None,
722
722
  treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
723
723
  type: Optional[pulumi.Input[str]] = None,
724
724
  uri: Optional[pulumi.Input[str]] = None,
@@ -743,18 +743,18 @@ class Monitor(pulumi.CustomResource):
743
743
  uri="https://www.one.newrelic.com",
744
744
  type="SIMPLE",
745
745
  locations_publics=["AP_SOUTH_1"],
746
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
747
- name="some_name",
748
- value="some_value",
749
- )],
746
+ custom_headers=[{
747
+ "name": "some_name",
748
+ "value": "some_value",
749
+ }],
750
750
  treat_redirect_as_failure=True,
751
751
  validation_string="success",
752
752
  bypass_head_request=True,
753
753
  verify_ssl=True,
754
- tags=[newrelic.synthetics.MonitorTagArgs(
755
- key="some_key",
756
- values=["some_value"],
757
- )])
754
+ tags=[{
755
+ "key": "some_key",
756
+ "values": ["some_value"],
757
+ }])
758
758
  ```
759
759
  ##### Type: `SIMPLE BROWSER`
760
760
 
@@ -769,10 +769,10 @@ class Monitor(pulumi.CustomResource):
769
769
  uri="https://www.one.newrelic.com",
770
770
  type="BROWSER",
771
771
  locations_publics=["AP_SOUTH_1"],
772
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
773
- name="some_name",
774
- value="some_value",
775
- )],
772
+ custom_headers=[{
773
+ "name": "some_name",
774
+ "value": "some_value",
775
+ }],
776
776
  enable_screenshot_on_failure_and_script=True,
777
777
  validation_string="success",
778
778
  verify_ssl=True,
@@ -781,10 +781,10 @@ class Monitor(pulumi.CustomResource):
781
781
  script_language="JAVASCRIPT",
782
782
  device_type="MOBILE",
783
783
  device_orientation="LANDSCAPE",
784
- tags=[newrelic.synthetics.MonitorTagArgs(
785
- key="some_key",
786
- values=["some_value"],
787
- )])
784
+ tags=[{
785
+ "key": "some_key",
786
+ "values": ["some_value"],
787
+ }])
788
788
  ```
789
789
  See additional examples.
790
790
 
@@ -813,18 +813,18 @@ class Monitor(pulumi.CustomResource):
813
813
  uri="https://www.one.newrelic.com",
814
814
  type="SIMPLE",
815
815
  locations_privates=[location.id],
816
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
817
- name="some_name",
818
- value="some_value",
819
- )],
816
+ custom_headers=[{
817
+ "name": "some_name",
818
+ "value": "some_value",
819
+ }],
820
820
  treat_redirect_as_failure=True,
821
821
  validation_string="success",
822
822
  bypass_head_request=True,
823
823
  verify_ssl=True,
824
- tags=[newrelic.synthetics.MonitorTagArgs(
825
- key="some_key",
826
- values=["some_value"],
827
- )])
824
+ tags=[{
825
+ "key": "some_key",
826
+ "values": ["some_value"],
827
+ }])
828
828
  ```
829
829
  ##### Type: `BROWSER`
830
830
 
@@ -843,20 +843,20 @@ class Monitor(pulumi.CustomResource):
843
843
  name="monitor",
844
844
  period="EVERY_MINUTE",
845
845
  locations_privates=[location.id],
846
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
847
- name="some_name",
848
- value="some_value",
849
- )],
846
+ custom_headers=[{
847
+ "name": "some_name",
848
+ "value": "some_value",
849
+ }],
850
850
  enable_screenshot_on_failure_and_script=True,
851
851
  validation_string="success",
852
852
  verify_ssl=True,
853
853
  runtime_type_version="100",
854
854
  runtime_type="CHROME_BROWSER",
855
855
  script_language="JAVASCRIPT",
856
- tags=[newrelic.synthetics.MonitorTagArgs(
857
- key="some_key",
858
- values=["some_value"],
859
- )])
856
+ tags=[{
857
+ "key": "some_key",
858
+ "values": ["some_value"],
859
+ }])
860
860
  ```
861
861
 
862
862
  ## Import
@@ -875,7 +875,7 @@ class Monitor(pulumi.CustomResource):
875
875
  :param pulumi.Input[bool] bypass_head_request: Monitor should skip default HEAD request and instead use GET verb in check.
876
876
 
877
877
  The `BROWSER` monitor type supports the following additional arguments:
878
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorCustomHeaderArgs']]]] custom_headers: Custom headers to use in monitor job. See Nested custom_header blocks below for details.
878
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MonitorCustomHeaderArgs', 'MonitorCustomHeaderArgsDict']]]] custom_headers: Custom headers to use in monitor job. See Nested custom_header blocks below for details.
879
879
  :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
880
880
  :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`.
881
881
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
@@ -887,7 +887,7 @@ class Monitor(pulumi.CustomResource):
887
887
  :param pulumi.Input[str] runtime_type_version: The runtime type that the monitor will run. Valid value is `100`.
888
888
  :param pulumi.Input[str] script_language: The programing language that should execute the script.
889
889
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
890
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
890
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MonitorTagArgs', 'MonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
891
891
 
892
892
  The `SIMPLE` monitor type supports the following additional arguments:
893
893
  :param pulumi.Input[bool] treat_redirect_as_failure: Categorize redirects during a monitor job as a failure.
@@ -920,18 +920,18 @@ class Monitor(pulumi.CustomResource):
920
920
  uri="https://www.one.newrelic.com",
921
921
  type="SIMPLE",
922
922
  locations_publics=["AP_SOUTH_1"],
923
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
924
- name="some_name",
925
- value="some_value",
926
- )],
923
+ custom_headers=[{
924
+ "name": "some_name",
925
+ "value": "some_value",
926
+ }],
927
927
  treat_redirect_as_failure=True,
928
928
  validation_string="success",
929
929
  bypass_head_request=True,
930
930
  verify_ssl=True,
931
- tags=[newrelic.synthetics.MonitorTagArgs(
932
- key="some_key",
933
- values=["some_value"],
934
- )])
931
+ tags=[{
932
+ "key": "some_key",
933
+ "values": ["some_value"],
934
+ }])
935
935
  ```
936
936
  ##### Type: `SIMPLE BROWSER`
937
937
 
@@ -946,10 +946,10 @@ class Monitor(pulumi.CustomResource):
946
946
  uri="https://www.one.newrelic.com",
947
947
  type="BROWSER",
948
948
  locations_publics=["AP_SOUTH_1"],
949
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
950
- name="some_name",
951
- value="some_value",
952
- )],
949
+ custom_headers=[{
950
+ "name": "some_name",
951
+ "value": "some_value",
952
+ }],
953
953
  enable_screenshot_on_failure_and_script=True,
954
954
  validation_string="success",
955
955
  verify_ssl=True,
@@ -958,10 +958,10 @@ class Monitor(pulumi.CustomResource):
958
958
  script_language="JAVASCRIPT",
959
959
  device_type="MOBILE",
960
960
  device_orientation="LANDSCAPE",
961
- tags=[newrelic.synthetics.MonitorTagArgs(
962
- key="some_key",
963
- values=["some_value"],
964
- )])
961
+ tags=[{
962
+ "key": "some_key",
963
+ "values": ["some_value"],
964
+ }])
965
965
  ```
966
966
  See additional examples.
967
967
 
@@ -990,18 +990,18 @@ class Monitor(pulumi.CustomResource):
990
990
  uri="https://www.one.newrelic.com",
991
991
  type="SIMPLE",
992
992
  locations_privates=[location.id],
993
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
994
- name="some_name",
995
- value="some_value",
996
- )],
993
+ custom_headers=[{
994
+ "name": "some_name",
995
+ "value": "some_value",
996
+ }],
997
997
  treat_redirect_as_failure=True,
998
998
  validation_string="success",
999
999
  bypass_head_request=True,
1000
1000
  verify_ssl=True,
1001
- tags=[newrelic.synthetics.MonitorTagArgs(
1002
- key="some_key",
1003
- values=["some_value"],
1004
- )])
1001
+ tags=[{
1002
+ "key": "some_key",
1003
+ "values": ["some_value"],
1004
+ }])
1005
1005
  ```
1006
1006
  ##### Type: `BROWSER`
1007
1007
 
@@ -1020,20 +1020,20 @@ class Monitor(pulumi.CustomResource):
1020
1020
  name="monitor",
1021
1021
  period="EVERY_MINUTE",
1022
1022
  locations_privates=[location.id],
1023
- custom_headers=[newrelic.synthetics.MonitorCustomHeaderArgs(
1024
- name="some_name",
1025
- value="some_value",
1026
- )],
1023
+ custom_headers=[{
1024
+ "name": "some_name",
1025
+ "value": "some_value",
1026
+ }],
1027
1027
  enable_screenshot_on_failure_and_script=True,
1028
1028
  validation_string="success",
1029
1029
  verify_ssl=True,
1030
1030
  runtime_type_version="100",
1031
1031
  runtime_type="CHROME_BROWSER",
1032
1032
  script_language="JAVASCRIPT",
1033
- tags=[newrelic.synthetics.MonitorTagArgs(
1034
- key="some_key",
1035
- values=["some_value"],
1036
- )])
1033
+ tags=[{
1034
+ "key": "some_key",
1035
+ "values": ["some_value"],
1036
+ }])
1037
1037
  ```
1038
1038
 
1039
1039
  ## Import
@@ -1063,7 +1063,7 @@ class Monitor(pulumi.CustomResource):
1063
1063
  opts: Optional[pulumi.ResourceOptions] = None,
1064
1064
  account_id: Optional[pulumi.Input[str]] = None,
1065
1065
  bypass_head_request: Optional[pulumi.Input[bool]] = None,
1066
- custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorCustomHeaderArgs']]]]] = None,
1066
+ custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MonitorCustomHeaderArgs', 'MonitorCustomHeaderArgsDict']]]]] = None,
1067
1067
  device_orientation: Optional[pulumi.Input[str]] = None,
1068
1068
  device_type: Optional[pulumi.Input[str]] = None,
1069
1069
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
@@ -1075,7 +1075,7 @@ class Monitor(pulumi.CustomResource):
1075
1075
  runtime_type_version: Optional[pulumi.Input[str]] = None,
1076
1076
  script_language: Optional[pulumi.Input[str]] = None,
1077
1077
  status: Optional[pulumi.Input[str]] = None,
1078
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorTagArgs']]]]] = None,
1078
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MonitorTagArgs', 'MonitorTagArgsDict']]]]] = None,
1079
1079
  treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
1080
1080
  type: Optional[pulumi.Input[str]] = None,
1081
1081
  uri: Optional[pulumi.Input[str]] = None,
@@ -1127,7 +1127,7 @@ class Monitor(pulumi.CustomResource):
1127
1127
  opts: Optional[pulumi.ResourceOptions] = None,
1128
1128
  account_id: Optional[pulumi.Input[str]] = None,
1129
1129
  bypass_head_request: Optional[pulumi.Input[bool]] = None,
1130
- custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorCustomHeaderArgs']]]]] = None,
1130
+ custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MonitorCustomHeaderArgs', 'MonitorCustomHeaderArgsDict']]]]] = None,
1131
1131
  device_orientation: Optional[pulumi.Input[str]] = None,
1132
1132
  device_type: Optional[pulumi.Input[str]] = None,
1133
1133
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
@@ -1140,7 +1140,7 @@ class Monitor(pulumi.CustomResource):
1140
1140
  runtime_type_version: Optional[pulumi.Input[str]] = None,
1141
1141
  script_language: Optional[pulumi.Input[str]] = None,
1142
1142
  status: Optional[pulumi.Input[str]] = None,
1143
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorTagArgs']]]]] = None,
1143
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MonitorTagArgs', 'MonitorTagArgsDict']]]]] = None,
1144
1144
  treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
1145
1145
  type: Optional[pulumi.Input[str]] = None,
1146
1146
  uri: Optional[pulumi.Input[str]] = None,
@@ -1157,7 +1157,7 @@ class Monitor(pulumi.CustomResource):
1157
1157
  :param pulumi.Input[bool] bypass_head_request: Monitor should skip default HEAD request and instead use GET verb in check.
1158
1158
 
1159
1159
  The `BROWSER` monitor type supports the following additional arguments:
1160
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorCustomHeaderArgs']]]] custom_headers: Custom headers to use in monitor job. See Nested custom_header blocks below for details.
1160
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MonitorCustomHeaderArgs', 'MonitorCustomHeaderArgsDict']]]] custom_headers: Custom headers to use in monitor job. See Nested custom_header blocks below for details.
1161
1161
  :param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
1162
1162
  :param pulumi.Input[str] device_type: Device emulation type field. Valid values are `MOBILE` and `TABLET`.
1163
1163
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
@@ -1170,7 +1170,7 @@ class Monitor(pulumi.CustomResource):
1170
1170
  :param pulumi.Input[str] runtime_type_version: The runtime type that the monitor will run. Valid value is `100`.
1171
1171
  :param pulumi.Input[str] script_language: The programing language that should execute the script.
1172
1172
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
1173
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
1173
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MonitorTagArgs', 'MonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
1174
1174
 
1175
1175
  The `SIMPLE` monitor type supports the following additional arguments:
1176
1176
  :param pulumi.Input[bool] treat_redirect_as_failure: Categorize redirects during a monitor job as a failure.