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
@@ -577,7 +577,7 @@ class InfraAlertCondition(pulumi.CustomResource):
577
577
  resource_name: str,
578
578
  opts: Optional[pulumi.ResourceOptions] = None,
579
579
  comparison: Optional[pulumi.Input[str]] = None,
580
- critical: Optional[pulumi.Input[pulumi.InputType['InfraAlertConditionCriticalArgs']]] = None,
580
+ critical: Optional[pulumi.Input[Union['InfraAlertConditionCriticalArgs', 'InfraAlertConditionCriticalArgsDict']]] = None,
581
581
  description: Optional[pulumi.Input[str]] = None,
582
582
  enabled: Optional[pulumi.Input[bool]] = None,
583
583
  event: Optional[pulumi.Input[str]] = None,
@@ -589,7 +589,7 @@ class InfraAlertCondition(pulumi.CustomResource):
589
589
  select: Optional[pulumi.Input[str]] = None,
590
590
  type: Optional[pulumi.Input[str]] = None,
591
591
  violation_close_timer: Optional[pulumi.Input[int]] = None,
592
- warning: Optional[pulumi.Input[pulumi.InputType['InfraAlertConditionWarningArgs']]] = None,
592
+ warning: Optional[pulumi.Input[Union['InfraAlertConditionWarningArgs', 'InfraAlertConditionWarningArgsDict']]] = None,
593
593
  where: Optional[pulumi.Input[str]] = None,
594
594
  __props__=None):
