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
@@ -275,7 +275,7 @@ class NotificationChannel(pulumi.CustomResource):
275
275
  destination_id: Optional[pulumi.Input[str]] = None,
276
276
  name: Optional[pulumi.Input[str]] = None,
277
277
  product: Optional[pulumi.Input[str]] = None,
278
- properties: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationChannelPropertyArgs']]]]] = None,
278
+ properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationChannelPropertyArgs', 'NotificationChannelPropertyArgsDict']]]]] = None,
279
279
  type: Optional[pulumi.Input[str]] = None,
280
280
  __props__=None):
281
281
  """
@@ -296,11 +296,11 @@ class NotificationChannel(pulumi.CustomResource):
296
296
  type="WEBHOOK",
297
297
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
298
298
  product="IINT",
299
- properties=[newrelic.NotificationChannelPropertyArgs(
300
- key="payload",
301
- value="name: {{ foo }}",
302
- label="Payload Template",
303
- )])
299
+ properties=[{
300
+ "key": "payload",
301
+ "value": "name: {{ foo }}",
302
+ "label": "Payload Template",
303
+ }])
304
304
  ```
305
305
  See additional examples.
306
306
 
@@ -322,14 +322,14 @@ class NotificationChannel(pulumi.CustomResource):
322
322
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
323
323
  product="IINT",
324
324
  properties=[
325
- newrelic.NotificationChannelPropertyArgs(
326
- key="description",
327
- value="General description",
328
- ),
329
- newrelic.NotificationChannelPropertyArgs(
330
- key="short_description",
331
- value="Short description",
332
- ),
325
+ {
326
+ "key": "description",
327
+ "value": "General description",
328
+ },
329
+ {
330
+ "key": "short_description",
331
+ "value": "Short description",
332
+ },
333
333
  ])
334
334
  ```
335
335
  ##### [ServiceNowApp](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels/#servicenowapp)
@@ -357,14 +357,14 @@ class NotificationChannel(pulumi.CustomResource):
357
357
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
358
358
  product="IINT",
359
359
  properties=[
360
- newrelic.NotificationChannelPropertyArgs(
361
- key="subject",
362
- value="New Subject Title",
363
- ),
364
- newrelic.NotificationChannelPropertyArgs(
365
- key="customDetailsEmail",
366
- value="issue id - {{issueId}}",
367
- ),
360
+ {
361
+ "key": "subject",
362
+ "value": "New Subject Title",
363
+ },
364
+ {
365
+ "key": "customDetailsEmail",
366
+ "value": "issue id - {{issueId}}",
367
+ },
368
368
  ])
369
369
  ```
370
370
 
@@ -380,22 +380,22 @@ class NotificationChannel(pulumi.CustomResource):
380
380
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
381
381
  product="ERROR_TRACKING",
382
382
  properties=[
383
- newrelic.NotificationChannelPropertyArgs(
384
- key="project",
385
- value="10000",
386
- ),
387
- newrelic.NotificationChannelPropertyArgs(
388
- key="issuetype",
389
- value="10004",
390
- ),
391
- newrelic.NotificationChannelPropertyArgs(
392
- key="description",
393
- value="Issue ID: {{ issueId }}",
394
- ),
395
- newrelic.NotificationChannelPropertyArgs(
396
- key="summary",
397
- value="{{ annotations.title.[0] }}",
398
- ),
383
+ {
384
+ "key": "project",
385
+ "value": "10000",
386
+ },
387
+ {
388
+ "key": "issuetype",
389
+ "value": "10004",
390
+ },
391
+ {
392
+ "key": "description",
393
+ "value": "Issue ID: {{ issueId }}",
394
+ },
395
+ {
396
+ "key": "summary",
397
+ "value": "{{ annotations.title.[0] }}",
398
+ },
399
399
  ])
400
400
  ```
401
401
 
@@ -411,22 +411,22 @@ class NotificationChannel(pulumi.CustomResource):
411
411
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
412
412
  product="IINT",
413
413
  properties=[
414
- newrelic.NotificationChannelPropertyArgs(
415
- key="summary",
416
- value="General summary",
417
- ),
418
- newrelic.NotificationChannelPropertyArgs(
419
- key="service",
420
- label="Service Name",
421
- value="PTQK3FM",
422
- ),
423
- newrelic.NotificationChannelPropertyArgs(
424
- key="email",
425
- value="example@email.com",
426
- ),
427
- newrelic.NotificationChannelPropertyArgs(
428
- key="customDetails",
429
- value=\"\"\"{
414
+ {
415
+ "key": "summary",
416
+ "value": "General summary",
417
+ },
418
+ {
419
+ "key": "service",
420
+ "label": "Service Name",
421
+ "value": "PTQK3FM",
422
+ },
423
+ {
424
+ "key": "email",
425
+ "value": "example@email.com",
426
+ },
427
+ {
428
+ "key": "customDetails",
429
+ "value": \"\"\"{
430
430
  "id":{{json issueId}},
431
431
  "IssueURL":{{json issuePageUrl}},
432
432
  "NewRelic priority":{{json priority}},
@@ -440,7 +440,7 @@ class NotificationChannel(pulumi.CustomResource):
440
440
  "Workflow Name":{{json workflowName}}
441
441
  }
442
442
  \"\"\",
443
- ),
443
+ },
444
444
  ])
445
445
  ```
446
446
 
@@ -456,13 +456,13 @@ class NotificationChannel(pulumi.CustomResource):
456
456
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
457
457
  product="IINT",
458
458
  properties=[
459
- newrelic.NotificationChannelPropertyArgs(
460
- key="summary",
461
- value="General summary",
462
- ),
463
- newrelic.NotificationChannelPropertyArgs(
464
- key="customDetails",
465
- value=\"\"\"{
459
+ {
460
+ "key": "summary",
461
+ "value": "General summary",
462
+ },
463
+ {
464
+ "key": "customDetails",
465
+ "value": \"\"\"{
466
466
  "id":{{json issueId}},
467
467
  "IssueURL":{{json issuePageUrl}},
468
468
  "NewRelic priority":{{json priority}},
@@ -476,7 +476,7 @@ class NotificationChannel(pulumi.CustomResource):
476
476
  "Workflow Name":{{json workflowName}}
477
477
  }
478
478
  \"\"\",
479
- ),
479
+ },
480
480
  ])
481
481
  ```
482
482
 
@@ -505,14 +505,14 @@ class NotificationChannel(pulumi.CustomResource):
505
505
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
506
506
  product="IINT",
507
507
  properties=[
508
- newrelic.NotificationChannelPropertyArgs(
509
- key="eventSource",
510
- value="aws.partner/mydomain/myaccountid/name",
511
- ),
512
- newrelic.NotificationChannelPropertyArgs(
513
- key="eventContent",
514
- value="{ id: {{ json issueId }} }",
515
- ),
508
+ {
509
+ "key": "eventSource",
510
+ "value": "aws.partner/mydomain/myaccountid/name",
511
+ },
512
+ {
513
+ "key": "eventContent",
514
+ "value": "{ id: {{ json issueId }} }",
515
+ },
516
516
  ])
517
517
  ```
518
518
 
@@ -528,14 +528,14 @@ class NotificationChannel(pulumi.CustomResource):
528
528
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
529
529
  product="IINT",
530
530
  properties=[
531
- newrelic.NotificationChannelPropertyArgs(
532
- key="channelId",
533
- value="123456",
534
- ),
535
- newrelic.NotificationChannelPropertyArgs(
536
- key="customDetailsSlack",
537
- value="issue id - {{issueId}}",
538
- ),
531
+ {
532
+ "key": "channelId",
533
+ "value": "123456",
534
+ },
535
+ {
536
+ "key": "customDetailsSlack",
537
+ "value": "issue id - {{issueId}}",
538
+ },
539
539
  ])
540
540
  ```
541
541
 
@@ -554,14 +554,14 @@ class NotificationChannel(pulumi.CustomResource):
554
554
  account_id="12345678",
555
555
  name="destination-webhook",
556
556
  type="WEBHOOK",
557
- properties=[newrelic.NotificationDestinationPropertyArgs(
558
- key="url",
559
- value="https://webhook.mywebhook.com",
560
- )],
561
- auth_basic=newrelic.NotificationDestinationAuthBasicArgs(
562
- user="username",
563
- password="password",
564
- ))
557
+ properties=[{
558
+ "key": "url",
559
+ "value": "https://webhook.mywebhook.com",
560
+ }],
561
+ auth_basic={
562
+ "user": "username",
563
+ "password": "password",
564
+ })
565
565
  ```
566
566
 
567
567
  ### Create a channel
@@ -575,11 +575,11 @@ class NotificationChannel(pulumi.CustomResource):
575
575
  type="WEBHOOK",
576
576
  destination_id=webhook_destination["id"],
577
577
  product="IINT",
578
- properties=[newrelic.NotificationChannelPropertyArgs(
579
- key="payload",
580
- value="{name: foo}",
581
- label="Payload Template",
582
- )])
578
+ properties=[{
579
+ "key": "payload",
580
+ "value": "{name: foo}",
581
+ "label": "Payload Template",
582
+ }])
583
583
  ```
584
584
 
585
585
  ## Additional Information
@@ -611,7 +611,7 @@ class NotificationChannel(pulumi.CustomResource):
611
611
  :param pulumi.Input[str] destination_id: The id of the destination.
612
612
  :param pulumi.Input[str] name: The name of the channel.
613
613
  :param pulumi.Input[str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
614
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationChannelPropertyArgs']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
614
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationChannelPropertyArgs', 'NotificationChannelPropertyArgsDict']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
615
615
  :param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
616
616
  """
