1. Packages
  2. Packages
  3. Newrelic Provider
  4. API Docs
  5. getAlertPolicy
Viewing docs for New Relic v4.20.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
newrelic logo
Viewing docs for New Relic v4.20.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Use this data source to get information about a specific alert policy in New Relic that already exists.

    Example Usage

    Example coming soon!

    Example coming soon!

    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.newrelic.NewrelicFunctions;
    import com.pulumi.newrelic.inputs.GetAlertChannelArgs;
    import com.pulumi.newrelic.inputs.GetAlertPolicyArgs;
    import com.pulumi.newrelic.AlertPolicyChannel;
    import com.pulumi.newrelic.AlertPolicyChannelArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var fooAlertChannel = NewrelicFunctions.getAlertChannel(GetAlertChannelArgs.builder()
                .name("foo@example.com")
                .build());
    
            final var fooAlertPolicy = NewrelicFunctions.getAlertPolicy(GetAlertPolicyArgs.builder()
                .name("foo policy")
                .build());
    
            var fooAlertPolicyChannel = new AlertPolicyChannel("fooAlertPolicyChannel", AlertPolicyChannelArgs.builder()        
                .policyId(fooAlertPolicy.applyValue(getAlertPolicyResult -> getAlertPolicyResult.id()))
                .channelId(fooAlertChannel.applyValue(getAlertChannelResult -> getAlertChannelResult.id()))
                .build());
    
        }
    }
    

    Example coming soon!

    Example coming soon!

    resources:
      fooAlertPolicyChannel:
        type: newrelic:AlertPolicyChannel
        properties:
          policyId: ${fooAlertPolicy.id}
          channelId: ${fooAlertChannel.id}
    variables:
      fooAlertChannel:
        Fn::Invoke:
          Function: newrelic:getAlertChannel
          Arguments:
            name: foo@example.com
      fooAlertPolicy:
        Fn::Invoke:
          Function: newrelic:getAlertPolicy
          Arguments:
            name: foo policy
    

    Using getAlertPolicy

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getAlertPolicy(args: GetAlertPolicyArgs, opts?: InvokeOptions): Promise<GetAlertPolicyResult>
    function getAlertPolicyOutput(args: GetAlertPolicyOutputArgs, opts?: InvokeOptions): Output<GetAlertPolicyResult>
    def get_alert_policy(account_id: Optional[int] = None,
                         incident_preference: Optional[str] = None,
                         name: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetAlertPolicyResult
    def get_alert_policy_output(account_id: Optional[pulumi.Input[int]] = None,
                         incident_preference: Optional[pulumi.Input[str]] = None,
                         name: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetAlertPolicyResult]
    func LookupAlertPolicy(ctx *Context, args *LookupAlertPolicyArgs, opts ...InvokeOption) (*LookupAlertPolicyResult, error)
    func LookupAlertPolicyOutput(ctx *Context, args *LookupAlertPolicyOutputArgs, opts ...InvokeOption) LookupAlertPolicyResultOutput

    > Note: This function is named LookupAlertPolicy in the Go SDK.

    public static class GetAlertPolicy 
    {
        public static Task<GetAlertPolicyResult> InvokeAsync(GetAlertPolicyArgs args, InvokeOptions? opts = null)
        public static Output<GetAlertPolicyResult> Invoke(GetAlertPolicyInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAlertPolicyResult> getAlertPolicy(GetAlertPolicyArgs args, InvokeOptions options)
    public static Output<GetAlertPolicyResult> getAlertPolicy(GetAlertPolicyArgs args, InvokeOptions options)
    
    fn::invoke:
      function: newrelic:index/getAlertPolicy:getAlertPolicy
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    The name of the alert policy in New Relic.
    AccountId int
    IncidentPreference string
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    Name string
    The name of the alert policy in New Relic.
    AccountId int
    IncidentPreference string
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    name String
    The name of the alert policy in New Relic.
    accountId Integer
    incidentPreference String
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    name string
    The name of the alert policy in New Relic.
    accountId number
    incidentPreference string
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    name str
    The name of the alert policy in New Relic.
    account_id int
    incident_preference str
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    name String
    The name of the alert policy in New Relic.
    accountId Number
    incidentPreference String
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.

    getAlertPolicy Result

    The following output properties are available:

    AccountId int
    CreatedAt string
    The time the policy was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    UpdatedAt string
    The time the policy was last updated.
    IncidentPreference string
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    AccountId int
    CreatedAt string
    The time the policy was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    UpdatedAt string
    The time the policy was last updated.
    IncidentPreference string
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    accountId Integer
    createdAt String
    The time the policy was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    updatedAt String
    The time the policy was last updated.
    incidentPreference String
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    accountId number
    createdAt string
    The time the policy was created.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    updatedAt string
    The time the policy was last updated.
    incidentPreference string
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    account_id int
    created_at str
    The time the policy was created.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    updated_at str
    The time the policy was last updated.
    incident_preference str
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.
    accountId Number
    createdAt String
    The time the policy was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    updatedAt String
    The time the policy was last updated.
    incidentPreference String
    The rollup strategy for the policy. Options include: PER_POLICY, PER_CONDITION, or PER_CONDITION_AND_TARGET. The default is PER_POLICY.

    Package Details

    Repository
    New Relic pulumi/pulumi-newrelic
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the newrelic Terraform Provider.
    newrelic logo
    Viewing docs for New Relic v4.20.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.