595
595
  """
@@ -613,16 +613,16 @@ class InfraAlertCondition(pulumi.CustomResource):
613
613
  select="diskUsedPercent",
614
614
  comparison="above",
615
615
  where="(hostname LIKE '%frontend%')",
616
- critical=newrelic.InfraAlertConditionCriticalArgs(
617
- duration=25,
618
- value=90,
619
- time_function="all",
620
- ),
621
- warning=newrelic.InfraAlertConditionWarningArgs(
622
- duration=10,
623
- value=80,
624
- time_function="all",
625
- ))
616
+ critical={
617
+ "duration": 25,
618
+ "value": 90,
619
+ "time_function": "all",
620
+ },
621
+ warning={
622
+ "duration": 10,
623
+ "value": 80,
624
+ "time_function": "all",
625
+ })
626
626
  high_db_conn_count = newrelic.InfraAlertCondition("high_db_conn_count",
627
627
  policy_id=foo.id,
628
628
  name="High database connection count",
@@ -633,11 +633,11 @@ class InfraAlertCondition(pulumi.CustomResource):
633
633
  comparison="above",
634
634
  where="(hostname LIKE '%db%')",
635
635
  integration_provider="RdsDbInstance",
636
- critical=newrelic.InfraAlertConditionCriticalArgs(
637
- duration=25,
638
- value=90,
639
- time_function="all",
640
- ))
636
+ critical={
637
+ "duration": 25,
638
+ "value": 90,
639
+ "time_function": "all",
640
+ })
641
641
  process_not_running = newrelic.InfraAlertCondition("process_not_running",
642
642
  policy_id=foo.id,
643
643
  name="Process not running (/usr/bin/ruby)",
@@ -646,19 +646,19 @@ class InfraAlertCondition(pulumi.CustomResource):
646
646
  comparison="equal",
647
647
  where="hostname = 'web01'",
648
648
  process_where="commandName = '/usr/bin/ruby'",
649
- critical=newrelic.InfraAlertConditionCriticalArgs(
650
- duration=5,
651
- value=0,
652
- ))
649
+ critical={
650
+ "duration": 5,
651
+ "value": 0,
652
+ })
653
653
  host_not_reporting = newrelic.InfraAlertCondition("host_not_reporting",
654
654
  policy_id=foo.id,
655
655
  name="Host not reporting",
656
656
  description="Critical alert when the host is not reporting",
657
657
  type="infra_host_not_reporting",
658
658
  where="(hostname LIKE '%frontend%')",
659
- critical=newrelic.InfraAlertConditionCriticalArgs(
660
- duration=5,
661
- ))
659
+ critical={
660
+ "duration": 5,
661
+ })
662
662
  ```
663
663
 
664
664
  ## Thresholds
@@ -687,30 +687,30 @@ class InfraAlertCondition(pulumi.CustomResource):
687
687
  select="diskUsedPercent",
688
688
  comparison="above",
689
689
  where="(hostname LIKE '%frontend%')",
690
- critical=newrelic.InfraAlertConditionCriticalArgs(
691
- duration=25,
692
- value=90,
693
- time_function="all",
694
- ),
695
- warning=newrelic.InfraAlertConditionWarningArgs(
696
- duration=10,
697
- value=80,
698
- time_function="all",
699
- ))
690
+ critical={
691
+ "duration": 25,
692
+ "value": 90,
693
+ "time_function": "all",
694
+ },
695
+ warning={
696
+ "duration": 10,
697
+ "value": 80,
698
+ "time_function": "all",
699
+ })
700
700
  my_condition_entity_tags = newrelic.EntityTags("my_condition_entity_tags",
701
701
  guid=foo_infra_alert_condition.entity_guid,
702
702
  tags=[
703
- newrelic.EntityTagsTagArgs(
704
- key="my-key",
705
- values=[
703
+ {
704
+ "key": "my-key",
705
+ "values": [
706
706
  "my-value",
707
707
  "my-other-value",
708
708
  ],
709
- ),
710
- newrelic.EntityTagsTagArgs(
711
- key="my-key-2",
712
- values=["my-value-2"],
713
- ),
709
+ },
710
+ {
711
+ "key": "my-key-2",
712
+ "values": ["my-value-2"],
713
+ },
714
714
  ])
715
715
  ```
716
716
 
@@ -725,7 +725,7 @@ class InfraAlertCondition(pulumi.CustomResource):
725
725
  :param str resource_name: The name of the resource.
726
726
  :param pulumi.ResourceOptions opts: Options for the resource.
727
727
  :param pulumi.Input[str] comparison: The operator used to evaluate the threshold value. Valid values are `above`, `below`, and `equal`. Supported by the `infra_metric` and `infra_process_running` condition types.
728
- :param pulumi.Input[pulumi.InputType['InfraAlertConditionCriticalArgs']] critical: Identifies the threshold parameters for opening a critical alert incident. See Thresholds below for details.
728
+ :param pulumi.Input[Union['InfraAlertConditionCriticalArgs', 'InfraAlertConditionCriticalArgsDict']] critical: Identifies the threshold parameters for opening a critical alert incident. See Thresholds below for details.
729
729
  :param pulumi.Input[str] description: The description of the Infrastructure alert condition.
730
730
  :param pulumi.Input[bool] enabled: Whether the condition is turned on or off. Valid values are `true` and `false`. Defaults to `true`.
731
731
  :param pulumi.Input[str] event: The metric event; for example, `SystemSample` or `StorageSample`. Supported by the `infra_metric` condition type.
@@ -741,7 +741,7 @@ class InfraAlertCondition(pulumi.CustomResource):
741
741
  ```
742
742
  Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
743
743
  ```
744
- :param pulumi.Input[pulumi.InputType['InfraAlertConditionWarningArgs']] warning: Identifies the threshold parameters for opening a warning alert incident. See Thresholds below for details.
744
+ :param pulumi.Input[Union['InfraAlertConditionWarningArgs', 'InfraAlertConditionWarningArgsDict']] warning: Identifies the threshold parameters for opening a warning alert incident. See Thresholds below for details.
745
745
  :param pulumi.Input[str] where: If applicable, this identifies any Infrastructure host filters used; for example: `hostname LIKE '%cassandra%'`.
746
746
  """
747
747
  ...
@@ -771,16 +771,16 @@ class InfraAlertCondition(pulumi.CustomResource):
771
771
  select="diskUsedPercent",
772
772
  comparison="above",
773
773
  where="(hostname LIKE '%frontend%')",