617
617
  ...
@@ -638,11 +638,11 @@ class NotificationChannel(pulumi.CustomResource):
638
638
  type="WEBHOOK",
639
639
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
640
640
  product="IINT",
641
- properties=[newrelic.NotificationChannelPropertyArgs(
642
- key="payload",
643
- value="name: {{ foo }}",
644
- label="Payload Template",
645
- )])
641
+ properties=[{
642
+ "key": "payload",
643
+ "value": "name: {{ foo }}",
644
+ "label": "Payload Template",
645
+ }])
646
646
  ```
647
647
  See additional examples.
648
648
 
@@ -664,14 +664,14 @@ class NotificationChannel(pulumi.CustomResource):
664
664
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
665
665
  product="IINT",
666
666
  properties=[
667
- newrelic.NotificationChannelPropertyArgs(
668
- key="description",
669
- value="General description",
670
- ),
671
- newrelic.NotificationChannelPropertyArgs(
672
- key="short_description",
673
- value="Short description",
674
- ),
667
+ {
668
+ "key": "description",
669
+ "value": "General description",
670
+ },
671
+ {
672
+ "key": "short_description",
673
+ "value": "Short description",
674
+ },
675
675
  ])
676
676
  ```
677
677
  ##### [ServiceNowApp](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels/#servicenowapp)
