pulumi-newrelic 5.28.0a1723107045__py3-none-any.whl → 5.29.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_newrelic/alert_channel.py +69 -69
- pulumi_newrelic/alert_condition.py +49 -49
- pulumi_newrelic/alert_muting_rule.py +54 -54
- pulumi_newrelic/alert_policy.py +16 -16
- pulumi_newrelic/alert_policy_channel.py +16 -16
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +100 -100
- pulumi_newrelic/cloud/aws_integrations.py +798 -798
- pulumi_newrelic/cloud/azure_integrations.py +424 -424
- pulumi_newrelic/cloud/gcp_integrations.py +288 -288
- pulumi_newrelic/entity_tags.py +21 -21
- pulumi_newrelic/get_application.py +14 -14
- pulumi_newrelic/get_entity.py +4 -4
- pulumi_newrelic/get_key_transaction.py +14 -14
- pulumi_newrelic/get_notification_destination.py +4 -4
- pulumi_newrelic/get_obfuscation_expression.py +10 -10
- pulumi_newrelic/get_service_level_alert_helper.py +76 -76
- pulumi_newrelic/infra_alert_condition.py +90 -90
- pulumi_newrelic/insights/event.py +43 -43
- pulumi_newrelic/monitor_downtime.py +52 -52
- pulumi_newrelic/notification_channel.py +187 -187
- pulumi_newrelic/notification_destination.py +25 -25
- pulumi_newrelic/nrql_alert_condition.py +262 -164
- pulumi_newrelic/obfuscation_rule.py +15 -15
- pulumi_newrelic/one_dashboard.py +10 -10
- pulumi_newrelic/one_dashboard_raw.py +75 -75
- pulumi_newrelic/plugins/workload.py +101 -101
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/service_level.py +164 -164
- pulumi_newrelic/synthetics/alert_condition.py +32 -32
- pulumi_newrelic/synthetics/broken_links_monitor.py +21 -21
- pulumi_newrelic/synthetics/cert_check_monitor.py +21 -21
- pulumi_newrelic/synthetics/get_private_location.py +6 -6
- pulumi_newrelic/synthetics/monitor.py +74 -74
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +66 -66
- pulumi_newrelic/synthetics/script_monitor.py +58 -58
- pulumi_newrelic/synthetics/step_monitor.py +59 -59
- pulumi_newrelic/workflow.py +155 -155
- {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0.dist-info}/RECORD +41 -41
- {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0.dist-info}/top_level.txt +0 -0
pulumi_newrelic/workflow.py
CHANGED
@@ -380,12 +380,12 @@ class Workflow(pulumi.CustomResource):
|
|
380
380
|
resource_name: str,
|
381
381
|
opts: Optional[pulumi.ResourceOptions] = None,
|
382
382
|
account_id: Optional[pulumi.Input[str]] = None,
|
383
|
-
destinations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
383
|
+
destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]]] = None,
|
384
384
|
destinations_enabled: Optional[pulumi.Input[bool]] = None,
|
385
385
|
enabled: Optional[pulumi.Input[bool]] = None,
|
386
|
-
enrichments: Optional[pulumi.Input[
|
386
|
+
enrichments: Optional[pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']]] = None,
|
387
387
|
enrichments_enabled: Optional[pulumi.Input[bool]] = None,
|
388
|
-
issues_filter: Optional[pulumi.Input[
|
388
|
+
issues_filter: Optional[pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']]] = None,
|
389
389
|
muting_rules_handling: Optional[pulumi.Input[str]] = None,
|
390
390
|
name: Optional[pulumi.Input[str]] = None,
|
391
391
|
__props__=None):
|
@@ -402,18 +402,18 @@ class Workflow(pulumi.CustomResource):
|
|
402
402
|
foo = newrelic.Workflow("foo",
|
403
403
|
name="workflow-example",
|
404
404
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
405
|
-
issues_filter=
|
406
|
-
name
|
407
|
-
type
|
408
|
-
predicates
|
409
|
-
attribute
|
410
|
-
operator
|
411
|
-
values
|
412
|
-
|
413
|
-
|
414
|
-
destinations=[
|
415
|
-
channel_id
|
416
|
-
|
405
|
+
issues_filter={
|
406
|
+
"name": "filter-name",
|
407
|
+
"type": "FILTER",
|
408
|
+
"predicates": [{
|
409
|
+
"attribute": "accumulations.tag.team",
|
410
|
+
"operator": "EXACTLY_MATCHES",
|
411
|
+
"values": ["growth"],
|
412
|
+
}],
|
413
|
+
},
|
414
|
+
destinations=[{
|
415
|
+
"channel_id": some_channel["id"],
|
416
|
+
}])
|
417
417
|
```
|
418
418
|
|
419
419
|
## Policy-Based Workflow Example
|
@@ -430,41 +430,41 @@ class Workflow(pulumi.CustomResource):
|
|
430
430
|
webhook_destination = newrelic.NotificationDestination("webhook-destination",
|
431
431
|
name="destination-webhook",
|
432
432
|
type="WEBHOOK",
|
433
|
-
properties=[
|
434
|
-
key
|
435
|
-
value
|
436
|
-
|
437
|
-
auth_basic=
|
438
|
-
user
|
439
|
-
password
|
440
|
-
)
|
433
|
+
properties=[{
|
434
|
+
"key": "url",
|
435
|
+
"value": "https://example.com",
|
436
|
+
}],
|
437
|
+
auth_basic={
|
438
|
+
"user": "username",
|
439
|
+
"password": "password",
|
440
|
+
})
|
441
441
|
# Create a notification channel to use in the workflow
|
442
442
|
webhook_channel = newrelic.NotificationChannel("webhook-channel",
|
443
443
|
name="channel-webhook",
|
444
444
|
type="WEBHOOK",
|
445
445
|
destination_id=webhook_destination.id,
|
446
446
|
product="IINT",
|
447
|
-
properties=[
|
448
|
-
key
|
449
|
-
value
|
450
|
-
label
|
451
|
-
|
447
|
+
properties=[{
|
448
|
+
"key": "payload",
|
449
|
+
"value": "{}",
|
450
|
+
"label": "Payload Template",
|
451
|
+
}])
|
452
452
|
# A workflow that matches issues that include incidents triggered by the policy
|
453
453
|
workflow_example = newrelic.Workflow("workflow-example",
|
454
454
|
name="workflow-example",
|
455
455
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
456
|
-
issues_filter=
|
457
|
-
name
|
458
|
-
type
|
459
|
-
predicates
|
460
|
-
attribute
|
461
|
-
operator
|
462
|
-
values
|
463
|
-
|
464
|
-
|
465
|
-
destinations=[
|
466
|
-
channel_id
|
467
|
-
|
456
|
+
issues_filter={
|
457
|
+
"name": "Filter-name",
|
458
|
+
"type": "FILTER",
|
459
|
+
"predicates": [{
|
460
|
+
"attribute": "labels.policyIds",
|
461
|
+
"operator": "EXACTLY_MATCHES",
|
462
|
+
"values": [my_policy.id],
|
463
|
+
}],
|
464
|
+
},
|
465
|
+
destinations=[{
|
466
|
+
"channel_id": webhook_channel.id,
|
467
|
+
}])
|
468
468
|
```
|
469
469
|
|
470
470
|
### An example of a workflow with enrichments
|
@@ -476,26 +476,26 @@ class Workflow(pulumi.CustomResource):
|
|
476
476
|
workflow_example = newrelic.Workflow("workflow-example",
|
477
477
|
name="workflow-enrichment-example",
|
478
478
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
479
|
-
issues_filter=
|
480
|
-
name
|
481
|
-
type
|
482
|
-
predicates
|
483
|
-
attribute
|
484
|
-
operator
|
485
|
-
values
|
486
|
-
|
487
|
-
|
488
|
-
enrichments=
|
489
|
-
nrqls
|
490
|
-
name
|
491
|
-
configurations
|
492
|
-
query
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
destinations=[
|
497
|
-
channel_id
|
498
|
-
|
479
|
+
issues_filter={
|
480
|
+
"name": "Filter-name",
|
481
|
+
"type": "FILTER",
|
482
|
+
"predicates": [{
|
483
|
+
"attribute": "accumulations.tag.team",
|
484
|
+
"operator": "EXACTLY_MATCHES",
|
485
|
+
"values": ["my_team"],
|
486
|
+
}],
|
487
|
+
},
|
488
|
+
enrichments={
|
489
|
+
"nrqls": [{
|
490
|
+
"name": "Log Count",
|
491
|
+
"configurations": [{
|
492
|
+
"query": "SELECT count(*) FROM Log WHERE message like '%error%' since 10 minutes ago",
|
493
|
+
}],
|
494
|
+
}],
|
495
|
+
},
|
496
|
+
destinations=[{
|
497
|
+
"channel_id": webhook_channel["id"],
|
498
|
+
}])
|
499
499
|
```
|
500
500
|
|
501
501
|
### An example of a workflow with notification triggers
|
@@ -507,19 +507,19 @@ class Workflow(pulumi.CustomResource):
|
|
507
507
|
workflow_example = newrelic.Workflow("workflow-example",
|
508
508
|
name="workflow-enrichment-example",
|
509
509
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
510
|
-
issues_filter=
|
511
|
-
name
|
512
|
-
type
|
513
|
-
predicates
|
514
|
-
attribute
|
515
|
-
operator
|
516
|
-
values
|
517
|
-
|
518
|
-
|
519
|
-
destinations=[
|
520
|
-
channel_id
|
521
|
-
notification_triggers
|
522
|
-
|
510
|
+
issues_filter={
|
511
|
+
"name": "Filter-name",
|
512
|
+
"type": "FILTER",
|
513
|
+
"predicates": [{
|
514
|
+
"attribute": "accumulations.tag.team",
|
515
|
+
"operator": "EXACTLY_MATCHES",
|
516
|
+
"values": ["my_team"],
|
517
|
+
}],
|
518
|
+
},
|
519
|
+
destinations=[{
|
520
|
+
"channel_id": webhook_channel["id"],
|
521
|
+
"notification_triggers": ["ACTIVATED"],
|
522
|
+
}])
|
523
523
|
```
|
524
524
|
|
525
525
|
## Additional Information
|
@@ -559,13 +559,13 @@ class Workflow(pulumi.CustomResource):
|
|
559
559
|
:param str resource_name: The name of the resource.
|
560
560
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
561
561
|
:param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
|
562
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
562
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]] destinations: Notification configuration. See Nested destination blocks below for details.
|
563
563
|
:param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
|
564
564
|
these two are different flags, but they are functionally identical. Defaults to true.
|
565
565
|
:param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
|
566
|
-
:param pulumi.Input[
|
566
|
+
:param pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']] enrichments: Workflow's enrichments. See Nested enrichments blocks below for details.
|
567
567
|
:param pulumi.Input[bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
|
568
|
-
:param pulumi.Input[
|
568
|
+
:param pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
|
569
569
|
:param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
|
570
570
|
:param pulumi.Input[str] name: The name of the workflow.
|
571
571
|
"""
|
@@ -588,18 +588,18 @@ class Workflow(pulumi.CustomResource):
|
|
588
588
|
foo = newrelic.Workflow("foo",
|
589
589
|
name="workflow-example",
|
590
590
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
591
|
-
issues_filter=
|
592
|
-
name
|
593
|
-
type
|
594
|
-
predicates
|
595
|
-
attribute
|
596
|
-
operator
|
597
|
-
values
|
598
|
-
|
599
|
-
|
600
|
-
destinations=[
|
601
|
-
channel_id
|
602
|
-
|
591
|
+
issues_filter={
|
592
|
+
"name": "filter-name",
|
593
|
+
"type": "FILTER",
|
594
|
+
"predicates": [{
|
595
|
+
"attribute": "accumulations.tag.team",
|
596
|
+
"operator": "EXACTLY_MATCHES",
|
597
|
+
"values": ["growth"],
|
598
|
+
}],
|
599
|
+
},
|
600
|
+
destinations=[{
|
601
|
+
"channel_id": some_channel["id"],
|
602
|
+
}])
|
603
603
|
```
|
604
604
|
|
605
605
|
## Policy-Based Workflow Example
|
@@ -616,41 +616,41 @@ class Workflow(pulumi.CustomResource):
|
|
616
616
|
webhook_destination = newrelic.NotificationDestination("webhook-destination",
|
617
617
|
name="destination-webhook",
|
618
618
|
type="WEBHOOK",
|
619
|
-
properties=[
|
620
|
-
key
|
621
|
-
value
|
622
|
-
|
623
|
-
auth_basic=
|
624
|
-
user
|
625
|
-
password
|
626
|
-
)
|
619
|
+
properties=[{
|
620
|
+
"key": "url",
|
621
|
+
"value": "https://example.com",
|
622
|
+
}],
|
623
|
+
auth_basic={
|
624
|
+
"user": "username",
|
625
|
+
"password": "password",
|
626
|
+
})
|
627
627
|
# Create a notification channel to use in the workflow
|
628
628
|
webhook_channel = newrelic.NotificationChannel("webhook-channel",
|
629
629
|
name="channel-webhook",
|
630
630
|
type="WEBHOOK",
|
631
631
|
destination_id=webhook_destination.id,
|
632
632
|
product="IINT",
|
633
|
-
properties=[
|
634
|
-
key
|
635
|
-
value
|
636
|
-
label
|
637
|
-
|
633
|
+
properties=[{
|
634
|
+
"key": "payload",
|
635
|
+
"value": "{}",
|
636
|
+
"label": "Payload Template",
|
637
|
+
}])
|
638
638
|
# A workflow that matches issues that include incidents triggered by the policy
|
639
639
|
workflow_example = newrelic.Workflow("workflow-example",
|
640
640
|
name="workflow-example",
|
641
641
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
642
|
-
issues_filter=
|
643
|
-
name
|
644
|
-
type
|
645
|
-
predicates
|
646
|
-
attribute
|
647
|
-
operator
|
648
|
-
values
|
649
|
-
|
650
|
-
|
651
|
-
destinations=[
|
652
|
-
channel_id
|
653
|
-
|
642
|
+
issues_filter={
|
643
|
+
"name": "Filter-name",
|
644
|
+
"type": "FILTER",
|
645
|
+
"predicates": [{
|
646
|
+
"attribute": "labels.policyIds",
|
647
|
+
"operator": "EXACTLY_MATCHES",
|
648
|
+
"values": [my_policy.id],
|
649
|
+
}],
|
650
|
+
},
|
651
|
+
destinations=[{
|
652
|
+
"channel_id": webhook_channel.id,
|
653
|
+
}])
|
654
654
|
```
|
655
655
|
|
656
656
|
### An example of a workflow with enrichments
|
@@ -662,26 +662,26 @@ class Workflow(pulumi.CustomResource):
|
|
662
662
|
workflow_example = newrelic.Workflow("workflow-example",
|
663
663
|
name="workflow-enrichment-example",
|
664
664
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
665
|
-
issues_filter=
|
666
|
-
name
|
667
|
-
type
|
668
|
-
predicates
|
669
|
-
attribute
|
670
|
-
operator
|
671
|
-
values
|
672
|
-
|
673
|
-
|
674
|
-
enrichments=
|
675
|
-
nrqls
|
676
|
-
name
|
677
|
-
configurations
|
678
|
-
query
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
destinations=[
|
683
|
-
channel_id
|
684
|
-
|
665
|
+
issues_filter={
|
666
|
+
"name": "Filter-name",
|
667
|
+
"type": "FILTER",
|
668
|
+
"predicates": [{
|
669
|
+
"attribute": "accumulations.tag.team",
|
670
|
+
"operator": "EXACTLY_MATCHES",
|
671
|
+
"values": ["my_team"],
|
672
|
+
}],
|
673
|
+
},
|
674
|
+
enrichments={
|
675
|
+
"nrqls": [{
|
676
|
+
"name": "Log Count",
|
677
|
+
"configurations": [{
|
678
|
+
"query": "SELECT count(*) FROM Log WHERE message like '%error%' since 10 minutes ago",
|
679
|
+
}],
|
680
|
+
}],
|
681
|
+
},
|
682
|
+
destinations=[{
|
683
|
+
"channel_id": webhook_channel["id"],
|
684
|
+
}])
|
685
685
|
```
|
686
686
|
|
687
687
|
### An example of a workflow with notification triggers
|
@@ -693,19 +693,19 @@ class Workflow(pulumi.CustomResource):
|
|
693
693
|
workflow_example = newrelic.Workflow("workflow-example",
|
694
694
|
name="workflow-enrichment-example",
|
695
695
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
696
|
-
issues_filter=
|
697
|
-
name
|
698
|
-
type
|
699
|
-
predicates
|
700
|
-
attribute
|
701
|
-
operator
|
702
|
-
values
|
703
|
-
|
704
|
-
|
705
|
-
destinations=[
|
706
|
-
channel_id
|
707
|
-
notification_triggers
|
708
|
-
|
696
|
+
issues_filter={
|
697
|
+
"name": "Filter-name",
|
698
|
+
"type": "FILTER",
|
699
|
+
"predicates": [{
|
700
|
+
"attribute": "accumulations.tag.team",
|
701
|
+
"operator": "EXACTLY_MATCHES",
|
702
|
+
"values": ["my_team"],
|
703
|
+
}],
|
704
|
+
},
|
705
|
+
destinations=[{
|
706
|
+
"channel_id": webhook_channel["id"],
|
707
|
+
"notification_triggers": ["ACTIVATED"],
|
708
|
+
}])
|
709
709
|
```
|
710
710
|
|
711
711
|
## Additional Information
|
@@ -758,12 +758,12 @@ class Workflow(pulumi.CustomResource):
|
|
758
758
|
resource_name: str,
|
759
759
|
opts: Optional[pulumi.ResourceOptions] = None,
|
760
760
|
account_id: Optional[pulumi.Input[str]] = None,
|
761
|
-
destinations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
761
|
+
destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]]] = None,
|
762
762
|
destinations_enabled: Optional[pulumi.Input[bool]] = None,
|
763
763
|
enabled: Optional[pulumi.Input[bool]] = None,
|
764
|
-
enrichments: Optional[pulumi.Input[
|
764
|
+
enrichments: Optional[pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']]] = None,
|
765
765
|
enrichments_enabled: Optional[pulumi.Input[bool]] = None,
|
766
|
-
issues_filter: Optional[pulumi.Input[
|
766
|
+
issues_filter: Optional[pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']]] = None,
|
767
767
|
muting_rules_handling: Optional[pulumi.Input[str]] = None,
|
768
768
|
name: Optional[pulumi.Input[str]] = None,
|
769
769
|
__props__=None):
|
@@ -804,13 +804,13 @@ class Workflow(pulumi.CustomResource):
|
|
804
804
|
id: pulumi.Input[str],
|
805
805
|
opts: Optional[pulumi.ResourceOptions] = None,
|
806
806
|
account_id: Optional[pulumi.Input[str]] = None,
|
807
|
-
destinations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
807
|
+
destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]]] = None,
|
808
808
|
destinations_enabled: Optional[pulumi.Input[bool]] = None,
|
809
809
|
enabled: Optional[pulumi.Input[bool]] = None,
|
810
|
-
enrichments: Optional[pulumi.Input[
|
810
|
+
enrichments: Optional[pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']]] = None,
|
811
811
|
enrichments_enabled: Optional[pulumi.Input[bool]] = None,
|
812
812
|
guid: Optional[pulumi.Input[str]] = None,
|
813
|
-
issues_filter: Optional[pulumi.Input[
|
813
|
+
issues_filter: Optional[pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']]] = None,
|
814
814
|
last_run: Optional[pulumi.Input[str]] = None,
|
815
815
|
muting_rules_handling: Optional[pulumi.Input[str]] = None,
|
816
816
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -823,14 +823,14 @@ class Workflow(pulumi.CustomResource):
|
|
823
823
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
824
824
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
825
825
|
:param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
|
826
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
826
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkflowDestinationArgs', 'WorkflowDestinationArgsDict']]]] destinations: Notification configuration. See Nested destination blocks below for details.
|
827
827
|
:param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
|
828
828
|
these two are different flags, but they are functionally identical. Defaults to true.
|
829
829
|
:param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
|
830
|
-
:param pulumi.Input[
|
830
|
+
:param pulumi.Input[Union['WorkflowEnrichmentsArgs', 'WorkflowEnrichmentsArgsDict']] enrichments: Workflow's enrichments. See Nested enrichments blocks below for details.
|
831
831
|
:param pulumi.Input[bool] enrichments_enabled: Whether enrichments are enabled. Defaults to true.
|
832
832
|
:param pulumi.Input[str] guid: Workflow entity GUID
|
833
|
-
:param pulumi.Input[
|
833
|
+
:param pulumi.Input[Union['WorkflowIssuesFilterArgs', 'WorkflowIssuesFilterArgsDict']] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
|
834
834
|
:param pulumi.Input[str] last_run: The last time notification was sent for this workflow.
|
835
835
|
:param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
|
836
836
|
:param pulumi.Input[str] name: The name of the workflow.
|
@@ -2,59 +2,59 @@ pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,1
|
|
2
2
|
pulumi_newrelic/_inputs.py,sha256=frv70Hk0WYfIs-cUiqLcbehoAsKI0nRRvtXr9Fwi0Ms,497296
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
4
|
pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
|
5
|
-
pulumi_newrelic/alert_channel.py,sha256=
|
6
|
-
pulumi_newrelic/alert_condition.py,sha256=
|
7
|
-
pulumi_newrelic/alert_muting_rule.py,sha256=
|
8
|
-
pulumi_newrelic/alert_policy.py,sha256=
|
9
|
-
pulumi_newrelic/alert_policy_channel.py,sha256=
|
5
|
+
pulumi_newrelic/alert_channel.py,sha256=dg9-BYRjiQdXo_ykqrkQZZC8zrgS76dQI1nnV3lM2ZA,21387
|
6
|
+
pulumi_newrelic/alert_condition.py,sha256=cZ4Je12c1plt0z06Ash7DrE0_EDqcIn7cTxeNhVY_P0,46534
|
7
|
+
pulumi_newrelic/alert_muting_rule.py,sha256=29krxHeSE5j6Cl1GNjWAZuBc1pQrozy-8doyXSMdEbM,19154
|
8
|
+
pulumi_newrelic/alert_policy.py,sha256=Titb2zd1irx9HWPU7Z0MZkuzf9nfvuJdbQELnmnuSZw,26106
|
9
|
+
pulumi_newrelic/alert_policy_channel.py,sha256=1XE1pJ3F17F1V1RJ4gi4hNX7YSLH7QMRnjb44lN-YaI,15587
|
10
10
|
pulumi_newrelic/api_access_key.py,sha256=buDhGJHHgnLzPLbYcsaBjl1bQDukgLzdk1FzbIkX_Ts,21435
|
11
11
|
pulumi_newrelic/browser_application.py,sha256=tVD3ZgHHXTTe1t9fFBDbeT9agigtzCajQJlmupdMd-4,21042
|
12
12
|
pulumi_newrelic/data_partition_rule.py,sha256=C_G9maLjFeJlv_XUfDmgWZIgGVO2ojlOcx0mZsciMZU,20433
|
13
|
-
pulumi_newrelic/entity_tags.py,sha256=
|
13
|
+
pulumi_newrelic/entity_tags.py,sha256=tDB1LlkPXMM9cjxdxa0IVBhee8VBm3uyyELSUvKuNgk,10117
|
14
14
|
pulumi_newrelic/events_to_metrics_rule.py,sha256=lQAWZJc5TmVWJoznib_yniMV5kCFONWwnhGmxmS9gl4,15994
|
15
15
|
pulumi_newrelic/get_account.py,sha256=uZnFdoQVwUd-Qz4WHtA7EHiylDS10JHJvsn4j2dONww,4651
|
16
16
|
pulumi_newrelic/get_alert_channel.py,sha256=QXHddDxfYIDOpEQFkQ_uBs_CV94f_sn8qeTESbJGSVQ,5416
|
17
17
|
pulumi_newrelic/get_alert_policy.py,sha256=hfBkNm6FPKiSJ32K5OXRIC8DS0mUdneESQUWX2p1oBk,8795
|
18
|
-
pulumi_newrelic/get_application.py,sha256=
|
18
|
+
pulumi_newrelic/get_application.py,sha256=PfCQCLhV-cWcgrQaA61vDnSYyi3DJ-TJl_KOfKthl3s,5242
|
19
19
|
pulumi_newrelic/get_authentication_domain.py,sha256=wy5i9vGaNqYofpBE7gLrwmJAaM-NkdMglOK0lprSFjM,3498
|
20
20
|
pulumi_newrelic/get_cloud_account.py,sha256=7uBL8KxGdma3ZR8KQzRXG61R-inusfXHXv_6bEQK3fI,5191
|
21
|
-
pulumi_newrelic/get_entity.py,sha256=
|
21
|
+
pulumi_newrelic/get_entity.py,sha256=t-2-5noG7MdNQ9Dz_15R3UQy4cZqPKtMk3JDGFll3yQ,12843
|
22
22
|
pulumi_newrelic/get_group.py,sha256=pjW9nJr7tPPyi5YKev_VRyccEmQ_qGd6J8ZyWVxy33g,7783
|
23
|
-
pulumi_newrelic/get_key_transaction.py,sha256=
|
24
|
-
pulumi_newrelic/get_notification_destination.py,sha256=
|
25
|
-
pulumi_newrelic/get_obfuscation_expression.py,sha256=
|
26
|
-
pulumi_newrelic/get_service_level_alert_helper.py,sha256=
|
23
|
+
pulumi_newrelic/get_key_transaction.py,sha256=l0qw9H6WglR2_tjDNf5Tk-juwzOpPiGowbSVet21M2s,4011
|
24
|
+
pulumi_newrelic/get_notification_destination.py,sha256=pAE3PpUpn96LHwYhLpji2h6Sips6j54Ye2qgR3tXrK0,8315
|
25
|
+
pulumi_newrelic/get_obfuscation_expression.py,sha256=JiUc91auQ5n3iZm6x9rt6t8QorZW842kzH90HDB3axs,4871
|
26
|
+
pulumi_newrelic/get_service_level_alert_helper.py,sha256=Yzrz3nyNl5l7BAkUHs5kWEEUDewK2lBAamOMKEl5LW0,19516
|
27
27
|
pulumi_newrelic/get_test_grok_pattern.py,sha256=mCiJXbpiQLg2oeEa5_rQTI38ZsXkWml4lgv1s6jEpPE,5538
|
28
28
|
pulumi_newrelic/get_user.py,sha256=QxI7LiKvkiBOc-Ovj3ySFzD1l2SrGO1Y7-xnrGhfP3A,7284
|
29
29
|
pulumi_newrelic/group.py,sha256=ifVMSVvNIQ4YtoRXIBCpzu7jy3AsEt0iQAFC4M3Rb8g,20907
|
30
|
-
pulumi_newrelic/infra_alert_condition.py,sha256=
|
30
|
+
pulumi_newrelic/infra_alert_condition.py,sha256=Tyb0hKgQLymb9IQ4a5oQPk3Te8mnLNDiwwBugXI9hEQ,57500
|
31
31
|
pulumi_newrelic/log_parsing_rule.py,sha256=1NgUsL1PQNd5-5eMUiOA5fL0vT91DNQ6KqmcWSyn5l0,22408
|
32
|
-
pulumi_newrelic/monitor_downtime.py,sha256=
|
33
|
-
pulumi_newrelic/notification_channel.py,sha256=
|
34
|
-
pulumi_newrelic/notification_destination.py,sha256=
|
35
|
-
pulumi_newrelic/nrql_alert_condition.py,sha256=
|
32
|
+
pulumi_newrelic/monitor_downtime.py,sha256=xykQl049eRPdC65CMoJ8f2tDziQ_iz16zcGX79Wg1Tg,40688
|
33
|
+
pulumi_newrelic/notification_channel.py,sha256=TSAkjYxJJZNSi6sy_2GyyDAg31E6pnjMohBON52yktU,46611
|
34
|
+
pulumi_newrelic/notification_destination.py,sha256=hYOsSjKmY4wqk6KMpmVMrBMMvfIXchjQi-HA27_B4wA,39007
|
35
|
+
pulumi_newrelic/nrql_alert_condition.py,sha256=AgaK5W9BEPnsr8jGPDFTh3SKi9_C_4qNcbBp-N8NH1A,112035
|
36
36
|
pulumi_newrelic/nrql_drop_rule.py,sha256=PO9gtn6xHMEHjUdfZB_h5AWnWFFnfihRxwxEoGsS_tk,17538
|
37
37
|
pulumi_newrelic/obfuscation_expression.py,sha256=ujOP16liz5adKssyTNmoSbKJsypZAejSi6eCsQtC54c,12343
|
38
|
-
pulumi_newrelic/obfuscation_rule.py,sha256=
|
39
|
-
pulumi_newrelic/one_dashboard.py,sha256=
|
38
|
+
pulumi_newrelic/obfuscation_rule.py,sha256=Cz6dmdXb6JNf2_jiFjAEk4Nd0RSOwF9D9A1vWpKeMHE,17869
|
39
|
+
pulumi_newrelic/one_dashboard.py,sha256=bDsY4sEBzjnz2iZb_JmWptApai3Blpzo25vHIRQsjDw,20680
|
40
40
|
pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0qg-NVT-s,12622
|
41
|
-
pulumi_newrelic/one_dashboard_raw.py,sha256=
|
41
|
+
pulumi_newrelic/one_dashboard_raw.py,sha256=_5CWA6p6_tCfI135mTysVo0qjQf1xnYBNEZBDNmKqsw,23502
|
42
42
|
pulumi_newrelic/outputs.py,sha256=l-PV80TdUbyoWHCI0a6urYAo0BGQyA0AIcipGHyho34,489353
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=AQM5sscHGKG_25V6IRqS3lmVHaEutOKGqSQ-gOWlt-k,68
|
45
45
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
|
-
pulumi_newrelic/service_level.py,sha256=
|
46
|
+
pulumi_newrelic/service_level.py,sha256=1MA3qQw6Y6d-HA6TIckt0B7FLZIhNCH8GuWhn0f246M,28806
|
47
47
|
pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
|
48
|
-
pulumi_newrelic/workflow.py,sha256=
|
48
|
+
pulumi_newrelic/workflow.py,sha256=B7wyTpuIJQxDk3k7znYUj286SHiYiHaGJ8eHSjHSxKU,42143
|
49
49
|
pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
|
50
50
|
pulumi_newrelic/cloud/_inputs.py,sha256=PFxNJ_jznxsz2yI12uFYQMjQOI2SoHg0Q8CVieaq5SU,294585
|
51
|
-
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=
|
51
|
+
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=dDgO1N5Jb05DM_ipxCf1Su5dxS93VBhjbsGKSexhdZQ,65239
|
52
52
|
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=_FJ8URQzEeNnkMCndsq7oKOe8gRIFWvsQ8HbGTvGNuc,20827
|
53
|
-
pulumi_newrelic/cloud/aws_integrations.py,sha256=
|
53
|
+
pulumi_newrelic/cloud/aws_integrations.py,sha256=J7JroqOQMLmlbGsKc93wemUTHm4Y6J7jkbSlioLtns4,176154
|
54
54
|
pulumi_newrelic/cloud/aws_link_account.py,sha256=ANyN1A7_TLGOcCwnMMX6RtXRAO53wLFUAI7c97osKNo,15495
|
55
|
-
pulumi_newrelic/cloud/azure_integrations.py,sha256=
|
55
|
+
pulumi_newrelic/cloud/azure_integrations.py,sha256=WX7ZRZwulmMGH9Ve_VJBZuWoBLURkAfFbxuwl1voh0k,114017
|
56
56
|
pulumi_newrelic/cloud/azure_link_account.py,sha256=QR7mViJ5B-ibn5vJg2Cgn0RddMDfYHWjRKzN7y19EoE,18559
|
57
|
-
pulumi_newrelic/cloud/gcp_integrations.py,sha256=
|
57
|
+
pulumi_newrelic/cloud/gcp_integrations.py,sha256=ouFJHytG0rUWb2vILkP0sNuz3WVORotEvvLgyR9HNIY,85795
|
58
58
|
pulumi_newrelic/cloud/gcp_link_account.py,sha256=OvPvdjOuWg1v-DrONAXQNgsPiuRNo-xBH8LqafermHo,12431
|
59
59
|
pulumi_newrelic/cloud/outputs.py,sha256=Ow4BSp_VDxtvyYGpChi54fvOeBSUoyQ_kEBn1t1F-eQ,316241
|
60
60
|
pulumi_newrelic/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
@@ -62,28 +62,28 @@ pulumi_newrelic/config/__init__.pyi,sha256=Ei1nds8BYdBSKrzdgc14xag-tIZ9fdv02sZzg
|
|
62
62
|
pulumi_newrelic/config/vars.py,sha256=ic6v5AqvrrrkDKHFsxvLzMdVw24XIsIu_vjp34R3388,2102
|
63
63
|
pulumi_newrelic/insights/__init__.py,sha256=-tPATEB7zs4lUfIRTT0wNnN9a7uvXHsRi315Y9-rm30,335
|
64
64
|
pulumi_newrelic/insights/_inputs.py,sha256=_N6liJuXjt9GK3HWgA94q0fLjAckJd6Ou5ntAO0atNA,4324
|
65
|
-
pulumi_newrelic/insights/event.py,sha256=
|
65
|
+
pulumi_newrelic/insights/event.py,sha256=DT_KhUKY19OdnMJ5yT73GwfrGOcjXzz28DWizKUvVg4,9865
|
66
66
|
pulumi_newrelic/insights/outputs.py,sha256=Rsw2x8EcSF_LE4pt_9jJtoF_ut0D1S4cRCxPzCIBVsU,3335
|
67
67
|
pulumi_newrelic/plugins/__init__.py,sha256=UeoukmKyu6Xm6K4W4z5N_CzyB634ttFEcP7GH9nTyeA,374
|
68
68
|
pulumi_newrelic/plugins/_inputs.py,sha256=AuXZDBxlSZFfTEucVdw1NajrlnLmkDJbxeWW1ZrCppc,16738
|
69
69
|
pulumi_newrelic/plugins/application_settings.py,sha256=gih1hG-Rh786Uqj-csmAeOJVeUGVcIONts_KZrra2gw,16324
|
70
70
|
pulumi_newrelic/plugins/outputs.py,sha256=hDj9PHWGK_VrH0RU3spmsg8GkeTCgitR70WapbIEomc,16551
|
71
|
-
pulumi_newrelic/plugins/workload.py,sha256=
|
71
|
+
pulumi_newrelic/plugins/workload.py,sha256=P5cneA0nvHde5bwvn7588axMm_HW6EEtNTtRoJPfwa0,41161
|
72
72
|
pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
|
73
73
|
pulumi_newrelic/synthetics/_inputs.py,sha256=wG65bo-G3IZqpM38sGqptmaKOxJSSmCySyhbUJLPZt4,13645
|
74
|
-
pulumi_newrelic/synthetics/alert_condition.py,sha256=
|
75
|
-
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=
|
76
|
-
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=
|
77
|
-
pulumi_newrelic/synthetics/get_private_location.py,sha256=
|
74
|
+
pulumi_newrelic/synthetics/alert_condition.py,sha256=czvLt2PDjY-db9FHF9uBzPYGGE9NBfoLuJtjyT0-VEY,21063
|
75
|
+
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=r3B2phNX4Sklyx3oMVV4RTcuizxowrEgpaD5Vc8vQCo,45412
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=GB_N4NTS6A5plAqiq06wjsfhlrY0ttSb_JWVaDG6kDo,47498
|
77
|
+
pulumi_newrelic/synthetics/get_private_location.py,sha256=qgChL7uKmcMLxrjvYGZ9Duh6zbdgX80TKHaF-7_LLBc,5701
|
78
78
|
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=xexkDSteNi9kn0UuucFUSTIbz_NaHOzw6HTsg2yGoEU,5479
|
79
|
-
pulumi_newrelic/synthetics/monitor.py,sha256=
|
80
|
-
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=
|
79
|
+
pulumi_newrelic/synthetics/monitor.py,sha256=st1pKKNhfNhZOeHTM3hrcmnBDv0WojS1SV1l6vp7S24,65810
|
80
|
+
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=0CKd3lqK2-vL7mXXWM5LfSyxjbYLg7XFXwJyAwyvYOM,34660
|
81
81
|
pulumi_newrelic/synthetics/outputs.py,sha256=z5-aR2wEr5nl36oFpcxI1ICSDWzci3KRU5G_OAz9MUM,11217
|
82
82
|
pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
|
83
|
-
pulumi_newrelic/synthetics/script_monitor.py,sha256=
|
83
|
+
pulumi_newrelic/synthetics/script_monitor.py,sha256=ZiydwgET60EP-85SHUyghFr31RSBVAHbcRaEjPT8yxM,56960
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
|
85
|
-
pulumi_newrelic/synthetics/step_monitor.py,sha256=
|
86
|
-
pulumi_newrelic-5.
|
87
|
-
pulumi_newrelic-5.
|
88
|
-
pulumi_newrelic-5.
|
89
|
-
pulumi_newrelic-5.
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=7faCHLztiP64D-k2QRxJD8-SFYXs-qiUPXHk_CSsDe0,50696
|
86
|
+
pulumi_newrelic-5.29.0.dist-info/METADATA,sha256=MHttfi8ToDQkKD_MDuMqvliDVlvdI-F6_pDUXikds2Q,3889
|
87
|
+
pulumi_newrelic-5.29.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
88
|
+
pulumi_newrelic-5.29.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.29.0.dist-info/RECORD,,
|
File without changes
|
{pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0.dist-info}/top_level.txt
RENAMED
File without changes
|