import * as pulumi from "@pulumi/pulumi"; /** * *Note: If you are an advanced alert routing user, you should use the Alert Routes resource/data source instead of this one. If you don't know whether you are an advanced alert routing user, please contact Rootly customer support.* */ export declare function getAlertRoutingRule(args?: GetAlertRoutingRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAlertRoutingRule. */ export interface GetAlertRoutingRuleArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; name?: string; } /** * A collection of values returned by getAlertRoutingRule. */ export interface GetAlertRoutingRuleResult { /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; /** * The ID of this resource. */ readonly id: string; readonly name: string; } /** * *Note: If you are an advanced alert routing user, you should use the Alert Routes resource/data source instead of this one. If you don't know whether you are an advanced alert routing user, please contact Rootly customer support.* */ export declare function getAlertRoutingRuleOutput(args?: GetAlertRoutingRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAlertRoutingRule. */ export interface GetAlertRoutingRuleOutputArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; name?: pulumi.Input; } //# sourceMappingURL=getAlertRoutingRule.d.ts.map