@@ -699,14 +699,14 @@ class NotificationChannel(pulumi.CustomResource):
699
699
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
700
700
  product="IINT",
701
701
  properties=[
702
- newrelic.NotificationChannelPropertyArgs(
703
- key="subject",
704
- value="New Subject Title",
705
- ),
706
- newrelic.NotificationChannelPropertyArgs(
707
- key="customDetailsEmail",
708
- value="issue id - {{issueId}}",
709
- ),
702
+ {
703
+ "key": "subject",
704
+ "value": "New Subject Title",
705
+ },
706
+ {
707
+ "key": "customDetailsEmail",
708
+ "value": "issue id - {{issueId}}",
709
+ },
710
710
  ])
711
711
  ```
712
712
 
@@ -722,22 +722,22 @@ class NotificationChannel(pulumi.CustomResource):
722
722
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
723
723
  product="ERROR_TRACKING",
724
724
  properties=[
725
- newrelic.NotificationChannelPropertyArgs(
726
- key="project",
727
- value="10000",
728
- ),
729
- newrelic.NotificationChannelPropertyArgs(
730
- key="issuetype",
731
- value="10004",
732
- ),
733
- newrelic.NotificationChannelPropertyArgs(
734
- key="description",
735
- value="Issue ID: {{ issueId }}",
736
- ),
737
- newrelic.NotificationChannelPropertyArgs(
738
- key="summary",
739
- value="{{ annotations.title.[0] }}",
740
- ),
725
+ {
726
+ "key": "project",
727
+ "value": "10000",
728
+ },
729
+ {
730
+ "key": "issuetype",
731
+ "value": "10004",
732
+ },
733
+ {
734
+ "key": "description",
735
+ "value": "Issue ID: {{ issueId }}",
736
+ },
737
+ {
738
+ "key": "summary",
739
+ "value": "{{ annotations.title.[0] }}",
740
+ },
741
741
  ])
742
742
  ```
