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.
- 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 +164 -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.0a1723454189.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0a1723454189.dist-info}/RECORD +41 -41
- {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0a1723454189.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.28.0a1723107045.dist-info → pulumi_newrelic-5.29.0a1723454189.dist-info}/top_level.txt +0 -0
@@ -378,12 +378,12 @@ class NotificationDestination(pulumi.CustomResource):
|
|
378
378
|
opts: Optional[pulumi.ResourceOptions] = None,
|
379
379
|
account_id: Optional[pulumi.Input[str]] = None,
|
380
380
|
active: Optional[pulumi.Input[bool]] = None,
|
381
|
-
auth_basic: Optional[pulumi.Input[
|
382
|
-
auth_custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[
|
383
|
-
auth_token: Optional[pulumi.Input[
|
381
|
+
auth_basic: Optional[pulumi.Input[Union['NotificationDestinationAuthBasicArgs', 'NotificationDestinationAuthBasicArgsDict']]] = None,
|
382
|
+
auth_custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]]] = None,
|
383
|
+
auth_token: Optional[pulumi.Input[Union['NotificationDestinationAuthTokenArgs', 'NotificationDestinationAuthTokenArgsDict']]] = None,
|
384
384
|
name: Optional[pulumi.Input[str]] = None,
|
385
|
-
properties: Optional[pulumi.Input[Sequence[pulumi.Input[
|
386
|
-
secure_url: Optional[pulumi.Input[
|
385
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationPropertyArgs', 'NotificationDestinationPropertyArgsDict']]]]] = None,
|
386
|
+
secure_url: Optional[pulumi.Input[Union['NotificationDestinationSecureUrlArgs', 'NotificationDestinationSecureUrlArgsDict']]] = None,
|
387
387
|
type: Optional[pulumi.Input[str]] = None,
|
388
388
|
__props__=None):
|
389
389
|
"""
|
@@ -459,12 +459,12 @@ class NotificationDestination(pulumi.CustomResource):
|
|
459
459
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
460
460
|
:param pulumi.Input[str] account_id: Determines the New Relic account where the notification destination will be created. Defaults to the account associated with the API key used.
|
461
461
|
:param pulumi.Input[bool] active: Indicates whether the destination is active.
|
462
|
-
:param pulumi.Input[
|
463
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
464
|
-
:param pulumi.Input[
|
462
|
+
:param pulumi.Input[Union['NotificationDestinationAuthBasicArgs', 'NotificationDestinationAuthBasicArgsDict']] auth_basic: A nested block that describes a basic username and password authentication credentials. Only one auth_basic block is permitted per notification destination definition. See Nested auth_basic blocks below for details.
|
463
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]] auth_custom_headers: A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
|
464
|
+
:param pulumi.Input[Union['NotificationDestinationAuthTokenArgs', 'NotificationDestinationAuthTokenArgsDict']] auth_token: A nested block that describes a token authentication credentials. Only one auth_token block is permitted per notification destination definition. See Nested auth_token blocks below for details.
|
465
465
|
:param pulumi.Input[str] name: The name of the destination.
|
466
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
467
|
-
:param pulumi.Input[
|
466
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationPropertyArgs', 'NotificationDestinationPropertyArgsDict']]]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
|
467
|
+
:param pulumi.Input[Union['NotificationDestinationSecureUrlArgs', 'NotificationDestinationSecureUrlArgsDict']] secure_url: A nested block that describes a URL that contains sensitive data at the path or parameters. Only one secure_url block is permitted per notification destination definition. See Nested secure_url blocks below for details.
|
468
468
|
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
469
469
|
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
470
470
|
MOBILE_PUSH, EVENT_BRIDGE).
|
@@ -561,12 +561,12 @@ class NotificationDestination(pulumi.CustomResource):
|
|
561
561
|
opts: Optional[pulumi.ResourceOptions] = None,
|
562
562
|
account_id: Optional[pulumi.Input[str]] = None,
|
563
563
|
active: Optional[pulumi.Input[bool]] = None,
|
564
|
-
auth_basic: Optional[pulumi.Input[
|
565
|
-
auth_custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[
|
566
|
-
auth_token: Optional[pulumi.Input[
|
564
|
+
auth_basic: Optional[pulumi.Input[Union['NotificationDestinationAuthBasicArgs', 'NotificationDestinationAuthBasicArgsDict']]] = None,
|
565
|
+
auth_custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]]] = None,
|
566
|
+
auth_token: Optional[pulumi.Input[Union['NotificationDestinationAuthTokenArgs', 'NotificationDestinationAuthTokenArgsDict']]] = None,
|
567
567
|
name: Optional[pulumi.Input[str]] = None,
|
568
|
-
properties: Optional[pulumi.Input[Sequence[pulumi.Input[
|
569
|
-
secure_url: Optional[pulumi.Input[
|
568
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationPropertyArgs', 'NotificationDestinationPropertyArgsDict']]]]] = None,
|
569
|
+
secure_url: Optional[pulumi.Input[Union['NotificationDestinationSecureUrlArgs', 'NotificationDestinationSecureUrlArgsDict']]] = None,
|
570
570
|
type: Optional[pulumi.Input[str]] = None,
|
571
571
|
__props__=None):
|
572
572
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -605,14 +605,14 @@ class NotificationDestination(pulumi.CustomResource):
|
|
605
605
|
opts: Optional[pulumi.ResourceOptions] = None,
|
606
606
|
account_id: Optional[pulumi.Input[str]] = None,
|
607
607
|
active: Optional[pulumi.Input[bool]] = None,
|
608
|
-
auth_basic: Optional[pulumi.Input[
|
609
|
-
auth_custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[
|
610
|
-
auth_token: Optional[pulumi.Input[
|
608
|
+
auth_basic: Optional[pulumi.Input[Union['NotificationDestinationAuthBasicArgs', 'NotificationDestinationAuthBasicArgsDict']]] = None,
|
609
|
+
auth_custom_headers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]]] = None,
|
610
|
+
auth_token: Optional[pulumi.Input[Union['NotificationDestinationAuthTokenArgs', 'NotificationDestinationAuthTokenArgsDict']]] = None,
|
611
611
|
guid: Optional[pulumi.Input[str]] = None,
|
612
612
|
last_sent: Optional[pulumi.Input[str]] = None,
|
613
613
|
name: Optional[pulumi.Input[str]] = None,
|
614
|
-
properties: Optional[pulumi.Input[Sequence[pulumi.Input[
|
615
|
-
secure_url: Optional[pulumi.Input[
|
614
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationPropertyArgs', 'NotificationDestinationPropertyArgsDict']]]]] = None,
|
615
|
+
secure_url: Optional[pulumi.Input[Union['NotificationDestinationSecureUrlArgs', 'NotificationDestinationSecureUrlArgsDict']]] = None,
|
616
616
|
status: Optional[pulumi.Input[str]] = None,
|
617
617
|
type: Optional[pulumi.Input[str]] = None) -> 'NotificationDestination':
|
618
618
|
"""
|
@@ -624,14 +624,14 @@ class NotificationDestination(pulumi.CustomResource):
|
|
624
624
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
625
625
|
:param pulumi.Input[str] account_id: Determines the New Relic account where the notification destination will be created. Defaults to the account associated with the API key used.
|
626
626
|
:param pulumi.Input[bool] active: Indicates whether the destination is active.
|
627
|
-
:param pulumi.Input[
|
628
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
629
|
-
:param pulumi.Input[
|
627
|
+
:param pulumi.Input[Union['NotificationDestinationAuthBasicArgs', 'NotificationDestinationAuthBasicArgsDict']] auth_basic: A nested block that describes a basic username and password authentication credentials. Only one auth_basic block is permitted per notification destination definition. See Nested auth_basic blocks below for details.
|
628
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationAuthCustomHeaderArgs', 'NotificationDestinationAuthCustomHeaderArgsDict']]]] auth_custom_headers: A nested block that describes a custom header authentication credentials. Multiple blocks are permitted per notification destination definition. Nested auth_custom_header blocks below for details.
|
629
|
+
:param pulumi.Input[Union['NotificationDestinationAuthTokenArgs', 'NotificationDestinationAuthTokenArgsDict']] auth_token: A nested block that describes a token authentication credentials. Only one auth_token block is permitted per notification destination definition. See Nested auth_token blocks below for details.
|
630
630
|
:param pulumi.Input[str] guid: The unique entity identifier of the destination in New Relic.
|
631
631
|
:param pulumi.Input[str] last_sent: The last time a notification was sent.
|
632
632
|
:param pulumi.Input[str] name: The name of the destination.
|
633
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
634
|
-
:param pulumi.Input[
|
633
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['NotificationDestinationPropertyArgs', 'NotificationDestinationPropertyArgsDict']]]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
|
634
|
+
:param pulumi.Input[Union['NotificationDestinationSecureUrlArgs', 'NotificationDestinationSecureUrlArgsDict']] secure_url: A nested block that describes a URL that contains sensitive data at the path or parameters. Only one secure_url block is permitted per notification destination definition. See Nested secure_url blocks below for details.
|
635
635
|
:param pulumi.Input[str] status: The status of the destination.
|
636
636
|
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
637
637
|
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|