774
- critical=newrelic.InfraAlertConditionCriticalArgs(
775
- duration=25,
776
- value=90,
777
- time_function="all",
778
- ),
779
- warning=newrelic.InfraAlertConditionWarningArgs(
780
- duration=10,
781
- value=80,
782
- time_function="all",
783
- ))
774
+ critical={
775
+ "duration": 25,
776
+ "value": 90,
777
+ "time_function": "all",
778
+ },
779
+ warning={
780
+ "duration": 10,
781
+ "value": 80,
782
+ "time_function": "all",
783
+ })
784
784
  high_db_conn_count = newrelic.InfraAlertCondition("high_db_conn_count",
785
785
  policy_id=foo.id,
786
786
  name="High database connection count",
@@ -791,11 +791,11 @@ class InfraAlertCondition(pulumi.CustomResource):
791
791
  comparison="above",
792
792
  where="(hostname LIKE '%db%')",
793
793
  integration_provider="RdsDbInstance",
794
- critical=newrelic.InfraAlertConditionCriticalArgs(
795
- duration=25,
796
- value=90,
797
- time_function="all",
798
- ))
794
+ critical={
795
+ "duration": 25,
796
+ "value": 90,
797
+ "time_function": "all",
798
+ })
799
799
  process_not_running = newrelic.InfraAlertCondition("process_not_running",
800
800
  policy_id=foo.id,
801
801
  name="Process not running (/usr/bin/ruby)",
@@ -804,19 +804,19 @@ class InfraAlertCondition(pulumi.CustomResource):
804
804
  comparison="equal",
805
805
  where="hostname = 'web01'",
806
806
  process_where="commandName = '/usr/bin/ruby'",
807
- critical=newrelic.InfraAlertConditionCriticalArgs(
808
- duration=5,
809
- value=0,
810
- ))
807
+ critical={
808
+ "duration": 5,
809
+ "value": 0,
810
+ })
811
811
  host_not_reporting = newrelic.InfraAlertCondition("host_not_reporting",
812
812
  policy_id=foo.id,
813
813
  name="Host not reporting",
814
814
  description="Critical alert when the host is not reporting",
815
815
  type="infra_host_not_reporting",
816
816
  where="(hostname LIKE '%frontend%')",
817
- critical=newrelic.InfraAlertConditionCriticalArgs(
818
- duration=5,
819
- ))
817
+ critical={
818
+ "duration": 5,
819
+ })
820
820
  ```
821
821
 
822
822
  ## Thresholds
@@ -845,30 +845,30 @@ class InfraAlertCondition(pulumi.CustomResource):
845
845
  select="diskUsedPercent",
846
846
  comparison="above",
847
847
  where="(hostname LIKE '%frontend%')",
848
- critical=newrelic.InfraAlertConditionCriticalArgs(
849
- duration=25,
850
- value=90,
851
- time_function="all",
852
- ),
853
- warning=newrelic.InfraAlertConditionWarningArgs(
854
- duration=10,
855
- value=80,
856
- time_function="all",
857
- ))
848
+ critical={
849
+ "duration": 25,
850
+ "value": 90,
851
+ "time_function": "all",
852
+ },
853
+ warning={
854
+ "duration": 10,
855
+ "value": 80,
856
+ "time_function": "all",
857
+ })
858
858
  my_condition_entity_tags = newrelic.EntityTags("my_condition_entity_tags",
859
859
  guid=foo_infra_alert_condition.entity_guid,
860
860
  tags=[
861
- newrelic.EntityTagsTagArgs(
862
- key="my-key",
863
- values=[
861
+ {
862
+ "key": "my-key",
863
+ "values": [
864
864
  "my-value",
865
865
  "my-other-value",
866
866
  ],
867
- ),
868
- newrelic.EntityTagsTagArgs(
869
- key="my-key-2",
870
- values=["my-value-2"],
871
- ),
867
+ },
868
+ {
869
+ "key": "my-key-2",
870
+ "values": ["my-value-2"],
871
+ },
872
872
  ])
873
873
  ```
874
874
 
@@ -896,7 +896,7 @@ class InfraAlertCondition(pulumi.CustomResource):
896
896
  resource_name: str,
897
897
  opts: Optional[pulumi.ResourceOptions] = None,
898
898
  comparison: Optional[pulumi.Input[str]] = None,
899
- critical: Optional[pulumi.Input[pulumi.InputType['InfraAlertConditionCriticalArgs']]] = None,
899
+ critical: Optional[pulumi.Input[Union['InfraAlertConditionCriticalArgs', 'InfraAlertConditionCriticalArgsDict']]] = None,
900
900
  description: Optional[pulumi.Input[str]] = None,
901
901
  enabled: Optional[pulumi.Input[bool]] = None,
902
902
  event: Optional[pulumi.Input[str]] = None,
@@ -908,7 +908,7 @@ class InfraAlertCondition(pulumi.CustomResource):
908
908
  select: Optional[pulumi.Input[str]] = None,
909
909
  type: Optional[pulumi.Input[str]] = None,
910
910
  violation_close_timer: Optional[pulumi.Input[int]] = None,
911
- warning: Optional[pulumi.Input[pulumi.InputType['InfraAlertConditionWarningArgs']]] = None,
911
+ warning: Optional[pulumi.Input[Union['InfraAlertConditionWarningArgs', 'InfraAlertConditionWarningArgsDict']]] = None,
912
912
  where: Optional[pulumi.Input[str]] = None,