743
743
 
@@ -753,22 +753,22 @@ class NotificationChannel(pulumi.CustomResource):
753
753
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
754
754
  product="IINT",
755
755
  properties=[
756
- newrelic.NotificationChannelPropertyArgs(
757
- key="summary",
758
- value="General summary",
759
- ),
760
- newrelic.NotificationChannelPropertyArgs(
761
- key="service",
762
- label="Service Name",
763
- value="PTQK3FM",
764
- ),
765
- newrelic.NotificationChannelPropertyArgs(
766
- key="email",
767
- value="example@email.com",
768
- ),
769
- newrelic.NotificationChannelPropertyArgs(
770
- key="customDetails",
771
- value=\"\"\"{
756
+ {
757
+ "key": "summary",
758
+ "value": "General summary",
759
+ },
760
+ {
761
+ "key": "service",
762
+ "label": "Service Name",
763
+ "value": "PTQK3FM",
764
+ },
765
+ {
766
+ "key": "email",
767
+ "value": "example@email.com",
768
+ },
769
+ {
770
+ "key": "customDetails",
771
+ "value": \"\"\"{
772
772
  "id":{{json issueId}},
773
773
  "IssueURL":{{json issuePageUrl}},
774
774
  "NewRelic priority":{{json priority}},
@@ -782,7 +782,7 @@ class NotificationChannel(pulumi.CustomResource):
782
782
  "Workflow Name":{{json workflowName}}
783
783
  }
784
784
  \"\"\",
785
- ),
785
+ },
786
786
  ])
787
787
  ```
788
788
 
@@ -798,13 +798,13 @@ class NotificationChannel(pulumi.CustomResource):
798
798
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
799
799
  product="IINT",
800
800
  properties=[
801
- newrelic.NotificationChannelPropertyArgs(
802
- key="summary",
803
- value="General summary",
804
- ),
805
- newrelic.NotificationChannelPropertyArgs(
806
- key="customDetails",
807
- value=\"\"\"{
801
+ {
802
+ "key": "summary",
803
+ "value": "General summary",
804
+ },
805
+ {
806
+ "key": "customDetails",
807
+ "value": \"\"\"{
808
808
  "id":{{json issueId}},
809
809
  "IssueURL":{{json issuePageUrl}},
810
810
  "NewRelic priority":{{json priority}},
@@ -818,7 +818,7 @@ class NotificationChannel(pulumi.CustomResource):
818
818
  "Workflow Name":{{json workflowName}}
819
819
  }
820
820
  \"\"\",
821
- ),
821
+ },
822
822
  ])
823
823
  ```
824
824
 
@@ -847,14 +847,14 @@ class NotificationChannel(pulumi.CustomResource):
847
847
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
848
848
  product="IINT",
849
849
  properties=[
850
- newrelic.NotificationChannelPropertyArgs(
851
- key="eventSource",
852
- value="aws.partner/mydomain/myaccountid/name",
853
- ),
854
- newrelic.NotificationChannelPropertyArgs(
855
- key="eventContent",
856
- value="{ id: {{ json issueId }} }",
857
- ),
850
+ {
851
+ "key": "eventSource",
852
+ "value": "aws.partner/mydomain/myaccountid/name",
853
+ },
854
+ {
855
+ "key": "eventContent",
856
+ "value": "{ id: {{ json issueId }} }",
857
+ },
858
858
  ])
859
859
  ```
860
860
 
@@ -870,14 +870,14 @@ class NotificationChannel(pulumi.CustomResource):
870
870
  destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
871
871
  product="IINT",
872
872
  properties=[
873
- newrelic.NotificationChannelPropertyArgs(
874
- key="channelId",
875
- value="123456",
876
- ),
877
- newrelic.NotificationChannelPropertyArgs(
878
- key="customDetailsSlack",
879
- value="issue id - {{issueId}}",
880
- ),
873
+ {
874
+ "key": "channelId",
875
+ "value": "123456",
876
+ },
877
+ {
878
+ "key": "customDetailsSlack",
879
+ "value": "issue id - {{issueId}}",
880
+ },
881
881
  ])
882
882
  ```
883
883
 
@@ -896,14 +896,14 @@ class NotificationChannel(pulumi.CustomResource):
896
896
  account_id="12345678",
897
897
  name="destination-webhook",
898
898
  type="WEBHOOK",
899
- properties=[newrelic.NotificationDestinationPropertyArgs(
900
- key="url",
901
- value="https://webhook.mywebhook.com",
902
- )],
903
- auth_basic=newrelic.NotificationDestinationAuthBasicArgs(
904
- user="username",
905
- password="password",
906
- ))
899
+ properties=[{
900
+ "key": "url",
901
+ "value": "https://webhook.mywebhook.com",
902
+ }],
903
+ auth_basic={
904
+ "user": "username",
905
+ "password": "password",
906
+ })
907
907
  ```
908
908
 
909
909
  ### Create a channel
@@ -917,11 +917,11 @@ class NotificationChannel(pulumi.CustomResource):
917
917
  type="WEBHOOK",
918
918
  destination_id=webhook_destination["id"],
919
919
  product="IINT",
920
- properties=[newrelic.NotificationChannelPropertyArgs(
921
- key="payload",
922
- value="{name: foo}",
923
- label="Payload Template",
924
- )])
920
+ properties=[{
921
+ "key": "payload",
922
+ "value": "{name: foo}",
923
+ "label": "Payload Template",
924
+ }])
925
925
  ```
926
926
 
927
927
  ## Additional Information
@@ -966,7 +966,7 @@ class NotificationChannel(pulumi.CustomResource):
966
966
  destination_id: Optional[pulumi.Input[str]] = None,
967
967
  name: Optional[pulumi.Input[str]] = None,
968
968
  product: Optional[pulumi.Input[str]] = None,
969
- properties: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationChannelPropertyArgs']]]]] = None,
969
+ properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationChannelPropertyArgs', 'NotificationChannelPropertyArgsDict']]]]] = None,
970
970
  type: Optional[pulumi.Input[str]] = None,
971
971
  __props__=None):
972
972
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -1008,7 +1008,7 @@ class NotificationChannel(pulumi.CustomResource):
1008
1008
  destination_id: Optional[pulumi.Input[str]] = None,
1009
1009
  name: Optional[pulumi.Input[str]] = None,
1010
1010
  product: Optional[pulumi.Input[str]] = None,
1011
- properties: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationChannelPropertyArgs']]]]] = None,
1011
+ properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationChannelPropertyArgs', 'NotificationChannelPropertyArgsDict']]]]] = None,
1012
1012
  status: Optional[pulumi.Input[str]] = None,
1013
1013
  type: Optional[pulumi.Input[str]] = None) -> 'NotificationChannel':
1014
1014
  """
@@ -1023,7 +1023,7 @@ class NotificationChannel(pulumi.CustomResource):
1023
1023
  :param pulumi.Input[str] destination_id: The id of the destination.
1024
1024
  :param pulumi.Input[str] name: The name of the channel.
1025
1025
  :param pulumi.Input[str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
1026
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationChannelPropertyArgs']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
1026
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NotificationChannelPropertyArgs', 'NotificationChannelPropertyArgsDict']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
1027
1027
  :param pulumi.Input[str] status: The status of the channel.
1028
1028
  :param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
1029
1029
  """