913
913
  __props__=None):
914
914
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -953,7 +953,7 @@ class InfraAlertCondition(pulumi.CustomResource):
953
953
  opts: Optional[pulumi.ResourceOptions] = None,
954
954
  comparison: Optional[pulumi.Input[str]] = None,
955
955
  created_at: Optional[pulumi.Input[int]] = None,
956
- critical: Optional[pulumi.Input[pulumi.InputType['InfraAlertConditionCriticalArgs']]] = None,
956
+ critical: Optional[pulumi.Input[Union['InfraAlertConditionCriticalArgs', 'InfraAlertConditionCriticalArgsDict']]] = None,
957
957
  description: Optional[pulumi.Input[str]] = None,
958
958
  enabled: Optional[pulumi.Input[bool]] = None,
959
959
  entity_guid: Optional[pulumi.Input[str]] = None,
@@ -967,7 +967,7 @@ class InfraAlertCondition(pulumi.CustomResource):
967
967
  type: Optional[pulumi.Input[str]] = None,
968
968
  updated_at: Optional[pulumi.Input[int]] = None,
969
969
  violation_close_timer: Optional[pulumi.Input[int]] = None,
970
- warning: Optional[pulumi.Input[pulumi.InputType['InfraAlertConditionWarningArgs']]] = None,
970
+ warning: Optional[pulumi.Input[Union['InfraAlertConditionWarningArgs', 'InfraAlertConditionWarningArgsDict']]] = None,
971
971
  where: Optional[pulumi.Input[str]] = None) -> 'InfraAlertCondition':
972
972
  """
973
973
  Get an existing InfraAlertCondition resource's state with the given name, id, and optional extra
@@ -978,7 +978,7 @@ class InfraAlertCondition(pulumi.CustomResource):
978
978
  :param pulumi.ResourceOptions opts: Options for the resource.
979
979
  :param pulumi.Input[str] comparison: The operator used to evaluate the threshold value. Valid values are `above`, `below`, and `equal`. Supported by the `infra_metric` and `infra_process_running` condition types.
980
980
  :param pulumi.Input[int] created_at: The timestamp the alert condition was created.
981
- :param pulumi.Input[pulumi.InputType['InfraAlertConditionCriticalArgs']] critical: Identifies the threshold parameters for opening a critical alert incident. See Thresholds below for details.
981
+ :param pulumi.Input[Union['InfraAlertConditionCriticalArgs', 'InfraAlertConditionCriticalArgsDict']] critical: Identifies the threshold parameters for opening a critical alert incident. See Thresholds below for details.
982
982
  :param pulumi.Input[str] description: The description of the Infrastructure alert condition.
983
983
  :param pulumi.Input[bool] enabled: Whether the condition is turned on or off. Valid values are `true` and `false`. Defaults to `true`.
984
984
  :param pulumi.Input[str] entity_guid: The unique entity identifier of the condition in New Relic.
@@ -996,7 +996,7 @@ class InfraAlertCondition(pulumi.CustomResource):
996
996
  ```
997
997
  Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
998
998
  ```
999
- :param pulumi.Input[pulumi.InputType['InfraAlertConditionWarningArgs']] warning: Identifies the threshold parameters for opening a warning alert incident. See Thresholds below for details.
999
+ :param pulumi.Input[Union['InfraAlertConditionWarningArgs', 'InfraAlertConditionWarningArgsDict']] warning: Identifies the threshold parameters for opening a warning alert incident. See Thresholds below for details.
1000
1000
  :param pulumi.Input[str] where: If applicable, this identifies any Infrastructure host filters used; for example: `hostname LIKE '%cassandra%'`.
1001
1001
  """
1002
1002
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -65,7 +65,7 @@ class Event(pulumi.CustomResource):
65
65
  def __init__(__self__,
66
66
  resource_name: str,
67
67
  opts: Optional[pulumi.ResourceOptions] = None,
68
- events: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventEventArgs']]]]] = None,
68
+ events: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]]] = None,
69
69
  __props__=None):
70
70
  """
71
71
  Use this resource to create one or more Insights events.
@@ -76,26 +76,26 @@ class Event(pulumi.CustomResource):
76
76
  import pulumi
77
77
  import pulumi_newrelic as newrelic
78
78
 
79
- foo = newrelic.insights.Event("foo", events=[newrelic.insights.EventEventArgs(
80
- type="MyEvent",
81
- timestamp=1232471100,
82
- attributes=[
83
- newrelic.insights.EventEventAttributeArgs(
84
- key="a_string_attribute",
85
- value="a string",
86
- ),
87
- newrelic.insights.EventEventAttributeArgs(
88
- key="an_integer_attribute",
89
- value="42",
90
- type="int",
91
- ),
92
- newrelic.insights.EventEventAttributeArgs(
93
- key="a_float_attribute",
94
- value="101.1",
95
- type="float",
96
- ),
79
+ foo = newrelic.insights.Event("foo", events=[{
80
+ "type": "MyEvent",
81
+ "timestamp": 1232471100,
82
+ "attributes": [
83
+ {
84
+ "key": "a_string_attribute",
85
+ "value": "a string",
86
+ },
87
+ {
88
+ "key": "an_integer_attribute",
89
+ "value": "42",
90
+ "type": "int",
91
+ },
92
+ {
93
+ "key": "a_float_attribute",
94
+ "value": "101.1",
95
+ "type": "float",
96
+ },
97
97
  ],
98
- )])
98
+ }])
99
99
  ```
100
100
 
101
101
  ## Events
@@ -116,7 +116,7 @@ class Event(pulumi.CustomResource):
116
116
 
117
117
  :param str resource_name: The name of the resource.
118
118
  :param pulumi.ResourceOptions opts: Options for the resource.
119
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventEventArgs']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
119
+ :param pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
120
120
  """
121
121
  ...
122
122
  @overload
@@ -133,26 +133,26 @@ class Event(pulumi.CustomResource):
133
133
  import pulumi
134
134
  import pulumi_newrelic as newrelic
135
135
 
136
- foo = newrelic.insights.Event("foo", events=[newrelic.insights.EventEventArgs(
137
- type="MyEvent",
138
- timestamp=1232471100,
139
- attributes=[
140
- newrelic.insights.EventEventAttributeArgs(
141
- key="a_string_attribute",
142
- value="a string",
143
- ),
144
- newrelic.insights.EventEventAttributeArgs(
145
- key="an_integer_attribute",
146
- value="42",
147
- type="int",
148
- ),
149
- newrelic.insights.EventEventAttributeArgs(
150
- key="a_float_attribute",
151
- value="101.1",
152
- type="float",
153
- ),
136
+ foo = newrelic.insights.Event("foo", events=[{
137
+ "type": "MyEvent",
138
+ "timestamp": 1232471100,
139
+ "attributes": [
140
+ {
141
+ "key": "a_string_attribute",
142
+ "value": "a string",
143
+ },
144
+ {
145
+ "key": "an_integer_attribute",
146
+ "value": "42",
147
+ "type": "int",
148
+ },
149
+ {
150
+ "key": "a_float_attribute",
151
+ "value": "101.1",
152
+ "type": "float",
153
+ },
154
154
  ],
155
- )])
155
+ }])
156
156
  ```
157
157
 
158
158
  ## Events
@@ -186,7 +186,7 @@ class Event(pulumi.CustomResource):
186
186
  def _internal_init(__self__,
187
187
  resource_name: str,
188
188
  opts: Optional[pulumi.ResourceOptions] = None,
189
- events: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventEventArgs']]]]] = None,
189
+ events: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]]] = None,
190
190
  __props__=None):
191
191
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
192
192
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -209,7 +209,7 @@ class Event(pulumi.CustomResource):
209
209
  def get(resource_name: str,
210
210
  id: pulumi.Input[str],
211
211
  opts: Optional[pulumi.ResourceOptions] = None,
212
- events: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventEventArgs']]]]] = None) -> 'Event':
212
+ events: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]]] = None) -> 'Event':
213
213
  """
214
214
  Get an existing Event resource's state with the given name, id, and optional extra
215
215
  properties used to qualify the lookup.
@@ -217,7 +217,7 @@ class Event(pulumi.CustomResource):
217
217
  :param str resource_name: The unique name of the resulting resource.
218
218
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
219
219
  :param pulumi.ResourceOptions opts: Options for the resource.
220
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventEventArgs']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
220
+ :param pulumi.Input[Sequence[pulumi.Input[Union['EventEventArgs', 'EventEventArgsDict']]]] events: An event to insert into Insights. Multiple event blocks can be defined. See Events below for details.
221
221
  """
222
222
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
223
223